*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --olive: #F2E6D8;
      --olive-dark: #606840;  
      --white: #606840;
      --white-70: #606840;
      --white-30: rgb(255, 209, 209);
      --white-10: rgba(0, 0, 0, 0.1);
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: #ffffff;
      padding-top: 74px;
    }
    /* ===== NAVBAR ===== */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      height: 80px;
      background: var(--olive);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 clamp(20px, 5vw, 70px);
      transition: box-shadow 0.3s ease;
      
    }
/* nav links ko right shift karne ke liye */
.nav-center {
  margin-left: auto;
  margin-right:70px;
}
    /* Grain texture */
    .navbar::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
      pointer-events: none;
    }

    /* Bottom glow line */
    .navbar::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(255,255,255,0.25), transparent);
    }

    .navbar.scrolled {
      box-shadow: 0 4px 30px rgba(0,0,0,0.15);
    }

    /* ===== LOGO ===== */
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      position: relative;
      z-index: 1;
      flex-shrink: 0;
    }

   .nav-logo-img {
  width: 70px;
  height: auto;
  display: block;
}
    .nav-logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }

    .nav-logo-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(22px, 2.8vw, 32px);
      font-weight: 600;
      letter-spacing: 4px;
      color: var(--white);
      line-height: 1;
    }

    .nav-logo-sub {
      font-size: 7px;
      letter-spacing: 4.5px;
      text-transform: uppercase;
      color: var(--white-70);
      font-weight: 300;
      margin-top: 3px;
    }

    /* ===== NAV LINKS ===== */
    .nav-center {
      display: flex;
      align-items: center;
      gap: clamp(23px, 2.5vw, 38px);
      list-style: none;
      position: relative;
      z-index: 1;
    }

    .nav-center li a {
      text-decoration: none;
      color: var(--white-70);
      font-size: clamp(18px, 1.3vw, 15px);
      font-weight: 500;
      letter-spacing: 0.3px;
      position: relative;
      padding-bottom: 5px;
      transition: color 0.3s ease;
    }

    /* Underline slide-in effect */
    .nav-center li a::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0;
      height: 1px;
      background: var(--white);
      transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-center li a:hover,
    .nav-center li a.active {
      color: var(--white);
    }

    .nav-center li a:hover::after,
    .nav-center li a.active::after {
      width: 100%;
    }
    

    /* ===== SOCIAL ICONS ===== */
    .nav-right {
      display: flex;
      align-items: center;
      gap: 60px;
      position: relative;
      z-index: 1;
      flex-shrink: 0;
    }

    .nav-divider {
      width: 1px;
      height: 18px;
      background: var(--white-30);
    }

    .nav-social {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .nav-social a {
      color: var(--white-70);
      text-decoration: none;
      display: flex;
      align-items: center;
      transition: color 0.3s, transform 0.3s;
    }

    .nav-social a:hover {
      color: #404040;
      transform: translateY(-2px);
    }

    .nav-social svg {
      width: 25px;
      height: 22px;
    }

    /* Contact Us Button */
    .nav-contact-btn {
      padding: 11px 52px;
      background: #606840;
      color: #F2E6D8;
      text-decoration: none;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 500;
      letter-spacing: 0.3px;
      border-radius: 50px;
      border: 2px solid #606840;
      transition: background 0.3s, color 0.3s, transform 0.2s;
      white-space: nowrap;
    }

    .nav-contact-btn:hover {
      background: transparent;
      color: #606840;
      transform: translateY(-1px);
    }

    /* ===== HAMBURGER ===== */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
      position: relative;
      z-index: 1001;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 1.5px;
      background: var(--white);
      transition: all 0.3s ease;
      transform-origin: center;
    }

    .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: #F2E6D8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  z-index: 2000;
}

    .mobile-menu.open {
      max-height: 500px;
    }

    .mobile-menu ul li a {
      display: block;
      padding: 13px clamp(20px, 6vw, 50px);
      color: var(--white-70);
      text-decoration: none;
      font-size: 12px;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-weight: 300;
      border-bottom: 1px solid var(--white-10);
      transition: color 0.3s, padding-left 0.3s;
      }

      .mobile-menu ul li a:hover,
      .mobile-menu ul li a.active {
        color: var(--white);
        padding-left: calc(clamp(20px, 6vw, 50px) + 10px);
      }

      .mobile-social {
        display: flex;
        gap: 20px;
        padding: 18px clamp(20px, 6vw, 50px);
      }

    .mobile-social a {
      color: var(--white-70);
      transition: color 0.3s;
    }

    .mobile-social a:hover { color: var(--white); }
    .mobile-social svg { width: 20px; height: 20px; }
.mobile-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

/* icons */
.mobile-social a {
  color: #606840;
}

.mobile-contact {
  padding: 15px 25px 25px;
  width: 100%;
}

.mobile-contact-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 0;
  background: #606840;
  color: #F2E6D8 !important;
  font-weight: 500;
  border-radius: 40px;
  font-size: 14px;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s;
}

.mobile-contact-btn:hover {
  background: #798252;
  transform: translateY(-1px);
}
    /* ===== RESPONSIVE ===== */
    @media (max-width: 860px) {
      .nav-center,
      .nav-right { display: none; }
      .hamburger { display: flex; }
    }

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 80px);
  background: #F2E6D8;
  overflow: hidden;
}

/* ===== LEFT - IMAGE ===== */
.hero-left {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: calc(100vh - 80px);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 8s ease;
}

.hero-left:hover .hero-img {
  transform: scale(1.03);
}

/* ===== RIGHT - CONTENT ===== */
.hero-right {
  background: #F2E6D8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px) clamp(30px, 5vw, 70px);
  text-align: center;
}

 
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.9vw, 58px);
  font-weight: 400;
  line-height: 1.18;
  color: #798252;
  margin-bottom: clamp(20px, 3vw, 32px);
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 1s ease forwards 0.3s;
  max-width: 560px;
}

.highlight {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: #606840;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10' preserveAspectRatio='none'%3E%3Cpath d='M2,7 C40,1 80,9 120,4 C155,0 175,8 198,4' stroke='%23606840' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0.75;
}

/* Subtitle */
.hero-sub {
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 300;
  color: rgba(121, 130, 82, 0.75);
  line-height: 1.75;
  margin-bottom: clamp(30px, 4vw, 48px);
  max-width: 500px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 1s ease forwards 0.55s;
}


/* Buttons */
.hero-btns {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 1s ease forwards 0.75s;
}

.hero-btn {
  padding: 14px 32px;
  background: #798252;
  color: #F2E6D8;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 40px;
  border: 2px solid #798252;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.hero-btn:hover {
  background: transparent;
  color: #798252;
  transform: translateY(-2px);
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-btn.primary {
  background: #798252;
  color: #fff;
}

.hero-btn.secondary {
  background: transparent;
  color: #798252;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 55vh auto;
    min-height: auto;
  }

  .hero-left {
    min-height: 55vh;
  }

  .hero-right {
    padding: 50px clamp(24px, 5vw, 50px) 60px;
  }

  .hero-title {
    font-size: clamp(32px, 7vw, 52px);
  }

  /* Mobile menu contact button width fix */
  .mobile-contact-btn {
    width: 100%;
  }

  .mobile-contact {
    padding: 15px 25px 25px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(28px, 8vw, 40px);
  }

  .hero-btn {
    padding: 12px 24px;
    font-size: 10px;
  }

  /* Fix hero subtitle line breaks on small screens */
  .hero-sub br {
    display: none;
  }

  .hero-sub {
    font-size: 13px;
  }

  /* Logo size on very small screens */
  .nav-logo-img {
    width: 55px;
  }

  /* Navbar padding on small screens */
  .navbar {
    padding: 0 clamp(15px, 4vw, 30px);
  }

  body {
    padding-top: 70px;
  }
}


