/* styles.css */

/* Color Variables */
:root {
  --main-yellow: #febd01;
  --main-red: #971201;
  --main-green: #001c00;
  --main-blue: #001233;
  --white: #ffffff;
  --black: #000000;
  --light-grey: #F3F3F3;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: auto;
  background-color: var(--main-blue); /* Your blue */
  color: var(--white);
  padding: 15px 20px;
  border-radius: 10px;
  font-family: Arial, sans-serif;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  max-width: 350px;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 auto;
  font-size: 0.9rem;
}

.cookie-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.cookie-buttons button {
  background-color: var(--main-yellow);
  color: var(--main-red);
  border: none;
  padding: 6px 14px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.cookie-buttons button:hover {
  background-color: var(--white);
  color: var(--main-blue);
}

.cookie-link {
  color: var(--white);
  text-decoration: underline;
  font-size: 0.9rem;
}

.cookie-link:hover {
  color: var(--main-yellow);
  text-decoration: underline;
  font-size: 0.9rem;
}

.cookie-buttons button#declineCookiesBtn {
  background-color: var(--main-red);
  color: var(--main-yellow);
}

.cookie-buttons button#declineCookiesBtn:hover {
  background-color: var(--white);
  color: var(--main-blue);
}

@media (max-width: 480px) {
  .cookie-banner {
    bottom: 10px;
    right: 10px;
    max-width: 95%;
    flex-direction: column;
    text-align: center;
  }
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--white);
  color: var(--black);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  background-color: var(--main-blue);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 4px rgb(0 0 0 / 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

/* On scroll (scrolling down) */
.navbar.scrolled {
  background-color: var(--black);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
}

/* Container inside navbar */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo container */
.logo {
  display: inline-block;
}

/* SVG logo */
.logo img {
  height: 80px;
  width: auto;
  display: block;
  user-select: none;
}

/* Responsive logo */
@media (max-width: 600px) {
  .logo img {
    height: 80px;
  }
}

/* Nav menu */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

/* Nav links */
.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--main-yellow);
}

/* Hamburger Menu Button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 30px;
  height: 25px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  content: '';
  display: block;
  background-color: var(--main-yellow);
  height: 3px;
  border-radius: 3px;
  transition: all 0.3s ease;
  position: relative;
}

.hamburger {
  width: 100%;
  position: relative;
}

.hamburger::before,
.hamburger::after {
  position: absolute;
  width: 100%;
  left: 0;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

.nav-toggle_active .hamburger {
  background-color: transparent;
}

.nav-toggle_active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.nav-toggle_active .hamburger::after {
  transform: rotate(-45deg);
  bottom: 0;
}

/* Responsive Menu */
@media (max-width: 768px) {
  .nav-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;

    background-color: rgba(0, 18, 51, 0.98); /* deep blue overlay */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;

    z-index: 999;
  }

  .nav-menu.nav-menu_visible {
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    font-size: 1.8rem;
    color: var(--main-yellow);
    text-transform: uppercase;
    padding: 1rem;
    text-align: center;
    transition: color 0.3s ease;
  }

  .nav-link:hover {
    color: #fff;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1001; /* sits above overlay */
  }

  body.no-scroll {
    overflow: hidden;
  }
}

.hero {
  background-color: var(--main-yellow);
  color: var(--main-blue);
  text-align: center;
  padding: 190px 20px 100px 20px;
  position: relative;
  background-image: url('images/herobanner-01.svg'); 
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat; 
  z-index: 1; 
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #febf01ec;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(
    to right,
    #971201 0% 20%, 
    #001233 20% 40%, 
    #001c00 40% 60%, 
    #febd01 60% 100% 
  );
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  background-color: var(--main-blue);
  color: var(--white);
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: var(--main-red);
  color: var(--main-yellow);
}

/* --- Logo Carousel --- */
.logo-carousel {
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
  position: relative;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 50s linear infinite;
}

.logo-track img {
  height: 90px;
  width: auto;
  margin: 0 30px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Seamless infinite scroll */
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } 
}

