    :root {
      --navy: #0a1628;
      --teal: #0d7377;
      --teal-light: #14a5ab;
      --gold: #c9a84c;
      --cream: #fdf8f2;
      --white: #ffffff;
      --text: #1a2332;
      --muted: #6b7a8d;
      --border: rgba(13, 115, 119, 0.15);
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background: var(--cream);
    }

    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(10, 22, 40, 0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    }

    .header-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 24px;
      height: 70px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .logo-icon {
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, var(--teal), var(--teal-light));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
    }

    .logo-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--white);
    }

    .logo-title {
      font-size: 0.7rem;
      color: var(--gold);
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    nav {
      display: flex;
      gap: 4px;
      align-items: center;
    }

    nav a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      padding: 8px 14px;
      border-radius: 8px;
      font-size: 0.88rem;
      font-weight: 500;
      transition: all 0.2s;
    }

    nav a:hover,
    nav a.active {
      color: var(--white);
      background: rgba(255, 255, 255, 0.08);
    }

    .btn-book {
      background: linear-gradient(135deg, var(--teal), var(--teal-light)) !important;
      color: var(--white) !important;
      padding: 10px 20px !important;
      border-radius: 50px !important;
      font-weight: 600 !important;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
    }

    .hamburger span {
      width: 24px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--teal);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .section-label::before {
      content: '';
      width: 24px;
      height: 2px;
      background: var(--teal);
    }

    h2.section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      line-height: 1.2;
      margin-bottom: 16px;
      color: var(--navy);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--teal), var(--teal-light));
      color: var(--white);
      padding: 13px 26px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.92rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 15px rgba(13, 115, 119, 0.35);
      transition: all 0.3s;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
    }

    .btn-wa {
      background: #25D366;
      color: var(--white);
      padding: 12px 24px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s;
    }

    /* PAGE HERO */
    .page-hero {
      background: var(--navy);
      padding: 140px 0 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(13, 115, 119, 0.15), transparent);
    }

    .hero-inner {
      position: relative;
    }

    .hero-label {
      display: inline-block;
      color: var(--gold);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .page-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--white);
      margin-bottom: 16px;
    }

    .page-hero p {
      color: rgba(255, 255, 255, 0.6);
      font-size: 1.02rem;
      max-width: 580px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* Quick nav */
    .service-nav {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 70px;
      z-index: 100;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    }

    .service-nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      gap: 4px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .service-nav-inner::-webkit-scrollbar {
      display: none;
    }

    .snav-item {
      padding: 16px 18px;
      color: var(--muted);
      font-size: 0.85rem;
      font-weight: 600;
      text-decoration: none;
      white-space: nowrap;
      border-bottom: 2px solid transparent;
      transition: all 0.2s;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .snav-item:hover,
    .snav-item.active {
      color: var(--teal);
      border-bottom-color: var(--teal);
    }

    /* SERVICE SECTIONS */
    .service-section {
      padding: 96px 0;
      scroll-margin-top: 120px;
    }

    .service-section:nth-child(even) {
      background: var(--white);
    }

    .service-section:nth-child(odd) {
      background: var(--cream);
    }

    .service-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: flex-start;
    }

    .service-layout.reverse {
      direction: rtl;
    }

    .service-layout.reverse>* {
      direction: ltr;
    }

    .service-icon-hero {
      width: 90px;
      height: 90px;
      border-radius: 24px;
      background: linear-gradient(135deg, var(--teal), var(--teal-light));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.8rem;
      margin-bottom: 24px;
      box-shadow: 0 8px 30px rgba(13, 115, 119, 0.3);
    }

    .service-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.7rem, 3vw, 2.2rem);
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .service-intro {
      color: #3a4a5c;
      font-size: 1rem;
      line-height: 1.82;
      margin-bottom: 28px;
    }

    .conditions-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 28px;
    }

    .condition-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .cond-check {
      width: 22px;
      height: 22px;
      border-radius: 6px;
      background: rgba(13, 115, 119, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--teal);
      font-size: 0.9rem;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .cond-text strong {
      display: block;
      color: var(--navy);
      font-size: 0.92rem;
    }

    .cond-text span {
      font-size: 0.83rem;
      color: var(--muted);
    }

    .service-visual {
      background: linear-gradient(135deg, var(--navy) 0%, #0f2a40 100%);
      border-radius: 24px;
      padding: 36px;
      position: relative;
      overflow: hidden;
    }

    .service-visual::before {
      content: '';
      position: absolute;
      top: -30px;
      right: -30px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: rgba(13, 115, 119, 0.2);
    }

    .service-visual::after {
      content: '';
      position: absolute;
      bottom: -40px;
      left: -20px;
      width: 140px;
      height: 140px;
      border-radius: 50%;
      background: rgba(201, 168, 76, 0.08);
    }

    .sv-title {
      font-family: 'Playfair Display', serif;
      color: var(--white);
      font-size: 1.1rem;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }

    .sv-items {
      display: flex;
      flex-direction: column;
      gap: 10px;
      position: relative;
      z-index: 1;
    }

    .sv-item {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      padding: 14px 16px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .sv-item-icon {
      font-size: 1.3rem;
      flex-shrink: 0;
    }

    .sv-item-text {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.88rem;
      line-height: 1.4;
    }

    .sv-item-text strong {
      display: block;
      color: var(--white);
      margin-bottom: 2px;
    }

    .status-green {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #4ade80;
      flex-shrink: 0;
      animation: pulse-g 2s infinite;
    }

    @keyframes pulse-g {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: 0.5;
        transform: scale(1.4);
      }
    }

    .book-cta-inline {
      background: rgba(13, 115, 119, 0.1);
      border: 1px solid rgba(13, 115, 119, 0.2);
      border-radius: 16px;
      padding: 24px;
      margin-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .book-cta-text {
      font-size: 0.92rem;
      color: var(--navy);
      font-weight: 600;
    }

    .book-cta-sub {
      font-size: 0.8rem;
      color: var(--muted);
      margin-top: 4px;
    }

    /* PRICING / PACKAGE SECTION */
    .packages {
      background: var(--navy);
      padding: 96px 0;
    }

    .packages h2,
    .packages .section-label {
      color: var(--white);
    }

    .packages .section-label {
      color: var(--gold);
    }

    .packages .section-label::before {
      background: var(--gold);
    }

    .packages-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 56px;
    }

    .pkg-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 36px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .pkg-card.featured {
      border-color: var(--teal);
      background: rgba(13, 115, 119, 0.12);
    }

    .pkg-card.featured::before {
      content: 'Most Popular';
      position: absolute;
      top: 20px;
      right: -28px;
      background: var(--gold);
      color: var(--navy);
      padding: 4px 40px;
      font-size: 0.72rem;
      font-weight: 700;
      transform: rotate(45deg);
      letter-spacing: 0.5px;
    }

    .pkg-icon {
      font-size: 2.5rem;
      margin-bottom: 16px;
      display: block;
    }

    .pkg-title {
      font-family: 'Playfair Display', serif;
      color: var(--white);
      font-size: 1.2rem;
      margin-bottom: 8px;
    }

    .pkg-desc {
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.85rem;
      line-height: 1.6;
      margin-bottom: 24px;
    }

    .pkg-items {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 28px;
    }

    .pkg-items li {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255, 255, 255, 0.75);
      font-size: 0.88rem;
    }

    .pkg-items li::before {
      content: '✓';
      color: var(--teal-light);
      font-weight: 700;
      flex-shrink: 0;
    }

    .pkg-cta {
      display: block;
      text-align: center;
      background: rgba(255, 255, 255, 0.08);
      color: var(--white);
      padding: 12px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      transition: all 0.3s;
      border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .pkg-card.featured .pkg-cta {
      background: var(--teal);
      border-color: var(--teal);
    }

    .pkg-cta:hover {
      background: var(--teal);
      border-color: var(--teal);
    }

    footer {
      background: #060e1a;
      color: rgba(255, 255, 255, 0.6);
      padding: 64px 0 32px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-brand h3 {
      font-family: 'Playfair Display', serif;
      color: var(--white);
      font-size: 1.2rem;
      margin-bottom: 12px;
    }

    .footer-brand p {
      font-size: 0.88rem;
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 10px;
      font-size: 0.88rem;
    }

    .footer-contact-icon {
      color: var(--teal-light);
    }

    footer h4 {
      color: var(--white);
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 18px;
    }

    footer ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    footer ul li a {
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      font-size: 0.88rem;
      transition: color 0.2s;
    }

    footer ul li a:hover {
      color: var(--teal-light);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 0.8rem;
    }

    .social-links {
      display: flex;
      gap: 10px;
    }

    .social-link {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      transition: all 0.2s;
    }

    .social-link:hover {
      background: var(--teal);
      color: var(--white);
    }

    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 999;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #25D366;
      color: var(--white);
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
      animation: float 3s ease-in-out infinite;
    }

    .wa-float::before {
      content: '';
      position: absolute;
      inset: -3px;
      border-radius: 50%;
      border: 2px solid #25D366;
      animation: wa-ripple 2s ease-out infinite;
    }

    .wa-tooltip {
      position: absolute;
      right: 70px;
      white-space: nowrap;
      background: var(--navy);
      color: var(--white);
      padding: 8px 14px;
      border-radius: 8px;
      font-size: 0.82rem;
      font-weight: 600;
      pointer-events: none;
      opacity: 0;
      transform: translateX(8px);
      transition: all 0.3s;
    }

    .wa-float:hover .wa-tooltip {
      opacity: 1;
      transform: translateX(0);
    }

    .wa-tooltip::after {
      content: '';
      position: absolute;
      left: 100%;
      top: 50%;
      transform: translateY(-50%);
      border: 6px solid transparent;
      border-left-color: var(--navy);
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    .reveal-delay-1 {
      transition-delay: 0.1s;
    }

    .reveal-delay-2 {
      transition-delay: 0.2s;
    }

    .reveal-delay-3 {
      transition-delay: 0.3s;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-6px);
      }
    }

    @keyframes wa-ripple {
      0% {
        opacity: 0.6;
        transform: scale(1);
      }

      100% {
        opacity: 0;
        transform: scale(1.6);
      }
    }

    @media(max-width:900px) {

      .service-layout,
      .service-layout.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
      }

      .packages-grid {
        grid-template-columns: 1fr 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width:600px) {
      nav {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .packages-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }