/* Citiwell Design System */
:root {
    /* Colors */
    --primary-color: #1D8FBD;
    /* Teal Blue */
    --primary-hover: #167a9c;
    --secondary-color: #FFFFFF;
    --bg-light: #F5F7FA;
    --text-dark: #333333;
    --text-light: #777777;
    --accent-error: #e74c3c;

    /* Typography */
    --font-main: 'Manrope', 'Montserrat', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;

    /* Transitions */
    --transition-fast: 0.3s ease;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--secondary-color);
    /* Background moved to .fixed-background element */
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.fixed-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-image: url('assets/img/background-texture.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #FF6B6B;
    /* Warm Coral */
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    /* Coral Shadow */
}

.btn:hover {
    background-color: #ff8585;
    /* Brighter Coral */
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
}

/* Secondary Button (Teal) */
.btn-secondary {
    background-color: #1D8FBD;
    /* Brand Teal */
    box-shadow: 0 4px 15px rgba(29, 143, 189, 0.4);
}

.btn-secondary:hover {
    background-color: #156d91;
    /* Darker Teal */
    box-shadow: 0 6px 20px rgba(29, 143, 189, 0.5);
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    /* Soft elegant shadow */
    height: 80px;
    display: flex;
    align-items: center;
}

.header__container {
    display: flex;
    flex-direction: row;
    /* Force row */
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    /* Extra Bold */
    color: #1D8FBD;
    /* Teal Blue */
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.nav__list {
    display: flex;
    gap: 32px;
}

.nav {
    display: flex;
    gap: 30px;
}

.desktop-menu {
    display: flex;
    gap: 32px;
}

.mobile-menu {
    display: none;
    /* Hidden on desktop */
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-color);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Language Switcher (Desktop Dropdown) */
.lang-dropdown {
    position: relative;
    z-index: 100;
    top: 3px;
}

/* Visible on mobile - consolidated below */

.lang-toggle-btn {
    width: 54px;
    /* Matches approximate height of .btn (16px padding * 2 + 1.6em text) */
    height: 54px;
    border-radius: 50%;
    border: none;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    /* Soft shadow to match button style generally, though button is colored */
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-fast);
}

.lang-toggle-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.lang-toggle-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    /* Start position */
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 15px;
    /* Spacing from button */

    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

/* Clean active state without hacks */
.lang-dropdown.is-active .lang-dropdown-menu {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
    z-index: 1000;
}

.lang-opt {
    width: 44px;
    /* Slightly smaller than main toggle */
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: block;
    transition: transform 0.2s;
}

.lang-opt:hover {
    transform: scale(1.1);
}

.lang-opt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- MOBILE LANGUAGE SWITCHER (FINAL SYNC) --- */
@media (max-width: 1024px) {
    .header__actions {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 12px !important;
        order: 3 !important;
        z-index: 10002 !important;
        position: relative !important;
        margin-left: 10px;
    }

    .lang-dropdown {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }


    .lang-toggle-btn {
        display: block !important;
    }

    .header__actions .btn {
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.3rem !important;
    }
}


.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger-menu span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* New Mobile Menu Default State (Hidden on Desktop) */
.mobile-nav-container {
    display: none;
}

/* Desktop Only Nav Helper */
.desktop-only-nav {
    display: flex !important;
}

/* --- Buttons --- */

.btn--header {
    padding: 10px 24px;
    font-size: 14px;
}

.btn--large {
    padding: 16px 40px;
    font-size: 17px;
}

.btn--icon {
    gap: 10px;
}

.btn--primary,
.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn--primary:hover,
.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn--outline,
.btn-outline {
    border: 1px solid #e0e0e0;
    background: transparent;
    color: var(--text-dark);
}

.btn--outline:hover,
.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(29, 143, 189, 0.05);
}

/* --- Pricing Navigation Arrows --- */
.pricing-next,
.pricing-prev {
    color: var(--primary-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    z-index: 10;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.pricing-next:after,
.pricing-prev:after {
    font-size: 18px;
    font-weight: 800;
}

.pricing-next:hover,
.pricing-prev:hover {
    background: var(--primary-color);
    color: white;
}

/* Hide on desktop since it's a grid */
@media (min-width: 769px) {

    .pricing-next,
    .pricing-prev {
        display: none;
    }
}


/* --- Hero --- */
.hero {
    position: relative;
    padding: 28px 0;
    min-height: auto;
    display: flex;
    align-items: center;
    background: transparent;
    /* Transparent for Fixed BG */
    margin-top: 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    /* Top align text */
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 40px;
    /* Extra spacing from header */
}

.hero h1 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    /* Extra Bold */
    font-size: 3rem;
    /* ~48px */
    line-height: 1.2;
    margin-top: -40px;
    /* Lift heading 40px up total */
    margin-bottom: 24px;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 550px;
    font-weight: 300;
    /* Thinner */
}

/* Hero Bullets Interactivity */
.hero-bullets-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
    position: relative;
    z-index: 5;
    align-items: flex-start;
}

.hero-bullet-item {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 550px;
    overflow: hidden;
    user-select: none;
}

.bullet-header {
    display: flex;
    align-items: center;
    gap: 8px;
    /* Reduced gap as requested */
    width: 100%;
}

.bullet-icon {
    color: var(--primary-color);
    font-size: 0.8rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-bullet-item.active .bullet-icon {
    transform: rotate(45deg);
}

.bullet-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    flex-grow: 1;
    text-align: left;
    position: relative;
    top: -2px;
    /* Raised 2px as requested */
}

.bullet-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    margin-left: 24px;
    /* Icon 16px + Gap 8px = 24px */
    opacity: 0;
}

.hero-bullet-item.active .bullet-content {
    max-height: 200px;
    opacity: 1;
    margin-top: 8px;
}

.bullet-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
    text-align: left;
}

/* Responsive Hero Bullets */
@media (max-width: 1024px) {
    .hero-bullets-grid {
        align-items: flex-start;
        padding-left: 20px;
    }
}

@media (max-width: 768px) {
    .hero-bullets-grid {
        padding-left: 5px;
        /* Added 5px as requested */
    }
}

/* Doctor Image */
.hero-image-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    /* Anchor to top, not bottom */
    height: 100%;
}

.hero-doctor-img {
    width: 100%;
    /* Fully fluid */
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: top;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(29, 143, 189, 0.25);
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-image-wrapper {
        order: 2;
        justify-content: center;
        width: 100%;
        /* Full width to match content blocks */
    }

    .hero-doctor-img {
        width: 100%;
        max-width: 500px;
        /* Limit size on tablets */
        aspect-ratio: 4 / 5;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    /* Mobile Header & Nav */
}

/* True Mobile (Phones) - Square Image */
@media (max-width: 768px) {
    .hero h1 {
        margin-top: -25px;
    }

    .hero-doctor-img {
        width: 100%;
        /* Full width on phones, matches content blocks */
        aspect-ratio: 1 / 1;
    }

    .header__container {
        justify-content: flex-start;
    }

    .burger-menu {
        display: flex;
        order: 1;
        margin-right: 15px;
        position: relative;
        z-index: 10001;
    }

    .logo {
        order: 2;
        margin-left: 0;
        margin-right: auto;
    }

    .header__actions {
        order: 3;
    }

    /* Hide Desktop Nav on Mobile */
    .desktop-only-nav {
        display: none !important;
    }

    /* New Mobile Menu Styling */
    .mobile-nav-container {
        display: block;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        max-height: 0;
        /* collapsed */
        overflow-y: auto;
        /* scrollable if too tall */
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.4s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        z-index: 10000;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .mobile-nav-container.active {
        max-height: 80vh;
        /* Allow growing */
        opacity: 1;
        transform: translateY(0);
        padding-bottom: 20px;
    }

    .mobile-menu-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-menu-list>li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    .mobile-link {
        display: block;
        padding: 16px 20px;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-dark);
        text-decoration: none;
    }

    .mobile-link:hover {
        background-color: var(--bg-light);
        color: var(--primary-color);
    }

    /* Dropdown Header */
    .mobile-dropdown-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-dark);
        cursor: pointer;
        background: white;
    }

    .mobile-dropdown.active .mobile-dropdown-header {
        color: var(--primary-color);
        background: var(--bg-light);
    }

    .mobile-dropdown-header i {
        transition: transform 0.3s ease;
    }

    .mobile-dropdown.active .mobile-dropdown-header i {
        transform: rotate(180deg);
    }

    /* Submenu */
    .mobile-submenu {
        list-style: none;
        padding: 0;
        margin: 0;
        background-color: var(--bg-light);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .mobile-dropdown.active .mobile-submenu {
        max-height: 500px;
        /* Arbitrary large number for slide down */
    }

    .mobile-submenu li a {
        display: block;
        padding: 12px 20px 12px 40px;
        /* Indented */
        font-size: 1rem;
        color: var(--text-light);
        border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    }

    .mobile-submenu li a:hover {
        color: var(--primary-color);
        background: rgba(0, 0, 0, 0.02);
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Social Proof */
.social-proof {
    background-color: var(--bg-light);
    padding: 30px 0;
    text-align: center;
}

.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 600;
}

/* Generic Card Theme (Blue Header / White Body) */
/* Generic Card Theme (Blue Header / White Body) */
#pricing,
#team,
#locations,
#faq,
#technology {
    text-align: center;
    padding: 0;
    /* Full bleed header */
    overflow: hidden;
    /* Clip corners */
}

.card-header {
    background-color: #1D8FBD;
    padding: 20px 0;
    /* Reduced padding to match modal */
    border-radius: 30px 30px 0 0;
    color: white;
    width: 100%;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-header h2 {
    color: white;
    margin-bottom: 0;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: none;
}

/* Specific override for Technology section body padding to balance header spacing */
.technology .card-body {
    padding-top: 30px;
}

.card-body {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px 20px 60px;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    /* Added shadow to match pricing cards */
}

/* Specific pricing body override to tighten spacing and center content (Match Landing) */
#pricing .card-body {
    padding-top: 20px !important;
    padding-bottom: 25px !important;
    box-shadow: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.section-subtitle {
    margin-bottom: 20px;
}

/* Tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    background: #f0f4f8;
    padding: 5px;
    border-radius: 50px;
}

@media (min-width: 1024px) {
    .pricing-tabs {
        margin-bottom: 45px;
    }
}

.tab-btn {
    border: none;
    background: none;
    padding: 10px 30px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 10px rgba(29, 143, 189, 0.3);
}

/* Specific pricing body override from Landing */
#pricing-new-style .card-body {
    padding-top: 20px !important;
    padding-bottom: 25px !important;
    box-shadow: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Grid & Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px 30px 50px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-fast);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    gap: 10px;
}

.pricing-card h3 {
    margin-bottom: 0px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    box-shadow: 0 25px 50px rgba(29, 143, 189, 0.15);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.card-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0px;
}

/* Price Box */
.price-box {
    margin: 0 0 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}

.price-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0px;
    font-weight: 500;
}

.old-price {
    text-decoration: line-through;
    color: #bbb;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.new-price {
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

/* Bottom Link */
.bottom-link {
    display: inline-block;
    margin-top: 50px;
    color: var(--text-dark);
    text-decoration: underline;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.bottom-link:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Bottom Link */
.bottom-link {
    display: inline-block;
    margin-top: 50px;
    color: var(--text-dark);
    text-decoration: underline;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.bottom-link:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* --- BUTTON COLOR OVERRIDES (Match Header) --- */
#pricing-new-style .btn-primary,
#pricing-new-style .btn-outline {
    background-color: #FF6B6B;
    /* Warm Coral matching Header */
    color: white;
    /* Force white text */
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    border: none;
    font-weight: 700;
    /* Match bold header font */
}

#pricing-new-style .btn-primary:hover,
#pricing-new-style .btn-outline:hover {
    background-color: #ff8585;
    /* Brighter Coral on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
    color: white;
    border: none;
}

/* --- Pricing Swiper (Mobile) / Grid (Desktop) Hybrid --- */
.pricing-swiper {
    padding-top: 30px;
    padding-bottom: 30px;
    width: 100%;
    max-width: 100%;
}

.pricing-swiper .pricing-card {
    height: 100%;
    margin: 0;
}

@media (min-width: 769px) {
    .pricing-swiper {
        overflow: visible !important;
        padding-bottom: 0;
        padding-top: 0;
    }

    /* Force Grid Layout on Desktop (overriding Swiper styles if present) */
    .pricing-swiper .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        align-items: center;
        width: 100% !important;
        transform: none !important;
        box-sizing: border-box;
    }

    .pricing-swiper .swiper-slide {
        width: auto !important;
        height: auto !important;
        margin: 0 !important;
    }

    .pricing-swiper .swiper-pagination {
        display: none;
    }
}

@media (max-width: 768px) {
    .pricing-swiper .swiper-slide {
        width: 85%;
        opacity: 0.4;
        transition: opacity 0.3s;
    }

    .pricing-swiper .swiper-slide-active {
        opacity: 1;
    }

    .pricing-swiper .pricing-card {
        transform: none !important;
    }

    .pricing-swiper .pricing-card.popular {
        transform: scale(1.02) !important;
        border: 2px solid var(--primary-color);
    }
}

/* --- Pricing Carousel Navigation --- */
.pricing-prev,
.pricing-next {
    width: 44px;
    height: 44px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: var(--primary-color);
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
}

.pricing-prev::after,
.pricing-next::after {
    font-size: 18px;
    font-weight: 800;
}

.pricing-prev {
    left: 10px;
}

.pricing-next {
    right: 10px;
}

@media (min-width: 769px) {

    .pricing-prev,
    .pricing-next {
        display: none !important;
    }
}

.pricing-swiper .pricing-card {
    transform: none !important;
}

.pricing-swiper .pricing-card.popular {
    transform: scale(1.02) !important;
    border: 2px solid var(--primary-color);
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px 30px 50px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* Deep soft shadow */
    transition: var(--transition-fast);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    /* Faint border */
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    box-shadow: 0 25px 50px rgba(29, 143, 189, 0.15);
    z-index: 2;
    /* Bring to front */
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.card-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0px;
}

/* Price Box */
.price-box {
    margin: 0 0 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}

.price-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0px;
    font-weight: 500;
}

.old-price {
    text-decoration: line-through;
    color: #bbb;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.new-price {
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

/* Bottom Link */
.bottom-link {
    display: inline-block;
    margin-top: 50px;
    color: var(--text-dark);
    text-decoration: underline;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.bottom-link:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* USP Section (Honest Zones) handled by global floating card style */

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.usp-image img {
    width: 100%;
    max-width: 450px;
    /* Control image size */
    margin: 0 auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(29, 143, 189, 0.1);
    /* Soft teal shadow */
}

.usp-content h2,
.tech-content h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    /* Reduced from 800 to match card header */
    font-size: 1.5rem;
    /* Reduced from 3rem to match card header */
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    text-align: left;
    /* Explicitly left align on desktop */
}

.input-error {
    border: 1px solid #dc3545 !important;
    background-color: #fff8f8;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1);
}

.usp-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.usp-list {
    list-style: none;
    padding: 0;
}

.usp-list li {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    padding-left: 30px;
    position: relative;
}

.usp-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 1.2rem;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.honest-zones .split-layout {
    align-items: start;
}

.usp-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Equipment Section */
.equipment-section {
    padding: var(--section-padding);
}

/* Re-use split-layout but reverse for equipment */
.equipment-section .split-layout {
    direction: ltr;
    /* Ensure grid is ltr */
}

/* We can just swap in HTML or use order css property */

/* Locations handled by global floating card style */

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.location-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.location-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.location-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.location-list li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* --- FAQ Section handled by global floating card style --- */

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

.faq-item {
    background-color: #fff;
    border-radius: 10px;
    /* Requested 10px */
    margin-bottom: 15px;
    /* Requested 15px gap */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #fff;
    user-select: none;
    text-align: left;
    /* User requested left align */
}

.toggle-icon {
    color: #1D8FBD;
    /* Teal */
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
    /* Turn + into x */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    opacity: 1;
    /* Keep opacity 1 so we don't have fade artifact with border */
    background-color: #fff;
}

.faq-item.active .faq-answer {
    /* Border top for separation line when active */
    border-top: 1px solid #f0f0f0;
}

.faq-answer p {
    margin: 0;
    padding: 20px 25px;
    /* Padding inside the open answer */
    color: #666;
    /* Lighter grey */
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: left;
    /* User requested left align */
}

/* Footer */
/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 30px 0 15px !important;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    display: block;
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {

    /* Compact H1 for Mobile */
    .hero h1 {
        font-size: 1.8rem;
        /* Reduced from 2.5rem */
        line-height: 1.2;
        margin-bottom: 15px;
        color: var(--primary-color);
        /* Branding color */
        font-weight: 800;
        /* Extra bold */
    }

    /* Compact Subtitle */

    /* Reduce spacing in features */
    .features-list {
        gap: 12px;
        /* Slightly decreased gap */
        margin-bottom: 25px;
    }

    .feature-item {
        font-size: 1rem;
        /* Match hero subtitle size (1rem) */
        font-weight: 700;
        /* Make bold */
        line-height: 1.4;
    }

    .feature-icon {
        font-size: 1.3rem;
        /* Scale icon slightly up */
        min-width: 24px;
        /* Ensure alignment */
        text-align: center;
    }

    /* Tighten Hero Section Padding */
    .hero {
        padding: 75px 0 10px;
        /* Further reduced to 75px as requested */
        margin-top: 0;
    }

    .hero-grid {
        gap: 20px;
        /* Reduced gap between text and image */
    }

    /* Adjust Doctor Image Size */
    .hero-doctor-img {
        width: 100%;
        /* Full width on smallest screens too */
        aspect-ratio: 1 / 1;
    }

    /* Update Content Headers to match Hero H1 on Mobile */
    .usp-content h2,
    .tech-content h2 {
        /* font-size: 1.5rem; Inherited from desktop */
        line-height: 1.2;
        margin-bottom: 30px;
        /* Increased to 30px to match split-layout gap */
        color: var(--primary-color);
        font-weight: 700;
        text-align: left;
        /* Keep left alignment or center if preferred, Hero is LEFT centered in flex column but text-align might differ. */
    }

    .nav {
        display: none;
        /* Hide for now, or implement hamburger */
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        display: flex;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: none;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        /* Reduced from 60px to balance with header margin */
    }

    .equipment-section .split-layout {
        display: flex;
        flex-direction: column-reverse;
    }
}

/* --- Technology Section --- */
.technology {
    padding: 80px 0;
    /* Subtle Gradient: White to Very Light Teal */
    background: transparent;
}

.technology .split-layout {
    align-items: start;
    /* Aligns text to top, preventing huge gaps from vertical centering */
}

.section-tagline {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1D8FBD;
    /* Teal */
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.tech-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.tech-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tech-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.tech-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
    min-width: 30px;
    text-align: center;
}

.tech-list strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.tech-list p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-light);
    color: var(--text-light);
}

/* Specific alignment for Tech Content Header */
.tech-content h2 {
    padding-left: 45px;
    /* 30px icon + 15px gap = Align with text */
    margin-bottom: 30px;
    /* Balance with top padding */
}

@media (max-width: 768px) {

    /* Ensure indentation persists on mobile if needed, or adjust */
    .tech-content h2 {
        padding-left: 45px;
        margin-bottom: 30px;
    }
}

.tech-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.tech-featured-card {
    background: white;
    border-radius: 40px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(29, 143, 189, 0.15);
    /* Soft Teal Shadow */
    position: relative;
    display: inline-block;
    /* Fit content */
    max-width: 100%;
}

/* Decorative backdrop blob */
.tech-featured-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(29, 143, 189, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(20px);
}

.tech-featured-card img {
    max-height: 500px;
    width: auto;
    display: block;
    mix-blend-mode: multiply;
    /* Helps hide faint white edges if any */
}

@media (max-width: 768px) {
    .technology .split-layout {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
}



/* --- Team Section (Swiper 3D Carousel) --- */
.team {
    padding: 80px 0;
    background-color: transparent;
    text-align: center;
    overflow: hidden;
    /* Hide overflow from 3D effect */
}

.team-swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 320px;
    /* Fixed width for cards */
    /* Ensure height is auto to fit content */
    height: auto;
}

.team-card {
    text-align: left;
    width: 100%;
    /* Fill slide */
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    /* Explicit highlighting border as requested */
    border: none;
    padding: 20px;
    padding-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    /* Swiper handles transforms, we just style inner card */
    user-select: none;
}

.team-img-wrapper {
    position: relative;
    /* Context for absolute positioning */
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
    background-color: #f0f0f0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease-in-out;
    /* Smooth transition */
}

/* Default state: Main image visible, Hover image hidden */
.team-img-main {
    opacity: 1;
}

.team-img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
}

/* Hover state: Main image hidden, Hover image visible (Desktop Only) */
@media (min-width: 992px) {
    .team-card:hover .team-img-hover {
        opacity: 1;
    }
}

/* Mobile Image Logic:
   - Inactive slides: Show Hover Image (Secondary)
   - Active Slide: Show Main Image
*/
@media (max-width: 991px) {

    /* Inactive State: Main hidden, Hover visible */
    .team-img-main {
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .team-img-hover {
        opacity: 1;
        transition: opacity 0.5s ease;
    }

    /* Active State: Main visible, Hover hidden */
    .swiper-slide-active .team-img-main {
        opacity: 1;
    }

    .swiper-slide-active .team-img-hover {
        opacity: 0;
    }
}



/* Hover state: Main image hidden, Hover image visible (Desktop Only) */
@media (min-width: 992px) {
    .team-card:hover .team-img-hover {
        opacity: 1;
    }
}

.team-card h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: 700;
}

.team-role {
    color: #1D8FBD;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.team-exp {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

/* Pagination Bullets */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #1D8FBD;
    opacity: 1;
    width: 30px;
    /* Long active bullet */
    border-radius: 5px;
    transition: width 0.3s;
}

/* --- Responsive Logic --- */

/* Desktop: Restore Grid Layout (Disable Swiper Visuals) */
@media (min-width: 769px) {
    .team-swiper {
        padding: 0;
        overflow: visible;
    }

    .swiper-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        transform: none !important;
        /* Override Swiper */
    }

    .swiper-slide {
        width: 270px !important;
        /* Fixed card width */
        height: auto !important;
        transform: none !important;
        /* Disable 3D transforms */
        margin: 0 !important;
        opacity: 1 !important;
        background: transparent;
        box-shadow: none;
        /* Remove any slide shadow */
    }

    .swiper-pagination {
        display: none;
    }

    .step-content.full-width {
        width: 100%;
        flex: 0 0 100%;
        margin-left: 0;
    }

    /* Base styles for step visual */
    .team-card {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        /* Softer shadow for grid, matched to restriction-card */
    }

    .team-card:hover {
        transform: scale(1.02);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
}

/* Mobile: Refine 3D Effect */
@media (max-width: 768px) {
    .team-swiper {
        padding-top: 0;
        padding-bottom: 60px;
        /* Pull carousel to edges to ignore parent padding */
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
    }

    .swiper-slide {
        width: 280px;
    }

    /* Customizing the shadow overlay generated by Swiper to be lighter/white fade */
    .swiper-slide-shadow-left,
    .swiper-slide-shadow-right {
        background-image: none !important;
        /* Remove default black gradient */
        background-color: rgba(255, 255, 255, 0.5) !important;
        /* White fade */
    }
}


/* --- Locations Network Section --- */
.locations-network {
    padding: 80px 0;
    background-color: transparent;
    /* Changed to White to contrast with FAQ */
    text-align: center;
}

.locations-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.location-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    width: 100%;
    /* Fill the slide (which is 270px) */
    overflow: hidden;
    text-align: left;
    padding: 15px;
    /* Added padding to frame the content */
}

.location-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.loc-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    /* Revert to landscape */
    overflow: hidden;
    background-color: #eee;
    border-radius: 15px;
    position: relative;
}

.loc-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.loc-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.location-card:hover .loc-img-wrapper img {
    transform: scale(1.05);
}

.loc-content {
    padding: 20px 25px;
    /* Restored padding */
    /* Position relative removed, static flow */
}

.loc-img-wrapper h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
    color: white;
    font-size: 2rem;
    /* Big */
    font-weight: 800;
    /* Thick */
    margin: 0;
    z-index: 2;
    text-shadow: 0 4px 15px var(--primary-color), 0 0 5px rgba(0, 0, 0, 0.3);
}

.loc-address {
    color: var(--text-light);
    /* Revert to grey */
    font-size: 1rem;
    margin-bottom: 15px;
}

.loc-link {
    display: inline-block;
    color: var(--primary-color);
    /* Revert to primary color */
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

.loc-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.loc-link i {
    margin-left: 5px;
}

/* Information Button */
.loc-info-btn {
    width: 100%;
    margin-top: 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(29, 143, 189, 0.4);
}

.loc-info-btn:hover {
    background-color: #156d91;
    /* Darker Teal */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 143, 189, 0.5);
    color: white;
    text-decoration: none;
}

.loc-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.loc-link i {
    margin-left: 5px;
}

/* Location Section Specifics */
@media (max-width: 768px) {
    .locations-network .section-subtitle {
        margin-bottom: 0;
    }

    .locations-swiper {
        padding-top: 0;
    }
}

@media (min-width: 769px) {
    .locations-network .section-subtitle {
        margin-bottom: 40px;
    }

    .locations-swiper {
        padding-top: 0;
    }
}

/* Base locations swiper style (rest is handled in media queries or inherited) */
.locations-swiper {
    width: 100%;
    padding-bottom: 50px;
}

/* Pagination Bullets for Locations */
.locations-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 0.5;
}

.locations-swiper .swiper-pagination-bullet-active {
    background: #1D8FBD;
    opacity: 1;
    width: 30px;
    border-radius: 5px;
    transition: width 0.3s;
}

@media (max-width: 768px) {
    .locations-swiper {
        padding-top: 40px;
        padding-bottom: 60px;
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
    }
}

@media (max-width: 768px) {
    .locations-container {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 10px 20px 30px 20px;
        margin-left: -20px;
        margin-right: -20px;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        scroll-snap-type: x mandatory;
    }

    .locations-container::-webkit-scrollbar {
        display: none;
    }

    .location-card {
        width: 85%;
        /* Slightly wider than team cards */
        min-width: 300px;
        max-width: 380px;
        scroll-snap-align: center;
        flex-shrink: 0;
    }
}

/* Coming Soon Styling */
.location-card.coming-soon {
    filter: grayscale(100%);
    opacity: 0.8;
    pointer-events: none;
    /* Disable hover/clicks */
}

.location-card.coming-soon .loc-img-wrapper {
    position: relative;
}

.badge-soon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    z-index: 10;
    border: 2px solid white;
    letter-spacing: 2px;
}

/* Slider Navigation Buttons - REMOVED (Replaced by Swiper) */
/* .locations-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.slider-btn {
    display: none;
} */

@media (min-width: 769px) {
    .locations-swiper {
        padding: 0;
        overflow: visible;
    }

    .locations-swiper .swiper-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        transform: none !important;
    }

    .locations-swiper .swiper-slide {
        /* width: auto !important; REMOVED to inherit 270px from global swiper-slide */
        width: 270px !important;
        /* Explicitly match team card width */
        height: auto !important;
        transform: none !important;
        margin: 0 !important;
        opacity: 1 !important;
    }
}

/* --- Trust Indicators Section handled by global floating card style --- */

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
    text-align: center;
}

.trust-item {
    padding: 10px;
}

.trust-number {
    font-size: 3.5rem;
    font-weight: 800;
    /* Extra Bold */
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 10px;
    font-family: var(--font-main);
}

.trust-number.color-teal {
    color: var(--primary-color);
}

.trust-stars {
    color: #FFC107;
    /* Star Color */
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.trust-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.trust-subtext {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 0;
}

/* Responsive Trust Section */
@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .trust-number {
        font-size: 3rem;
    }
}

/* --- Booking Modal --- */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2147483647 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.booking-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.booking-modal {
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    /* Flex column for sticky header */
    display: flex;
    flex-direction: column;
    padding: 0;
    /* Remove padding to let header flush */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-height: 85vh;
    /* Container itself doesn't scroll, the body inside does */
    overflow: hidden;
}

.booking-modal-overlay.active .booking-modal {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .booking-modal {
        max-height: calc(100vh - 20px) !important;
        margin: 10px;
        width: calc(100% - 20px);
    }
}

/* Sticky Header */
.modal-sticky-header {
    background-color: #1D8FBD;
    /* Same as Our Experts */
    color: white;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-shrink: 0;
    /* Prevent shrinking */
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    /* Shadow visible on scroll */
}

/* Header Text */
.modal-sticky-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: white;
}

/* Custom Close Button in Header */
.modal-close-header {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    /* Translucent white */
    border-radius: 50%;
    border: none;
    font-size: 20px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.modal-close-header:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Scrollable Body */
.modal-scrollable-body {
    flex-grow: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 30px 25px 40px;
    padding-bottom: calc(40px + env(safe-area-inset-bottom));
}


.modal-subheader {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    text-align: center;
    margin-bottom: 25px;
}

/* Messenger Buttons (Outline Style) */
.messenger-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-messenger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    background: white;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s, background 0.2s;
    text-decoration: none;
    border: 1px solid transparent;
    flex: 1;
}

.btn-messenger:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border: none;
}

.btn-viber {
    background-color: #7360f2;
    color: white;
    border: none;
}

.btn-messenger i {
    font-size: 24px;
}

/* Form Divider */
.form-divider {
    text-align: center;
    border-bottom: 1px solid #eee;
    line-height: 0.1em;
    margin: 10px 0 30px;
}

.form-divider span {
    background: #fff;
    padding: 0 15px;
    color: #999;
    font-size: 0.9rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-block {
    width: 100%;
    border-radius: 12px;
}

/* Utility */
.hidden {
    display: none !important;
}

/* Success State */
.modal-success {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    font-size: 60px;
    color: #2ecc71;
    margin-bottom: 20px;
}

.modal-success h3 {
    margin-bottom: 10px;
}

/* --- Toast Notification --- */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #333;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-size: 0.95rem;
    font-weight: 500;
    z-index: 3000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.toast-notification.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .toast-notification {
        bottom: 20px;
        right: 20px;
        /* Or centered */
        left: 20px;
        text-align: center;
    }
}

.pricing {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    padding: 80px 0;
}

.trust-indicators,
.honest-zones,
.technology,
.team,
.locations,
.locations-network,
.faq,
.timeline-card,
.care-block {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    margin: 20px auto;
    max-width: 1240px;
    width: 95%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 80px 20px;
}

/* Specific override for Trust Indicators to reduce height by 50% + another 30% */
.trust-indicators {
    padding: 28px 20px !important;
    margin-top: 0 !important;
}

.pricing,
.technology,
.team,
.locations,
.locations-network,
.faq,
.timeline-card,
.care-block {
    background-color: transparent;
}

/* Override padding for blocks with Headers to be flush */
/* Override padding for blocks with Headers to be flush */
.pricing,
.technology,
.care-block,
.timeline-card {
    padding: 0;
}

/* Honest Zones: Lift content by 20px */
.honest-zones {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
}

