 main {
   color: var(--title-color);
   background-color: var(--section-color);
 }

 /* ── HERO ────────────────────────────────────────────── */
 .hero-section {
   min-height: 100vh;
   padding-top: 120px;
   position: relative;
   display: flex;
   align-items: center;
   overflow: hidden;
 }

 /* Deep navy gradient background */
 .hero-bg {
   position: absolute;
   inset: 0;
    background-color: var(--section-color);
  /* background:
     radial-gradient(ellipse 70% 60% at 60% 40%, rgba(22, 55, 100, 0.55) 0%, transparent 70%),
     radial-gradient(ellipse 50% 50% at 20% 80%, rgba(242, 101, 34, 0.08) 0%, transparent 60%),
     linear-gradient(160deg, #0b1a2e 0%, #0d2040 40%, #091526 100%); */
   z-index: 0;
 }


 /* ── CONTENT ─────────────────────────────────────────── */
 .hero-content {
   position: relative;
   z-index: 2;
   text-align: center;
   padding: 0 1rem;
   max-width: 820px;
   margin: 0 auto;
   animation: fadeUp 0.9s ease both;
 }

 @keyframes fadeUp {
   from {
     opacity: 0;
     transform: translateY(32px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 .division-badge {
   display: inline-flex;
   align-items: center;
   gap: 0.55rem;
   background: rgba(255, 255, 255, 0.07); 
   border: 1px solid rgba(255, 255, 255, 0.14);
   border-radius: 50px;
   padding: 0.45rem 1.2rem;
   font-size: 0.72rem;
   font-weight: 600;
   letter-spacing: 0.14em;
   text-transform: uppercase;
   color: rgba(255, 255, 255, 0.8);
   margin-bottom: 1.7rem;
   animation: fadeUp 0.9s 0.1s ease both;
 }

 .badge-dot {
   width: 7px;
   height: 7px;
   background:
     /* #f26522; */
     #1DC9A9;
   /*  box-shadow: 0 0 6px rgba(242, 101, 34, 0.7); */
   border-radius: 50%;
   display: inline-block;
   flex-shrink: 0;

 }

 .hero-title {
   /* font-family: 'Playfair Display', serif; */
   font-size: 45px;
   font-weight: 800;
   line-height: 1.12;
   color: #fff;
   margin-bottom: 1.4rem;
   animation: fadeUp 0.9s 0.2s ease both;
 }

 .hero-desc {
   font-size: 16px;
   line-height: 1.75;
   color: rgba(255, 255, 255, 0.68);
   max-width: 800px;
   margin: 0 auto 2.4rem;
   animation: fadeUp 0.9s 0.3s ease both;
 }

 .hero-desc strong {
   color: rgba(255, 255, 255, 0.92);
   font-weight: 600;
 }

 .hero-btns {
   display: flex;
   gap: 1rem;
   justify-content: center;
   flex-wrap: wrap;
   animation: fadeUp 0.9s 0.4s ease both;
 }

 .btn-primary-z {
   background: #1DC9A9;
   color: #fff;
   border: none;
   padding: 0.75rem 1.9rem;
   /* border-radius: 8px;*/
   border-radius: 30px;
   font-size: 0.93rem;
   font-weight: 600;
   letter-spacing: 0.01em;
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   gap: 0.4rem;
   transition: background 0.2s, transform 0.15s;
 }

 .btn-primary-z:hover {

   color: #fff;
   transform: translateY(-1px);
 }

 .btn-outline-z {
   background: transparent;
   color: #fff;
   border: 1.5px solid rgba(255, 255, 255, 0.4);
   padding: 0.75rem 1.9rem;
   border-radius: 30px;
   font-size: 0.93rem;
   font-weight: 600;
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   transition: border-color 0.2s, background 0.2s, transform 0.15s;
 }

 .btn-outline-z:hover {

   background: #1DC9A9;
   color: #fff;
   transform: translateY(-1px);
 }

 /* ─────────────────────────────────────────────
   LARGE DEVICES (Default already handled)
   > 1200px
───────────────────────────────────────────── */


/* ─────────────────────────────────────────────
   MEDIUM DEVICES (Tablets / Small laptops)
   ≤ 992px
───────────────────────────────────────────── */
@media (max-width: 992px) {

  .hero-section {
    padding-top: 100px;
  }

  .hero-title {
    font-size: 38px;
    line-height: 1.2;
  }

  .hero-desc {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-content {
    max-width: 90%;
  }

}


/* ─────────────────────────────────────────────
   SMALL DEVICES (Mobile)
   ≤ 768px
───────────────────────────────────────────── */
@media (max-width: 768px) {

  .hero-section {
    padding-top: 90px;
    min-height: auto;
  }

  .hero-title {
    font-size: 30px;
    line-height: 1.25;
  }

  .hero-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .division-badge {
    font-size: 0.65rem;
    padding: 0.35rem 1rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: 0.7rem;
  }

  .btn-primary-z,
  .btn-outline-z {
    width: 100%;
    justify-content: center;
    padding: 0.7rem;
    font-size: 0.9rem;
  }

}


/* ─────────────────────────────────────────────
   EXTRA SMALL DEVICES (Small phones)
   ≤ 480px
───────────────────────────────────────────── */
@media (max-width: 480px) {

  .hero-section {
    padding-top: 80px;
  }

  .hero-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero-desc {
    font-size: 13px;
    line-height: 1.5;
  }

  .division-badge {
    font-size: 0.6rem;
    padding: 0.3rem 0.8rem;
    letter-spacing: 0.1em;
  }

  .badge-dot {
    width: 5px;
    height: 5px;
  }

  .hero-content {
    padding: 0 0.5rem;
  }

}


/* ─────────────────────────────────────────────
   EXTRA EXTRA SMALL (Very tiny devices)
   ≤ 360px
───────────────────────────────────────────── */
@media (max-width: 360px) {

  .hero-title {
    font-size: 20px;
  }

  .hero-desc {
    font-size: 12px;
  }

  .btn-primary-z,
  .btn-outline-z {
    font-size: 0.8rem;
    padding: 0.6rem;
  }

}

 /* ── WHAT WE DO ─────────────────────────────────────────── */
 .what-we-do-section {
  /* background: #d9d4cc; */
  background: var(--section-color);
   padding: 5rem 0 4.5rem;
 }

 .wwd-header {
   margin-bottom: 3rem;
   animation: fadeUp 0.8s ease both;
 }

 .wwd-eyebrow {
   display: block;
   font-size: 0.72rem;
   font-weight: 600;
   letter-spacing: 0.18em;
   text-transform: uppercase;
   color: var(--title-color);
   margin-bottom: 0.9rem;
 }

 .wwd-title {
   /*font-family: 'Playfair Display', serif;*/
   font-size: 40px;
   font-weight: 700;
   color: var(--title-color);
   line-height: 1.2;
   margin-bottom: 1.2rem;
 }

 .wwd-desc {
   font-size: 1rem;
   color: var(--text-color);
   line-height: 1.75;
   max-width: 680px;
   margin: 0 auto;
 }

 /* Cards */
 .wwd-cards-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 1.1rem;
   margin-bottom: 2.5rem;
   animation: fadeUp 0.8s 0.15s ease both;
 }

 .wwd-card {
   backdrop-filter: blur(10px);
  background: var(--card-color);
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* background: rgba(255, 255, 255, 0.45);
   border: 1px solid rgba(255, 255, 255, 0.7); */
   border-radius: 12px;
   padding: 2.2rem 1rem 1.6rem;
   text-align: center;
   transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
   cursor: default;
 }

 .wwd-card:hover {
  /* background: rgba(255, 255, 255, 0.65); */
   transform: translateY(-4px);
   box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
 }

 .wwd-icon {
   font-size: 2.2rem;
   margin-bottom: 1.1rem;
   color: var(--title-color);
   line-height: 1;
   filter: saturate(0.7) brightness(0.85);
 }

 .wwd-card-label {
   font-size: 0.85rem;
   font-weight: 600;
   color: var(--text-color);
   letter-spacing: 0.01em;
 }

 /* CTA Banner */
 .wwd-cta-banner {
   display: flex;
   align-items: center;
   gap: 2rem;
  /* background: rgba(255, 255, 255, 0.5);
   border: 1px solid rgba(255, 255, 255, 0.7); */

    backdrop-filter: blur(10px);
  background: var(--card-color);
  border: 1px solid rgba(255, 255, 255, 0.08);
   border-radius: 14px;
   padding: 1.8rem 2rem 1.8rem 0;
   position: relative;
   overflow: hidden;
   animation: fadeUp 0.8s 0.3s ease both;
 }

 .wwd-cta-accent {
   width: 6px;
   min-height: 100%;
   position: absolute;
   left: 0;
   top: 0;
   bottom: 0;
  /* background: linear-gradient(180deg, #d4845a, #c06030); */
   background: linear-gradient(180deg, #2fe0c1, #1DC9A9);
   border-radius: 14px 0 0 14px;
 }

 .wwd-cta-text {
   flex: 1;
   padding-left: 2.5rem;
 }

 .wwd-cta-title {
  /* font-family: 'Playfair Display', serif; */
   font-size: 1.3rem;
   font-weight: 700;
   color:var(--title-color);
   margin-bottom: 0.3rem;
 }

 .wwd-cta-sub {
   font-size: 0.88rem;
   color: var(--text-color);
   margin: 0;
 }

 .wwd-cta-btn {
   background: #1DC9A9;
   color: #fff;
   text-decoration: none;
   padding: 0.78rem 1.7rem;
   /*border-radius: 8px;*/
   border-radius: 30px;
   font-size: 0.9rem;
   font-weight: 600;
   white-space: nowrap;
   transition: background 0.2s, transform 0.15s;
   flex-shrink: 0;
 }

 .wwd-cta-btn:hover {
   background: #1DC9A9;
   color: #fff;
   transform: translateY(-1px);
 }

 @media (max-width: 900px) {
   .wwd-cards-grid {
     grid-template-columns: repeat(2, 1fr);
   }
 }

 @media (max-width: 576px) {
   .wwd-cards-grid {
     grid-template-columns: 1fr 1fr;
   }

   .wwd-cta-banner {
     flex-direction: column;
     text-align: center;
     padding: 2rem 1.5rem 1.5rem;
   }

   .wwd-cta-accent {
     width: 100%;
     height: 5px;
     min-height: unset;
     top: 0;
     left: 0;
     right: 0;
     bottom: unset;
     border-radius: 14px 14px 0 0;
   }

   .wwd-cta-text {
     padding-left: 0;
   }
 }


/* ─────────────────────────────────────────────
   EXTRA SMALL DEVICES (≤ 480px)
───────────────────────────────────────────── */
@media (max-width: 480px) {

  .what-we-do-section {
    padding: 3rem 0 2.5rem;
  }

  .wwd-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
  }

  .wwd-title {
    font-size: 24px;
  }

  .wwd-desc {
    font-size: 0.85rem;
  }

  .wwd-card {
    padding: 1.5rem 0.8rem 1.2rem;
    border-radius: 10px;
  }

  .wwd-icon {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  .wwd-card-label {
    font-size: 0.8rem;
  }

  /* CTA */
  .wwd-cta-banner {
    border-radius: 12px;
    padding: 1.3rem 1rem 1.3rem 0;
  }

  .wwd-cta-text {
    padding-left: 1.5rem;
  }

  .wwd-cta-title {
    font-size: 1.1rem;
  }

  .wwd-cta-sub {
    font-size: 0.8rem;
  }

  .wwd-cta-btn {
    font-size: 0.85rem;
    padding: 0.7rem;
  }

}


/* ─────────────────────────────────────────────
   EXTRA EXTRA SMALL (≤ 360px)
───────────────────────────────────────────── */
@media (max-width: 360px) {

  .wwd-title {
    font-size: 20px;
  }

  .wwd-desc {
    font-size: 0.8rem;
  }

  .wwd-card {
    padding: 1.3rem 0.7rem;
  }

  .wwd-cta-title {
    font-size: 1rem;
  }

  .wwd-cta-sub {
    font-size: 0.75rem;
  }

  .wwd-cta-btn {
    font-size: 0.8rem;
    padding: 0.6rem;
  }

}

 /* ============= services =========  */

 .services-section {
  /* background: #f0f4f2;*/
   background: var(--section-color);
   padding: 5rem 0 5.5rem;
 }

 .svc-header {
   margin-bottom: 3rem;
   animation: fadeUp 0.8s ease both;
 }

 .svc-eyebrow {
   display: block;
   font-size: 0.72rem;
   font-weight: 600;
   letter-spacing: 0.18em;
   text-transform: uppercase;
   color: var(--title-color);
   margin-bottom: 0.9rem;
 }

 .svc-title {
   font-family: 'Playfair Display', serif;
   font-size: 45px;
   font-weight: 800;
   color: var(--title-color);
   line-height: 1.2;
   max-width: 950px;
   margin: 0 auto;
 }

 .svc-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 1.4rem;
   animation: fadeUp 0.8s 0.15s ease both;
 }

 .svc-card {
  /* background: #fff;
   border: 1px solid rgba(0, 0, 0, 0.07); */
    backdrop-filter: blur(10px);
  background: var(--card-color);
  border: 1px solid rgba(255, 255, 255, 0.08);
   border-radius: 14px;
   padding: 2rem 1.7rem;
   transition: transform 0.22s, box-shadow 0.22s;
   cursor: default;
 }

 .svc-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
 }

 .svc-icon {
   font-size: 2.4rem;
   margin-bottom: 1.2rem;
   color: var(--title-color);
   line-height: 1;
 }

 .svc-card-title {
   font-size: 1.05rem;
   font-weight: 700;
   color: var(--title-color);
   margin-bottom: 0.75rem;
   line-height: 1.3;
 }

 .svc-card-desc {
   font-size: 0.875rem;
   color: var(--text-color);
   line-height: 1.72;
   margin: 0;
 }

 @media (max-width: 900px) {
   .svc-grid {
     grid-template-columns: repeat(2, 1fr);
   }
 }

 @media (max-width: 576px) {
   .svc-grid {
     grid-template-columns: 1fr;
   }
 }


/* ─────────────────────────────────────────────
   EXTRA SMALL DEVICES (≤ 480px)
───────────────────────────────────────────── */
@media (max-width: 480px) {

  .services-section {
    padding: 3rem 0 3.5rem;
  }

  .svc-title {
    font-size: 24px;
  }

  .svc-card {
    padding: 1.4rem 1rem;
    border-radius: 12px;
  }

  .svc-icon {
    font-size: 1.9rem;
    margin-bottom: 1rem;
  }

  .svc-card-title {
    font-size: 0.95rem;
  }

  .svc-card-desc {
    font-size: 0.8rem;
    line-height: 1.6;
  }

}


/* ─────────────────────────────────────────────
   EXTRA EXTRA SMALL (≤ 360px)
───────────────────────────────────────────── */
@media (max-width: 360px) {

  .svc-title {
    font-size: 20px;
  }

  .svc-card {
    padding: 1.2rem 0.8rem;
  }

  .svc-icon {
    font-size: 1.7rem;
  }

  .svc-card-title {
    font-size: 0.9rem;
  }

  .svc-card-desc {
    font-size: 0.75rem;
  }

}

 /* ============= loctaions ================*/

 #location-section {
   padding: 0px 0px 20px 0px;

 }

 .location-container {
   padding-left: 20px;
   padding-right: 20px;
 }

 /*
.section-title {
    font-weight: 700;
    font-size: 44px;
}

.section-title span {
    color: #1DC9A9;
} */

 .location-card {
   backdrop-filter: blur(10px);
   background: var(--card-color);
   border: 1px solid rgba(255, 255, 255, 0.08);

   /* box-shadow: 0 4px 15px rgba(0,0,0,0.05);
     background: rgba(255,255,255,0.05); */
   border-radius: 12px;
   padding: 25px;
   transition: all 0.3s ease;

   height: 100%;

 }

 .location-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
 }

 .flag {
   width: 35px;
   margin-bottom: 10px;
 }

 .location-title {
   font-weight: 600;
   font-size: 18px;
   color: var(--title-color);
   margin-bottom: 10px;
 }

 .location-card p {
   font-size: 14px;
   color: var(--text-color);
   margin-bottom: 6px;
 }

 .phone a {
   text-decoration: none;
   color: var(--text-color);
   font-weight: 500;
 }

 .phone a:hover {
   text-decoration: underline;
   color: #1DC9A9;
   ;
 }

 /* ================== RESPONSIVE FIX ================== */

 /* Large Tablets / iPads (992px - 1199px) */
 @media (max-width: 1199px) {


   .section-title {
     font-size: 36px;
   }

   .location-card {
     padding: 20px;
   }

   .location-title {
     font-size: 17px;
   }

   .location-card p {
     font-size: 13px;
   }

   .flag {
     width: 30px;
     margin-bottom: 8px;
   }
 }

 /* Tablets / Medium Devices (768px - 991px) */
 @media (max-width: 991px) {


   .section-title {
     font-size: 36px;
   }

   .location-card {
     padding: 18px;
   }

   .location-title {
     font-size: 16px;
   }

   .location-card p {
     font-size: 12px;
   }

   .flag {
     width: 28px;
     margin-bottom: 6px;
   }
 }

 /* Large Mobile / Small Tablets (576px - 767px) */
 @media (max-width: 767px) {


   .section-title {
     font-size: 34px;
   }

   .location-card {
     padding: 15px;
   }

   .location-title {
     font-size: 15px;
   }

   .location-card p {
     font-size: 12px;
   }

   .flag {
     width: 25px;
     margin-bottom: 5px;
   }
 }

 /* Small Mobile / Extra Small Devices (below 575px) */
 @media (max-width: 575px) {

   #location-section {
     padding: 0px 0px 15px 0px;
   }

   .location-container {
     padding-left: 10px;
     padding-right: 10px;
   }

   .section-title {
     font-size: 32px;
     text-align: center;
   }

   .location-card {
     padding: 12px;
   }

   .location-title {
     font-size: 14px;
   }

   .location-card p {
     font-size: 11px;
   }

   .flag {
     width: 22px;
     margin-bottom: 4px;
   }

   .phone a {
     font-size: 12px;
   }
 }


 /* ================= SMALL TABLETS (576px - 767px) ================= */
 @media (min-width: 576px) and (max-width: 767.98px) {

   .section-title {
     font-size: 30px;
   }

   .location-card {
     padding: 20px;
     text-align: center;
   }

   .location-title {
     font-size: 17px;
   }

   .location-card p {
     font-size: 13.5px;
   }

   .flag {
     width: 30px;
   }
 }


 /* ================= TABLETS (768px - 991px) ================= */
 @media (min-width: 768px) and (max-width: 991.98px) {

   .section-title {
     font-size: 36px;
   }

   .location-card {
     padding: 22px;
   }

   .location-title {
     font-size: 17px;
   }

   .location-card p {
     font-size: 14px;
   }
 }