/* Touch devices - remove hover scale on hero image */
@media (hover: none) {
  .hero-left:hover .hero-img {
    transform: none;
  }
}
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: #F2E6D8;
    }

    /* ===== ABOUT SECTION ===== */
    .about {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 100vh;
      background: #F2E6D8;
      overflow: hidden;
      padding: clamp(60px, 8vw, 110px) clamp(30px, 6vw, 90px);
      gap: clamp(40px, 6vw, 90px);
      align-items: center;
    }

    /* ===== LEFT SIDE – Image blob ===== */
    .about-left {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Big blob background */
    .blob-wrap {
      position: relative;
      width: 100%;
      max-width: 460px;
      aspect-ratio: 1 / 1.05;
    }

    .blob-bg {
      position: absolute;
      inset: 0;
      background: #363a2790;
      border-radius: 62% 38% 55% 45% / 48% 52% 48% 52%;
      opacity: 0.18;
      animation: morphBlob 8s ease-in-out infinite alternate;
    }

    @keyframes morphBlob {
      0%   { border-radius: 62% 38% 55% 45% / 48% 52% 48% 52%; }
      50%  { border-radius: 45% 55% 40% 60% / 55% 45% 55% 45%; }
      100% { border-radius: 60% 40% 62% 38% / 42% 58% 42% 58%; }
    }

    /* Decorative ring */
    .blob-ring {
      position: absolute;
      width: 88%;
      height: 88%;
      top: 6%;
      left: 6%;
      border: 1.5px dashed rgba(121,130,82,0.35);
      border-radius: 60% 40% 58% 42% / 50% 50% 50% 50%;
      animation: spinRing 20s linear infinite;
    }

    @keyframes spinRing {
      to { transform: rotate(360deg); }
    }

    /* Main image circle */
    .about-img-wrap {
      position: absolute;
      width: 78%;
      height: 78%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      border-radius: 55% 45% 60% 40% / 50% 55% 45% 50%;
      overflow: hidden;
      border: 3px solid rgba(121,130,82,0.25);
    }

    .about-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
      transition: transform 8s ease;
    }

    .about-img-wrap:hover .about-img {
      transform: scale(1.04);
    }

    /* Years badge */
    .years-badge {
      position: absolute;
      top: 8%;
      left: -4%;
      width: 105px;
      height: 105px;
      background: #F2E6D8;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 32px rgba(96,104,64,0.18);
      border: 2px solid rgba(121,130,82,0.2);
      z-index: 10;
      opacity: 0;
      transform: scale(0.7);
      transition: opacity 0.7s ease 0.6s, transform 0.7s ease 0.6s;
    }

    .about-show .years-badge {
      opacity: 1;
      transform: scale(1);
    }

    .years-badge .num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 32px;
      font-weight: 600;
      color: #798252;
      line-height: 1;
    }

    .years-badge .label {
      font-size: 9px;
      font-weight: 400;
      color: #798252;
      letter-spacing: 1.2px;
      text-align: center;
      text-transform: uppercase;
      margin-top: 3px;
      max-width: 68px;
      line-height: 1.3;
    }

    /* Dashed connector line */
    .connector {
      position: absolute;
      top: 50%;
      right: -5%;
      width: 60px;
      height: 1px;
      border-top: 1.5px dashed rgba(121,130,82,0.4);
      transform: translateY(-50%);
      z-index: 5;
    }

    .connector::after {
      content: '';
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 7px;
      height: 7px;
      background: #798252;
      border-radius: 50%;
    }

    /* ===== RIGHT SIDE – Content ===== */
    .about-right {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .about-tag {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: #798252;
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .about-show .about-tag {
      opacity: 1;
      transform: translateY(0);
    }

    .about-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(34px, 4vw, 56px);
      font-weight: 400;
      line-height: 1.15;
      color: #606840;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.8s ease 0.1s, transform 0.8s ease 0.1s;
    }

    .about-show .about-title {
      opacity: 1;
      transform: translateY(0);
    }
    .highlight-text{
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
}
.highlight-text{
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7em;
  font-weight: 400;
  letter-spacing: 0;
  vertical-align: middle;
}

.highlight-text{
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7em;
  font-weight: 400;
  letter-spacing: 0;
  vertical-align: middle;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum";
}


    .about-body {
      font-size: clamp(13px, 1.2vw, 15px);
      font-weight: 300;
      color: rgba(96,104,64,0.75);
      line-height: 1.85;
      max-width: 440px;
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
    }

    .about-show .about-body {
      opacity: 1;
      transform: translateY(0);
    }
    /* ===== ABOUT SECTION DESKTOP FIX ===== */

.about-right{
  justify-content: center;
}

.reviews-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: fit-content;   /* full width remove */
  padding: 16px 42px;

  background: #798252;
  color: #F2E6D8;
  text-decoration: none;

  border-radius: 50px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;

  transition: 0.3s ease;
}

.reviews-btn svg{
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.reviews-btn:hover{
  transform: translateY(-2px);
}

/* Desktop spacing fix */
@media (min-width: 861px){

  .about{
    min-height: auto;
    padding: 90px 80px;
  }

  .about-right{
    align-items: flex-start;
    text-align: left;
  }

  .about-body{
    max-width: 520px;
  }
}


    /* Divider */
    .about-divider {
      width: 48px;
      height: 1px;
      background: linear-gradient(to right, #798252, transparent);
      opacity: 0;
      transition: opacity 0.8s ease 0.3s;
    }

    .about-show .about-divider {
      opacity: 1;
    }

    /* Services list */
    .about-services {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .service-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      opacity: 0;
      transform: translateX(-16px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .about-show .service-item:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.35s; }
    .about-show .service-item:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.48s; }
    .about-show .service-item:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.61s; }

    .service-icon {
      width: 42px;
      height: 42px;
      background: rgba(121,130,82,0.12);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border: 1px solid rgba(121,130,82,0.2);
      transition: background 0.3s, transform 0.3s;
    }

    .service-item:hover .service-icon {
      background: #798252;
      transform: translateY(-2px);
    }

    .service-item:hover .service-icon svg {
      stroke: #F2E6D8;
      color: #F2E6D8;
    }

    .service-icon svg {
      width: 20px;
      height: 20px;
      stroke: #798252;
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: stroke 0.3s, color 0.3s;
    }

    .service-text h4 {
      font-size: 15px;
      font-weight: 500;
      color: #606840;
      margin-bottom: 4px;
      letter-spacing: 0.2px;
    }

    .service-text p {
      font-size: 13px;
      font-weight: 300;
      color: rgba(96,104,64,0.65);
      line-height: 1.65;
    }

    /* Stats row */
    .about-stats {
      display: flex;
      gap: clamp(24px, 4vw, 48px);
      padding-top: 12px;
      border-top: 1px solid rgba(121,130,82,0.18);
      opacity: 0;
      transform: translateY(14px);
      transition: opacity 0.8s ease 0.65s, transform 0.8s ease 0.65s;
    }

    .about-show .about-stats {
      opacity: 1;
      transform: translateY(0);
    }

    .stat-item {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(26px, 3vw, 38px);
      font-weight: 600;
      color: #798252;
      line-height: 1;
    }

    .stat-label {
      font-size: 11px;
      font-weight: 400;
      color: rgba(96,104,64,0.6);
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    /* CTA */
    .about-cta {
      opacity: 0;
      transform: translateY(14px);
      transition: opacity 0.8s ease 0.75s, transform 0.8s ease 0.75s;
    }

    .about-show .about-cta {
      opacity: 1;
      transform: translateY(0);
    }

    .about-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 36px;
      background: #798252;
      color: #F2E6D8;
      text-decoration: none;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      border-radius: 50px;
      border: 2px solid #798252;
      transition: background 0.3s, color 0.3s, transform 0.3s, gap 0.3s;
    }

    .about-btn:hover {
      background: transparent;
      color: #798252;
      transform: translateY(-2px);
      gap: 14px;
    }

    .about-btn svg {
      width: 14px;
      height: 14px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform 0.3s;
    }
    .about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(121,130,82,0.15);
  border: 1px solid rgba(121,130,82,0.15);
  margin-top: 48px;
}

.about-val-item {
  background: #F2E6D8;
  padding: 24px 22px;
  transition: all 0.3s ease;
}

.about-val-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: rgba(121,130,82,0.45);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.about-val-title {
  font-size: 13px;
  font-weight: 500;
  color: #606840;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.about-val-desc {
  font-size: 12px;
  font-weight: 300;
  color: rgba(96,104,64,0.65);
  line-height: 1.6;
}

/* Hover Effect */
.about-val-item:hover {
  background: #606840;
  transform: translateY(-5px);
}

.about-val-item:hover .about-val-num,
.about-val-item:hover .about-val-title,
.about-val-item:hover .about-val-desc {
  color: #F2E6D8;
}

    /* ===== RESPONSIVE ===== */
    @media (max-width: 860px) {
      .about {
        grid-template-columns: 1fr;
        padding: clamp(50px, 8vw, 80px) clamp(24px, 5vw, 48px);
        gap: 50px;
      }

      .blob-wrap {
        max-width: 340px;
        margin: 0 auto;
      }

      .connector { display: none; }

      .about-right {
        align-items: center;
        text-align: center;
      }

      .about-body { margin: 0 auto; }

      .about-divider { margin: 0 auto; }

      .about-stats { justify-content: center; }
    }

    @media (max-width: 480px) {
      .years-badge { width: 85px; height: 85px; left: -2%; top: 4%; }
      .years-badge .num { font-size: 26px; }
      .about-stats { gap: 20px; flex-wrap: wrap; }
    }
    
    /* =============================================
   SERVICES SECTION
   ============================================= */