/* ===== Registration & Login ===== */
.auth-page {
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, #971201, #720800);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

/* ===== Form Container ===== */
.auth-page .form-container {
  background: var(--main-yellow);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  width: 100%;
  max-width: 400px;
}

/* ===== Form Heading ===== */
.auth-page form h2 {
  text-align: center;
  margin-bottom: 25px;
  color: var(--main-red);
  font-size: 28px;
}

/* ===== Inputs ===== */
.auth-page form input {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  transition: 0.3s;
}

.auth-page form input:focus {
  border-color: var(--main-red);
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
  outline: none;
}

/* ===== Button ===== */
.auth-page form button {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  background: var(--main-blue);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.auth-page form button:hover {
  background: var(--black);
}

/* ===== Small Text ===== */
.auth-page form .small-text {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

.auth-page form .small-text a {
  color: var(--main-red);
  text-decoration: none;
}

.auth-page form .small-text a:hover {
  text-decoration: underline;
}


/* --- OUR EXPERTISE --- */
.section-expertise {
  text-align: center;
  padding: 40px 20px;
}

.section-expertise h2 {
  font-size: 2rem;
  color: var(--main-blue);
  margin-bottom: 15px;
}

.section-expertise p {
  color: var(--main-blue);
  max-width: 750px;
  margin: 0 auto 30px;
  line-height: 1.6;
  font-size: 1rem;
}

/* Expertise Cards Layout */
.section-expertise .expertise-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.expertise-item {
  background: linear-gradient(180deg, #971201 0%, #4C0901 100%);
  border: 2px solid var(--main-yellow);
  border-radius: 15px;
  padding: 40px 30px;
  flex: 1 1 240px;
  max-width: 250px;
  text-align: left; /*  LEFT aligned */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(255, 189, 1, 0.3);
}

/* Icon Styling */
.expertise-icon {
  width: 45px;
  height: 45px;
  margin-bottom: 20px;
  display: block;
  filter: brightness(0) invert(1); /* makes dark SVG icons white */
}

/* Heading Styling */
.expertise-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--main-yellow);
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* Description Styling */
.expertise-item p {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.5;
  max-width: 100%;
}

/* Expertise Buttons */
.expertise-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background: var(--main-yellow);
  color: var(--main-red);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 5px;
  border: none;
  transition: 0.3s ease;
}

.expertise-btn:hover {
  background: var(--white);
  color: var(--main-blue);
  transform: translateY(-3px);
}

/* --- Responsive Layouts --- */

/* Tablet: 2 items per row */
@media (max-width: 992px) {
  .section-expertise .expertise-list {
    justify-content: center;
  }

  .expertise-item {
    flex: 1 1 calc(50% - 1.5rem); /* Two per row */
    max-width: calc(50% - 1.5rem);
  }
}

/* Mobile: 1 item per row */
@media (max-width: 600px) {
  .expertise-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* --- MEET THE FOUNDER --- */
.founder-section {
  padding: 30px 20px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.founder-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  max-width: 1100px;
  flex-wrap: wrap;
}

/* Image styling */
.founder-image img {
  width: 280px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Text content styling */
.founder-text {
  flex: 1;
  max-width: 420px;
  text-align: left;
}

.founder-text h2 {
  color: var(--main-red);
  font-size: 1.9rem;
  line-height: 1.2;
  margin-bottom: 15px;
}

.founder-text p {
  color: var(--main-blue);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Read More button */
.btn-read-more {
  background-color: var(--main-red);
  color: var(--main-yellow);
  font-weight: 600;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 25px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-read-more:hover {
  background-color: var(--main-blue);
  color: var(--white);
  transform: translateY(-3px);
}

/* --- Responsive Layouts --- */

/* Tablet */
@media (max-width: 992px) {
  .founder-content {
    flex-direction: row;
    gap: 1.5rem;
  }

  .founder-image img {
    width: 240px;
  }

  .founder-text h2 {
    font-size: 1.6rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .founder-content {
    flex-direction: column;
    text-align: center;
  }

  .founder-text {
    text-align: center;
    max-width: 100%;
  }

  .founder-image img {
    width: 80%;
    max-width: 320px;
  }

  .founder-text h2 {
    font-size: 1.5rem;
  }

  .btn-read-more {
    font-size: 0.95rem;
  }
}

/* ======= FEATURED WORK SECTION ======== */
.section-featured-work {
  text-align: center;
  padding: 40px 20px;
  background-color: var(--white);
  max-width: 1920px;
}

.section-featured-work h2 {
  font-size: 2rem;
  color: var(--main-blue);
  margin-bottom: 35px;
}

/* --- Grid Layout --- */
.featured-grid {
  display: grid;
  grid-template-columns: 380px 320px 320px;
  grid-template-rows: auto auto;
  gap: 20px;
  justify-content: center;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.featured-item {
  border-radius: 12px;
  border: 2px solid var(--main-blue);
  overflow: hidden;
}

/* Item placement and sizing */
.item1 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  width: 380px;
  height: 310px;
}

.item2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  width: 320px;
  height: 310px;
}

.item3 {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
  width: 720px;
  height: 270px;
}

.item4 {
  grid-column: 3 / 4;   /* now on the right side */
  grid-row: 1 / 3;      /* spans both rows */
  width: 320px;
  height: 600px;
}

/* --- Images fill shapes without distortion --- */
.featured-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ======= RESPONSIVE DESIGN ========= */

/* --- Tablet (768px–1023px) --- */
@media (max-width: 1023px) {
  .featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    justify-items: center;
  }

  .featured-item {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 4 / 3; /* Optional: keeps consistent proportions */
  }

  .featured-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

/* --- Mobile (≤767px) --- */
@media (max-width: 767px) {
  .featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    justify-items: center;
  }

  .featured-item {
    grid-column: auto;
    grid-row: auto;
    width: 90%;
    max-width: 350px;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* ======= GET STARTED SECTION ======== */
.section-get-started {
  text-align: center;
  padding: 40px 20px;
}

.section-get-started h2 {
  font-size: 2rem;
  color: var(--main-blue);
  margin-bottom: 10px;
}

.section-get-started p {
  font-size: 1rem;
  color: var(--main-blue);
  margin-bottom: 30px;
}

/* --- Steps Grid --- */
.steps-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
}

.step-card {
  flex: 1 1 300px;
  max-width: 340px;
  background: var(--white);
  border: 2px solid var(--main-red);
  border-radius: 10px;
  padding: 30px 25px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* --- Step Number Badge --- */
.step-number {
  background-color: var(--main-red);
  color: var(--main-yellow);
  font-weight: 700;
  font-size: 1.5rem;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* --- Step Title --- */
.step-card h3 {
  color: var(--main-blue);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

/* --- Step Description --- */
.step-card p {
  color: var(--main-blue);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 1023px) {
  .steps-grid {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .step-card {
    max-width: 90%;
  }

  .step-number {
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
  }
}

/* ======= CREATE TOGETHER SECTION ======== */
.section-create-together {
  position: relative;
  background: url('images/project.jpg') center/cover no-repeat;
  padding: 80px 20px;
  border-radius: 15px;
  text-align: center;
  color: var(--main-blue);
  max-width: 1055px;
  margin: 20px auto;
  margin-bottom: 20px;
  overflow: hidden;
}

/* --- Solid Color Overlay --- */
.section-create-together .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(254, 191, 1, 0.925); /* Solid yellow overlay */
  z-index: 1;
}

/* --- Content --- */
.create-content {
  position: relative;
  z-index: 2;
}

.create-content h2 {
  font-size: 1.8rem;
  color: var(--main-red);
  margin-bottom: 15px;
}

.create-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--main-blue);
  max-width: 600px;
  margin: 0 auto 30px;
}

.create-content strong {
  color: var(--main-blue);
  font-weight: 700;
}

/* --- Button --- */
.btn-start {
  display: inline-block;
  background-color: var(--main-blue);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-start:hover {
  background-color: var(--main-red);
  color: var(--main-yellow);
  transform: translateY(-3px);
}

/* ======= RESPONSIVE STYLES ======= */

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
  .section-create-together {
    padding: 80px 40px;
    margin: 60px 30px;
  }

  .create-content h2 {
    font-size: 2rem;
  }

  .create-content p {
    font-size: 1rem;
  }

  .btn-start {
    font-size: 1rem;
    padding: 12px 28px;
  }
}

/* Mobile (below 767px) */
@media (max-width: 767px) {
  .section-create-together {
    padding: 60px 20px;
    margin: 50px 15px;
    border-radius: 12px;
  }

  .create-content h2 {
    font-size: 1.6rem;
  }

  .create-content p {
    font-size: 0.95rem;
  }

  .btn-start {
    font-size: 0.95rem;
    padding: 12px 24px;
  }
}

/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f8f8f8;
}

/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f8f8f8;
}

/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f8f8f8;
}

/* ======= CUSTOMER REMARKS SECTION ======= */
.section-remarks {
  text-align: center;
  padding: 30px 30px;
  margin-bottom: 30px;
}

.section-remarks h2 {
  color: var(--main-blue);
  font-size: 2rem;
  margin-bottom: 20px;
}

/* ======= SLIDER CONTAINER ======= */
.remarks-slider {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 40px;
  overflow: hidden;        /* prevents overflow movement */
  min-height: 380px;       /* keeps heading & dots fixed even for longer remarks */
}

/* ======= REMARK CARD ======= */
.remark-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 550px;
  background: #E8E8E8;
  border-radius: 20px;
  padding: 30px;
  transition: all 0.7s ease;
  opacity: 0;
  filter: blur(3px);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.9);
}

/* Left and Right cards slightly offset */
.remark-card.left {
  transform: translate(calc(-50% - 180px), -50%) scale(0.9);
  opacity: 0.4;
}

.remark-card.right {
  transform: translate(calc(-50% + 180px), -50%) scale(0.9);
  opacity: 0.4;
}

/* Active card (centered) */
.remark-card.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  filter: blur(0);
  pointer-events: auto;
  z-index: 2;
  border: 2px solid var(--main-blue);
  box-shadow: 0 10px 25px rgba(0, 18, 51, 0.1);
}

/* Remark Header */
.remark-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  text-align: left;
}

