    /* ─── Reset & Base ───────────────────────────────────────── */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --aqua:        #00C9C8;
      --aqua-dark:   #009B9A;
      --aqua-light:  #A8F0F0;
      --aqua-pale:   #E0FAFA;
      --navy:        #0A2540;
      --navy-light:  #133556;
      --white:       #FFFFFF;
      --gray:        #F4FAFA;
      --text:        #1A3548;
      --text-light:  #5A7A8A;
      --shadow:      0 8px 32px rgba(0,201,200,.18);
      --radius:      16px;
      --transition:  .35s cubic-bezier(.4,0,.2,1);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Poppins', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ─── Scrollbar ───────────────────────────────────────────── */
    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: var(--aqua-pale); }
    ::-webkit-scrollbar-thumb { background: var(--aqua); border-radius: 4px; }

    /* ─── Navbar ──────────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 5%;
      background: rgba(10,37,64,.85);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(0,201,200,.18);
      transition: var(--transition);
    }

    nav.scrolled {
      padding: .7rem 5%;
      background: rgba(10,37,64,.97);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: .6rem;
      text-decoration: none;
    }

    .logo-icon {
      width: 42px; height: 42px;
      background: linear-gradient(135deg, var(--aqua), var(--aqua-dark));
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
      box-shadow: 0 0 16px rgba(0,201,200,.5);
    }

    .logo-text {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: .02em;
    }

    .logo-text span { color: var(--aqua); }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      color: rgba(255,255,255,.8);
      text-decoration: none;
      font-size: .9rem;
      font-weight: 500;
      transition: color var(--transition);
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 2px;
      background: var(--aqua);
      transition: width var(--transition);
    }

    .nav-links a:hover { color: var(--aqua); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      background: linear-gradient(135deg, var(--aqua), var(--aqua-dark));
      color: var(--navy) !important;
      font-weight: 700 !important;
      padding: .5rem 1.3rem;
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(0,201,200,.4);
      transition: transform var(--transition), box-shadow var(--transition) !important;
    }

    .nav-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0,201,200,.6) !important;
    }

    .nav-cta::after { display: none !important; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: .3rem;
    }

    .hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: var(--transition);
    }

    /* ─── Hero ────────────────────────────────────────────────── */
    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: linear-gradient(180deg, var(--navy) 0%, #0d3557 60%, #0a4a6e 100%);
    }

    .hero-bg-waves {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 220px;
    }

    .hero-particles {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .particle {
      position: absolute;
      border-radius: 50%;
      background: var(--aqua);
      opacity: .12;
      animation: float-particle linear infinite;
    }

    @keyframes float-particle {
      0%   { transform: translateY(100vh) scale(0); opacity: 0; }
      10%  { opacity: .15; }
      90%  { opacity: .08; }
      100% { transform: translateY(-20vh) scale(1); opacity: 0; }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 1.5rem;
      max-width: 820px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: rgba(0,201,200,.15);
      border: 1px solid rgba(0,201,200,.35);
      color: var(--aqua-light);
      font-size: .82rem;
      font-weight: 600;
      padding: .4rem 1rem;
      border-radius: 50px;
      margin-bottom: 1.5rem;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .hero-title {
      font-size: clamp(2.4rem, 6vw, 4.2rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.12;
      margin-bottom: 1.2rem;
    }

    .hero-title .highlight {
      background: linear-gradient(135deg, var(--aqua), #7DF9F9);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-sub {
      font-size: 1.1rem;
      color: rgba(255,255,255,.72);
      max-width: 560px;
      margin: 0 auto 2.5rem;
      line-height: 1.7;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .85rem 2rem;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      border: none;
      transition: transform var(--transition), box-shadow var(--transition);
    }

    .btn:hover { transform: translateY(-3px); }

    .btn-primary {
      background: linear-gradient(135deg, var(--aqua), var(--aqua-dark));
      color: var(--navy);
      box-shadow: 0 6px 24px rgba(0,201,200,.5);
    }

    .btn-primary:hover { box-shadow: 0 12px 32px rgba(0,201,200,.7); }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,.4);
    }

    .btn-outline:hover { border-color: var(--aqua); color: var(--aqua); }

    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .5rem;
      color: rgba(255,255,255,.5);
      font-size: .78rem;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .scroll-dot {
      width: 24px; height: 38px;
      border: 2px solid rgba(255,255,255,.3);
      border-radius: 12px;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: 5px;
    }

    .scroll-dot::after {
      content: '';
      width: 5px; height: 8px;
      background: var(--aqua);
      border-radius: 3px;
      animation: scroll-bounce 1.8s infinite;
    }

    @keyframes scroll-bounce {
      0%, 100% { transform: translateY(0); opacity: 1; }
      70%       { transform: translateY(12px); opacity: .2; }
    }

    /* ─── Carousel ───────────────────────────────────────────── */
    .carousel-section {
      background: var(--gray);
      padding: 5rem 0 4rem;
    }

    .section-header {
      text-align: center;
      margin-bottom: 3rem;
      padding: 0 1.5rem;
    }

    .section-tag {
      display: inline-block;
      background: linear-gradient(135deg, var(--aqua), var(--aqua-dark));
      color: var(--navy);
      font-size: .78rem;
      font-weight: 700;
      padding: .3rem .9rem;
      border-radius: 50px;
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-bottom: 1rem;
    }

    .section-title {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 800;
      color: var(--navy);
      margin-bottom: .8rem;
      line-height: 1.2;
    }

    .section-title span { color: var(--aqua-dark); }

    .section-desc {
      font-size: 1rem;
      color: var(--text-light);
      max-width: 540px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .carousel-wrapper {
      position: relative;
      max-width: 1000px;
      margin: 0 auto;
      overflow: hidden;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .carousel-track {
      display: flex;
      transition: transform .5s cubic-bezier(.4,0,.2,1);
    }

    .carousel-slide {
      min-width: 100%;
      height: 500px;
      position: relative;
      overflow: hidden;
    }

    .carousel-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .slide-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(10,37,64,.75) 0%, transparent 55%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 2.5rem;
    }

    .slide-label {
      display: inline-block;
      background: var(--aqua);
      color: var(--navy);
      font-size: .72rem;
      font-weight: 700;
      padding: .25rem .75rem;
      border-radius: 50px;
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-bottom: .6rem;
      width: fit-content;
    }

    .slide-title {
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--white);
    }

    .slide-sub {
      font-size: .9rem;
      color: rgba(255,255,255,.75);
      margin-top: .3rem;
    }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(10,37,64,.65);
      backdrop-filter: blur(8px);
      color: var(--white);
      border: 1px solid rgba(0,201,200,.35);
      width: 48px; height: 48px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.2rem;
      display: flex; align-items: center; justify-content: center;
      transition: background var(--transition), transform var(--transition);
      z-index: 5;
    }

    .carousel-btn:hover {
      background: var(--aqua);
      color: var(--navy);
      transform: translateY(-50%) scale(1.1);
    }

    .carousel-btn.prev { left: 1rem; }
    .carousel-btn.next { right: 1rem; }

    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: .5rem;
      margin-top: 1.2rem;
    }

    .dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(0,155,154,.3);
      cursor: pointer;
      transition: var(--transition);
      border: none;
      padding: 0;
    }

    .dot.active {
      width: 24px;
      border-radius: 4px;
      background: var(--aqua);
    }

    /* ─── Stats ───────────────────────────────────────────────── */
    .stats-bar {
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      padding: 2.5rem 5%;
      display: flex;
      justify-content: center;
      gap: 4rem;
      flex-wrap: wrap;
    }

    .stat-item {
      text-align: center;
    }

    .stat-num {
      font-size: 2.4rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--aqua), #7DF9F9);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
    }

    .stat-label {
      font-size: .85rem;
      color: rgba(255,255,255,.65);
      margin-top: .3rem;
      letter-spacing: .04em;
    }

    /* ─── About ───────────────────────────────────────────────── */
    .about-section {
      padding: 6rem 5%;
      background: var(--white);
    }

    .about-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .about-image-wrap {
      position: relative;
    }

    .about-img-main {
      width: 100%;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      display: block;
      object-fit: cover;
      height: 420px;
    }

    .about-img-badge {
      position: absolute;
      bottom: -1.5rem;
      right: -1.5rem;
      background: linear-gradient(135deg, var(--aqua), var(--aqua-dark));
      color: var(--navy);
      padding: 1.2rem 1.6rem;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      text-align: center;
    }

    .about-img-badge strong {
      display: block;
      font-size: 2rem;
      font-weight: 800;
      line-height: 1;
    }

    .about-img-badge span {
      font-size: .8rem;
      font-weight: 600;
    }

    .about-text .section-header {
      text-align: left;
      margin-bottom: 1.5rem;
      padding: 0;
    }

    .about-features {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .about-feat {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }

    .feat-icon {
      width: 44px; height: 44px;
      min-width: 44px;
      background: var(--aqua-pale);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
    }

    .feat-text strong {
      display: block;
      font-size: .95rem;
      font-weight: 700;
      color: var(--navy);
    }

    .feat-text p {
      font-size: .85rem;
      color: var(--text-light);
      margin-top: .15rem;
      line-height: 1.5;
    }

    /* ─── Plans ───────────────────────────────────────────────── */
    .plans-section {
      background: var(--gray);
      padding: 6rem 5%;
    }

    .plans-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .plan-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,.07);
      transition: transform var(--transition), box-shadow var(--transition);
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .plan-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 48px rgba(0,155,154,.18);
    }

    .plan-card.featured {
      border: 2px solid var(--aqua);
      box-shadow: 0 8px 32px rgba(0,201,200,.22);
    }

    .plan-popular {
      position: absolute;
      top: 1.2rem; right: 1.2rem;
      background: linear-gradient(135deg, var(--aqua), var(--aqua-dark));
      color: var(--navy);
      font-size: .7rem;
      font-weight: 700;
      padding: .25rem .8rem;
      border-radius: 50px;
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    .plan-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .plan-body {
      padding: 1.8rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .plan-icon {
      font-size: 2rem;
      margin-bottom: .5rem;
    }

    .plan-name {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: .4rem;
    }

    .plan-desc {
      font-size: .88rem;
      color: var(--text-light);
      line-height: 1.6;
      margin-bottom: 1.2rem;
    }

    .plan-features {
      list-style: none;
      margin-bottom: 1.5rem;
      flex: 1;
    }

    .plan-features li {
      display: flex;
      align-items: center;
      gap: .5rem;
      font-size: .88rem;
      color: var(--text);
      padding: .3rem 0;
    }

    .plan-features li::before {
      content: '✓';
      width: 18px; height: 18px;
      min-width: 18px;
      background: var(--aqua-pale);
      color: var(--aqua-dark);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: .7rem;
      font-weight: 800;
    }

    .plan-price {
      display: flex;
      align-items: baseline;
      gap: .3rem;
      margin-bottom: 1.2rem;
    }

    .price-amount {
      font-size: 2rem;
      font-weight: 800;
      color: var(--navy);
    }

    .price-from {
      font-size: .82rem;
      color: var(--text-light);
    }

    .plan-cta {
      display: block;
      text-align: center;
      padding: .75rem 1.5rem;
      background: var(--aqua-pale);
      color: var(--aqua-dark);
      border-radius: 50px;
      font-weight: 700;
      text-decoration: none;
      transition: var(--transition);
      border: 2px solid var(--aqua-light);
    }

    .plan-card.featured .plan-cta {
      background: linear-gradient(135deg, var(--aqua), var(--aqua-dark));
      color: var(--navy);
      border-color: transparent;
      box-shadow: 0 4px 16px rgba(0,201,200,.4);
    }

    .plan-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0,201,200,.35);
    }

    .plan-card.featured .plan-cta:hover {
      box-shadow: 0 8px 28px rgba(0,201,200,.6);
    }

    /* ─── Experience Highlights ───────────────────────────────── */
    .highlights-section {
      padding: 6rem 5%;
      background: var(--white);
    }

    .highlights-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5rem;
    }

    .highlight-card {
      text-align: center;
      padding: 2.5rem 1.5rem;
      border-radius: var(--radius);
      background: var(--aqua-pale);
      transition: transform var(--transition), box-shadow var(--transition);
      border: 1px solid rgba(0,201,200,.15);
    }

    .highlight-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 36px rgba(0,201,200,.18);
    }

    .hl-emoji {
      font-size: 2.8rem;
      margin-bottom: 1rem;
      display: block;
    }

    .hl-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: .5rem;
    }

    .hl-desc {
      font-size: .85rem;
      color: var(--text-light);
      line-height: 1.6;
    }

    /* ─── Testimonials ────────────────────────────────────────── */
    .testimonials-section {
      padding: 6rem 5%;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      position: relative;
      overflow: hidden;
    }

    .testimonials-section::before {
      content: '"';
      position: absolute;
      top: -2rem;
      left: 4%;
      font-size: 20rem;
      color: rgba(0,201,200,.06);
      font-family: Georgia, serif;
      line-height: 1;
      pointer-events: none;
    }

    .testimonials-section .section-title { color: var(--white); }
    .testimonials-section .section-tag { background: rgba(0,201,200,.15); color: var(--aqua); border: 1px solid rgba(0,201,200,.3); }

    .testimonials-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }

    .testi-card {
      background: rgba(255,255,255,.06);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(0,201,200,.18);
      border-radius: var(--radius);
      padding: 2rem;
      transition: transform var(--transition);
    }

    .testi-card:hover { transform: translateY(-4px); }

    .testi-stars {
      color: var(--aqua);
      font-size: 1rem;
      margin-bottom: 1rem;
      letter-spacing: .1em;
    }

    .testi-text {
      font-size: .92rem;
      color: rgba(255,255,255,.82);
      line-height: 1.7;
      margin-bottom: 1.5rem;
      font-style: italic;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: .75rem;
    }

    .testi-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--aqua), var(--aqua-dark));
      display: flex; align-items: center; justify-content: center;
      font-weight: 700;
      color: var(--navy);
      font-size: 1rem;
      flex-shrink: 0;
    }

    .testi-name {
      font-weight: 600;
      color: var(--white);
      font-size: .9rem;
    }

    .testi-location {
      font-size: .78rem;
      color: rgba(255,255,255,.5);
    }

    /* ─── Gallery strip ───────────────────────────────────────── */
    .gallery-strip {
      display: flex;
      overflow: hidden;
      height: 180px;
    }

    .gallery-strip img {
      flex: 1;
      min-width: 0;
      object-fit: cover;
      filter: brightness(.8) saturate(1.2);
      transition: flex var(--transition), filter var(--transition);
    }

    .gallery-strip img:hover {
      flex: 2.5;
      filter: brightness(1) saturate(1.3);
    }

    /* ─── Contact / CTA ───────────────────────────────────────── */
    .contact-section {
      padding: 6rem 5%;
      background: var(--white);
    }

    .contact-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }

    .contact-info h2 {
      font-size: 2rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    .contact-info h2 span { color: var(--aqua-dark); }

    .contact-info p {
      color: var(--text-light);
      line-height: 1.7;
      margin-bottom: 2rem;
    }

    .contact-items {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .ci-icon {
      width: 46px; height: 46px;
      background: var(--aqua-pale);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .ci-text strong {
      display: block;
      font-size: .9rem;
      font-weight: 700;
      color: var(--navy);
    }

    .ci-text span {
      font-size: .85rem;
      color: var(--text-light);
    }

    .contact-form {
      background: var(--gray);
      border-radius: var(--radius);
      padding: 2.5rem;
      border: 1px solid rgba(0,201,200,.12);
    }

    .contact-form h3 {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 1.5rem;
    }

    .form-group {
      margin-bottom: 1.2rem;
    }

    .form-group label {
      display: block;
      font-size: .85rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: .4rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: .75rem 1rem;
      border: 2px solid rgba(0,201,200,.15);
      border-radius: 10px;
      font-family: inherit;
      font-size: .9rem;
      color: var(--text);
      background: var(--white);
      transition: border-color var(--transition), box-shadow var(--transition);
      outline: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--aqua);
      box-shadow: 0 0 0 3px rgba(0,201,200,.12);
    }

    .form-group textarea { resize: vertical; min-height: 100px; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

    .submit-btn {
      width: 100%;
      padding: .9rem;
      border-radius: 50px;
      background: linear-gradient(135deg, var(--aqua), var(--aqua-dark));
      color: var(--navy);
      font-weight: 700;
      font-size: 1rem;
      border: none;
      cursor: pointer;
      transition: transform var(--transition), box-shadow var(--transition);
      box-shadow: 0 4px 16px rgba(0,201,200,.4);
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(0,201,200,.6);
    }

    /* ─── Social ──────────────────────────────────────────────── */
    .social-section {
      background: var(--aqua-pale);
      padding: 4rem 5%;
      text-align: center;
    }

    .social-section h2 {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: .6rem;
    }

    .social-section p {
      color: var(--text-light);
      margin-bottom: 2rem;
    }

    .social-links {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .social-link {
      display: flex;
      align-items: center;
      gap: .6rem;
      padding: .75rem 1.5rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: .9rem;
      transition: transform var(--transition), box-shadow var(--transition);
    }

    .social-link:hover {
      transform: translateY(-3px);
    }

    .sl-instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
    .sl-facebook  { background: #1877F2; color: #fff; }
    .sl-whatsapp  { background: #25D366; color: #fff; }
    .sl-tiktok    { background: #000; color: #fff; }
    .sl-youtube   { background: #FF0000; color: #fff; }

    .social-link:hover { box-shadow: 0 8px 24px rgba(0,0,0,.2); }

    .social-icon { font-size: 1.2rem; }

    /* ─── Footer ──────────────────────────────────────────────── */
    footer {
      background: var(--navy);
      padding: 3.5rem 5% 2rem;
      color: rgba(255,255,255,.6);
    }

    .footer-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand .logo-text { font-size: 1.3rem; }

    .footer-brand p {
      margin-top: 1rem;
      font-size: .85rem;
      line-height: 1.7;
    }

    .footer-col h4 {
      color: var(--white);
      font-size: .95rem;
      font-weight: 700;
      margin-bottom: 1.2rem;
    }

    .footer-col ul { list-style: none; }

    .footer-col ul li { margin-bottom: .55rem; }

    .footer-col ul a {
      color: rgba(255,255,255,.55);
      text-decoration: none;
      font-size: .85rem;
      transition: color var(--transition);
    }

    .footer-col ul a:hover { color: var(--aqua); }

    .footer-divider {
      max-width: 1100px;
      margin: 0 auto;
      border: none;
      border-top: 1px solid rgba(255,255,255,.08);
      margin-bottom: 1.5rem;
    }

    .footer-bottom {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: .5rem;
    }

    .footer-bottom p { font-size: .82rem; }

    .footer-bottom a { color: var(--aqua); text-decoration: none; }

    .license-btn {
      background: none;
      border: none;
      color: var(--aqua);
      cursor: pointer;
      font-size: inherit;
      padding: 0;
      text-decoration: underline;
      font-family: inherit;
    }
    .license-btn:hover { opacity: .8; }

    /* ─── License Modal ──────────────────────────────────────── */
    .license-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.65);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      padding: 1rem;
    }
    .license-modal-overlay[hidden] { display: none; }
    .license-modal-box {
      background: var(--dark, #1a1a2e);
      border: 1px solid rgba(0,173,181,.3);
      border-radius: 12px;
      padding: 2rem;
      max-width: 640px;
      width: 100%;
      max-height: 80vh;
      overflow-y: auto;
      position: relative;
      color: var(--light, #eee);
    }
    .license-modal-box h2 {
      margin: 0 0 1rem;
      font-size: 1.2rem;
      color: var(--aqua, #00ADB5);
    }
    .license-text {
      white-space: pre-wrap;
      font-size: .82rem;
      line-height: 1.7;
      margin: 0;
      font-family: inherit;
      color: var(--light, #eee);
    }
    .license-modal-close {
      position: absolute;
      top: .8rem;
      right: .8rem;
      background: none;
      border: none;
      color: var(--aqua, #00ADB5);
      font-size: 1.1rem;
      cursor: pointer;
      line-height: 1;
    }
    .license-modal-close:hover { opacity: .7; }

    /* ─── FAQ ────────────────────────────────────────────────── */
    .faq-section {
      padding: 6rem 5%;
      background: var(--gray);
    }

    .faq-container {
      max-width: 820px;
      margin: 0 auto;
    }

    .faq-item {
      background: var(--white);
      border-radius: var(--radius);
      border: 1px solid rgba(0,201,200,.15);
      margin-bottom: 1rem;
      overflow: hidden;
      transition: box-shadow var(--transition);
    }

    .faq-item.open {
      box-shadow: var(--shadow);
    }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      padding: 1.3rem 1.6rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-family: 'Poppins', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--text);
      gap: 1rem;
      transition: color var(--transition);
    }

    .faq-question:hover { color: var(--aqua-dark); }

    .faq-item.open .faq-question { color: var(--aqua-dark); }

    .faq-icon {
      flex-shrink: 0;
      width: 28px; height: 28px;
      background: var(--aqua-pale);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: .85rem;
      color: var(--aqua-dark);
      transition: transform var(--transition), background var(--transition);
      font-style: normal;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      background: var(--aqua);
      color: var(--white);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s ease, padding .4s ease;
      padding: 0 1.6rem;
    }

    .faq-answer p {
      padding-bottom: 1.3rem;
      font-size: .93rem;
      line-height: 1.75;
      color: var(--text-light);
    }

    /* ─── Wave SVG ────────────────────────────────────────────── */
    .wave-divider { display: block; width: 100%; overflow: hidden; line-height: 0; }
    .wave-divider svg { display: block; width: 100%; }

    /* ─── Floating WhatsApp ───────────────────────────────────── */
    .float-wa {
      position: fixed;
      bottom: 2rem; right: 2rem;
      z-index: 999;
      width: 58px; height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
      box-shadow: 0 6px 20px rgba(37,211,102,.45);
      text-decoration: none;
      animation: wa-pulse 2.5s infinite;
      transition: transform var(--transition);
    }

    .float-wa:hover { transform: scale(1.12); animation: none; }

    @keyframes wa-pulse {
      0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,.45); }
      50%       { box-shadow: 0 6px 30px rgba(37,211,102,.75), 0 0 0 10px rgba(37,211,102,.1); }
    }

    /* ─── Back to top ─────────────────────────────────────────── */
    .back-top {
      position: fixed;
      bottom: 2rem; left: 2rem;
      z-index: 999;
      width: 44px; height: 44px;
      background: var(--navy);
      color: var(--aqua);
      border: 1.5px solid rgba(0,201,200,.35);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      cursor: pointer;
      text-decoration: none;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--transition), transform var(--transition);
    }

    .back-top.show { opacity: 1; pointer-events: auto; }
    .back-top:hover { transform: translateY(-3px); }

    /* ─── Animations ──────────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .6s ease, transform .6s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─── Language Switcher ───────────────────────────────────── */
    /* ─── Language Dropdown ───────────────────────────────────── */
    .lang-dropdown {
      position: relative;
      margin-right: .6rem;
      z-index: 999;
    }

    .lang-trigger {
      display: flex;
      align-items: center;
      gap: .35rem;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 8px;
      cursor: pointer;
      padding: 5px 8px;
      transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
      color: #fff;
    }
    .lang-trigger:hover,
    .lang-dropdown.open .lang-trigger {
      background: rgba(0,201,200,.15);
      border-color: var(--aqua);
      box-shadow: 0 0 10px 2px rgba(0,201,200,.4);
    }

    .lang-trigger img {
      width: 24px;
      height: auto;
      border-radius: 3px;
      display: block;
      pointer-events: none;
    }

    .lang-trigger .lang-chevron {
      font-size: .6rem;
      opacity: .75;
      transition: transform var(--transition);
      line-height: 1;
    }
    .lang-dropdown.open .lang-chevron { transform: rotate(180deg); }

    .lang-panel {
      display: none;
      position: absolute;
      top: calc(100% + 6px);
      right: 0;
      background: var(--navy-light);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 8px 28px rgba(0,0,0,.45);
      min-width: 110px;
    }
    .lang-dropdown.open .lang-panel { display: block; }

    .lang-option {
      display: flex;
      align-items: center;
      gap: .5rem;
      padding: 8px 14px;
      cursor: pointer;
      border: none;
      background: none;
      width: 100%;
      text-align: left;
      color: rgba(255,255,255,.82);
      font-size: .82rem;
      font-family: inherit;
      transition: background var(--transition), color var(--transition);
    }
    .lang-option:hover { background: rgba(255,255,255,.08); color: #fff; }
    .lang-option.active {
      background: rgba(0,201,200,.18);
      color: var(--aqua);
    }
    .lang-option img {
      width: 22px;
      height: auto;
      border-radius: 3px;
      pointer-events: none;
    }

    /* ─── Mobile ──────────────────────────────────────────────── */
    @media (max-width: 900px) {
      .about-grid      { grid-template-columns: 1fr; gap: 3rem; }
      .contact-grid    { grid-template-columns: 1fr; gap: 3rem; }
      .footer-grid     { grid-template-columns: 1fr 1fr; }
      .about-img-badge { right: .5rem; bottom: -1rem; }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0; right: 0;
        height: 100vh;
        background: #0A2540;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        z-index: 999;
      }
      .nav-links.open a { font-size: 1.3rem; }
      .hamburger { display: flex; z-index: 1000; }
      .lang-dropdown { z-index: 1000; }
      .lang-trigger img { width: 20px; }
      .lang-panel { right: 0; }
      .carousel-slide { height: 320px; }
      .stats-bar { gap: 2rem; }
      .form-row { grid-template-columns: 1fr; }
      .gallery-strip { height: 120px; }
    }

    @media (max-width: 500px) {
      .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
      .hero-buttons { flex-direction: column; align-items: center; }
      .social-links { gap: .7rem; }
      .social-link { padding: .65rem 1.1rem; font-size: .82rem; }
    }