.services {
  margin-top: -10px;
  background: #F2E6D8;
}


/* Header */
.services-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.services-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #798252;
  display: block;
  margin-bottom: 14px;
}

.services-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 400;
  color: #606840;
  line-height: 1.15;
}

.services-title em {
  font-style: italic;
  color: #798252;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 26px);
  max-width: 1200px;
  margin: 0 auto;
}

/* Card – default beige/olive */
.s-card {
  position: relative;
  background: #EDE0CF;
  border: 1.5px solid rgba(121, 130, 82, 0.22);
  border-radius: 18px;
  padding: clamp(28px, 3vw, 44px) clamp(24px, 2.5vw, 36px);
  cursor: pointer;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.4s ease,
    box-shadow 0.35s ease;
}

.s-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Dot */
.s-card-dot {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(121, 130, 82, 0.35);
  transition: background 0.4s ease, transform 0.35s ease;
}

/* Icon box */
.s-card-icon {
  width: 46px;
  height: 46px;
  background: rgba(121, 130, 82, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid rgba(121, 130, 82, 0.2);
  transition: background 0.4s ease, border-color 0.4s ease;
}

.s-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: #798252;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.4s ease;
}

/* Title */
.s-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 400;
  color: #606840;
  line-height: 1.2;
  margin-bottom: 12px;
  transition: color 0.4s ease;
}

/* Body */
.s-card-body {
  font-size: clamp(12px, 1.05vw, 14px);
  font-weight: 300;
  color: rgba(96, 104, 64, 0.7);
  line-height: 1.78;
  transition: color 0.4s ease;
}

/* Arrow */
.s-card-arrow {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(96, 104, 64, 0.45);
  transition: color 0.4s ease, gap 0.35s ease;
}

.s-card-arrow svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.35s ease;
}

/* ===== HOVER / ACTIVE = dark green ===== */
.s-card:hover,
.s-card.is-active {
  background: #364020;
  border-color: #364020;
  box-shadow: 0 22px 55px rgba(54, 64, 32, 0.28);
  transform: translateY(-6px);
}

.s-card:hover .s-card-dot,
.s-card.is-active .s-card-dot {
  background: rgba(242, 230, 216, 0.55);
  transform: scale(1.35);
}

.s-card:hover .s-card-icon,
.s-card.is-active .s-card-icon {
  background: rgba(242, 230, 216, 0.1);
  border-color: rgba(242, 230, 216, 0.18);
}

.s-card:hover .s-card-icon svg,
.s-card.is-active .s-card-icon svg {
  stroke: #F2E6D8;
}

.s-card:hover .s-card-title,
.s-card.is-active .s-card-title {
  color: #F2E6D8;
}

.s-card:hover .s-card-body,
.s-card.is-active .s-card-body {
  color: rgba(242, 230, 216, 0.62);
}

.s-card:hover .s-card-arrow,
.s-card.is-active .s-card-arrow {
  color: rgba(242, 230, 216, 0.55);
  gap: 13px;
}

.s-card:hover .s-card-arrow svg,
.s-card.is-active .s-card-arrow svg {
  transform: translateX(4px);
}
/* =============================================
   SIGNATURE SERVICES SECTION
   ============================================= */
.sig-section {
  background: #EDE0CF;
  padding: clamp(70px, 9vw, 110px) clamp(28px, 6vw, 90px);
}

.sig-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.sig-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #798252;
  margin-bottom: 14px;
}

.sig-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 400;
  color: #606840;
  line-height: 1.15;
  margin-bottom: 14px;
}

.sig-title em { font-style: italic; color: #798252; }

.sig-desc {
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 300;
  color: rgba(96,104,64,0.65);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Grid */
.sig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 24px);
  max-width: 1200px;
  margin: 0 auto;
}

/* Card */
.sig-card {
  background: #F2E6D8;
  border: 1.5px solid rgba(121,130,82,0.18);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.sig-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(96,104,64,0.12);
}

.sig-card-dark {
  background: #364020;
  border-color: #364020;
}

.sig-card-inner {
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.sig-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(121,130,82,0.15);
  line-height: 1;
  margin-bottom: -8px;
}

.sig-card-dark .sig-num { color: rgba(242,230,216,0.1); }

.sig-badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(121,130,82,0.12);
  border: 1px solid rgba(121,130,82,0.2);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #798252;
  align-self: flex-start;
}

.sig-badge-light {
  background: rgba(242,230,216,0.1);
  border-color: rgba(242,230,216,0.2);
  color: rgba(242,230,216,0.7);
}

.sig-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  color: #606840;
  line-height: 1.2;
}

.sig-card-dark .sig-card-title { color: #F2E6D8; }

.sig-card-body {
  font-size: 13px;
  font-weight: 300;
  color: rgba(96,104,64,0.68);
  line-height: 1.78;
}

.sig-card-dark .sig-card-body { color: rgba(242,230,216,0.58); }

/* Includes list */
.sig-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
  border-top: 1px solid rgba(121,130,82,0.12);
  flex: 1;
}

.sig-card-dark .sig-includes { border-color: rgba(242,230,216,0.1); }

.sig-includes li {
  font-size: 12px;
  font-weight: 300;
  color: rgba(96,104,64,0.65);
  padding-left: 16px;
  position: relative;
}

.sig-includes li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #798252;
  font-size: 11px;
}

.sig-card-dark .sig-includes li { color: rgba(242,230,216,0.5); }
.sig-card-dark .sig-includes li::before { color: rgba(242,230,216,0.4); }

/* Button */
.sig-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #798252;
  color: #F2E6D8;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid #798252;
  align-self: flex-start;
  margin-top: 8px;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.sig-btn:hover { background: transparent; color: #798252; transform: translateY(-2px); }

.sig-btn-light {
  background: rgba(242,230,216,0.15);
  color: #F2E6D8;
  border-color: rgba(242,230,216,0.3);
}

.sig-btn-light:hover {
  background: #F2E6D8;
  color: #364020;
  border-color: #F2E6D8;
}

/* =============================================
   DIGITAL GROWTH AUDIT SECTION
   ============================================= */
.audit-section {
  background: #F2E6D8;
  padding: clamp(70px, 9vw, 110px) clamp(28px, 6vw, 90px);
}

.audit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 90px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.audit-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #798252;
  display: block;
  margin-bottom: 16px;
}

.audit-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  color: #606840;
  line-height: 1.12;
  margin-bottom: 18px;
}

.audit-title em { font-style: italic; color: #798252; }

.audit-body {
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 300;
  color: rgba(96,104,64,0.65);
  line-height: 1.85;
  margin-bottom: 28px;
}

/* Checklist */
.audit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.audit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(96,104,64,0.75);
}

.audit-check {
  width: 22px;
  height: 22px;
  background: #364020;
  color: #F2E6D8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.audit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 38px;
  background: #364020;
  color: #F2E6D8;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid #364020;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.audit-btn:hover {
  background: transparent;
  color: #364020;
  transform: translateY(-2px);
}

/* Right — deliverables card */
.audit-card {
  background: #364020;
  border-radius: 20px;
  padding: clamp(28px, 3.5vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.audit-card-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(242,230,216,0.4);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(242,230,216,0.1);
}

.audit-deliverable {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ad-icon {
  width: 40px;
  height: 40px;
  background: rgba(242,230,216,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(242,230,216,0.12);
}

.ad-icon svg { width: 18px; height: 18px; stroke: rgba(242,230,216,0.65); }

.audit-deliverable h4 {
  font-size: 14px;
  font-weight: 500;
  color: #F2E6D8;
  margin-bottom: 4px;
}

.audit-deliverable p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(242,230,216,0.45);
  line-height: 1.6;
}

.audit-card-btn {
  display: block;
  text-align: center;
  padding: 14px;
  background: rgba(242,230,216,0.1);
  color: rgba(242,230,216,0.7);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  border-radius: 12px;
  border: 1px solid rgba(242,230,216,0.15);
  margin-top: 4px;
  transition: background 0.3s, color 0.3s;
}

.audit-card-btn:hover {
  background: #F2E6D8;
  color: #364020;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .sig-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
.audit-inner { 
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .sig-card-inner { padding: 24px 20px; }
  .audit-card { padding: 24px 20px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .s-card:hover {
    transform: translateY(-3px);
  }
}
/* =============================================
   CONTACT PAGE – contact.css
   ============================================= */

/* Active nav button on contact page */
.active-btn {
  background: transparent !important;
  color: #606840 !important;
  border: 2px solid #606840 !important;
}

/* ===== HERO BANNER ===== */
.contact-hero {
  position: relative;
  height: 360px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.45);
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(54, 64, 32, 0.55) 0%,
    rgba(96, 104, 64, 0.4) 60%,
    rgba(242, 230, 216, 0.15) 100%
  );
  z-index: 1;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-hero-sub {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(242, 230, 216, 0.65);
  margin-bottom: 12px;
}

.contact-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 400;
  color: #F2E6D8;
  line-height: 1;
  letter-spacing: 2px;
}

.contact-hero-tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(242, 230, 216, 0.55);
  letter-spacing: 1px;
  margin-top: 12px;
}

/* ===== CONTACT BODY – TWO COLUMNS ===== */
/* .contact-body {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  background: #F2E6D8;
  min-height: 70vh;
} */

/* ===== LEFT – INFO PANEL ===== 
.contact-info {
  background: #364020;
  padding: clamp(48px, 6vw, 80px) clamp(32px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-info-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(242, 230, 216, 0.45);
}

.contact-info-value {
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 300;
  color: #F2E6D8;
  text-decoration: none;
  line-height: 1.65;
  transition: color 0.3s;
}

.contact-info-value:hover {
  color: rgba(242, 230, 216, 0.7);
}

/* Social icons in info panel *
.contact-socials {
  display: flex;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(242, 230, 216, 0.12);
}

.contact-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(242, 230, 216, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(242, 230, 216, 0.6);
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.contact-socials a:hover {
  background: rgba(242, 230, 216, 0.1);
  color: #F2E6D8;
  border-color: rgba(242, 230, 216, 0.4);
}

.contact-socials svg {
  width: 16px;
  height: 16px;
}

/* ===== RIGHT – FORM PANEL ===== */
.contact-form-wrap {
  padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 72px);
  background: #F2E6D8;
}

.contact-form-header {
  margin-bottom: 40px;
}

.contact-form-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #798252;
  margin-bottom: 10px;
}

.contact-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 400;
  color: #606840;
  line-height: 1.15;
}

.contact-form-title em {
  font-style: italic;
  color: #798252;
}

/* ===== FORM ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(96, 104, 64, 0.6);
}

.form-group label span {
  color: #798252;
}

.form-group input,
.form-group textarea {
  background: #EDE0CF;
  border: 1.5px solid rgba(121, 130, 82, 0.2);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #606840;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(96, 104, 64, 0.35);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(121, 130, 82, 0.55);
  background: #E8D9C5;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.7;
}

/* Phone field with country code */
.phone-field {
  display: flex;
  gap: 0;
  border: 1.5px solid rgba(121, 130, 82, 0.2);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.phone-field:focus-within {
  border-color: rgba(121, 130, 82, 0.55);
}

.country-select {
  background: #E4D5C0;
  border: none !important;
  border-right: 1.5px solid rgba(121, 130, 82, 0.2) !important;
  border-radius: 0 !important;
  padding: 14px 10px 14px 12px !important;
  font-size: 13px !important;
  font-weight: 400;
  color: #606840 !important;
  cursor: pointer;
  min-width: 100px;
  max-width: 120px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23798252' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 24px !important;
}

.country-select:focus {
  background-color: #D8C9B4;
}

.phone-field input[type="tel"] {
  border: none !important;
  border-radius: 0 !important;
  flex: 1;
  min-width: 0;
}

/* Input date styling */
input[type="date"] {
  color-scheme: light;
}

/* Submit button */
.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 44px;
  background: #606840;
  color: #F2E6D8;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 2px solid #606840;
  border-radius: 50px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.3s, color 0.3s, transform 0.3s, gap 0.3s;
  margin-top: 8px;
}

.contact-submit svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s;
}

.contact-submit:hover {
  background: transparent;
  color: #606840;
  gap: 14px;
}

.contact-submit:hover svg {
  transform: translateX(4px);
}
.success-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
  z-index: 9999;
}

.success-popup.active {
  opacity: 1;
  pointer-events: all;
}

.success-box {
  background: #F2E6D8;
  padding: 40px 50px;
  border-radius: 16px;
  text-align: center;
  transform: scale(0.8);
  transition: 0.4s ease;
}

.success-popup.active .success-box {
  transform: scale(1);
}

.success-icon {
  width: 60px;
  height: 60px;
  background: #606840;
  color: #fff;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.success-box h3 {
  font-family: 'Cormorant Garamond', serif;
  color: #606840;
  font-size: 26px;
  margin-bottom: 8px;
}

.success-box p {
  font-size: 14px;
  color: rgba(96,104,64,0.7);
}
/* ===== SOCIAL HANDLE FIELD ===== */
.social-handle-field {
  display: flex;
  gap: 0;
  border: 1.5px solid rgba(121,130,82,0.2);
  border-radius: 10px;
  overflow: visible;
  transition: border-color 0.3s;
  position: relative;
}

.social-handle-field:focus-within {
  border-color: rgba(121,130,82,0.5);
}

/* Custom select wrapper */
.custom-platform-select {
  position: relative;
  min-width: 155px;
  flex-shrink: 0;
}

/* Selected display */
.platform-selected {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 12px 14px 14px;
  background: #E4D5C0;
  border-right: 1.5px solid rgba(121,130,82,0.2);
  border-radius: 9px 0 0 9px;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s;
  height: 100%;
}

.platform-selected:hover { background: #D8C9B4; }

.platform-emoji { font-size: 15px; line-height: 1; }

.platform-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #606840;
  flex: 1;
}

.platform-arrow {
  width: 14px;
  height: 14px;
  stroke: #798252;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.platform-selected.open .platform-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.platform-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 180px;
  background: #F2E6D8;
  border: 1.5px solid rgba(121,130,82,0.2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(54,64,32,0.15);
  z-index: 100;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.platform-dropdown.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* Option */
.platform-option {
  padding: 11px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(96,104,64,0.75);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-bottom: 1px solid rgba(121,130,82,0.08);
}

.platform-option:last-child { border-bottom: none; }

.platform-option:hover {
  background: #EDE0CF;
  color: #606840;
}

.platform-option.selected {
  background: #364020;
  color: #F2E6D8;
  font-weight: 400;
}

/* Handle input */
.social-handle-field input[type="text"] {
  border: none !important;
  border-radius: 0 9px 9px 0 !important;
  flex: 1;
  min-width: 0;
  background: #EDE0CF;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #606840;
  outline: none;
}

.social-handle-field input[type="text"]::placeholder {
  color: rgba(96,104,64,0.35);
}
@media (max-width: 900px) {
  .contact-body {
    grid-template-columns: 1fr;
  }

  /* Form pehle, info panel baad mein */
  .contact-form-wrap {
    order: 1;
  }

  .contact-info {
    order: 2;
    flex-direction: column;
    gap: 20px;
    padding: 28px 20px;
  }

  .contact-socials {
    margin-top: 8px;
    order: 10;
  }
}
/* ===== RESPONSIVE – TABLET ===== */
@media (max-width: 900px) {
  .contact-body {
    grid-template-columns: 1fr;
  }

  .contact-info {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    padding: 32px 24px;
  }

  .contact-info-block {
    flex: 1 1 160px;
  }

  .contact-socials {
    width: 100%;
    margin-top: 0;
    padding-top: 16px;
  }

  .contact-form-wrap {
    padding: 36px 24px;
  }
}

/* ===== RESPONSIVE – MOBILE ===== */
@media (max-width: 620px) {

  .contact-hero {
    height: 220px;
  }

  .contact-hero-title {
    font-size: 38px;
  }

  /* Info panel – stack vertically */
  .contact-info {
    flex-direction: column;
    gap: 20px;
    padding: 28px 20px;
  }

  .contact-info-block {
    flex: unset;
    width: 100%;
  }

  /* Form padding */
  .contact-form-wrap {
    padding: 28px 18px 40px;
  }

  .contact-form-header {
    margin-bottom: 24px;
  }

  /* All rows single column */
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Phone field — country code smaller */
  .phone-field {
    flex-wrap: nowrap;
  }

  .country-select {
    min-width: 80px !important;
    max-width: 90px !important;
    font-size: 12px !important;
    padding: 12px 6px 12px 8px !important;
    padding-right: 20px !important;
  }

  .phone-field input[type="tel"] {
    font-size: 14px;
    padding: 12px 12px;
  }

  /* Social handle field — stack on mobile */
  .social-handle-field {
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
  }

  .custom-platform-select {
    width: 100%;
    min-width: unset;
  }

  .platform-selected {
    border-right: none !important;
    border-bottom: 1.5px solid rgba(121,130,82,0.2);
    border-radius: 9px 9px 0 0;
    padding: 12px 14px;
  }

  .platform-dropdown {
    width: 100%;
    min-width: unset;
  }

  .social-handle-field input[type="text"] {
    border-radius: 0 0 9px 9px !important;
    padding: 12px 14px;
    width: 100%;
  }

  /* All inputs consistent size */
  .form-group input,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 14px;
  }

  .form-group label {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  /* Textarea */
  .form-group textarea {
    min-height: 110px;
  }

  /* Submit button full width */
  .contact-submit {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
    font-size: 11px;
    margin-top: 4px;
  }

  /* Success popup */
  .success-box {
    padding: 32px 24px;
    margin: 0 16px;
    border-radius: 14px;
  }

  .success-box h3 {
    font-size: 22px;
  }
}

/* ===== VERY SMALL SCREENS ===== */
@media (max-width: 380px) {
  .contact-form-wrap {
    padding: 22px 14px 36px;
  }

  .country-select {
    min-width: 72px !important;
    max-width: 80px !important;
    font-size: 11px !important;
  }

  .contact-hero-title {
    font-size: 32px;
  }
}



/* =============================================
   SERVICES PAGE  –  services-page.css
   ============================================= */

/* ===== HERO BANNER ===== */
.sp-hero {
  position: relative;
  height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.42);
}

.sp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(54,64,32,0.65) 0%,
    rgba(96,104,64,0.35) 60%,
    rgba(242,230,216,0.08) 100%
  );
  z-index: 1;
}