.remark-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--main-red);
  object-fit: cover;
}

.remark-info {
  text-align: left;
}

.remark-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--main-blue);
  margin: 0;
}

.remark-info p {
  font-size: 0.9rem;
  color: var(--main-blue);
  margin: 2px 0 0;
}

/* Remark Text */
.remark-text {
  font-size: 0.95rem;
  color: var(--main-blue);
  text-align: left;
  line-height: 1.5;
  margin-top: 10px;
  min-height: 100px; /* ensures consistent height between remarks */
}

/* ======= NAVIGATION DOTS ======= */
.remarks-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--main-blue);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--main-blue);
}

/* ======= RESPONSIVE ======= */
@media (max-width: 1023px) {
  .remark-card {
    width: 400px;
    padding: 25px;
  }

  .remarks-slider {
    min-height: 340px;
  }

  .remark-card.left {
    transform: translate(calc(-50% - 140px), -50%) scale(0.9);
  }

  .remark-card.right {
    transform: translate(calc(-50% + 140px), -50%) scale(0.9);
  }
}

@media (max-width: 767px) {
  .remark-card {
    width: 85%;
    padding: 25px;
  }

  .remarks-slider {
    min-height: 620px;
  }

  .remark-card.left,
  .remark-card.right {
    transform: translate(-50%, -50%) scale(0.9);
  }

  .remark-text {
    text-align: left;
  }
}