/* =========  disclaimer ====== */

 .disclaimer-section {
   background:/* #eef3f0;*/ var(--section-color);
   padding: 3.5rem 0;
 }

 .disclaimer-box {
  /* background: #fff5f0; */  
   background: var(--section-color);
   border: 1.5px solid #1DC9A9;/* #e8724a*/
   border-radius: 16px;
   padding: 2.4rem 2.8rem;
   text-align: center;
   max-width: 860px;
   margin: 0 auto;
   animation: fadeUp 0.8s ease both;
 }

 .disclaimer-title {
   font-family: 'Playfair Display', serif;
   font-size: 1.35rem;
   font-weight: 700;
   color: var(--title-color);
   margin-bottom: 1.2rem;
 }

 .disclaimer-bold {
   font-size: 0.92rem;
   font-weight: 700;
   color: var(--text-color);
   line-height: 1.7;
   margin-bottom: 1rem;
 }

 .disclaimer-sub {
   font-weight: 400;
   color: var(--text-color);
 }

 .disclaimer-body {
   font-size: 0.87rem;
   color: var(--text-color);
   line-height: 1.75;
   margin: 0;
 }

 @media (max-width: 576px) {
   .disclaimer-box {
     padding: 1.8rem 1.3rem;
   }

 }

 /* ─────────────────────────────────────────────
   EXTRA SMALL DEVICES (≤ 480px)
───────────────────────────────────────────── */
@media (max-width: 480px) {

  .disclaimer-section {
    padding: 2rem 0;
  }

  .disclaimer-box {
    padding: 1.5rem 1.2rem;
    border-radius: 12px;
  }

  .disclaimer-title {
    font-size: 1rem;
  }

  .disclaimer-bold {
    font-size: 0.82rem;
  }

  .disclaimer-body {
    font-size: 0.78rem;
    line-height: 1.6;
  }

}