.sp-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Breadcrumb */
.sp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(242,230,216,0.5);
  margin-bottom: 6px;
}

.sp-breadcrumb a {
  color: rgba(242,230,216,0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.sp-breadcrumb a:hover { color: rgba(242,230,216,0.85); }

.sp-breadcrumb svg { opacity: 0.4; }

.sp-breadcrumb span { color: rgba(242,230,216,0.75); }

.sp-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 400;
  color: #F2E6D8;
  line-height: 1;
  letter-spacing: 2px;
}

.sp-hero-sub {
  font-size: 13px;
  font-weight: 300;
  color: rgba(242,230,216,0.5);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ===== SECTION WRAPPER ===== */
.sp-section {
  background: #F2E6D8;
  padding: clamp(60px, 8vw, 110px) clamp(28px, 6vw, 90px);
}

/* Header */
.sp-header {
  text-align: center;
  margin-bottom: clamp(50px, 6vw, 80px);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.sp-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #798252;
  margin-bottom: 14px;
}

.sp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 400;
  color: #606840;
  line-height: 1.15;
  margin-bottom: 16px;
}

.sp-title em { font-style: italic; color: #798252; }

.sp-desc {
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 300;
  color: rgba(96,104,64,0.65);
  line-height: 1.8;
}

/* ===== CARDS GRID ===== */
.sp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 26px);
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== SINGLE CARD ===== */
.sp-card {
  background: #EDE0CF;
  border: 1.5px solid rgba(121,130,82,0.22);
  border-radius: 18px;
  padding: clamp(28px,3vw,44px) clamp(24px,2.5vw,36px);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    background 0.4s cubic-bezier(0.4,0,0.2,1),
    border-color 0.4s ease,
    box-shadow 0.35s ease;
}

.sp-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Top row: icon + dot */
.sp-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}

.sp-card-icon {
  width: 46px;
  height: 46px;
  background: rgba(121,130,82,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(121,130,82,0.2);
  transition: background 0.4s ease, border-color 0.4s ease;
  flex-shrink: 0;
}

.sp-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: #798252;
  transition: stroke 0.4s ease;
}

.sp-card-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(121,130,82,0.35);
  margin-top: 6px;
  transition: background 0.4s ease, transform 0.35s ease;
}

.sp-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px,2.1vw,30px);
  font-weight: 400;
  color: #606840;
  line-height: 1.2;
  margin-bottom: 12px;
  transition: color 0.4s ease;
}

.sp-card-body {
  font-size: clamp(12px,1.05vw,14px);
  font-weight: 300;
  color: rgba(96,104,64,0.7);
  line-height: 1.78;
  flex: 1;
  transition: color 0.4s ease;
}

/* Read more link */
.sp-card-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(96,104,64,0.45);
  text-decoration: none;
  transition: color 0.4s ease, gap 0.35s ease;
}

.sp-card-link-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(96,104,64,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.35s ease;
}

.sp-card-link-arrow svg {
  width: 13px;
  height: 13px;
  stroke: rgba(96,104,64,0.45);
  transition: stroke 0.4s ease;
}

/* ===== HOVER / ACTIVE – dark green ===== */
.sp-card:hover,
.sp-card.is-active {
  background: #364020;
  border-color: #364020;
  box-shadow: 0 22px 55px rgba(54,64,32,0.28);
  transform: translateY(-6px);
}

.sp-card.visible:hover,
.sp-card.visible.is-active {
  transform: translateY(-6px);
}

.sp-card:hover .sp-card-dot,
.sp-card.is-active .sp-card-dot {
  background: rgba(242,230,216,0.5);
  transform: scale(1.35);
}

.sp-card:hover .sp-card-icon,
.sp-card.is-active .sp-card-icon {
  background: rgba(242,230,216,0.1);
  border-color: rgba(242,230,216,0.18);
}

.sp-card:hover .sp-card-icon svg,
.sp-card.is-active .sp-card-icon svg { stroke: #F2E6D8; }

.sp-card:hover .sp-card-title,
.sp-card.is-active .sp-card-title { color: #F2E6D8; }

.sp-card:hover .sp-card-body,
.sp-card.is-active .sp-card-body { color: rgba(242,230,216,0.62); }

.sp-card:hover .sp-card-link,
.sp-card.is-active .sp-card-link {
  color: rgba(242,230,216,0.6);
  gap: 14px;
}

.sp-card:hover .sp-card-link-arrow,
.sp-card.is-active .sp-card-link-arrow {
  background: rgba(242,230,216,0.12);
  border-color: rgba(242,230,216,0.3);
  transform: rotate(0deg);
}

.sp-card:hover .sp-card-link-arrow svg,
.sp-card.is-active .sp-card-link-arrow svg { stroke: rgba(242,230,216,0.7); }

/* ===== CTA STRIP ===== */
.sp-cta-strip {
  background: #364020;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(40px,5vw,64px) clamp(28px,6vw,90px);
  flex-wrap: wrap;
}

.sp-cta-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sp-cta-tag {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(242,230,216,0.45);
}

.sp-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px,3.5vw,46px);
  font-weight: 400;
  color: #F2E6D8;
  line-height: 1.15;
}

.sp-cta-title em {
  font-style: italic;
  color: rgba(242,230,216,0.7);
}

.sp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  background: #F2E6D8;
  color: #364020;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid #F2E6D8;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s, gap 0.3s, transform 0.3s;
}

.sp-cta-btn:hover {
  background: transparent;
  color: #F2E6D8;
  gap: 14px;
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .sp-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 560px) {
  .sp-grid { grid-template-columns: 1fr; }
  .sp-hero { height: 260px; }
  .sp-cta-strip { flex-direction: column; align-items: flex-start; }
  .sp-cta-btn { width: 100%; justify-content: center; }
  .sp-card:hover { transform: translateY(-3px); }
}

/* Fallback – agar JS na chale to cards phir bhi dikhein */
.sp-card { opacity: 0; transform: translateY(28px); }
.sp-card.visible { opacity: 1 !important; transform: translateY(0) !important; }
.no-js .sp-card { opacity: 1; transform: none; }
/* =============================================
   FOOTER  –  footer.css
   ============================================= */

/* ===== NEWSLETTER STRIP ===== */
.footer-newsletter {
  background: #2b3e02de;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(22px, 3vw, 32px) clamp(28px, 6vw, 90px);
  flex-wrap: wrap;
}