/* === About Section === */
.about {
  background-color: var(--main-yellow);
  color: var(--main-green);
  padding: 160px 20px 50px 20px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.about-banner {
  position: relative;
  background: url("images/history.jpg") center/cover no-repeat;
  height: 600px;
  padding-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.about-banner .banner-overlay h1 {
  position: relative;
  color: #ffffffc0;
  font-size: 10rem;
  font-weight: 900;
  letter-spacing: 3px;
  padding: 0.5em 1.2em;
  text-transform: uppercase;
  font-family: 'Bebas Neue', sans-serif;
}

/* --- THE JOURNEY OF JKL CARTOONICS --- */
.journey-section {
  padding: 40px 20px;
  margin-bottom: -20px;
  max-width: 1100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.journey-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  flex-wrap: wrap;
}

/* Image styling */
.journey-image img {
  width: 330px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Text content styling */
.journey-text {
  flex: 1;
  max-width: 420px;
  text-align: left;
}

.journey-text h2 {
  color: var(--main-blue);
  font-size: 1.9rem;
  line-height: 1.1;
  margin-bottom: 15px;
}

.journey-text p {
  color: var(--main-blue);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* ====== MOBILE (up to 768px) ====== */
@media (max-width: 768px) {
  .about-banner {
    height: 420px;
  }

  .about-banner .banner-overlay h1 {
    font-size: 3.2rem;
    line-height: 1.2;
  }

  .about {
    padding: 80px 20px 50px 20px;
  }

  .journey-content {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
    margin-bottom: -30px;
  }

  .journey-text {
    text-align: center;
    max-width: 100%;
  }

  .journey-text h2 {
    font-size: 1.6rem;
  }

  .journey-text p {
    font-size: 0.95rem;
  }

  .journey-image img {
    width: 80%;
    max-width: 320px;
  }
}

/* ====== SMALL MOBILE (up to 480px) ====== */
@media (max-width: 480px) {
  .about-banner {
    height: 280px;
  }

  .about-banner .banner-overlay h1 {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }

  .about {
    padding: 60px 15px;
  }

  .journey-text {
    max-width: 90%;
  }

  .journey-content {
    gap: 2rem;
  }

  .journey-text h2 {
    font-size: 1.4rem;
  }

  .journey-text p {
    font-size: 0.9rem;
  }
}

/* OUR MISSION SECTION */
#mission {
  background-color: var(--main-green); 
  color: var(--main-yellow); 
  padding: 40px 20px;
  margin-bottom: 32px;
  margin-top: 20px;
}

.our-mission .mission-content {
  max-width: 800px;
  margin: 0 auto; 
  text-align: center;
}

.our-mission h2 {
  color: var(--main-yellow);
  font-size: 1.9rem;
  line-height: 1.1;
  margin-bottom: 15px;
}

.our-mission p {
  font-size: 1rem; 
  font-size: 0.95rem;
  color: var(--white);
  max-width: 900px; 
  margin: 0 auto; 
  padding: 0 20px;
}

/* Responsive Styling */

/* Tablet View (between 768px and 1024px) */
@media (max-width: 1024px) {
  .our-mission h2 {
    font-size: 1.75rem;
  }

  .our-mission p {
    font-size: 1.05rem;
    padding: 0 15px;
  }

  #mission {
    padding: 50px 15px; 
  }
}

/* Mobile View (below 768px) */
@media (max-width: 768px) {
  #mission {
    padding: 30px 10px;
  }

  .our-mission h2 {
    font-size: 1.5rem; 
    margin-bottom: 15px;
  }

  .our-mission p {
    font-size: 1rem; 
    padding: 0 10px; 
  }
}

/* Small Mobile (below 480px) */
@media (max-width: 480px) {
  .our-mission h2 {
    font-size: 1.2rem; 
  }

  .our-mission p {
    font-size: 0.95rem; 
    padding: 0 8px;
    max-width: 90%;
  }

  #mission {
    padding: 20px 5px;
  }
}

/* --- OUR MISSION --- */
.vision-section {
  padding: 20px 20px;
  margin-bottom: -30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vision-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  max-width: 1100px;
  flex-wrap: wrap;
}

