 :root {
            --font-heading: 'Poppins', sans-serif;
            --font-body: 'Inter', sans-serif;
            --primary-dark: #051d21;
            --primary-blue: #007aff;
            --soft-blue: #e0f2fe;
            --light-gray: #f8fafc;
            --text-muted: #64748b;
            --radius-xl: 24px;
            --radius-lg: 16px;
            --shadow-soft: 0 20px 40px -15px rgba(0,0,0,0.05);
            --shadow-hover: 0 25px 50px -12px rgba(0,0,0,0.15);
            --radius-card: 20px;
            --radius-btn: 12px;
            --section-pad: 80px;
        }


       

        body {
            font-family: var(--font-body);
            background-color: #ffffff;
            color: #334155;
            padding: 0;
            margin: 0;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            color: var(--primary-dark);
            font-weight: 600;
        }
        section{
            padding:80px;
        }

        /* Utilitas tipografi */
        .text-muted-custom { color: var(--text-muted); }

        /* Bilah Navigasi */
        .navbar {
            padding: 0.6rem 1rem;
            background: transparent;
            
            z-index: 1000;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            transition: all 0.4s ease;
        }
        .navbar.navbar-scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        .navbar-brand {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: clamp(1rem, 2.5vw, 1.5rem);
            color: var(--primary-dark);
            transition: color 0.3s ease;
        }
        .navbar:not(.navbar-scrolled) .navbar-brand {
            color: white;
        }
        .nav-link {
            color: #475569;
            font-weight: 500;
            margin: 0 clamp(5px, 1vw, 10px);
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }
        .navbar:not(.navbar-scrolled) .nav-link {
            color: white;
        }
        .nav-link:hover { color: var(--primary-dark); }
        .navbar:not(.navbar-scrolled) .nav-link:hover {
            color: rgba(255, 255, 255, 0.8);
        }
        .navbar-toggler {
            color: var(--primary-dark);
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2815, 23, 42, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        .navbar:not(.navbar-scrolled) .navbar-toggler {
            color: white;
        }
        .navbar:not(.navbar-scrolled) .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* Buttons */
        .btn-custom-dark {
            background-color: var(--primary-dark);
            color: white;
            border-radius: 50px;
            padding: 10px 24px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
        }
        .btn-custom-dark:hover {
            background-color: #1e293b;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
            color: white;
        }
        .btn-custom-outline {
            background-color: transparent;
            color: white;
            border: 1px solid rgba(255,255,255,0.5);
            border-radius: 50px;
            padding: 10px 24px;
            backdrop-filter: blur(5px);
            transition: all 0.3s;
        }
        .btn-custom-outline:hover {
            background-color: white;
            color: var(--primary-dark);
        }

        /* Toast Notification */
        .toast-container {
            top: 20px !important;
            right: 20px !important;
        }
        
        .toast {
            background-color: #fff;
            border: none;
            border-radius: var(--radius-lg);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            min-width: 300px;
        }
        
        .toast.bg-success,
        .toast.bg-danger,
        .toast.bg-warning,
        .toast.bg-info {
            color: white;
        }
        
        .toast-header {
            background-color: transparent;
            border-bottom: none;
            font-weight: 600;
            padding: 0.75rem 1rem;
        }
        
        .toast-header .btn-close {
            opacity: 0.5;
        }
        
        .toast-body {
            padding: 0.75rem 1rem;
            font-size: 0.95rem;
        }

        /* Hero Section */
        .hero-section {
            width: 100%;
            height: 100vh;
            position: relative;
            margin: 0;
            padding: 0;
            overflow: hidden;
            
        }
        .hero-container {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover;
            
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 5vw, 2rem);
            overflow: hidden;
        }
        .hero-title {
            font-size: clamp(3rem, 6vw, 8rem);
            line-height: 1.2;
            margin-bottom: 2rem;
            color: var(--light-gray);
        }
        .hero-subtitle {
            font-size: clamp(0.95rem, 2.5vw, 1.2rem);
            font-weight: 300;
            opacity: 0.9;
            max-width: 650px;
            margin: 0 auto 2rem;
            padding: 0 1rem;
        }
        
        /* Avatars overlay */
        .hero-avatars {
            position: absolute;
            bottom: clamp(1rem, 4vw, 2rem);
            left: clamp(1rem, 4vw, 2rem);
            display: flex;
            align-items: center;
            gap: clamp(10px, 2vw, 15px);
            font-size: clamp(0.75rem, 1.5vw, 0.85rem);
        }
        .avatar-group img {
            width: clamp(30px, 6vw, 40px);
            height: clamp(30px, 6vw, 40px);
            border-radius: 50%;
            border: 2px solid white;
            margin-left: -15px;
        }
        .avatar-group img:first-child { margin-left: 0; }

        /* General Section padding */
        .section-padding { 
            padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 2rem); 
            width: 100%;
        }
        
        /* Sections */
        section {
            width: 100%;
        }

        /* About / Feature Cards */
        .feature-card {
            border-radius: var(--radius-xl);
            padding: 2.5rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        .feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
        
        .card-dark {
            background-color: var(--primary-dark);
            color: white;
        }
        .card-dark h3 { color: white; font-weight: 400; line-height: 1.4; font-size: 1.5rem; }
        .card-dark .highlight { color: #94a3b8; }
        
        .card-blue {
            background: linear-gradient(to top, rgba(0,122,255,0.8), rgba(0,122,255,0.2)), url('https://images.unsplash.com/photo-1595435934249-5df7ed86e1c0?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover;
            color: white;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        .card-blue-badge {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
        }

        .card-light {
            background-color: var(--light-gray);
        }
        .level-dots { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
        .dot { width: 10px; height: 10px; border-radius: 50%; background-color: #cbd5e1; }
        .dot.active { background-color: var(--primary-blue); }

        .stat-item h2 { 
            font-size: clamp(1.75rem, 5vw, 2.5rem); 
            color: var(--primary-dark); 
            margin-bottom: 0.5rem; 
        }
        .stat-item p { 
            color: var(--text-muted); 
            font-size: clamp(0.8rem, 1.5vw, 0.9rem); 
            text-transform: uppercase; 
            letter-spacing: 1px; 
        }

        /* Services Section */
        .service-img-card {
            border-radius: var(--radius-xl);
            height: clamp(250px, 50vw, 300px);
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }
        .service-img-card:hover { transform: scale(1.02); box-shadow: var(--shadow-hover); }
        .service-img-card .overlay {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            padding: clamp(1rem, 3vw, 2rem);
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            font-size: clamp(0.85rem, 2vw, 1rem);
        }

        .facility-page .facility-grid {
            align-items: stretch;
        }

        .facility-showcase {
            background: linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
        }

        .facility-showcase .row {
            max-width: 1120px;
            margin: 0 auto;
        }

        .facility-showcase h3 {
            max-width: 860px;
            margin-left: auto;
            margin-right: auto;
        }

        .services-mosaic {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            grid-auto-rows: 170px;
            gap: 1.25rem;
            width: 100%;
            margin-top: 1.25rem;
        }

        .service-mosaic-item {
            min-width: 0;
        }

        .service-mosaic-item .service-img-card {
            height: 100%;
            min-height: 0;
            border-radius: 14px;
            box-shadow: 0 18px 35px -22px rgba(15, 23, 42, 0.55);
        }

        .service-mosaic-wide {
            grid-column: span 2;
        }

        .service-mosaic-tall {
            grid-row: span 2;
        }

        .service-mosaic-item h5 {
            font-size: clamp(1rem, 1.4vw, 1.35rem);
            line-height: 1.2;
        }

        .service-mosaic-item .badge {
            font-size: 0.72rem;
            font-weight: 600;
        }

        /* Pricing Showcase */
        .pricing-showcase-section {
            background: linear-gradient(180deg, #ffffff 0%, #f7f7f3 100%);
        }
        .pricing-showcase {
            background-color: #f3f2ee;
            border: 1px solid #e5e7eb;
            border-radius: 32px;
            padding: clamp(1.5rem, 4vw, 3rem);
            box-shadow: var(--shadow-soft);
        }
        .pricing-showcase-header {
            max-width: 760px;
            margin: 0 auto 2.5rem;
        }
        .pricing-showcase-header .section-label::before {
            margin-right: 0.75rem;
        }
        .pricing-plan-card {
            border-radius: 24px;
            padding: clamp(1.5rem, 3vw, 2rem);
            display: flex;
            flex-direction: column;
            border: 1px solid #dbe1e7;
        }
        .pricing-plan-card-light {
            background: #ffffff;
        }
        .pricing-plan-card-dark {
            background: #09240d;
            border-color: #09240d;
            color: white;
        }
        .pricing-price strong {
            display: block;
            font-family: var(--font-heading);
            font-size: clamp(2rem, 5vw, 3rem);
            line-height: 1;
            color: inherit;
            color:var(--light-gray);
        }
        .pricing-price span {
            font-size: 0.95rem;
            color: var(--light-gray);
        }
        .pricing-plan-card-dark .pricing-price span {
            color: rgba(255,255,255,0.65);
        }
        .pricing-feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 0.9rem;
            color: #334155;
        }
        .pricing-feature-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.95rem;
        }
        .pricing-feature-list i {
            color:#bef264;
            font-size: 0.95rem;
        }
        .pricing-feature-list-dark {
            color: rgba(255,255,255,0.88);
        }
        .pricing-feature-list-dark i {
            color: #bef264;
        }
        .pricing-cta-light,
        .pricing-cta-dark,
        .pricing-contact-btn {
            width: fit-content;
            border-radius: 999px;
            padding: 0.75rem 1.25rem;
            font-weight: 600;
        }
        .pricing-cta-light {
            margin-left: auto;
            background: #d9f768;
            color: #0f172a;
        }
        .pricing-cta-dark {
            margin-left: auto;
            background: transparent;
            color: #ffffff;
            border: 1px solid rgba(255,255,255,0.24);
        }
        .pricing-contact-btn {
            background: #d9f768;
            color: #0f172a;
            white-space: nowrap;
        }
        .pricing-cta-light:hover,
        .pricing-contact-btn:hover {
            background: #c4eb3d;
            color: #0f172a;
        }
        .pricing-cta-dark:hover {
            background: rgba(255,255,255,0.1);
            color: #ffffff;
        }
        .pricing-custom-strip {
            margin-top: 1.5rem;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 24px;
            padding: clamp(1.25rem, 3vw, 1.75rem);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        /* Experience Grid */
        .experience-grid-section {
            background: radial-gradient(circle at top left, rgba(214, 228, 241, 0.9), rgba(255, 255, 255, 0.88) 45%, rgba(214, 226, 231, 0.92) 100%);
        }
        .experience-grid-shell {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
            padding: 1rem;
            border-radius: 28px;
            background: rgba(255,255,255,0.72);
            box-shadow: 0 30px 60px -30px rgba(15, 23, 42, 0.3);
            backdrop-filter: blur(6px);
        }
        .experience-grid-card {
            min-height: 240px;
            border-radius: 22px;
            overflow: hidden;
        }
        .experience-grid-card-image {
            background-size: cover;
            background-position: center;
        }
        .experience-grid-card-text {
            padding: 1.6rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .experience-grid-card-text h3 {
            font-size: clamp(1.1rem, 2vw, 1.45rem);
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        .experience-grid-card-text p {
            font-size: 0.92rem;
            line-height: 1.7;
            margin-bottom: 1.25rem;
            max-width: 20ch;
        }
        .experience-grid-card-text a {
            font-size: 0.82rem;
            font-weight: 600;
            text-decoration: underline;
            text-underline-offset: 4px;
            color: inherit;
        }
        .experience-grid-card-light {
            background: #fcfcfa;
            color: #0f172a;
        }
        .experience-grid-card-dark {
            background: #1c2337;
            color: #f8fafc;
        }
        .experience-grid-card-muted {
            background: #8097a6;
            color: #f8fafc;
        }

        /* Booking Form */

        #booking {
            background: var(--primary-dark);
        }
        .booking-section {
            background-color: var(--light-gray);
            border-radius: 26px;
            padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 2rem);
            margin: 0;
            width: 100%;
        }
        .form-control, .form-select {
            background-color: white;
            border: 1px solid #e2e8f0;
            padding: clamp(10px, 2vw, 12px) clamp(15px, 3vw, 20px);
            border-radius: var(--radius-lg);
            font-size: clamp(0.85rem, 1.5vw, 0.95rem);
            color: #334155;
            transition: all 0.3s;
            box-shadow: 0 2px 5px rgba(0,0,0,0.02);
        }
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.1);
        }
        label { 
            font-weight: 500; 
            font-size: clamp(0.8rem, 1.5vw, 0.9rem); 
            margin-bottom: 8px; 
            color: var(--primary-dark); 
        }

        /* ── SECTION HEADER ── */
    
    
    /* .section-title {
      font-family: var(--font-heading);
      font-weight: 800;
      font-size: clamp(2rem, 4vw, 2.75rem);
      line-height: 1.15;
      color: var(--primary-dark);
    } */
    .section-sub {
      font-size: 1rem;
      color: var(--text-muted);
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.75;
    }


    /* ══════════════════════════════════
       TESTIMONIAL SECTION
    ══════════════════════════════════ */
    #testimonials {
      padding: var(--section-pad) 0;
      background: var(--light-gray);
      overflow: hidden;
      background-image: url('https://images.unsplash.com/photo-1599058917212-d750089bc07e?q=80&w=1169&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
      background-size: cover;
      background-position: center;
    }

    /* --- stars --- */
    .stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 2px; }

    /* --- desktop grid --- */
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    @media (max-width: 991px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }

    /* --- card --- */
    .testi-card {
      background: #00000028;
      border-radius: var(--radius-card);
      padding: 28px;
      box-shadow: var(--shadow-soft);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      opacity: 0;
      transform: translateY(28px);
    }
    .testi-card.visible {
      animation: fadeUp 0.6s ease forwards;
    }
    .testi-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
    }
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }
    .testi-card p {
      font-size: 0.95rem;
      font-weight: bold;
      color: var(--light-gray);
      line-height: 1.7;
      margin: 12px 0 20px;
    }
    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .testi-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      object-fit: cover;
      background: var(--primary-dark);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 1rem;
      color: var(--light-gray);
      flex-shrink: 0;
    }
    .testi-author strong { display: block; font-size: 0.9rem; font-weight: 600; }
    .testi-author span { font-size: 0.78rem; color: var(--light-gray); }

    /* --- mobile horizontal scroll slider --- */
    .testi-slider-wrap {
      position: relative;
      overflow: hidden;
    }
    .testi-slider {
      display: flex;
      gap: 20px;
      width: max-content;
      animation: autoScroll 28s linear infinite;
    }
    .testi-slider:hover,
    .testi-slider.paused {
      animation-play-state: paused;
    }
    .testi-slider .testi-card {
      width: 300px;
      flex-shrink: 0;
      opacity: 1;
      transform: none;
    }
    @keyframes autoScroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* arrow buttons */
    .slider-arrows {
      display: flex;
      gap: 10px;
      justify-content: center;
      margin-top: 20px;
    }
    .arrow-btn {
      width: 42px; height: 42px;
      border-radius: 50%;
      border: 2px solid #e2e8f0;
      background: #fff;
      color: var(--primary-dark);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: all 0.2s;
      font-size: 1rem;
    }
    .arrow-btn:hover {
      background: var(--primary-blue);
      border-color: var(--primary-blue);
      color: #fff;
    }

    /* show grid on md+, show slider on mobile */
    .testi-desktop { display: block; }
    .testi-mobile  { display: none; }
    @media (max-width: 767px) {
      .testi-desktop { display: none; }
      .testi-mobile  { display: block; }
    }


    /* ══════════════════════════════════
       CONTACT SECTION
    ══════════════════════════════════ */
    #contact {
      padding: var(--section-pad) 0;
      background: #fff;
      
    }

    .contact-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      background: var(--primary-dark);
      border-radius: 28px;
      box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.451);
      overflow: hidden;
    }
    @media (max-width: 767px) {
      .contact-wrapper {
        grid-template-columns: 1fr;
        border-radius: 20px;
      }
      .contact-cta  { order: 1; }
      .contact-form { order: 2; }
    }

    /* --- LEFT: Form --- */
    .contact-form {
      padding: 50px 44px;
      background:  var(--light-gray);
    }
    .contact-form .form-label {
      font-family: var(--font-heading);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--primary-dark);
      margin-bottom: 6px;
    }
    .contact-form .form-control {
      background: rgb(255, 255, 255);
      border: 1.5px solid rgba(255,255,255,0.12);
      border-radius: 12px;
      color: var(--primary-dark);
      padding: 14px 18px;
      font-family: var(--font-body);
      font-size: 0.93rem;
      transition: border-color 0.2s, background 0.2s;
    }
    .contact-form .form-control::placeholder { color: var(--text-muted); }
    
    .contact-form .form-control:focus {
      border-color: var(--primary-dark);
      color: var(--primary-dark);
      outline: none;
    }
    textarea.form-control { resize: none; }

    .btn-submit {
      width: 100%;
      padding: 15px;
      background: var(--primary-dark);
      color: #fff;
      border: none;
      border-radius: var(--radius-btn);
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 0.97rem;
      letter-spacing: 0.02em;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: var(--shadow-hover);
      margin: 16px 0;
    }
    .btn-submit:hover {
      
      transform: translateY(-2px);
      box-shadow: var(--shadow-hover);
    }
    .contact-form-title {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 2rem;
      color: var(--primary-dark);
      margin-bottom: 16px;
    }
    .contact-form-sub {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-bottom: 28px;
    }

    /* --- RIGHT: CTA --- */
    .contact-cta {
      padding: 50px 44px;
      background: var(--primary-dark);
    }
    
    .cta-headline {
      font-family: var(--font-heading);
      font-weight: 800;
      font-size: clamp(1.7rem, 3.5vw, 2.4rem);
      line-height: 1.2;
      color: #fff;
      margin-bottom: 16px;
    }
    .cta-headline span { color: #fff; }
    .cta-sub {
      font-size: 0.95rem;
      color: #fff;
      line-height: 1.75;
      margin-bottom: 32px;
    }

    .cta-info-row {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 32px;
    }
    .cta-info-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.88rem;
      color: #fff;
    }
    .cta-info-item .icon-wrap {
      width: 36px; height: 36px;
      background: var(--soft-blue);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: var(--primary-dark);
      font-size: 1rem;
      flex-shrink: 0;
    }

    .social-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .social-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 20px;
      border-radius: var(--radius-btn);
      font-family: var(--font-heading);
      font-size: 0.82rem;
      font-weight: 600;
      text-decoration: none;
      border: 2px solid transparent;
      transition: all 0.2s;
    }
    .social-btn.wa {
      background: #25d366;
      color: #fff;
      box-shadow: 0 4px 16px -4px rgba(37,211,102,0.4);
    }
    .social-btn.wa:hover { background: #1db954; transform: translateY(-2px); }
    .social-btn.ig {
      background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
      color: #fff;
      box-shadow: 0 4px 16px -4px rgba(220,39,67,0.35);
    }
    .social-btn.ig:hover { opacity: 0.9; transform: translateY(-2px); }
    .social-btn.tt {
      background: #000;
      color: #fff;
      box-shadow: 0 4px 16px -4px rgba(0,0,0,0.25);
    }
    .social-btn.tt:hover { background: #222; transform: translateY(-2px); }

    /* divider */
    .contact-divider {
      width: 1px;
      background: #e2e8f0;
      align-self: stretch;
    }

    /* responsive padding */
    @media (max-width: 767px) {
      .contact-form, .contact-cta { padding: 36px 28px; }}
    

        /* Footer */
        footer {
            background-color: white;
            border-top: 1px solid #e2e8f0;
            padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 5vw, 2rem);
        }
        
        /* Custom Utilities */
        .section-label {
            font-size: clamp(0.7rem, 1.5vw, 0.85rem);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--text-muted);
            margin-bottom: 1rem;
            display: block;
        }
        .section-label::before {
            content: '';
            display: inline-block;
            width: 20px;
            height: 2px;
            background-color: var(--primary-blue);
            margin-right: 10px;
            vertical-align: middle;
        }
        
        
        /* Responsive adjustments */
        /* Mobile (< 576px) */
        @media (max-width: 575px) {
            html {
                font-size: 14px;
            }
            
            .navbar {
                padding: 1rem 1rem;
            }
            
            .navbar-brand {
                font-size: 1.2rem;
            }
            
            .btn-custom-dark,
            .btn-custom-outline {
                padding: 8px 16px;
                font-size: 0.9rem;
            }
            
            .hero-section {
                height: 90%;
                min-height: 75vh;
            }
            
            .hero-title {
                font-size: clamp(3rem, 6.2vw, 4.5rem);
                line-height: 1.3;
            }
            
            .hero-avatars {
                display: none !important;
            }
            
            .feature-card {
                padding: 1.5rem;
                border-radius: var(--radius-lg);
            }

            .card-2{
                height: 200px;
            }
            
            .card-dark h3 {
                font-size: 1.1rem;
            }
            
            .section-padding {
                padding: 2rem 1rem;
            }
            
            .booking-section {
                padding: 2rem 1rem;
            }

            #booking{
                padding: 0 1.5rem;
            }
            
            .service-img-card {
                height: 200px;
            }

            .facility-page {
                padding: 2.5rem 1rem;
            }

            .facility-page .pricing-showcase-header,
            .facility-page .text-center {
                margin-bottom: 1.5rem;
            }

            .facility-page .text-center h3 {
                font-size: 1.2rem;
                line-height: 1.55;
            }

            .facility-page .facility-grid {
                margin: 0;
                row-gap: 1rem;
            }

            .facility-page .facility-grid > [class*="col-"] {
                position: static !important;
                top: auto !important;
                z-index: auto !important;
            }

            .facility-page .service-img-card {
                height: 240px !important;
            }

            .facility-page .service-img-card .overlay {
                padding: 1.25rem;
            }

            .services-mosaic {
                grid-template-columns: 1fr;
                grid-auto-rows: auto;
                gap: 1rem;
            }

            .service-mosaic-wide,
            .service-mosaic-tall {
                grid-column: auto;
                grid-row: auto;
            }

            .service-mosaic-item .service-img-card {
                height: 230px;
                border-radius: var(--radius-lg);
            }

            .pricing-showcase {
                border-radius: 24px;
                padding: 1.25rem;
            }

            .experience-grid-shell {
                grid-template-columns: 1fr;
                padding: 0.75rem;
            }

            .experience-grid-card {
                min-height: 220px;
            }

            .pricing-plan-card,
            .pricing-custom-strip {
                border-radius: 20px;
            }

            .pricing-custom-strip {
                flex-direction: column;
                align-items: flex-start;
            }

            .pricing-cta-light,
            .pricing-cta-dark,
            .pricing-contact-btn {
                width: 100%;
                text-align: center;
            }
            
            h2 {
                font-size: clamp(1.5rem, 4vw, 2rem);
            }
            
            h3 {
                font-size: clamp(1.1rem, 3vw, 1.5rem);
            }
            
            h4 {
                font-size: clamp(1rem, 2.5vw, 1.25rem);
            }
        }
        
        /* Tablet (576px - 992px) */
        @media (min-width: 576px) and (max-width: 992px) {
            .hero-avatars {
                display: none !important;
            }
            
            .section-padding {
                padding: 4rem 1.5rem;
            }
            
            .booking-section {
                padding: 3rem 1.5rem;
            }

            #booking{
                padding: 0 1.5rem;
            }
            
            .feature-card {
                padding: 2rem;
            }

            
            
            .service-img-card {
                height: 250px;
            }

            .facility-page .facility-grid {
                margin: 0;
                row-gap: 1.5rem;
            }

            .facility-page .facility-grid > [class*="col-"] {
                position: static !important;
                top: auto !important;
                z-index: auto !important;
            }

            .facility-page .service-img-card {
                height: 320px !important;
            }

            .services-mosaic {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                grid-auto-rows: 250px;
            }

            .service-mosaic-wide {
                grid-column: span 2;
            }

            .service-mosaic-tall {
                grid-row: auto;
            }

            .service-mosaic-item .service-img-card {
                height: 100%;
            }

            .experience-grid-shell {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .pricing-custom-strip {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        
        /* Landscape Mobile (576px - 768px in landscape) */
        @media (max-width: 768px) and (max-height: 500px) {
            .hero-section {
                height: auto;
                min-height: auto;
            }

            #booking{
                padding: 0 1.5rem;
            }
            
            .hero-container {
                padding: 2rem 1rem;
            }
            
            .hero-title {
                font-size: 1.5rem;
                margin-bottom: 0.5rem;
            }
            
            .hero-subtitle {
                font-size: 0.9rem;
                margin: 0 auto 1rem;
            }
            
            .btn-custom-outline {
                padding: 8px 16px;
                font-size: 0.85rem;
            }
        }
        
        /* Desktop (> 992px) */
        @media (min-width: 993px) {
            .navbar {
                padding: 1.5rem 2rem;
            }
            
            .section-padding {
                padding: 6rem 2rem;
            }
            
            .feature-card:hover {
                transform: translateY(-5px);
            }
        }
        
        /* Large Desktop (> 1200px) */
        @media (min-width: 1200px) {
            .container-fluid.px-lg-4 {
                padding-left: 2rem;
                padding-right: 2rem;
            }

               
        }