.fn-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.fn-icon {
  width: 44px;
  height: 44px;
  background: rgba(242,230,216,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(242,230,216,0.15);
}

.fn-icon svg {
  width: 18px;
  height: 18px;
  stroke: #F2E6D8;
}

.fn-title {
  font-size: 14px;
  font-weight: 500;
  color: #F2E6D8;
  line-height: 1.3;
}

.fn-sub {
  font-size: 12px;
  font-weight: 300;
  color: rgba(242,230,216,0.45);
  margin-top: 2px;
}

.fn-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(242,230,216,0.25);
  flex: 1;
  max-width: 420px;
  min-width: 240px;
}

.fn-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #F2E6D8;
  padding: 10px 0;
}

.fn-form input::placeholder {
  color: rgba(242,230,216,0.3);
}

.fn-form button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0 8px 14px;
  color: rgba(242,230,216,0.5);
  display: flex;
  align-items: center;
  transition: color 0.3s;
}

.fn-form button:hover { color: #F2E6D8; }

.fn-form button svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
}

/* ===== MAIN FOOTER ===== */
.footer {
  background: #1e2510;
  color: #F2E6D8;
}
.footer-newsletter {
  margin-top: 100px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: clamp(32px, 4vw, 60px);
  padding: clamp(52px, 7vw, 90px) clamp(28px, 6vw, 90px) clamp(40px, 5vw, 70px);
  max-width: 1400px;
  margin: 0 auto;
}

/* ===== COL 1 – BRAND ===== */
.footer-logo-img {
  width: 62px;
  height: auto;
  margin-bottom: 18px;
  /* invert logo for dark bg */
  filter: brightness(0) invert(1) opacity(0.85);
  display: block;
}

.footer-about {
  font-size: 13px;
  font-weight: 300;
  color: rgba(242,230,216,0.5);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(242,230,216,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(242,230,216,0.5);
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.footer-socials a:hover {
  background: rgba(242,230,216,0.1);
  color: #F2E6D8;
  border-color: rgba(242,230,216,0.35);
}

.footer-socials svg { width: 15px; height: 15px; }

/* ===== COL TITLE ===== */
.footer-col-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: #F2E6D8;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 1px;
  background: rgba(121,130,82,0.6);
}

/* ===== EXPLORE / SERVICES LINKS ===== */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(242,230,216,0.45);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.3s, gap 0.3s;
}

.footer-links a::before {
  content: '—';
  font-size: 10px;
  color: rgba(121,130,82,0.5);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #F2E6D8;
  gap: 10px;
}

.footer-links a:hover::before {
  color: rgba(242,230,216,0.4);
}

/* ===== CONTACT LIST ===== */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  font-weight: 300;
  color: rgba(242,230,216,0.45);
  line-height: 1.6;
}

.footer-contact-list a {
  color: rgba(242,230,216,0.45);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-list a:hover { color: #F2E6D8; }

.fc-icon {
  width: 28px;
  height: 28px;
  background: rgba(242,230,216,0.06);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(242,230,216,0.08);
}

.fc-icon svg {
  width: 13px;
  height: 13px;
  stroke: rgba(242,230,216,0.5);
}

/* ===== MINI PORTFOLIO GRID ===== */
.footer-portfolio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: 4px;
}

.fp-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 6px;
}

.fp-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.7);
  transition: filter 0.4s ease, transform 0.4s ease;
  display: block;
}

.fp-item:hover img {
  filter: brightness(0.85) saturate(1);
  transform: scale(1.08);
}

/* ===== COPYRIGHT BAR ===== */
.footer-bar {
  border-top: 1px solid rgba(242,230,216,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(28px, 6vw, 90px);
  gap: 16px;
  flex-wrap: wrap;
  max-width: 100%;
}

.footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: rgba(242,230,216,0.3);
  letter-spacing: 0.3px;
}

.footer-bar-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(242,230,216,0.2);
}

.footer-bar-links a {
  color: rgba(242,230,216,0.3);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bar-links a:hover { color: rgba(242,230,216,0.7); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-about { max-width: 100%; }
}

@media (max-width: 620px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-newsletter {
    flex-direction: column;
    align-items: flex-start;
  }

  .fn-form {
    width: 100%;
    max-width: 100%;
  }

  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
  /* =============================================
       REVIEWS SECTION
    ============================================= */
    .reviews {
      background: #F2E6D8;
      padding: clamp(70px, 9vw, 120px) clamp(28px, 6vw, 90px);
      display: grid;
      grid-template-columns: 1fr 1.35fr;
      gap: clamp(48px, 7vw, 100px);
      align-items: center;
      overflow: hidden;
      position: relative;
    }

    /* BG decorative blob */
    .reviews::before {
      content: '';
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(121,130,82,0.07) 0%, transparent 70%);
      top: -100px;
      right: -100px;
      pointer-events: none;
    }

    /* ===== LEFT SIDE ===== */
    .reviews-left {
      display: flex;
      flex-direction: column;
      gap: 28px;
      position: relative;
      z-index: 1;
        margin-left: 50px; 
    }
    .reviews {
  margin-top: 80px; /* 👈 pura section niche */
}

    .reviews-tag {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: #798252;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .reviews-tag::before {
      content: '';
      width: 28px;
      height: 1px;
      background: #798252;
      display: block;
    }

    .reviews-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(38px, 5vw, 64px);
      font-weight: 400;
      color: #606840;
      line-height: 1.1;
    }

    .reviews-title em {
      font-style: italic;
      color: #798252;
    }

    .reviews-desc {
      font-size: clamp(13px, 1.2vw, 15px);
      font-weight: 300;
      color: rgba(96,104,64,0.65);
      line-height: 1.85;
      max-width: 360px;
    }

    /* Stars summary */
    .reviews-stars-row {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .stars {
      display: flex;
      gap: 4px;
    }

    .stars svg {
      width: 16px;
      height: 16px;
      fill: #798252;
    }

    .reviews-rating-text {
      font-size: 13px;
      font-weight: 300;
      color: rgba(96,104,64,0.6);
    }

    .reviews-rating-text strong {
      font-weight: 500;
      color: #606840;
    }

    /* CTA button */
    .reviews-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 36px;
      background: #798252;
      color: #F2E6D8;
      text-decoration: none;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      border-radius: 50px;
      border: 2px solid #798252;
      transition: background 0.3s, color 0.3s, transform 0.3s, gap 0.3s;
      align-self: flex-start;
    }

    .reviews-btn:hover {
      background: transparent;
      color: #798252;
      gap: 14px;
      transform: translateY(-2px);
    }

    .reviews-btn svg {
      width: 14px;
      height: 14px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform 0.3s;
    }

    /* ===== RIGHT SIDE – CARDS STACK ===== */
    .reviews-right {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    /* Review Card */
    .rv-card {
      background: #EDE0CF;
      border: 1.5px solid rgba(121,130,82,0.18);
      border-radius: 16px;
      padding: 22px 24px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
      position: relative;
      cursor: default;
      opacity: 0;
      transform: translateX(30px);
      transition:
        opacity 0.6s ease,
        transform 0.6s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
    }

    .rv-card.visible {
      opacity: 1;
      transform: translateX(0);
    }

    /* Active/featured card – has olive left border */
    .rv-card.rv-featured {
      background: #364020;
      border-color: #364020;
      box-shadow: 0 18px 50px rgba(54,64,32,0.25);
    }

    /* hover on non-featured */
    .rv-card:not(.rv-featured):hover {
      background: #E5D5BF;
      border-color: rgba(121,130,82,0.35);
      box-shadow: 0 8px 28px rgba(96,104,64,0.1);
      transform: translateX(6px);
    }

    /* Avatar */
    .rv-avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
      border: 2px solid rgba(121,130,82,0.25);
      background: #D4C5AF;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 600;
      color: #798252;
      overflow: hidden;
    }

    .rv-featured .rv-avatar {
      border-color: rgba(242,230,216,0.3);
      color: #364020;
      background: rgba(242,230,216,0.15);
    }

    /* Avatar initials fallback */
    .rv-avatar-initials {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      flex-shrink: 0;
      border: 2px solid rgba(121,130,82,0.25);
      background: rgba(121,130,82,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-weight: 600;
      color: #798252;
      transition: background 0.35s, color 0.35s, border-color 0.35s;
    }

    .rv-featured .rv-avatar-initials {
      background: rgba(242,230,216,0.12);
      color: #F2E6D8;
      border-color: rgba(242,230,216,0.2);
    }

    /* Card body */
    .rv-body { flex: 1; }

    .rv-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 8px;
      gap: 10px;
    }

    .rv-name {
      font-size: 15px;
      font-weight: 500;
      color: #606840;
      letter-spacing: 0.2px;
      transition: color 0.35s;
    }

    .rv-featured .rv-name { color: #F2E6D8; }

    .rv-role {
      font-size: 11px;
      font-weight: 300;
      color: rgba(96,104,64,0.55);
      margin-top: 2px;
      transition: color 0.35s;
    }

    .rv-featured .rv-role { color: rgba(242,230,216,0.5); }

    /* Quote icon */
    .rv-quote-icon {
      flex-shrink: 0;
      opacity: 0.25;
      transition: opacity 0.35s;
    }

    .rv-featured .rv-quote-icon { opacity: 0.4; }

    .rv-quote-icon svg {
      width: 22px;
      height: 22px;
      fill: #798252;
    }

    .rv-featured .rv-quote-icon svg { fill: #F2E6D8; }

    .rv-text {
      font-size: 13px;
      font-weight: 300;
      color: rgba(96,104,64,0.7);
      line-height: 1.75;
      transition: color 0.35s;
    }

    .rv-featured .rv-text { color: rgba(242,230,216,0.65); }

    /* Card stars */
    .rv-stars {
      display: flex;
      gap: 3px;
      margin-top: 12px;
    }

    .rv-stars svg {
      width: 13px;
      height: 13px;
      fill: #798252;
      transition: fill 0.35s;
    }

    .rv-featured .rv-stars svg { fill: rgba(242,230,216,0.6); }

    /* Left accent bar on featured */
    .rv-featured::before {
      content: '';
      position: absolute;
      left: 0;
      top: 20%;
      height: 60%;
      width: 3px;
      background: rgba(242,230,216,0.35);
      border-radius: 0 3px 3px 0;
    }

    /* ===== DOTS NAVIGATION ===== */
    .rv-dots {
      display: flex;
      gap: 8px;
      justify-content: flex-end;
      margin-top: 6px;
    }

    .rv-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(121,130,82,0.25);
      cursor: pointer;
      border: none;
      padding: 0;
      transition: background 0.3s, transform 0.3s, width 0.3s;
    }

    .rv-dot.active {
      background: #798252;
      width: 22px;
      border-radius: 4px;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 860px) {
      .reviews {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .reviews-desc { max-width: 100%; }
      .rv-card:not(.rv-featured):hover { transform: translateY(-3px); }
    }

    @media (max-width: 480px) {
      .rv-card { padding: 18px; gap: 12px; }
    }
    /* =============================================
   NEWSLETTER PAGE  –  newsletter.css
   ============================================= */

/* ===== HERO BANNER ===== */
.nl-hero {
  position: relative;
  height: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nl-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.4);
}

.nl-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(54,64,32,0.7) 0%, rgba(96,104,64,0.35) 60%, rgba(242,230,216,0.05) 100%);
  z-index: 1;
}

.nl-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.nl-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(242,230,216,0.45);
  margin-bottom: 6px;
}

.nl-breadcrumb a {
  color: rgba(242,230,216,0.45);
  text-decoration: none;
  transition: color 0.3s;
}

.nl-breadcrumb a:hover { color: rgba(242,230,216,0.85); }
.nl-breadcrumb span { color: rgba(242,230,216,0.75); }

.nl-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 400;
  color: #F2E6D8;
  line-height: 1;
  letter-spacing: 2px;
}

.nl-hero-sub {
  font-size: 13px;
  font-weight: 300;
  color: rgba(242,230,216,0.5);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ===== MAIN LAYOUT ===== */
.nl-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
  padding: clamp(64px, 8vw, 110px) clamp(28px, 6vw, 90px);
  background: #F2E6D8;
  position: relative;
  overflow: hidden;
}

/* bg blob */
.nl-main::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121,130,82,0.06) 0%, transparent 70%);
  bottom: -200px;
  left: -150px;
  pointer-events: none;
}

/* ===== LEFT ===== */
.nl-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.nl-left.nl-show { opacity: 1; transform: translateX(0); }

.nl-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #798252;
}

.nl-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #798252;
  animation: nlPulse 2s ease infinite;
}

@keyframes nlPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.65); }
}

.nl-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 400;
  color: #606840;
  line-height: 1.12;
}

.nl-title em { font-style: italic; color: #798252; }

.nl-desc {
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 300;
  color: rgba(96,104,64,0.65);
  line-height: 1.85;
  max-width: 420px;
}

/* Perks list */
.nl-perks {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.nl-perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: #EDE0CF;
  border-radius: 12px;
  border: 1.5px solid rgba(121,130,82,0.15);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.nl-perk:hover {
  background: #E4D5BF;
  border-color: rgba(121,130,82,0.3);
  transform: translateX(5px);
}

.nl-perk-icon {
  width: 38px;
  height: 38px;
  background: rgba(121,130,82,0.12);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(121,130,82,0.18);
  transition: background 0.3s;
}

.nl-perk:hover .nl-perk-icon { background: rgba(121,130,82,0.2); }

.nl-perk-icon svg {
  width: 18px;
  height: 18px;
  stroke: #798252;
}

.nl-perk h4 {
  font-size: 14px;
  font-weight: 500;
  color: #606840;
  margin-bottom: 3px;
}

.nl-perk p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(96,104,64,0.6);
  line-height: 1.6;
}

/* ===== RIGHT ===== */
.nl-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}

/* ===== FORM CARD ===== */
.nl-form-card {
  background: #364020;
  border-radius: 20px;
  padding: clamp(28px, 4vw, 44px);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.nl-form-card.nl-show { opacity: 1; transform: translateY(0); }

.nl-form-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.nl-form-icon {
  width: 44px;
  height: 44px;
  background: rgba(242,230,216,0.1);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(242,230,216,0.15);
}

.nl-form-icon svg {
  width: 19px;
  height: 19px;
  stroke: rgba(242,230,216,0.8);
}

.nl-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: #F2E6D8;
}

.nl-form-sub {
  font-size: 12px;
  font-weight: 300;
  color: rgba(242,230,216,0.4);
  margin-top: 2px;
}

/* Fields */
.nl-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.nl-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.nl-field label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(242,230,216,0.45);
}

.nl-field label span { color: #F2E6D8; }

.nl-field input {
  background: rgba(242,230,216,0.08);
  border: 1.5px solid rgba(242,230,216,0.15);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #F2E6D8;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  width: 100%;
}

.nl-field input::placeholder { color: rgba(242,230,216,0.25); }

.nl-field input:focus {
  border-color: rgba(242,230,216,0.4);
  background: rgba(242,230,216,0.12);
}

/* Checkbox pills */
.nl-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nl-check {
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
}

.nl-check input[type="checkbox"] { display: none; }

.nl-check span {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(242,230,216,0.08);
  border: 1px solid rgba(242,230,216,0.15);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 300;
  color: rgba(242,230,216,0.5);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  user-select: none;
}

.nl-check input:checked + span {
  background: rgba(242,230,216,0.18);
  border-color: rgba(242,230,216,0.4);
  color: #F2E6D8;
}

.nl-check:hover span {
  border-color: rgba(242,230,216,0.3);
  color: rgba(242,230,216,0.8);
}

/* Submit */
.nl-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  background: #F2E6D8;
  color: #364020;
  border: 2px solid #F2E6D8;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.3s, color 0.3s, gap 0.3s, transform 0.3s;
}

.nl-submit svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  transition: transform 0.3s;
}

.nl-submit:hover {
  background: transparent;
  color: #F2E6D8;
  gap: 14px;
  transform: translateY(-2px);
}

/* Privacy */
.nl-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 300;
  color: rgba(242,230,216,0.3);
}

.nl-privacy svg { flex-shrink: 0; stroke: rgba(242,230,216,0.3); }

/* Error */
.nl-error {
  background: rgba(220,80,80,0.15);
  border: 1px solid rgba(220,80,80,0.3);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  color: #ffaaaa;
  margin-bottom: 4px;
}

/* Success */
.nl-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 20px 0;
}

.nl-success-icon {
  width: 56px;
  height: 56px;
  background: rgba(242,230,216,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(242,230,216,0.25);
}

.nl-success-icon svg {
  width: 24px;
  height: 24px;
  stroke: #F2E6D8;
}

.nl-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: #F2E6D8;
}

.nl-success p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(242,230,216,0.55);
  line-height: 1.75;
  max-width: 300px;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nl-main {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .nl-desc { max-width: 100%; }
  .nl-hero { height: 260px; }
}