/* Image styling */
.vision-image img {
  width: 330px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Text content styling */
.vision-text {
  flex: 1;
  max-width: 420px;
  text-align: left;
}

.vision-text h2 {
  color: var(--main-red);
  font-size: 1.9rem;
  line-height: 1.2;
  margin-bottom: 15px;
}

.vision-text p {
  color: var(--main-blue);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* --- Responsive Layouts --- */

/* Tablet */
@media (max-width: 992px) {
  .vision-content {
    flex-direction: row;
    gap: 1.5rem;
    margin-top: -10px;
    margin-bottom: -40px;
  }

  .vision-image img {
    width: 240px;
  }

  .vision-text h2 {
    font-size: 1.6rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .vision-content {
    flex-direction: column;
    text-align: center;
    margin-bottom: -20px;
  }

  .vision-text {
    text-align: center;
    max-width: 90%;
  }

  .vision-image img {
    width: 80%;
    max-width: 320px;
  }
}

/* === Stats Section === */
.stats {
  background: var(--light-grey);
  padding: 60px 20px;
  margin-bottom: 50px;
  margin-top: 3rem;
  text-align: center;
}

.stats-container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-box {
  background: var(--main-yellow); 
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  width: 250px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.stat-box h2 {
  font-size: 3rem;
  color: var(--main-red);
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.stat-box p {
  font-size: 1.2rem;
  color: var(--main-green);
}

.counter {
  font-size: 3rem;
  font-weight: bold;
  color: var(--main-red);
  transition: color 0.3s ease;
}

/* Hover effect on count */
.counter:hover {
  color: var(--white);
  transform: scale(1.2);
}

/* === Responsive Design === */

/* Tablet Portrait */
@media (max-width: 768px) {
  .stat-box {
    width: 200px; /* Smaller width for tablets */
    padding: 20px;
  }

  .stat-box h2 {
    font-size: 2.5rem;
  }

  .stat-box p {
    font-size: 1rem;
  }

  .counter {
    font-size: 2.5rem;
  }

  .stats-container {
    flex-direction: column;
    align-items: center;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .stat-box {
    width: 180px; /* Even smaller width for mobile */
    padding: 15px;
  }

  .stat-box h2 {
    font-size: 2rem;
  }

  .stat-box p {
    font-size: 1rem;
  }

  .counter {
    font-size: 2rem;
  }
}

/* ======= OUR WORK PAGE BANNER ======= */
.work {
  background-color: var(--main-yellow);
  color: var(--main-green);
  padding: 160px 20px 50px 20px;
}

.work-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

/* Banner Hero */
.work-banner {
  position: relative;
  background: url("images/118348.jpg") center/cover no-repeat;
  height: 600px;
  padding-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* Main Title */
.work-banner .work-overlay h1 {
  position: relative;
  color: #ffffffc0;
  font-size: 10rem;
  text-align: center;
  line-height: 9rem;
  font-weight: 900;
  letter-spacing: 3px;
  padding: 0.5em 1.2em;
  text-transform: uppercase;
  font-family: 'Bebas Neue', sans-serif;
}

/* ======= INTRO SECTION ======= */
.section-work {
  text-align: center;
  padding: 40px 20px;
}

.section-work h2 {
  font-size: 2rem;
  color: var(--main-blue);
  margin-bottom: 15px;
}

.section-work p {
  color: var(--main-blue);
  max-width: 750px;
  margin: 0 auto 30px;
  line-height: 1.6;
  font-size: 1rem;
}

/* ======= BASE CATEGORY SECTION ======= */
.category-section {
  padding: 60px 20px;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}

.category-title {
  color: var(--main-blue);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.category-gallery {
  display: grid;
  gap: 25px;
  justify-items: center;
}

.category-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  background-color: var(--white);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ======= INDIVIDUAL CATEGORY GRID STYLES ======= */

/* BRAND IDENTITY — 4 Columns */
.brand-identity .category-gallery {
  grid-template-columns: repeat(4, 1fr);
}

/* FLYERS / POSTERS — 3 Columns */
.flyers-posters .category-gallery {
  grid-template-columns: repeat(3, 1fr);
}

/* MUSIC COVER ART — 2 Columns */
.music-cover-art .category-gallery {
  grid-template-columns: repeat(2, 1fr);
}

/* WEB DESIGN — 1 Column */
.web-design .category-gallery {
  grid-template-columns: repeat(1, 1fr);
}

/* ======= CATEGORY-SPECIFIC IMAGE STYLES ======= */
.flyers-posters .category-gallery img {
  aspect-ratio: 3 / 4; /* Poster shape */
  object-fit: cover;
}

.web-design .category-gallery img {
  aspect-ratio: 16 / 9; /* Landscape web layout */
  object-fit: cover;
}

/* ======= RESPONSIVE DESIGN ======= */

/* Tablet (≤ 992px) */
@media (max-width: 992px) {
  /* Banner adjustments */
  .work-banner {
    height: 450px;
    padding-bottom: -30px;
  }

  .work-banner .work-overlay h1 {
    font-size: 6rem;
    line-height: 5.5rem;
  }

  .section-work h2 {
    font-size: 1.8rem;
  }

  /* Grid adjustments */
  .brand-identity .category-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .flyers-posters .category-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .music-cover-art .category-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-section {
    padding: 50px 20px;
  }

  .category-title {
    font-size: 1.2rem;
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  /* Banner */
  .work-banner {
    height: 280px;
  }

  .work-banner .work-overlay h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  /* Intro section */
  .section-work {
    padding: 30px 15px;
  }

  .section-work h2 {
    font-size: 1.4rem;
  }

  .section-work p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* Category */
  .category-section {
    padding: 40px 15px;
  }

  .category-title {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .brand-identity .category-gallery,
  .flyers-posters .category-gallery,
  .music-cover-art .category-gallery,
  .web-design .category-gallery {
    grid-template-columns: 1fr;
  }

  .category-gallery {
    gap: 18px;
  }

  .category-gallery img {
    border-radius: 10px;
  }
}

/* ======= LIGHTBOX ======= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
}

.lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox .close:hover {
  color: var(--main-yellow);
}

/* Contact Section */
.contact {
  background-color: var(--main-yellow);
  color: var(--main-green);
  padding: 3px 20px;
  margin-top: 60px;
  margin-bottom: 60px;
  text-align: center;
}

/* ====== CONTACT FORM STYLES ====== */
.contact {
  background-color: var(--main-yellow);
  color: var(--black);
  padding: 140px 20px 50px 20px;
  text-align: center;
  font-family: Montserrat, sans-serif;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5em;
  color: var(--main-green);
  font-weight: 700;
}

.contact p {
  font-size: 1.1rem;
  margin-bottom: 2em;
  color: var(--main-blue);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 0.3em;
  margin-top: 1.2em;
  color: var(--main-green);
  display: block;
}

.contact-form label span {
  color: var(--main-red);
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 2px solid var(--main-green);
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  transition: border-color 0.3s ease;
  resize: vertical;
  width: 100%;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--main-yellow);
  box-shadow: 0 0 8px var(--main-yellow);
}

.contact-form button.btn {
  margin-top: 2em;
  padding: 0.75em 1.5em;
  background-color: var(--main-red);
  width: 150px;
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button.btn:hover {
  background-color: #001c00;
}

/* ======= CONTACT PAGE BANNER ======= */
.contact-banner {
  position: relative;
  background: url("images/2148796015.jpg") center/cover no-repeat;
  height: 600px;
  padding-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.contact-banner .banner-overlay h1 {
  position: relative;
  color: #ffffffc0;
  font-size: 10rem;
  font-weight: 900;
  letter-spacing: 3px;
  padding: 0.5em 1.2em;
  text-transform: uppercase;
  font-family: 'Bebas Neue', sans-serif;
}

/* ======= CONTACT GRID ======= */
.contact {
  background-color: var(--main-yellow);
  color: var(--black);
  padding: 80px 20px;
  font-family: Montserrat, sans-serif;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-left {
  text-align: left;
}

.contact-right {
  text-align: left;
}

.contact-right h2 {
  font-size: 1.8rem;
  color: var(--main-red);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.contact-right .contact-subtext {
  color: var(--main-blue);
  font-size: 1rem;
  margin-bottom: 25px;
}

.contact-info,
.contact-location {
  color: var(--main-green);
  line-height: 1.6;
  font-size: 1rem;
}

.contact-form button.btn {
  margin-top: 2em;
  padding: 0.75em 1.5em;
  background-color: var(--main-red);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button.btn:hover {
  background-color: #001c00;
}

/* ======= RESPONSIVE ======= */
/* ====== TABLET (up to 1024px) ====== */
@media (max-width: 1024px) {
  .contact-banner {
    height: 500px;
  }

  .contact-banner .banner-overlay h1 {
    font-size: 6rem;
    padding: 0.3em 1em;
  }

  .contact {
    padding: 80px 30px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-form {
    max-width: 500px;
  }
}

/* ====== MOBILE (up to 768px) ====== */
@media (max-width: 768px) {
  .contact-banner {
    height: 420px;
  }

  .contact-banner .banner-overlay h1 {
    font-size: 3.2rem;
    line-height: 1.2;
  }

  .contact {
    padding: 60px 20px;
  }

  .contact h2 {
    font-size: 2rem;
  }

  .contact p {
    font-size: 1rem;
  }

  .contact-right h2 {
    font-size: 1.5rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem;
  }

  .contact-form button.btn {
    width: 100%;
    text-align: center;
  }
}

/* ====== SMALL MOBILE (up to 480px) ====== */
@media (max-width: 480px) {
  .contact-banner {
    height: 280px;
  }

  .contact-banner .banner-overlay h1 {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }

  .contact {
    padding: 50px 15px;
  }

  .contact h2 {
    font-size: 1.7rem;
  }

  .contact-grid {
    gap: 40px;
  }
}

/* ====== QUOTE SECTION ====== */
.quote {
  background-color: var(--main-yellow);
  color: var(--black);
  padding: 140px 20px 50px 20px;
  text-align: center;
  font-family: Montserrat, sans-serif;
}

.quote h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5em;
  color: var(--main-green);
  font-weight: 700;
}

.quote p {
  font-size: 1.1rem;
  margin-bottom: 2em;
  color: var(--main-blue);
}

/* ====== QUOTE FORM ====== */
.quote-form {
  max-width: 600px;
  margin: 30px auto;
  margin-bottom: 45px;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.quote-form label {
  font-weight: 600;
  margin-bottom: 0.3em;
  margin-top: 1.2em;
  color: var(--main-green);
  display: block;
}

.quote-form label span {
  color: var(--main-red);
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  padding: 12px 15px;
  border: 2px solid var(--main-green);
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  transition: border-color 0.3s ease;
  resize: vertical;
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  outline: none;
  border-color: var(--main-yellow);
  box-shadow: 0 0 8px var(--main-yellow);
}

/* Submit Button */
.quote-form button.btn {
  margin-top: 2em;
  padding: 0.75em 1.5em;
  background-color: var(--main-red);
  width: 150px;
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.quote-form button.btn:hover {
  background-color: #001c00;
}

/* ======= QUOTE PAGE BANNER ======= */
.quote-banner {
  position: relative;
  background: url("images/quote.jpg") center/cover no-repeat;
  height: 600px;
  padding-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.quote-banner .banner-overlay h1 {
  position: relative;
  color: #ffffffc0;
  font-size: 10rem;
  font-weight: 900;
  text-align: center;
  line-height: 10rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Bebas Neue', sans-serif;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
  .quote-banner {
    height: 500px;
  }

  .quote-banner .banner-overlay h1 {
    font-size: 6rem;
  }
}

@media (max-width: 768px) {
  .quote-banner {
    height: 420px;
  }

  .quote-banner .banner-overlay h1 {
    font-size: 3.2rem;
  }

  .quote {
    padding: 80px 20px;
  }

  .quote-form {
  max-width: 620px;
  }

  .quote-form button.btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .quote-banner {
    height: 280px;
  }

  .quote-form {
  max-width: 300px;
  }

  .quote-banner .banner-overlay h1 {
    font-size: 2.2rem;
    line-height: 2rem;
  }

  .quote {
    padding: 60px 15px;
  }
}


/* ===== Terms and Conditions Page Banner ===== */
.terms-banner {
  position: relative;
  width: 100%;
  height: 60vh;
  background-color: var(--main-yellow);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Centered Banner Text */
.terms-banner .banner-content {
  text-align: center;
  color: var(--main-green);
  z-index: 1;
  padding: 0 1rem;
}

.terms-banner .banner-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-top: 85px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.terms-banner .banner-content h3 {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 20px;
}

.terms-banner .banner-content p {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.9;
  max-width: 900px;
  margin: 0 auto;
}

/* Responsive Banner */
@media (max-width: 768px) {
  .terms-banner {
    height: 40vh;
  }

  .terms-banner .banner-content h1 {
    font-size: 2rem;
  }

  .terms-banner .banner-content h3 {
    font-size: 1rem;
  }

  .terms-banner .banner-content p {
    font-size: 1rem;
  }
}

/* ===== Terms & Conditions Content ===== */
.terms-container {
  padding: 80px 20px;
  max-width: 900px;
  line-height: 1.8;
  margin: 0 auto;
}

.terms-container h1 {
  color: var(--main-blue);
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.terms-container h2 {
  color: var(--main-blue);
  margin-top: 40px;
  font-size: 1.4rem;
}

.terms-container p {
  color: var(--black);
  margin-top: 10px;
}

/* ======= PRIVACY POLICY PAGE BANNER ======= */
.privacy-banner {
  position: relative;
  background: url("images/2150038843.jpg") center/cover no-repeat;
  height: 600px;
  padding-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.privacy-effective-date {
  font-size: 0.9rem;
  color: var(--main-blue);
  margin-bottom: 25px;
  font-style: italic;
}

/* Banner Title */
.privacy-banner .privacy-overlay h1 {
  position: relative;
  color: #ffffffc0;
  font-size: 10rem;
  text-align: center;
  line-height: 9rem;
  font-weight: 900;
  letter-spacing: 3px;
  padding: 0.5em 1.2em;
  text-transform: uppercase;
  font-family: 'Bebas Neue', sans-serif;
}

/* ======= PRIVACY POLICY CONTENT ======= */
.privacy-section {
  text-align: left;
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.privacy-section h2 {
  font-size: 2rem;
  color: var(--main-blue);
  margin-bottom: 15px;
  font-weight: 700;
}

.privacy-section p {
  color: var(--main-blue);
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 20px;
}

.privacy-section ul {
  color: var(--main-blue);
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 20px;
}

.privacy-section li {
  margin-bottom: 10px;
}

/* ======= RESPONSIVE DESIGN ======= */

/* Tablet (≤ 992px) */
@media (max-width: 992px) {
  .privacy-banner {
    height: 450px;
  }

  .privacy-banner .privacy-overlay h1 {
    font-size: 6rem;
    line-height: 5.5rem;
  }

  .privacy-section {
    padding: 50px 15px;
    max-width: 700px;
  }

  .privacy-section h2 {
    font-size: 1.8rem;
  }

  .privacy-section p,
  .privacy-section li {
    font-size: 0.95rem;
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  .privacy-banner {
    height: 280px;
  }

  .privacy-banner .privacy-overlay h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .privacy-section {
    padding: 30px 15px;
    max-width: 350px;
  }

  .privacy-section h2 {
    font-size: 1.4rem;
  }

  .privacy-section p,
  .privacy-section li {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

/* ======= TERMS & CONDITIONS PAGE BANNER ======= */
.terms-banner {
  position: relative;
  background: url("images/2736.jpg") center/cover no-repeat;
  height: 600px;
  padding-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.terms-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* Banner Title */
.terms-banner .terms-overlay h1 {
  position: relative;
  color: #ffffffc0;
  font-size: 10rem;
  text-align: center;
  line-height: 9rem;
  font-weight: 900;
  letter-spacing: 3px;
  padding: 0.5em 1.2em;
  text-transform: uppercase;
  font-family: 'Bebas Neue', sans-serif;
}

/* Effective Date */
.terms-effective-date {
  font-size: 0.9rem;
  color: var(--main-blue);
  margin-bottom: 25px;
  font-style: italic;
}

/* ======= TERMS & CONDITIONS CONTENT ======= */
.terms-section {
  text-align: left;
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.terms-section h2 {
  font-size: 2rem;
  color: var(--main-blue);
  margin-bottom: 15px;
  font-weight: 700;
}

.terms-section p {
  color: var(--main-blue);
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 20px;
}

.terms-section ul {
  color: var(--main-blue);
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 20px;
}

.terms-section li {
  margin-bottom: 10px;
}

/* ======= RESPONSIVE DESIGN ======= */

/* Tablet (≤ 992px) */
@media (max-width: 992px) {
  .terms-banner {
    height: 450px;
  }

  .terms-banner .terms-overlay h1 {
    font-size: 6rem;
    line-height: 5.5rem;
  }

  .terms-section {
    padding: 50px 15px;
    max-width: 700px;
  }

  .terms-section h2 {
    font-size: 1.8rem;
  }

  .terms-section p,
  .terms-section li {
    font-size: 0.95rem;
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  .terms-banner {
    height: 280px;
  }

  .terms-banner .terms-overlay h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .terms-section {
    padding: 30px 15px;
    max-width: 350px;
  }

  .terms-section h2 {
    font-size: 1.4rem;
  }

  .terms-section p,
  .terms-section li {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

/* ======= FAQ PAGE BANNER ======= */
.faq-banner {
  position: relative;
  background: url("images/120977.jpg") center/cover no-repeat;
  height: 600px;
  padding-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* Banner Title */
.faq-banner .faq-overlay h1 {
  position: relative;
  color: #ffffffc0;
  font-size: 10rem;
  text-align: center;
  line-height: 9rem;
  font-weight: 900;
  letter-spacing: 3px;
  padding: 0.5em 1.2em;
  text-transform: uppercase;
  font-family: 'Bebas Neue', sans-serif;
}

/* ======= FAQ SECTION ======= */
.faq-section {
  text-align: left;
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-section h2 {
  font-size: 2rem;
  color: var(--main-blue);
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}

.faq-section p {
  color: var(--main-blue);
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 20px;
}

/* ======= FAQ ITEM STYLES ======= */
.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px 0;
}

.faq-question {
  color: var(--main-blue);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--main-red);
}

.faq-answer {
  color: var(--main-blue);
  line-height: 1.6;
  font-size: 1rem;
  display: block;
}

.req-link {
  color: var(--main-red);
  text-decoration: underline;
  cursor: pointer;
}

.req-link:hover {
  color: var(--main-green);
}

/* ======= RESPONSIVE DESIGN ======= */

/* Tablet (≤ 992px) */
@media (max-width: 992px) {
  .faq-banner {
    height: 450px;
  }

  .faq-banner .faq-overlay h1 {
    font-size: 6rem;
    line-height: 5.5rem;
  }

  .faq-section {
    padding: 50px 15px;
    max-width: 700px;
  }

  .faq-question {
    font-size: 1.1rem;
  }

  .faq-answer {
    font-size: 0.95rem;
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  .faq-banner {
    height: 280px;
  }

  .faq-banner .faq-overlay h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .faq-section {
    padding: 30px 15px;
    max-width: 350px;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

/* ===== Footer ===== */
.site-footer {
  background-color: var(--black);
  color: var(--white);
  padding: 60px 20px 30px;
  font-family: Arial, sans-serif;
  font-weight: 300;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 40px;
}

.footer-left {
  flex: 1 1 300px;
  max-width: 600px;
}

.footer-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 0.9em;
  margin-bottom: 20px;
  letter-spacing: -0.05em;
}

.reg {
  font-size: 1rem;
  vertical-align: super;
  margin-left: 4px;
  font-weight: 400;
}

.footer-email {
  font-size: 1.5rem;
  font-weight: 350;
  margin-bottom: 10px;
}

.footer-desc {
  font-size: 0.8rem;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.btn-footer {
  display: inline-flex;
  align-items: center;
  background-color: var(--white);
  color: var(--black);
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.btn-footer:hover {
  background-color: var(--main-yellow);
  color: var(--black);
}

.arrow {
  background-color: var(--black);
  color: var(--white);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  margin-right: 12px;
  font-weight: 700;
  font-size: 1.2rem;
}

/* Footer social icons as squares */
.footer-social {
  margin-top: 18px;   
  display: flex;
  justify-content: flex-start; 
  gap: 12px;                
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;              
  height: 30px;             
  background-color: var(--white); 
  color: var(--black);      
  border-radius: 6px;         
  font-size: 20px;             
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background-color: var(--main-yellow);
  color: var(--black);
}

.footer-right {
  flex: 0 1 250px;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 15px 0;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-nav li a {
  color: var(--white);
  text-decoration: none;
  flex-grow: 1;
  margin-left: 10px;
  transition: color 0.3s ease;
}

.footer-nav li a:hover {
  color: var(--main-yellow);
}

.num {
  min-width: 50px;
  opacity: 0.5;
  font-weight: 400;
  font-size: 0.9rem;
}

/* Footer Bottom Bar */

/* Footer Payment Icons */
.footer-payments {
  display: flex;            
  justify-content: center;   
  align-items: center;     
  gap: 10px;                
  margin-bottom: 10px;      
}

.footer-payments .payment-icon {
  width: 30px;             
  height: 30px;           
  object-fit: contain;     
  opacity: 0.7;             
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.footer-payments .payment-icon:hover {
  transform: scale(1.2);     
  opacity: 1;               
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

.back-to-top {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.back-to-top:hover {
  color: var(--main-yellow);
}

html {
  scroll-behavior: smooth;
}

.footer-bottom .footer-terms {
  color: var(--white);
  text-decoration: none;
  margin-left: 5px;
  transition: color 0.3s ease;
}

.footer-bottom .footer-terms:hover {
  color: var(--main-yellow);
  text-decoration: none;
}

.footer-bottom .footer-privacy {
  color: var(--white);
  text-decoration: none;
  margin-left: 5px;
  transition: color 0.3s ease;
}

.footer-bottom .footer-privacy:hover {
  color: var(--main-yellow);
  text-decoration: none;
}

.footer-bottom .footer-faqs {
  color: var(--white);
  text-decoration: none;
  margin-left: 5px;
  transition: color 0.3s ease;
}

.footer-bottom .footer-faqs:hover {
  color: var(--main-yellow);
  text-decoration: none;
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }

  .footer-right {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 5000;
  transition: all 0.3s ease;
}

.whatsapp-text {
  background: #fff;
  color: #000;
  padding: 6px 12px;
  border-radius: 5px;
  margin-right: 8px;
  font-size: 0.9rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.whatsapp-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

/* Hover effect (Desktop) */
.whatsapp-float:hover .whatsapp-text {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-float:hover .whatsapp-icon {
  transform: scale(1.05);
}

/* Adjust spacing for smaller screens */
@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-icon {
    width: 45px;
    height: 45px;
  }

  .whatsapp-text {
    font-size: 0.8rem;
  }
}