/* ─────────────────────────────────────────────
   EXTRA EXTRA SMALL (≤ 360px)
───────────────────────────────────────────── */
@media (max-width: 360px) {

  .disclaimer-title {
    font-size: 0.9rem;
  }

  .disclaimer-bold {
    font-size: 0.78rem;
  }

  .disclaimer-body {
    font-size: 0.75rem;
  }

}

/* ================= FAQ SECTION ================= */

.faq-section {
  /* padding: 80px 5%; */
  padding: 20px 5% 80px 5%;
  /* margin-right: 20px;*/
  background: var(--section-color);
}

/* Titles */
.faq-section .section-title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: 1rem;

  text-align: center;
  display: block;
}

.faq-section .section-subtitle {
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto 0 auto;
  font-size: 16px;
  line-height: 1.7;

  text-align: center;
}

/* Container */
.faq-container {
  max-width: 900px;
  margin: auto;
}

/* Item */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Question */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--title-color);
  /*font-size: 1.1rem; */
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  padding: 20px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* Plus icon */
.faq-question span {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-answer p {
  padding: 0 10px 15px;
  color: var(--text-color);
  /*font-size: 0.95rem; */

  font-size: 14px;
  line-height: 1.6;
}

/* Active */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* Hover */
.faq-question:hover {
  color: var(--first-color);
}

/* ---------------- FAQ Section Responsive ---------------- */

/* Base already defined above (desktop) */

/* Large tablets / small laptops (≤992px) */
@media (max-width: 992px) {
  .faq-section {
    padding: 40px 5% 60px 5%;
  }

  .faq-section .section-title {
    font-size: 38px;
  }

  .faq-section .section-subtitle {
    font-size: 15px;
    line-height: 1.6;
    max-width: 600px;
  }

  .faq-question {
    font-size: 15px;
    padding: 18px 10px;
  }

  .faq-question span {
    font-size: 1.3rem;
  }

  .faq-answer p {
    font-size: 13px;
    padding: 0 10px 12px;
  }
}

/* Tablets / medium screens (≤768px) */
@media (max-width: 768px) {
  .faq-section {
    padding: 30px 5% 50px 5%;
  }

  .faq-section .section-title {
    font-size: 32px;
  }

  .faq-section .section-subtitle {
    font-size: 14px;
    line-height: 1.5;
    max-width: 500px;
  }

  .faq-question {
    font-size: 14px;
    padding: 16px 10px;
  }

 .faq-question span {
    font-size: 1.2rem;
  }

  .faq-answer p {
    font-size: 13px;
    padding: 0 10px 10px;
  }
}

/* Small phones / very small screens (≤480px) */
@media (max-width: 480px) {
  .faq-section {
    padding: 20px 5% 40px 5%;
  }

  .faq-section .section-title {
    font-size: 28px;
  }

  .faq-section .section-subtitle {
    font-size: 13px;
    line-height: 1.4;
    max-width: 100%;
    padding: 0 5px;
  }

  .faq-question {
    font-size: 13px;
    padding: 14px 8px;
  }

  .faq-question span {
    font-size: 1.2rem;
  }

  .faq-answer p {
    font-size: 12px;
    padding: 0 8px 10px;
  }
}

/* Extra small phones / portrait small (≤360px) */
@media (max-width: 360px) {
  .faq-section .section-title {
    font-size: 25px;
  }

  .faq-section .section-subtitle {
    font-size: 12px;
    line-height: 1.3;
  }

  .faq-question {
    font-size: 12px;
    padding: 12px 8px;
  }

  .faq-question span {
    font-size: 1rem;
  }

  .faq-answer p {
    font-size: 11px;
    padding: 0 8px 8px;
  }
}

/* ======== contact =========   */
 .contact-section {
     /* background: #0d1f35;*/
     background: var(--section-color);
      padding: 5rem 0 5rem;
    }
 
    /* Header */
    .contact-header { margin-bottom: 3rem; animation: fadeUp 0.8s ease both; }
    .contact-eyebrow {
      display: block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color:/* #c8a46e;*/ var(--title-color);
      margin-bottom: 0.9rem;
    }
    .contact-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.7rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 1.1rem;
    }
    .contact-desc {
      font-size: 1rem;
      color: var(--text-color);
      line-height: 1.75;
      max-width: 640px;
      margin: 0 auto;
    }
 
    /* Info cards row */
    .contact-cards-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.2rem;
      margin-bottom: 2.5rem;
      animation: fadeUp 0.8s 0.15s ease both;
    }
    .contact-info-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 14px;
      padding: 1.6rem 1.2rem;
      text-align: center;
      transition: background 0.2s, transform 0.2s;
    }
    .contact-info-card:hover {
      background: rgba(255,255,255,0.09);
      transform: translateY(-3px);
    }
    .ci-icon { font-size: 1.8rem; margin-bottom: 0.7rem; }
    .ci-label {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-bottom: 0.35rem;
    }
    .ci-value {
      display: block;
      font-size: 0.88rem;
      font-weight: 500;
      color: rgba(255,255,255,0.85);
      text-decoration: none;
    }
    a.ci-value:hover { color:#1DC9A9; /* #f26522;*/ }
 
    /* Still Have Questions banner */
    .still-questions-banner {
      display: flex;
      align-items: center;
      gap: 2rem;
      background:var(--section-color);/* #fff5f0;*/
      border: 1px solid rgba(230,200,180,0.4);
      border-radius: 14px;
      padding: 1.7rem 2rem 1.7rem 0;
      position: relative;
      overflow: hidden;
      animation: fadeUp 0.8s 0.3s ease both;
    }
    .sq-accent {
      width: 5px;
      position: absolute;
      left: 0; top: 0; bottom: 0;
      background:/* #e8622a;*/ #1DC9A9;
      border-radius: 14px 0 0 14px;
    }
    .sq-text { flex: 1; padding-left: 2.5rem; }
    .sq-title {
      font-size: 1.1rem;
      font-weight: 700;
      color:/* #1e2a22; */ var(--title-color);
      margin-bottom: 0.25rem;
    }
    .sq-sub {
      font-size: 0.875rem;
      color: var(--text-color);
      margin: 0;
    }
    .sq-btn {
      background:/* #e8622a;*/ #1DC9A9;
      color: #fff;
      text-decoration: none;
      padding: 0.78rem 1.8rem;
      border-radius: 8px;
      font-size: 0.92rem;
      font-weight: 600;
      white-space: nowrap;
      flex-shrink: 0;
      transition: background 0.2s, transform 0.15s;
    }
    .sq-btn:hover {
      background: #1DC9A9;
      color: #fff;
      transform: translateY(-1px);
    }
 
    @media (max-width: 900px) { .contact-cards-row { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 576px) {
      .contact-cards-row { grid-template-columns: repeat(2, 1fr); }
      .still-questions-banner { flex-direction: column; text-align: center; padding: 2rem 1.5rem 1.5rem; }
      .sq-accent { width: 100%; height: 5px; top: 0; left: 0; right: 0; bottom: unset; border-radius: 14px 14px 0 0; }
      .sq-text { padding-left: 0; }
    }

    /* ─────────────────────────────────────────────
   EXTRA SMALL DEVICES (≤ 480px)
───────────────────────────────────────────── */
@media (max-width: 480px) {

  .contact-section {
    padding: 3rem 0;
  }

  .contact-title {
    font-size: 1.6rem;
  }

  .contact-desc {
    font-size: 0.85rem;
  }

  .contact-info-card {
    padding: 1.2rem 0.8rem;
    border-radius: 12px;
  }

  .ci-icon {
    font-size: 1.4rem;
  }

  .ci-label {
    font-size: 0.65rem;
  }

  .ci-value {
    font-size: 0.8rem;
  }

  /* Banner */
  .still-questions-banner {
    border-radius: 12px;
    padding: 1.3rem 1rem 1.3rem 0;
  }

  .sq-text {
    padding-left: 1.5rem;
  }

  .sq-title {
    font-size: 1rem;
  }

  .sq-sub {
    font-size: 0.8rem;
  }

  .sq-btn {
    font-size: 0.85rem;
    padding: 0.7rem;
  }

}


/* ─────────────────────────────────────────────
   EXTRA EXTRA SMALL (≤ 360px)
───────────────────────────────────────────── */
@media (max-width: 360px) {

  .contact-title {
    font-size: 1.4rem;
  }

  .contact-desc {
    font-size: 0.8rem;
  }

  .ci-value {
    font-size: 0.75rem;
  }

  .sq-title {
    font-size: 0.9rem;
  }

  .sq-sub {
    font-size: 0.75rem;
  }

  .sq-btn {
    font-size: 0.8rem;
    padding: 0.6rem;
  }

}

 /* ===================== Chat Button ========================== */

 #chat-toggle {
   position: fixed;
   bottom: 20px;
   right: 20px;
   background: #1DC9A9;
   color: #fff;
   width: 60px;
   height: 60px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 24px;
   cursor: pointer;
   z-index: 9999;
 }

 /* Chat Box */
 #chat-box {
   position: fixed;
   bottom: 90px;
   right: 20px;
   width: 300px;
   background: #fff;
   border-radius: 10px;
   display: none;
   flex-direction: column;
   box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
   overflow: hidden;
 }

 /* Header */
 .chat-header {
   background: #1DC9A9;
   color: #fff;
   padding: 10px;
   display: flex;
   justify-content: space-between;
 }

 .chat-header button {

   border: none;
   background: none;

   color: white;
 }

 /* Body */
 .chat-body {
   padding: 10px;
   height: 250px;
   overflow-y: auto;
 }

 .bot-message {
   background: #f1f1f1;
   padding: 8px;
   border-radius: 6px;
   font-size: 16px;
   margin-bottom: 5px;
 }

 .user-message {
   background: #1DC9A9;
   color: #fff;
   padding: 8px;
   font-size: 16px;
   border-radius: 6px;
   margin-bottom: 5px;
   text-align: right;
 }

 /* Footer */
 .chat-footer {
   display: flex;
 }

 .chat-footer input {
   flex: 1;
   border: none;
   padding: 10px;
 }

 .chat-footer button {
   background: #1DC9A9;
   color: #fff;
   border: none;
   padding: 10px;
 }