.honest-zones .usp-image img {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Full Width Footer override */
.footer {
    width: 100%;
    margin: 0;
    border-radius: 0;
    max-width: none;
}

/* --- Mobile Language FAB --- */
.mobile-lang-fab {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 9990;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.mobile-lang-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.mobile-lang-toggle:active {
    transform: scale(0.95);
}

.mobile-lang-toggle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mobile-lang-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    bottom: 70px;
    /* Above Toggle */
    z-index: 1;
    align-items: center;
}

.mobile-lang-fab.active .mobile-lang-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-lang-opt {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    /* Removed border to let flag fill */
    transition: transform 0.2s;
    display: block;
    /* Removed white background */
}


.mobile-lang-opt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hide FAB on Desktop, Hide Header Lang on Mobile */
@media (min-width: 769px) {
    .mobile-lang-fab {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .header .lang-switch {
        display: none;
    }

    .mobile-lang-fab {
        display: flex;
    }
}

/* --- Recommendations Page Styles --- */

/* Hero Section */
.rec-hero {
    position: relative;
    padding: 140px 0 60px;
    /* Account for fixed header */
    text-align: center;
    margin-bottom: 20px;
}

/* Background image removed as per request */

/* Combined selector for H1 (Recommendations & After-Care) */
.rec-hero-content h1,
.care-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.rec-hero-content h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

/* Warning Block */
.rec-warning {
    margin-bottom: 60px;
    background-color: #FDEDEE;
    /* Use the exact pink from the inner block */
    border: 1px solid #FAD1D5;
    /* Move border here */
    border-radius: 30px;
    margin: 40px auto 30px;
    max-width: 1240px;
    width: 95%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 0;
    overflow: hidden;
}

.warning-block {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: transparent;
    /* Remove inner bg */
    border: none;
    /* Remove inner border */
    border-radius: 0;
    padding: 40px;
    /* Keep padding for content */
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    max-width: none;
    /* Let it fill */
    margin: 0;
    box-shadow: none;
    /* Remove inner shadow */
}

.warning-icon-wrapper {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
}

.warning-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.warning-text h3 {
    color: var(--accent-error);
    margin-bottom: 10px;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.warning-text p {
    font-size: 1.05rem;
    color: var(--text-dark);
}

/* Timeline Section */
.rec-timeline {
    padding-bottom: 80px;
}

.timeline-step {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    border-left: 5px solid var(--primary-color);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.step-icon {
    font-size: 2rem;
}

.step-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.step-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.step-content.reverse {
    flex-direction: row-reverse;
}

.step-content ul {
    flex: 1;
    list-style: disc;
    padding-left: 20px;
}

.step-content ul li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.step-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-visual img {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
}

.step-visual.large img {
    max-height: 250px;
    /* Allow larger height for illustrations */
}

/* Responsive */
@media (max-width: 768px) {
    .rec-hero {
        padding: 120px 0 60px;
    }

    .rec-hero-content h1 {
        font-size: 2rem;
    }

    .warning-block {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .step-content,
    .step-content.reverse {
        flex-direction: column-reverse;
        /* Always put image on top or bottom? Let's say bottom for mobile flow */
        gap: 20px;
    }

    .step-visual {
        margin-bottom: 20px;
    }
}

/* --- After Care Page Styles --- */

.care-hero {
    padding: 140px 0 60px;
    text-align: center;
}



/* Combined selector to ensure identical typography matching .hero-subtitle */
.rec-hero-content h2,
.care-hero-content h2 {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.care-hero-content h2 {
    margin-bottom: 40px;
    /* specific override */
}

.hero-image-placeholder img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.care-block {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    /* Match card radius if needed, or keeping it clean */
}

.care-block .container {
    width: 100%;
    max-width: none;
    padding: 0;
}

.care-block .card-body {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.block-intro {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

/* Restrictions Grid */
.restrictions-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    /* Padding on all sides */
}

.restriction-card {
    width: calc((100% - 60px) / 3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    margin-bottom: 10px;
    /* Vertical spacing between cards */
    background-color: #f9f9f9;
    /* Subtle background for each item */
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    /* Indicate interactivity */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.restriction-card:hover {
    transform: scale(1.02);
    /* Slight scale up instead of lift */
    background-color: #f0f8fc;
    /* Light blue tint on hover */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.restriction-visual {
    margin-bottom: 15px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.restriction-visual img {
    max-height: 100px;
    width: auto;
}

.restriction-content p {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .restrictions-grid {
        padding: 20px;
    }

    .restriction-card {
        width: 100%;
    }
}

/* Center visuals */
.block-visual,
.timeline-visual-wrapper,
.chart-wrapper,
.split-visual-wrapper {
    text-align: center;
    margin-top: 30px;
}

.block-visual img,
.timeline-visual-wrapper img,
.chart-wrapper img,
.split-visual-wrapper img,
.visual-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Left Aligned Layout (Text Left, Image Right) */
.card-body.left-aligned-content {
    display: flex;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.card-body.left-aligned-content .text-content {
    flex: 1;
}

.card-body.left-aligned-content .visual-content {
    flex: 1;
    text-align: center;
    margin-top: 0;
}

.highlight-blue {
    color: var(--primary-color);
    font-weight: 600;
}

/* Split Text for Block 7 */
.split-text {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 20px;
}

.split-item {
    flex: 1;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.split-item.good {
    background-color: #f0fdf4;
    /* Light Green/Blue tint */
    border: 1px solid #dcfce7;
}

.split-item.good h3 {
    color: #166534;
    margin-bottom: 10px;
}

.split-item.bad {
    background-color: #fef2f2;
    /* Light Red tint */
    border: 1px solid #fee2e2;
}

.split-item.bad h3 {
    color: #991b1b;
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .care-hero {
        padding: 120px 0 40px;
    }

    .care-hero-content h1 {
        font-size: 2rem;
    }

    .card-body.left-aligned-content {
        flex-direction: column;
    }

    .split-text {
        flex-direction: column;
    }
}

/* Google Reviews Styles */
.reviews-section {
    padding: 0 20px;
}

.reviews-swiper {
    padding-bottom: 50px !important;
    /* Space for pagination */
}

.review-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.review-stars {
    color: #FFD700;
    /* Gold for stars */
    font-size: 0.9rem;
}

.review-body p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    cursor: pointer;
    font-weight: 500;
}

.review-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 10px;
    display: flex;
    justify-content: flex-end;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

/* Map Modal Specifics */
.map-modal-container {
    max-width: 450px;
    width: 90%;
    height: auto;
    background: white;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    border: none;
}

/* Header Above for Map Modal */
.map-modal-container .modal-sticky-header {
    background: var(--primary-color);
    z-index: 10;
    padding: 15px 20px;
    margin: 0;
    border-radius: 0;
    position: relative;
    /* Default/Reset from overlay */
}

.map-modal-container .modal-scrollable-body {
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    overflow: hidden !important;
}

.map-iframe-wrapper {
    width: 100%;
    aspect-ratio: 4 / 5;
    /* Placement area is 4:5 */
    position: relative;
}

.map-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

@media (max-width: 768px) {
    .map-modal-container {
        max-width: 90%;
    }
}

/* Promo Banners */
.promo-container {
    padding: 0 20px;
    max-width: 1200px;
    margin: 30px auto;
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.promo-item {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: block;
    /* Ensure anchor behaves like a block */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

@media (max-width: 768px) {
    .promo-item:nth-child(2) {
        display: none;
    }
}

.promo-item:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.25);
}

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

@media (min-width: 769px) {
    .promo-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Read More Button for Cards */
.read-more-btn {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(29, 143, 189, 0.08);
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.restriction-card:hover .read-more-btn {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(29, 143, 189, 0.3);
}

/* Desktop Dropdown Navigation */
.desktop-dropdown {
    position: relative;
    display: inline-block;
    height: 100%;
    /* Ensure full height for hover area if needed */
}

/* The link inside the dropdown, acts as the trigger */
.desktop-dropdown>.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 100%;
}

.desktop-dropdown>.nav-link i {
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

/* On hover, rotate the arrow */
.desktop-dropdown:hover>.nav-link i {
    transform: rotate(180deg);
}

/* The actual dropdown menu */
.desktop-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(10px);
    background: white;
    min-width: 240px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
    /* Gap betwen link and menu */
}

/* Add a pseudo-element to bridge the gap so hover isn't lost */
.desktop-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    /* Extend upwards */
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

/* Show menu on hover */
.desktop-dropdown:hover .desktop-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown items */
.desktop-dropdown-menu li {
    display: block;
}

.desktop-dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    text-align: left;
    white-space: nowrap;
}

.desktop-dropdown-menu li a:hover {
    background-color: rgba(29, 143, 189, 0.05);
    /* Light primary */
    color: var(--primary-color);
}

/* --- Desktop Navigation Refinements (Closer items + Dividers) --- */
.desktop-only-nav {
    gap: 0 !important;
    align-items: center;
}

/* Target direct children (links and dropdown containers) */
.desktop-only-nav>.nav-link,
.desktop-only-nav>.desktop-dropdown {
    position: relative;
    padding: 0 10px;
    /* Reduced spacing */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    /* Fixed height for consistent divider alignment */
}

/* Add Vertical Dividers */
.desktop-only-nav>.nav-link:not(:last-child)::after,
.desktop-only-nav>.desktop-dropdown:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 14px;
    /* Divider height */
    width: 1px;
    background-color: #ddd;
    /* Subtle grey */
    pointer-events: none;
}

/* Ensure dropdown bridge still works */
.desktop-dropdown-menu::before {
    top: -24px;
    /* Adjusted to match height/padding */
    height: 24px;
}

/* --- Gender Selection (Card Style) --- */
.form-row-split {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.form-group.name-group {
    flex: 1;
}

.form-group.gender-group {
    width: auto;
    flex-shrink: 0;
}

.gender-selector {
    display: flex;
    gap: 8px;
    background: transparent;
    padding: 0;
    height: auto;
    border: none;
    border-radius: 0;
}

.gender-option {
    position: relative;
    cursor: pointer;
    margin: 0;
    flex: none;
    background: transparent;
    padding: 0;
    display: block;
    transition: none;
}

.gender-option input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 5;
}

.gender-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    color: #333;
}

.gender-card span {
    font-size: 1.1rem;
    color: #555;
    transition: color 0.2s;
}

.gender-option input:checked~.gender-card {
    border-color: #007bff;
    background: #e6f0ff;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.25);
    transform: translateY(-1px);
}

.gender-option input:checked~.gender-card span {
    color: #007bff;
    font-weight: 700;
}

.gender-card:hover {
    border-color: #bbb;
}

/* Error State */
.input-error.gender-selector .gender-card,
.gender-card.input-error {
    border-color: var(--accent-error);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
    animation: shake 0.4s ease-in-out;
}

/* --- Messenger Selection (Compact Phone Group) --- */
.messenger-phone-group {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.messenger-selector-compact {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.messenger-option {
    position: relative;
    cursor: pointer;
    margin: 0;
}

.messenger-option input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 5;
}

.messenger-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    /* Match Input Height if possible, usually ~50px */
    background: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.messenger-card i {
    font-size: 1.5rem;
    transition: transform 0.2s;
}

.messenger-card .fa-whatsapp {
    color: #25D366;
}

.messenger-card .fa-viber {
    color: #7360f2;
}

.messenger-card span {
    display: none;
}

/* Icon only for compact */

.messenger-option input:checked~.messenger-card {
    border-color: #007bff;
    background: #e6f0ff;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.25);
    transform: translateY(-1px);
}

.messenger-option input:checked~.messenger-card i {
    transform: scale(1.1);
}

.messenger-phone-group input[type="tel"] {
    flex-grow: 1;
    border-radius: 12px;
    /* Smooth corners matching cards */
}

/* Form inputs styling boost to match */
.booking-form input,
.booking-form select {
    border-radius: 12px !important;
    height: 50px !important;
    padding: 0 15px !important;
    border: 1px solid #ddd;
}

/* Form Styles */
.form-note {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-top: 8px;
    margin-bottom: 0;
    line-height: 1.4;
    opacity: 0.8;
}

/* Safety Image Styles (Single Random Photo 4:5) */
.safety-image-container {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4 / 5;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.safety-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 768px) {
    .safety-image-container {
        max-width: 100%;
        border-radius: 10px;
    }
}

/* --- PRICING SECTION (Synced from Landing) --- */

/* Tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    background: #f0f4f8;
    padding: 5px;
    border-radius: 50px;
}

.tab-btn {
    border: none;
    background: none;
    padding: 10px 30px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 10px rgba(29, 143, 189, 0.3);
}

/* Grid & Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* Deep soft shadow */
    transition: var(--transition-fast);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    gap: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card h3 {
    margin-bottom: 0px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    box-shadow: 0 25px 50px rgba(29, 143, 189, 0.15);
    z-index: 2;
    /* Bring to front */
}

/* On mobile/smaller screens, disable transform scale to avoid layout issues in swiper, or handle differently */
@media (max-width: 991px) {
    .pricing-card.popular {
        transform: none;
    }
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.card-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0px;
    min-height: 40px;
    /* Align content */
}

/* Price Box */
.price-box {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.price-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0px;
    font-weight: 500;
}

.old-price {
    text-decoration: line-through;
    color: #bbb;
    font-size: 1.1rem;
    font-weight: 500;
}

.new-price {
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

/* Specific pricing body override from Landing */
#pricing-new-style .card-body {
    padding-top: 20px !important;
    padding-bottom: 0 !important;
    box-shadow: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Swiper Wrapper for Desktop Grid */
@media (min-width: 769px) {
    .pricing-swiper {
        width: 100%;
        overflow: visible;
    }

    .pricing-grid-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        transform: none !important;
        /* Disable swiper offset */
    }

    .pricing-swiper .swiper-slide {
        width: auto !important;
        margin: 0 !important;
    }

    .pricing-prev,
    .pricing-next {
        display: none !important;
    }
}


/* Specific override for FAQ Safety Style card to reduce bottom spacing (Synced from Landing) */
#faq-safety-style .card-body {
    padding-bottom: 30px;
    padding-top: 0;
}

/* --- FAQ STYLES SYNCED FROM LANDING (FULL OVERRIDE) --- */

.faq-item {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 20px !important;
    margin-bottom: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12) !important;
    transform: translateY(-2px);
}

.faq-question {
    padding: 15px 25px 15px !important;
    /* Widened padding from Landing Override */
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #fff;
    user-select: none;
    text-align: left;
}

.toggle-icon {
    color: #1D8FBD;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    opacity: 1;
    background-color: #fff;
}

.faq-item.active .faq-answer {
    border-top: 1px solid #f0f0f0;
}

.faq-answer p {
    margin: 0;
    padding: 20px 25px;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: left;
}

/* --- FOOTER STYLES SYNCED FROM LANDING --- */
.footer-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.whatsapp {
    background-color: #25D366;
}

.social-btn.viber {
    background-color: #7360f2;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: white;
    filter: brightness(1.1);
}

.social-btn i {
    font-size: 1.2rem;
}

/* --- LANGUAGE SWITCHER & HEADER ACTIONS (Synced from Landing) --- */
.header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Mobile order adjusted below */

.lang-dropdown {
    position: relative;
    z-index: 100;
    top: 3px;
}

.lang-toggle-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

.lang-toggle-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.lang-toggle-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Optical adjustment for Russian flag */
.lang-toggle-btn img[src*="flag-rus.png"],
.lang-opt img[src*="flag-rus.png"] {
    transform: scale(1.65);
}

.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.lang-dropdown.active .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.lang-opt {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: block;
    transition: transform 0.2s;
}

.lang-opt:hover {
    transform: scale(1.1);
}

.lang-opt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info Modal Styles (Shared) */
.info-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-modal.active {
    display: flex;
    opacity: 1;
}

.info-modal-content {
    background: white;
    padding: 0;
    border-radius: 20px;
    width: 95%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: 90vh;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.info-modal.active .info-modal-content {
    transform: translateY(0);
}

.info-modal-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #f5f5f5;
    object-fit: cover;
    margin-bottom: 20px;
}

.info-modal-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
    display: block;
}

.info-modal-time {
    font-size: 1rem;
    color: #777;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
}

.info-modal-desc {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
    padding: 0 30px;
}

.price-list-dotted li {
    cursor: pointer;
}