                 :root {
                    --bg-cream: #f5f9fb;
                    --primary-teal: #155e91;
                    --primary-dark: #0c3f66;
                    --text-dark: #1f2937;
                    --text-gray: #4b5563;
                    --border-color: #dde6ec;
                    --accent-orange: #f95738;
                    --whatsapp-green: #00a884;
                    --mint: #34b892;
                    --mint-light: #e3f7f0;
                }
                
                * {
                    margin: 0;
                    padding: 0;
                    box-sizing: border-box;
                    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
                    scroll-behavior: smooth;
                }
                
                html {
                    scroll-behavior: smooth;
                }
                
                [id] {
                    scroll-margin-top: 90px;
                }
                
                body {
                    background-color: var(--bg-cream);
                    color: var(--text-dark);
                    line-height: 1.6;
                    overflow-x: hidden;
                    width: 100%;
                }
                
                img {
                    max-width: 100%;
                    height: auto;
                }
                
                header {
                    background: #ffffff;
                    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
                    position: sticky;
                    top: 0;
                    z-index: 1000;
                }
                
                .navbar {
                    max-width: 1350px;
                    margin: 0 auto;
                    padding: 12px 5%;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                }
                
                .logo {
                    font-size: 22px;
                    font-weight: 700;
                    color: var(--primary-teal);
                    text-decoration: none;
                    display: flex;
                    align-items: center;
                    gap: 6px;
                }
                
                .logo span {
                    color: var(--text-dark);
                }
                
                .logo-img {
                    height: 64px;
                    width: auto;
                    display: block;
                }
                
                .nav-links {
                    display: flex;
                    list-style: none;
                    gap: 25px;
                    align-items: center;
                }
                
                .nav-links a {
                    text-decoration: none;
                    color: var(--text-dark);
                    font-weight: 500;
                    font-size: 15px;
                    transition: color 0.3s;
                }
                
                .nav-links a:hover {
                    color: var(--primary-teal);
                }
                
                .nav-item {
                    position: relative;
                }
                
                .nav-item>a i {
                    font-size: 11px;
                    margin-left: 4px;
                }
                
                .dropdown-menu {
                    display: none;
                    position: absolute;
                    top: 100%;
                    left: 0;
                    background: #fff;
                    min-width: 260px;
                    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
                    border-radius: 8px;
                    padding: 10px 0;
                    list-style: none;
                    border: 1px solid var(--border-color);
                }
                
                .nav-item:hover .dropdown-menu,
                .nav-item:focus-within .dropdown-menu {
                    display: block;
                }
                
                .dropdown-menu li a {
                    display: block;
                    padding: 10px 20px;
                    font-size: 14px;
                    white-space: nowrap;
                }
                
                .dropdown-menu li a:hover {
                    background: var(--bg-cream);
                    color: var(--primary-teal);
                }
                
                .header-right {
                    display: flex;
                    align-items: center;
                    gap: 20px;
                }
                
                .contact-dropdown {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    font-weight: 600;
                    font-size: 15px;
                    color: var(--text-dark);
                    background: #f3f4f6;
                    padding: 8px 14px;
                    border-radius: 6px;
                }
                
                .flag-icon {
                    width: 26px;
                    height: 18px;
                    border-radius: 3px;
                    overflow: hidden;
                    border: 1px solid var(--border-color);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    flex-shrink: 0;
                }
                
                .flag-icon svg {
                    width: 100%;
                    height: 100%;
                    display: block;
                }
                
                .book-now-btn {
                    background: var(--primary-teal);
                    color: #fff;
                    padding: 10px 22px;
                    border-radius: 6px;
                    text-decoration: none;
                    font-weight: 600;
                    font-size: 15px;
                    transition: background 0.3s, transform 0.15s;
                    border: none;
                    cursor: pointer;
                    display: inline-block;
                }
                
                .book-now-btn:hover {
                    background: var(--primary-dark);
                    transform: translateY(-1px);
                }
                
                .book-now-btn:disabled {
                    opacity: 0.7;
                    cursor: not-allowed;
                }
                
                .hero-section {
                    position: relative;
                    width: 100%;
                    overflow: hidden;
                    background: var(--bg-cream);
                    isolation: isolate;
                }
                
                .hero-visual {
                    position: absolute;
                    top: 0;
                    right: 0;
                    width: 60%;
                    height: 100%;
                    z-index: 0;
                }
                
                .hero-visual img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: 60% center;
                    display: block;
                }
                
                .hero-visual::after {
                    content: '';
                    position: absolute;
                    inset: 0;
                    background: linear-gradient(to right, var(--bg-cream) 0%, rgba(251, 249, 245, 0.85) 6%, rgba(251, 249, 245, 0.4) 15%, rgba(251, 249, 245, 0.1) 24%, rgba(251, 249, 245, 0) 32%), linear-gradient(to bottom, rgba(251, 249, 245, 0.5) 0%, rgba(251, 249, 245, 0) 14%, rgba(251, 249, 245, 0) 80%, rgba(251, 249, 245, 0.6) 100%);
                }
                
                .hero-inner {
                    position: relative;
                    z-index: 2;
                    max-width: 1350px;
                    margin: 0 auto;
                    padding: 60px 5% 70px;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    flex-wrap: wrap;
                    gap: 40px;
                }
                
                .hero-left {
                    flex: 1.05;
                    min-width: 320px;
                    max-width: 580px;
                }
                
                .hero-tagline {
                    font-size: 12px;
                    font-weight: 700;
                    letter-spacing: 1px;
                    color: var(--primary-teal);
                    text-transform: uppercase;
                    margin-bottom: 15px;
                }
                
                .hero-left h1 {
                    font-size: 44px;
                    color: var(--text-dark);
                    margin-bottom: 20px;
                    line-height: 1.2;
                    font-family: Georgia, 'Times New Roman', serif;
                }
                
                .hero-left p {
                    font-size: 16px;
                    color: var(--text-gray);
                    margin-bottom: 30px;
                    max-width: 550px;
                }
                
                .hero-lead-form {
                    background: #ffffff;
                    padding: 25px;
                    border-radius: 14px;
                    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
                    max-width: 520px;
                    border: 1px solid var(--border-color);
                }
                
                .hero-lead-form h3 {
                    font-size: 16px;
                    margin-bottom: 4px;
                    color: var(--text-dark);
                }
                
                .hero-lead-form .form-subtext {
                    font-size: 12px;
                    color: var(--text-gray);
                    margin-bottom: 15px;
                }
                
                .hero-lead-form .form-row {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    gap: 12px;
                    margin-bottom: 12px;
                }
                
                .hero-lead-form input,
                .hero-lead-form select {
                    width: 100%;
                    padding: 12px 14px;
                    border: 1px solid var(--border-color);
                    border-radius: 8px;
                    font-size: 14px;
                    outline: none;
                    background: #fff;
                    color: var(--text-dark);
                    transition: border-color 0.2s;
                    font-family: inherit;
                }
                
                .hero-lead-form input:focus,
                .hero-lead-form select:focus {
                    border-color: var(--primary-teal);
                }
                
                .hero-lead-form input:invalid:not(:placeholder-shown) {
                    border-color: #dc2626;
                }
                
                .hero-lead-form .full-row {
                    margin-bottom: 12px;
                }
                
                .hero-lead-form button {
                    width: 100%;
                    padding: 13px;
                    font-size: 15px;
                }
                
                .form-error-msg {
                    display: none;
                    background: #fef2f2;
                    border: 1px solid #dc2626;
                    color: #991b1b;
                    padding: 10px 14px;
                    border-radius: 8px;
                    font-size: 13px;
                    margin-top: 12px;
                }
                
                .modal-overlay {
                    display: none;
                    position: fixed;
                    inset: 0;
                    background: rgba(15, 23, 42, 0.55);
                    z-index: 5000;
                    align-items: center;
                    justify-content: center;
                    padding: 20px;
                }
                
                .modal-overlay.active {
                    display: flex;
                }
                
                .modal-card {
                    background: #fff;
                    border-radius: 16px;
                    max-width: 380px;
                    width: 100%;
                    padding: 32px 28px;
                    text-align: center;
                    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
                    animation: modalPop 0.25s ease;
                }
                
                @keyframes modalPop {
                    from {
                        transform: scale(0.9);
                        opacity: 0;
                    }
                    to {
                        transform: scale(1);
                        opacity: 1;
                    }
                }
                
                .modal-icon {
                    width: 64px;
                    height: 64px;
                    border-radius: 50%;
                    background: var(--mint-light);
                    color: var(--mint);
                    font-size: 30px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin: 0 auto 18px;
                }
                
                .modal-card h3 {
                    font-size: 19px;
                    color: var(--text-dark);
                    margin-bottom: 8px;
                }
                
                .modal-card p {
                    font-size: 14px;
                    color: var(--text-gray);
                    margin-bottom: 22px;
                }
                
                .modal-close-btn {
                    background: var(--primary-teal);
                    color: #fff;
                    border: none;
                    padding: 12px 28px;
                    border-radius: 8px;
                    font-weight: 600;
                    font-size: 14px;
                    cursor: pointer;
                    width: 100%;
                }
                
                .modal-close-btn:hover {
                    background: var(--primary-dark);
                }
                
                .booking-modal-card {
                    position: relative;
                    max-width: 460px;
                    padding: 34px 30px 30px;
                    text-align: left;
                }
                
                .booking-modal-close {
                    position: absolute;
                    top: 14px;
                    right: 16px;
                    background: none;
                    border: none;
                    font-size: 24px;
                    line-height: 1;
                    color: var(--text-gray);
                    cursor: pointer;
                    padding: 4px;
                }
                
                .booking-modal-close:hover {
                    color: var(--text-dark);
                }
                
                .booking-modal-card h3 {
                    font-size: 19px;
                    color: var(--text-dark);
                    margin-bottom: 8px;
                    padding-right: 20px;
                }
                
                .booking-modal-subtext {
                    font-size: 13px;
                    color: var(--text-gray);
                    margin-bottom: 22px;
                }
                
                .booking-steps {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 10px;
                    background: var(--bg-cream);
                    border-radius: 10px;
                    padding: 16px 14px;
                    margin-bottom: 22px;
                }
                
                .booking-step {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    gap: 6px;
                }
                
                .booking-step span {
                    font-size: 10px;
                    font-weight: 700;
                    letter-spacing: 0.4px;
                    color: var(--text-gray);
                    text-transform: uppercase;
                    text-align: center;
                }
                
                .booking-step-circle {
                    width: 28px;
                    height: 28px;
                    border-radius: 50%;
                    border: 2px solid var(--border-color);
                    background: #fff;
                    color: var(--text-gray);
                    font-size: 13px;
                    font-weight: 700;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    transition: all 0.25s;
                }
                
                .booking-step-circle.active {
                    background: var(--text-dark);
                    border-color: var(--text-dark);
                    color: #fff;
                }
                
                .booking-step-circle.done {
                    background: var(--primary-teal);
                    border-color: var(--primary-teal);
                    color: #fff;
                }
                
                .booking-step-line {
                    width: 50px;
                    height: 2px;
                    background: var(--border-color);
                    margin-bottom: 18px;
                }
                
                .booking-panel label {
                    display: block;
                    font-size: 13px;
                    font-weight: 600;
                    color: var(--text-dark);
                    margin-bottom: 6px;
                }
                
                .booking-panel input,
                .booking-panel select {
                    width: 100%;
                    padding: 12px 14px;
                    border: 1px solid var(--border-color);
                    border-radius: 8px;
                    font-size: 14px;
                    outline: none;
                    background: #fff;
                    color: var(--text-dark);
                    font-family: inherit;
                    margin-bottom: 16px;
                    transition: border-color 0.2s;
                }
                
                .booking-panel input:focus,
                .booking-panel select:focus {
                    border-color: var(--primary-teal);
                }
                
                .booking-preview {
                    font-size: 13px;
                    font-weight: 600;
                    color: var(--primary-teal);
                    text-align: center;
                    margin: -4px 0 16px;
                    min-height: 16px;
                }
                
                .booking-next-btn {
                    width: 100%;
                    padding: 13px;
                    font-size: 15px;
                }
                
                .booking-panel-thanks {
                    text-align: center;
                    padding-top: 4px;
                }
                
                .booking-panel-thanks h3 {
                    font-size: 20px;
                    margin-bottom: 8px;
                }
                
                .booking-panel-thanks p {
                    font-size: 14px;
                    color: var(--text-gray);
                    margin-bottom: 18px;
                }
                
                .booking-panel-thanks .booking-counter {
                    color: var(--primary-teal);
                    font-weight: 700;
                    font-size: 15px;
                    margin-bottom: 22px;
                }
                
                .hero-right {
                    flex: 1;
                    min-width: 300px;
                    display: flex;
                    justify-content: flex-start;
                    align-items: center;
                    position: relative;
                }
                
                .hero-badges-wrapper {
                    display: flex;
                    flex-direction: column;
                    gap: 16px;
                    align-items: flex-start;
                    width: 100%;
                    max-width: 290px;
                }
                
                .hero-stats-badge {
                    background: rgba(255, 255, 255, 0.88);
                    -webkit-backdrop-filter: blur(10px);
                    backdrop-filter: blur(10px);
                    padding: 16px 20px;
                    border-radius: 12px;
                    box-shadow: 0 10px 30px rgba(15, 32, 39, 0.12);
                    border: 1px solid rgba(255, 255, 255, 0.7);
                    text-align: left;
                    width: 100%;
                    transition: transform 0.3s, box-shadow 0.3s;
                }
                
                .hero-stats-badge:hover {
                    box-shadow: 0 14px 36px rgba(15, 32, 39, 0.18);
                    transform: translateY(-2px);
                }
                
                .hero-stats-badge h3 {
                    font-size: 16px;
                    color: var(--text-dark);
                    margin-bottom: 4px;
                    font-weight: 700;
                }
                
                .hero-stats-badge p {
                    font-size: 12px;
                    color: var(--text-gray);
                    font-weight: 600;
                }
                
                .section-container {
                    max-width: 1350px;
                    margin: 0 auto;
                    padding: 60px 5%;
                }
                
                .service-detail-banner {
                    background: #06282b;
                    color: #fff;
                    padding: 50px 5% 60px;
                }
                
                .service-detail-banner .breadcrumb {
                    max-width: 1350px;
                    margin: 0 auto 18px;
                    font-size: 13px;
                    color: #9fb8bb;
                }
                
                .service-detail-banner .breadcrumb a {
                    color: #9fb8bb;
                    text-decoration: none;
                }
                
                .service-detail-banner .breadcrumb a:hover {
                    color: #fff;
                }
                
                .service-detail-banner-inner {
                    max-width: 1350px;
                    margin: 0 auto;
                    display: flex;
                    align-items: center;
                    gap: 22px;
                    flex-wrap: wrap;
                }
                
                .service-detail-icon {
                    width: 68px;
                    height: 68px;
                    flex-shrink: 0;
                    background: rgba(255, 255, 255, 0.08);
                    border: 1px solid rgba(255, 255, 255, 0.15);
                    border-radius: 16px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 28px;
                    color: var(--mint);
                }
                
                .service-detail-banner h1 {
                    font-size: 34px;
                    font-family: Georgia, 'Times New Roman', serif;
                    margin-bottom: 8px;
                    color: #fff;
                }
                
                .service-detail-banner p {
                    color: #cbd5e1;
                    font-size: 15px;
                    max-width: 640px;
                }
                
                .service-detail-banner-actions {
                    margin-left: auto;
                    display: flex;
                    gap: 12px;
                    flex-wrap: wrap;
                }
                
                .service-detail-body {
                    max-width: 900px;
                    margin: 0 auto;
                    padding: 50px 5% 20px;
                }
                
                .service-detail-body h2 {
                    font-size: 24px;
                    color: var(--text-dark);
                    margin-bottom: 14px;
                    font-family: Georgia, 'Times New Roman', serif;
                }
                
                .service-detail-body>p {
                    color: var(--text-gray);
                    font-size: 15px;
                    margin-bottom: 20px;
                }
                
                .service-detail-list {
                    list-style: none;
                    margin-bottom: 30px;
                }
                
                .service-detail-list li {
                    display: flex;
                    align-items: flex-start;
                    gap: 12px;
                    padding: 10px 0;
                    border-bottom: 1px solid var(--border-color);
                    font-size: 14px;
                    color: var(--text-dark);
                }
                
                .service-detail-list li:last-child {
                    border-bottom: none;
                }
                
                .service-detail-list li i {
                    color: var(--primary-teal);
                    margin-top: 3px;
                    flex-shrink: 0;
                }
                
                .related-services-grid {
                    max-width: 1350px;
                    margin: 0 auto;
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                    gap: 16px;
                    padding: 0 5% 60px;
                }
                
                .related-service-chip {
                    background: #fff;
                    border: 1px solid var(--border-color);
                    border-radius: 10px;
                    padding: 14px 16px;
                    font-size: 14px;
                    font-weight: 600;
                    color: var(--text-dark);
                    text-decoration: none;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    transition: 0.25s;
                }
                
                .related-service-chip:hover {
                    border-color: var(--primary-teal);
                    color: var(--primary-teal);
                }
                
                @media (max-width: 700px) {
                    .service-detail-banner-actions {
                        margin-left: 0;
                        width: 100%;
                    }
                }
                
                .section-title-box {
                    text-align: center;
                    margin-bottom: 40px;
                }
                
                .section-subtitle {
                    font-size: 12px;
                    font-weight: 700;
                    color: var(--primary-teal);
                    letter-spacing: 1px;
                    text-transform: uppercase;
                    margin-bottom: 8px;
                }
                
                .section-title-box h2 {
                    font-size: 34px;
                    color: var(--text-dark);
                    font-family: Georgia, 'Times New Roman', serif;
                    margin-bottom: 10px;
                }
                
                .section-title-box p {
                    color: var(--text-gray);
                    font-size: 15px;
                }
                
                .services-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
                    gap: 25px;
                }
                
                .service-card {
                    background: #ffffff;
                    padding: 22px;
                    border-radius: 12px;
                    border: 1px solid var(--border-color);
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
                    transition: all 0.3s;
                }
                
                .service-card:hover {
                    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
                    border-color: var(--primary-teal);
                }
                
                .service-card-left {
                    display: flex;
                    align-items: center;
                    gap: 15px;
                }
                
                .service-icon-box {
                    width: 50px;
                    height: 50px;
                    background: #e0f2fe;
                    border-radius: 10px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: var(--primary-teal);
                    font-size: 20px;
                    flex-shrink: 0;
                }
                
                .service-card h3 {
                    font-size: 17px;
                    color: var(--text-dark);
                    font-weight: 600;
                }
                
                .service-card h3 a,
                .expanded-card h3 a {
                    color: inherit;
                    text-decoration: none;
                }
                
                .service-card h3 a:hover,
                .expanded-card h3 a:hover {
                    color: var(--primary-teal);
                }
                
                .card-book-btn {
                    background: transparent;
                    color: var(--primary-teal);
                    border: 1px solid var(--primary-teal);
                    padding: 8px 16px;
                    border-radius: 6px;
                    font-weight: 600;
                    font-size: 13px;
                    text-decoration: none;
                    transition: 0.3s;
                    white-space: nowrap;
                }
                
                .card-book-btn:hover {
                    background: var(--primary-teal);
                    color: #fff;
                }
                
                .expanded-services-section {
                    background: #ffffff;
                    padding: 60px 5%;
                    border-top: 1px solid var(--border-color);
                    border-bottom: 1px solid var(--border-color);
                }
                
                .expanded-grid {
                    max-width: 1350px;
                    margin: 0 auto;
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                    gap: 25px;
                }
                
                .expanded-card {
                    background: var(--bg-cream);
                    border: 1px solid var(--border-color);
                    border-radius: 12px;
                    padding: 25px;
                    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    transition: 0.3s ease;
                }
                
                .expanded-card:hover {
                    transform: translateY(-3px);
                    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
                    border-color: var(--primary-teal);
                }
                
                .expanded-card-top {
                    display: flex;
                    align-items: flex-start;
                    gap: 15px;
                    margin-bottom: 15px;
                }
                
                .expanded-card h3 {
                    font-size: 18px;
                    color: var(--text-dark);
                    margin-bottom: 5px;
                }
                
                .expanded-card p {
                    font-size: 14px;
                    color: var(--text-gray);
                    margin-bottom: 20px;
                }
                
                .expanded-card-footer {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    border-top: 1px solid var(--border-color);
                    padding-top: 15px;
                }
                
                .price-tag {
                    font-weight: 700;
                    color: var(--primary-teal);
                    font-size: 14px;
                }
                
                .stats-banner {
                    background: #ffffff;
                    border-top: 1px solid var(--border-color);
                    border-bottom: 1px solid var(--border-color);
                    padding: 40px 5%;
                }
                
                .stats-grid {
                    max-width: 1350px;
                    margin: 0 auto;
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                    gap: 20px;
                    text-align: center;
                }
                
                .stat-item h2 {
                    font-size: 26px;
                    color: var(--primary-teal);
                    font-family: Georgia, 'Times New Roman', serif;
                    margin-bottom: 5px;
                }
                
                .stat-item p {
                    font-size: 12px;
                    font-weight: 700;
                    color: var(--text-gray);
                    letter-spacing: 0.5px;
                }
                
                .how-it-works-section {
                    background: #06282b;
                    color: #fff;
                    padding: 70px 5%;
                }
                
                .how-grid {
                    max-width: 1350px;
                    margin: 0 auto;
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
                    gap: 25px;
                }
                
                .how-box {
                    background: rgba(255, 255, 255, 0.05);
                    border: 1px solid rgba(255, 255, 255, 0.1);
                    padding: 30px 20px;
                    border-radius: 12px;
                    position: relative;
                }
                
                .how-box h3 {
                    font-size: 18px;
                    margin-bottom: 10px;
                    margin-top: 15px;
                }
                
                .how-box p {
                    font-size: 13px;
                    color: #cbd5e1;
                }
                
                .step-watermark {
                    position: absolute;
                    top: 10px;
                    right: 20px;
                    font-size: 50px;
                    font-weight: bold;
                    color: rgba(255, 255, 255, 0.05);
                }
                
                .testimonials-grid {
                    max-width: 1350px;
                    margin: 0 auto;
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
                    gap: 25px;
                }
                
                .testimonial-card {
                    background: #ffffff;
                    padding: 30px;
                    border-radius: 12px;
                    border: 1px solid var(--border-color);
                    position: relative;
                }
                
                .testimonial-card p {
                    font-size: 14px;
                    color: var(--text-gray);
                    margin-bottom: 20px;
                    min-height: 80px;
                }
                
                .customer-info {
                    display: flex;
                    align-items: center;
                    gap: 12px;
                    border-top: 1px solid var(--border-color);
                    padding-top: 15px;
                }
                
                .customer-avatar {
                    width: 40px;
                    height: 40px;
                    background: #e0f2fe;
                    color: var(--primary-teal);
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-weight: bold;
                }
                
                .google-badge {
                    display: inline-flex;
                    align-items: center;
                    gap: 8px;
                    background: #fff;
                    border: 1px solid var(--border-color);
                    padding: 10px 18px;
                    border-radius: 30px;
                    font-size: 13px;
                    font-weight: 600;
                    color: var(--text-gray);
                    margin-bottom: 25px;
                }
                
                .review-slider-wrapper {
                    max-width: 620px;
                    margin: 0 auto;
                    display: flex;
                    align-items: center;
                    gap: 12px;
                }
                
                .review-slider-container {
                    overflow: hidden;
                    width: 100%;
                    max-width: 450px;
                    margin: 0 auto;
                }
                
                .review-slides-track {
                    display: flex;
                    width: 100%;
                    transition: transform 0.45s ease-in-out;
                }
                
                .review-slides-track .testimonial-card {
                    min-width: 100%;
                    box-sizing: border-box;
                }
                
                .review-nav-btn {
                    width: 44px;
                    height: 44px;
                    flex-shrink: 0;
                    border-radius: 50%;
                    border: 1px solid var(--border-color);
                    background: #fff;
                    color: var(--primary-teal);
                    font-size: 16px;
                    cursor: pointer;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
                    transition: background 0.25s, color 0.25s, transform 0.15s;
                }
                
                .review-nav-btn:hover {
                    background: var(--primary-teal);
                    color: #fff;
                }
                
                .review-nav-btn:active {
                    transform: scale(0.94);
                }
                
                .review-nav-btn:focus-visible {
                    outline: 2px solid var(--primary-dark);
                    outline-offset: 2px;
                }
                
                .review-counter {
                    text-align: center;
                    margin-top: 14px;
                    font-size: 13px;
                    font-weight: 600;
                    color: var(--text-gray);
                }
                
                .review-dots {
                    display: flex;
                    justify-content: center;
                    gap: 8px;
                    margin-top: 10px;
                    flex-wrap: wrap;
                }
                
                .review-dot {
                    width: 9px;
                    height: 9px;
                    border-radius: 50%;
                    border: none;
                    padding: 0;
                    background: #cbd5e1;
                    cursor: pointer;
                    transition: background 0.25s, transform 0.25s;
                }
                
                .review-dot.active {
                    background: var(--primary-teal);
                    transform: scale(1.25);
                }
                
                .team-grid {
                    max-width: 1350px;
                    margin: 0 auto;
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                    gap: 25px;
                }
                
                .team-card {
                    background: #fff;
                    border: 1px solid var(--border-color);
                    border-radius: 12px;
                    padding: 30px 25px;
                    text-align: center;
                    transition: all 0.3s;
                    scroll-margin-top: 110px;
                }
                
                .team-card:hover {
                    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
                    border-color: var(--primary-teal);
                    transform: translateY(-3px);
                }
                
                .team-avatar {
                    width: 90px;
                    height: 90px;
                    border-radius: 50%;
                    background: #e0f2fe;
                    color: var(--primary-teal);
                    font-size: 34px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin: 0 auto 18px;
                }
                
                .team-card h3 {
                    font-size: 17px;
                    margin-bottom: 4px;
                }
                
                .team-card span {
                    font-size: 12px;
                    font-weight: 700;
                    color: var(--primary-teal);
                    text-transform: uppercase;
                    letter-spacing: 0.5px;
                }
                
                .team-card p {
                    font-size: 13px;
                    color: var(--text-gray);
                    margin-top: 12px;
                }
                
                .location-section {
                    background: #f3f4f6;
                    padding: 60px 5%;
                }
                
                .map-frame {
                    width: 100%;
                    height: 320px;
                    border-radius: 12px;
                    border: 1px solid var(--border-color);
                    overflow: hidden;
                    margin-top: 25px;
                }
                
                .map-frame iframe {
                    width: 100%;
                    height: 100%;
                    border: 0;
                }
                
                .faq-wrapper {
                    max-width: 900px;
                    margin: 0 auto;
                }
                
                .faq-item {
                    background: #fff;
                    border: 1px solid var(--border-color);
                    border-radius: 10px;
                    margin-bottom: 12px;
                    padding: 5px 20px;
                }
                
                .faq-item summary {
                    cursor: pointer;
                    font-weight: 600;
                    font-size: 15px;
                    padding: 15px 0;
                    list-style: none;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                }
                
                .faq-item summary::-webkit-details-marker {
                    display: none;
                }
                
                .faq-item summary::after {
                    content: '+';
                    font-size: 20px;
                    color: var(--primary-teal);
                }
                
                .faq-item[open] summary::after {
                    content: '−';
                }
                
                .faq-item p {
                    font-size: 14px;
                    color: var(--text-gray);
                    padding-bottom: 15px;
                }
                
                .faq-cta {
                    max-width: 700px;
                    margin: 35px auto 0;
                    background: #ffffff;
                    border: 1px solid var(--border-color);
                    border-radius: 14px;
                    padding: 30px;
                    text-align: center;
                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
                }
                
                .faq-cta h3 {
                    font-size: 19px;
                    color: var(--text-dark);
                    margin-bottom: 6px;
                }
                
                .faq-cta p {
                    font-size: 14px;
                    color: var(--text-gray);
                    margin-bottom: 20px;
                }
                
                .faq-cta-buttons {
                    display: flex;
                    justify-content: center;
                    gap: 14px;
                    flex-wrap: wrap;
                }
                
                .faq-cta-call {
                    background: var(--primary-teal);
                    color: #fff;
                    padding: 12px 24px;
                    border-radius: 8px;
                    text-decoration: none;
                    font-weight: 600;
                    font-size: 14px;
                    display: inline-flex;
                    align-items: center;
                    gap: 8px;
                }
                
                .faq-cta-call:hover {
                    background: var(--primary-dark);
                }
                
                .faq-cta-whatsapp {
                    background: var(--whatsapp-green);
                    color: #fff;
                    padding: 12px 24px;
                    border-radius: 8px;
                    text-decoration: none;
                    font-weight: 600;
                    font-size: 14px;
                    display: inline-flex;
                    align-items: center;
                    gap: 8px;
                }
                
                .faq-cta-whatsapp:hover {
                    opacity: 0.9;
                }
                
                footer {
                    background: #111827;
                    color: #fff;
                    padding: 50px 5% 20px 5%;
                }
                
                .footer-content {
                    max-width: 1350px;
                    margin: 0 auto;
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                    gap: 40px;
                    margin-bottom: 40px;
                }
                
                .footer-col h4 {
                    font-size: 16px;
                    margin-bottom: 15px;
                    color: #fff;
                }
                
                .footer-col p,
                .footer-col ul li a,
                .footer-col a {
                    font-size: 13px;
                    color: #9ca3af;
                    text-decoration: none;
                }
                
                .footer-col a:hover {
                    color: #fff;
                }
                
                .footer-col ul {
                    list-style: none;
                }
                
                .footer-col ul li {
                    margin-bottom: 8px;
                }
                
                .footer-col ul li a:hover {
                    color: #fff;
                }
                
                .footer-bottom {
                    text-align: center;
                    border-top: 1px solid #1f2937;
                    padding-top: 20px;
                    font-size: 12px;
                    color: #9ca3af;
                }
                
                .mobile-sticky-bar {
                    display: none;
                    position: fixed;
                    bottom: 0;
                    left: 0;
                    width: 100%;
                    background: #fff;
                    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
                    z-index: 999;
                    padding: 8px;
                    justify-content: space-around;
                }
                
                .mob-btn {
                    flex: 1;
                    text-align: center;
                    padding: 10px;
                    font-weight: bold;
                    border-radius: 6px;
                    text-decoration: none;
                    font-size: 14px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 6px;
                }
                
                .mob-call {
                    background: var(--primary-teal);
                    color: #fff;
                    margin-right: 4px;
                }
                
                .mob-whatsapp {
                    background: var(--whatsapp-green);
                    color: #fff;
                    margin-left: 4px;
                }
                
                .trust-badges-strip {
                    background: #fff;
                    border-top: 1px solid var(--border-color);
                    border-bottom: 1px solid var(--border-color);
                    padding: 20px 5%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 40px;
                    flex-wrap: wrap;
                }
                
                .trust-badge-item {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    font-size: 13px;
                    font-weight: 700;
                    color: var(--text-dark);
                }
                
                .trust-badge-item i {
                    color: var(--mint);
                    font-size: 19px;
                    flex-shrink: 0;
                }
                
                .comparison-grid {
                    max-width: 920px;
                    margin: 0 auto;
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    gap: 24px;
                }
                
                .comparison-col {
                    background: #fff;
                    border: 1px solid var(--border-color);
                    border-radius: 14px;
                    padding: 30px 26px;
                    position: relative;
                }
                
                .comparison-col h3 {
                    font-size: 17px;
                    margin-bottom: 20px;
                    color: var(--text-dark);
                }
                
                .comparison-col ul {
                    list-style: none;
                }
                
                .comparison-col li {
                    display: flex;
                    align-items: flex-start;
                    gap: 10px;
                    font-size: 13.5px;
                    color: var(--text-gray);
                    padding: 10px 0;
                    border-bottom: 1px solid var(--border-color);
                }
                
                .comparison-col li:last-child {
                    border-bottom: none;
                }
                
                .comparison-col li i {
                    margin-top: 2px;
                    flex-shrink: 0;
                }
                
                .comparison-col-hospital li i {
                    color: #d1495b;
                }
                
                .comparison-col-apanasukh {
                    border-color: var(--primary-teal);
                    box-shadow: 0 12px 32px rgba(21, 94, 145, 0.14);
                }
                
                .comparison-col-apanasukh li {
                    color: var(--text-dark);
                    font-weight: 500;
                }
                
                .comparison-col-apanasukh li i {
                    color: var(--mint);
                }
                
                .comparison-badge {
                    position: absolute;
                    top: -13px;
                    right: 22px;
                    background: var(--mint);
                    color: #fff;
                    font-size: 11px;
                    font-weight: 700;
                    padding: 5px 14px;
                    border-radius: 20px;
                    text-transform: uppercase;
                    letter-spacing: 0.5px;
                }
                
                .desktop-book-fab {
                    position: fixed;
                    right: 26px;
                    bottom: 26px;
                    z-index: 900;
                    background: var(--primary-teal);
                    color: #fff;
                    border: none;
                    padding: 14px 24px;
                    border-radius: 50px;
                    font-weight: 700;
                    font-size: 14px;
                    font-family: inherit;
                    display: flex;
                    align-items: center;
                    gap: 9px;
                    box-shadow: 0 10px 28px rgba(12, 63, 102, 0.28);
                    cursor: pointer;
                    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
                }
                
                .desktop-book-fab:hover {
                    background: var(--primary-dark);
                    transform: translateY(-2px);
                    box-shadow: 0 14px 32px rgba(12, 63, 102, 0.34);
                }
                
                @media (max-width: 768px) {
                    .desktop-book-fab {
                        display: none;
                    }
                    .trust-badges-strip {
                        gap: 18px;
                        padding: 16px 5%;
                    }
                    .trust-badge-item {
                        font-size: 12px;
                    }
                    .comparison-grid {
                        grid-template-columns: 1fr;
                    }
                }
                
                .service-category {
                    background: #fff;
                    border: 1px solid var(--border-color);
                    border-radius: 12px;
                    margin-bottom: 14px;
                    padding: 4px 24px;
                }
                
                .service-category summary {
                    cursor: pointer;
                    list-style: none;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 18px 0;
                    font-weight: 700;
                    font-size: 16px;
                    color: var(--text-dark);
                    gap: 14px;
                }
                
                .service-category summary::-webkit-details-marker {
                    display: none;
                }
                
                .service-category-title {
                    display: flex;
                    align-items: center;
                    gap: 14px;
                }
                
                .service-category-title i {
                    color: var(--primary-teal);
                    font-size: 18px;
                    width: 22px;
                    text-align: center;
                    flex-shrink: 0;
                }
                
                .category-chevron {
                    color: var(--text-gray);
                    transition: transform 0.25s;
                    font-size: 13px;
                    flex-shrink: 0;
                }
                
                .service-category[open] .category-chevron {
                    transform: rotate(180deg);
                }
                
                .service-checklist {
                    list-style: none;
                    padding-bottom: 18px;
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    gap: 2px 28px;
                }
                
                .service-checklist li {
                    display: flex;
                    align-items: flex-start;
                    gap: 9px;
                    font-size: 13.5px;
                    color: var(--text-gray);
                    padding: 9px 0;
                    border-bottom: 1px solid var(--border-color);
                }
                
                .service-checklist li i {
                    color: var(--mint);
                    margin-top: 3px;
                    flex-shrink: 0;
                    font-size: 12px;
                }
                
                .service-checklist li a {
                    color: var(--primary-teal);
                    text-decoration: none;
                    font-weight: 700;
                    margin-left: 4px;
                    white-space: nowrap;
                }
                
                .service-checklist li a:hover {
                    text-decoration: underline;
                }
                
                @media (max-width: 700px) {
                    .service-checklist {
                        grid-template-columns: 1fr;
                    }
                    .service-category summary {
                        font-size: 14.5px;
                    }
                }
                
                @media (max-width: 1100px) {
                    .hero-visual {
                        width: 68%;
                    }
                    .hero-left h1 {
                        font-size: 38px;
                    }
                    .hero-badges-wrapper {
                        max-width: 260px;
                    }
                    .section-title-box h2 {
                        font-size: 30px;
                    }
                }
                
                @media (max-width: 900px) {
                    .hero-section {
                        display: flex;
                        flex-direction: column;
                    }
                    .hero-visual {
                        position: relative;
                        width: 100%;
                        height: 300px;
                    }
                    .hero-visual img {
                        object-position: center 35%;
                    }
                    .hero-visual::after {
                        background: linear-gradient(to bottom, rgba(251, 249, 245, 0.35) 0%, rgba(251, 249, 245, 0) 30%, rgba(251, 249, 245, 0.75) 82%, var(--bg-cream) 100%);
                    }
                    .hero-inner {
                        padding: 30px 5% 50px;
                        margin-top: -40px;
                    }
                    .hero-left {
                        max-width: 100%;
                    }
                }
                /* ===== Mobile hamburger menu toggle (hidden on desktop) ===== */
                
                .mobile-nav-toggle {
                    display: none;
                    background: none;
                    border: none;
                    font-size: 20px;
                    color: var(--text-dark);
                    cursor: pointer;
                    padding: 6px 4px;
                }
                
                @media (max-width: 768px) {
                    .navbar {
                        position: relative;
                        flex-wrap: wrap;
                    }
                    .nav-links {
                        display: none;
                        position: absolute;
                        top: 100%;
                        left: 0;
                        width: 100%;
                        background: #fff;
                        flex-direction: column;
                        align-items: flex-start;
                        gap: 2px;
                        padding: 10px 5% 18px;
                        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
                        border-top: 1px solid var(--border-color);
                        z-index: 999;
                    }
                    .nav-links.mobile-open {
                        display: flex;
                    }
                    .nav-links li {
                        width: 100%;
                    }
                    .nav-links a {
                        display: block;
                        padding: 12px 0;
                        width: 100%;
                    }
                    .dropdown-menu {
                        position: static;
                        display: none;
                        box-shadow: none;
                        border: none;
                        padding-left: 16px;
                        min-width: 0;
                    }
                    .nav-item.mobile-dropdown-open .dropdown-menu {
                        display: block;
                    }
                    .header-right {
                        display: flex;
                        align-items: center;
                        gap: 8px;
                    }
                    .header-right .book-now-btn {
                        display: none;
                    }
                    .contact-dropdown {
                        padding: 6px 10px;
                        gap: 6px;
                        font-size: 13px;
                    }
                    .contact-dropdown a {
                        white-space: nowrap;
                    }
                    .mobile-nav-toggle {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                    }
                    .mobile-sticky-bar {
                        display: flex;
                    }
                    body {
                        padding-bottom: 55px;
                    }
                    .hero-left h1 {
                        font-size: 30px;
                    }
                    .hero-right {
                        width: 100%;
                        min-width: 100%;
                    }
                    .hero-badges-wrapper {
                        max-width: 100%;
                        width: 100%;
                    }
                    .hero-lead-form .form-row {
                        grid-template-columns: 1fr;
                    }
                    .logo-img {
                        height: 50px;
                    }
                    .section-container {
                        padding: 40px 5%;
                    }
                    .how-it-works-section,
                    .expanded-services-section {
                        padding: 40px 5%;
                    }
                    .review-slider-wrapper {
                        gap: 6px;
                    }
                    .review-nav-btn {
                        width: 38px;
                        height: 38px;
                        font-size: 14px;
                    }
                }
                
                @media (max-width: 480px) {
                    .hero-tagline {
                        font-size: 11px;
                    }
                    .hero-left h1 {
                        font-size: 26px;
                    }
                    .hero-left p {
                        font-size: 14px;
                    }
                    .hero-lead-form {
                        padding: 18px;
                    }
                    .section-title-box h2 {
                        font-size: 24px;
                    }
                    .section-title-box p {
                        font-size: 13px;
                    }
                    .service-card {
                        flex-direction: column;
                        align-items: flex-start;
                        gap: 14px;
                    }
                    .service-card-left {
                        width: 100%;
                    }
                    .card-book-btn {
                        width: 100%;
                        text-align: center;
                    }
                    .expanded-card {
                        padding: 18px;
                    }
                    .stat-item h2 {
                        font-size: 20px;
                    }
                    .how-box {
                        padding: 22px 16px;
                    }
                    .team-card {
                        padding: 22px 16px;
                    }
                    footer div[style*="padding: 70px 5%"] h2 {
                        font-size: 24px !important;
                    }
                    .hero-visual {
                        height: 230px;
                    }
                    .hero-stats-badge,
                    .hero-badges-wrapper {
                        width: 100%;
                        max-width: 100%;
                    }
                    .testimonial-card {
                        padding: 22px 18px;
                    }
                }
                
                .service-detail-image {
                    max-width: 900px;
                    margin: 40px auto 0;
                    padding: 0 5%;
                }
                
                .service-detail-image img {
                    width: 100%;
                    max-height: 320px;
                    object-fit: cover;
                    object-position: center top;
                    border-radius: 14px;
                    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
                    display: block;
                }