@media (max-width: 480px) {
  .nl-form-card { padding: 24px 20px; }
  .nl-checks { gap: 6px; }
}
/* ===== MAP ===== */
.contact-map {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  display: block;
  margin-top: 40px; /* 👈 ye add kar */
}

.contact-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
  border: 0;
  filter: sepia(0.35) saturate(0.65) hue-rotate(10deg) brightness(0.82);
  transition: filter 0.4s ease;
}

.contact-map:hover iframe {
  filter: sepia(0.15) saturate(0.85) brightness(0.92);
}

/* Floating badge */
.contact-map-badge {
  position: absolute;
  bottom: 32px;
  left: 40px;
  background: #F2E6D8;
  border: 1.5px solid rgba(121,130,82,0.3);
  border-radius: 16px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 40px rgba(54,64,32,0.25);
  z-index: 10;
  backdrop-filter: blur(4px);
}

.cmb-icon {
  width: 42px;
  height: 42px;
  background: #364020;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cmb-icon svg {
  width: 19px;
  height: 19px;
  stroke: #F2E6D8;
}

.cmb-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(96,104,64,0.5);
  margin-bottom: 4px;
}

.cmb-addr {
  font-size: 14px;
  font-weight: 400;
  color: #606840;
  line-height: 1.4;
}

@media (max-width: 560px) {
  .contact-map { height: 320px; }
  .contact-map-badge {
    left: 16px;
    bottom: 16px;
    padding: 12px 16px;
    gap: 10px;
  }
  .cmb-addr { font-size: 13px; }
}
/* =============================================
   ABOUT PAGE  –  about.css
   ============================================= */

/* ===== HERO ===== */
.ab-hero {
  position: relative;
  height: 360px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ab-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.42);
}

.ab-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(54,64,32,0.68) 0%, rgba(96,104,64,0.35) 60%, rgba(242,230,216,0.05) 100%);
  z-index: 1;
}

.ab-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.ab-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(242,230,216,0.45);
  margin-bottom: 6px;
}

.ab-breadcrumb a { color: rgba(242,230,216,0.45); text-decoration: none; transition: color 0.3s; }
.ab-breadcrumb a:hover { color: rgba(242,230,216,0.85); }
.ab-breadcrumb span { color: rgba(242,230,216,0.75); }

.ab-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 400;
  color: #F2E6D8;
  line-height: 1;
  letter-spacing: 2px;
}

.ab-hero-sub {
  font-size: 13px;
  font-weight: 300;
  color: rgba(242,230,216,0.5);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ===== SHARED ===== */
.ab-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #798252;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ab-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: #798252;
  display: block;
}

.ab-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 400;
  color: #606840;
  line-height: 1.12;
}

.ab-title em { font-style: italic; color: #798252; }

.ab-text {
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 300;
  color: rgba(96,104,64,0.65);
  line-height: 1.88;
}

.ab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: #798252;
  color: #F2E6D8;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid #798252;
  transition: background 0.3s, color 0.3s, gap 0.3s, transform 0.3s;
  align-self: flex-start;
}

.ab-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ab-btn:hover { background: transparent; color: #798252; gap: 14px; transform: translateY(-2px); }

/* ===== SCROLL REVEAL ===== */
.ab-who-left,
.ab-who-right,
.ab-stat,
.ab-story-tag,
.ab-story-content,
.ab-val-card,
.ab-team-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.ab-who-left  { transform: translateX(-24px); }
.ab-who-right { transform: translateX(24px); }

.ab-show {
  opacity: 1 !important;
  transform: translate(0) !important;
}

/* ===== WHO WE ARE ===== */
.ab-who {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
  padding: clamp(70px, 9vw, 110px) clamp(28px, 6vw, 90px);
  background: #F2E6D8;
  overflow: hidden;
}

.ab-who-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Image blob side */
.ab-who-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ab-img-wrap {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1.05;
}

.ab-blob {
  position: absolute;
  inset: 0;
  background: #798252;
  border-radius: 62% 38% 55% 45% / 48% 52% 48% 52%;
  opacity: 0.13;
  animation: abMorphBlob 8s ease-in-out infinite alternate;
}

@keyframes abMorphBlob {
  0%   { border-radius: 62% 38% 55% 45% / 48% 52% 48% 52%; }
  50%  { border-radius: 45% 55% 40% 60% / 55% 45% 55% 45%; }
  100% { border-radius: 60% 40% 62% 38% / 42% 58% 42% 58%; }
}

.ab-blob-ring {
  position: absolute;
  width: 88%; height: 88%;
  top: 6%; left: 6%;
  border: 1.5px dashed rgba(121,130,82,0.28);
  border-radius: 60% 40% 58% 42% / 50% 50% 50% 50%;
  animation: abSpinRing 22s linear infinite;
}

@keyframes abSpinRing { to { transform: rotate(360deg); } }

.ab-img-inner {
  position: absolute;
  width: 78%; height: 78%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 55% 45% 60% 40% / 50% 55% 45% 50%;
  overflow: hidden;
  border: 3px solid rgba(121,130,82,0.2);
}

.ab-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 8s ease;
}

.ab-img-inner:hover .ab-img { transform: scale(1.05); }

/* Floating badges */
.ab-badge {
  position: absolute;
  background: #F2E6D8;
  border: 1.5px solid rgba(121,130,82,0.2);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(96,104,64,0.15);
  z-index: 10;
}

.ab-badge-top {
  width: 100px; height: 100px;
  top: 5%; left: -5%;
  background: #F2E6D8;
}

.ab-badge-bottom {
  width: 88px; height: 88px;
  bottom: 5%; right: -5%;
  background: #364020;
}

.ab-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: #798252;
  line-height: 1;
}

.ab-badge-bottom .ab-badge-num { color: #F2E6D8; font-size: 22px; }

.ab-badge-label {
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  color: rgba(96,104,64,0.55);
  max-width: 72px;
  line-height: 1.3;
  margin-top: 3px;
}

.ab-badge-bottom .ab-badge-label { color: rgba(242,230,216,0.6); }

/* ===== STATS STRIP ===== */
.ab-stats {
  background: #364020;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: clamp(36px, 5vw, 56px) clamp(28px, 6vw, 90px);
  flex-wrap: wrap;
}

.ab-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 clamp(28px, 4vw, 56px);
  flex: 1;
  min-width: 120px;
}

.ab-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 600;
  color: #F2E6D8;
  line-height: 1;
}

.ab-stat-label {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(242,230,216,0.4);
  text-align: center;
}

.ab-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(242,230,216,0.12);
  flex-shrink: 0;
}

/* ===== OUR STORY ===== */
.ab-story {
  background: #EDE0CF;
  padding: clamp(70px, 9vw, 110px) clamp(28px, 6vw, 90px);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.ab-story-tag { padding-top: 12px; }

.ab-story-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ab-story-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}


/* ===== CTA STRIP ===== */
.ab-cta {
  background: #364020;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(48px, 6vw, 72px) clamp(28px, 6vw, 90px);
  flex-wrap: wrap;
}

.ab-cta-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ab-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 400;
  color: #F2E6D8;
  line-height: 1.15;
}

.ab-cta-title em { font-style: italic; color: rgba(242,230,216,0.65); }

.ab-cta-right {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.ab-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  white-space: nowrap;
}

.ab-cta-solid {
  background: #F2E6D8;
  color: #364020;
  border: 2px solid #F2E6D8;
}

.ab-cta-solid:hover { background: transparent; color: #F2E6D8; transform: translateY(-2px); }

.ab-cta-outline {
  background: transparent;
  color: rgba(242,230,216,0.7);
  border: 2px solid rgba(242,230,216,0.25);
}

.ab-cta-outline:hover { border-color: rgba(242,230,216,0.6); color: #F2E6D8; transform: translateY(-2px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .ab-values-grid { grid-template-columns: repeat(2, 1fr); }
  .ab-team-grid { grid-template-columns: repeat(2, 1fr); }
  .ab-story { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  .ab-who { grid-template-columns: 1fr; }
  .ab-who-right { order: -1; }
  .ab-img-wrap { max-width: 320px; margin: 0 auto; }
  .ab-stats { gap: 20px; }
  .ab-stat-divider { display: none; }
  .ab-cta { flex-direction: column; align-items: flex-start; }
  .ab-hero { height: 260px; }
}

@media (max-width: 560px) {
  .ab-values-grid { grid-template-columns: 1fr; }
  .ab-team-grid { grid-template-columns: 1fr; max-width: 400px; }
  .ab-cta-right { flex-direction: column; width: 100%; }
  .ab-cta-btn { justify-content: center; }
}