/* 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;
}



.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: 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;
    /* Fill circle */
    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);
    /* 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;
}

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

.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;
}

.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 {
    background-color: var(--primary);
    color: var(--white);
}

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

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

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


/* --- 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 */
}

.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-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 */
}

/* Features */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.feature-icon {
    color: var(--primary-color);
    font-size: 1.4rem;
}

/* Doctor Image */
.hero-image-wrapper {
    display: flex;
    justify-content: flex-end;
    /* Align to right edge */
    align-items: flex-end;
    height: 100%;
}

.hero-doctor-img {
    max-height: 580px;
    /* Reduced from 700px to match text height */
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(29, 143, 189, 0.15));
}

/* 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;
        /* Center image when wrapped */
    }

    .hero-doctor-img {
        max-height: 500px;
    }

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

    /* Mobile Header & Nav */
    .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;
}

/* Specific override for FAQ Safety Style card to reduce bottom spacing */
#faq-safety-style .card-body {
    padding-bottom: 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 */
#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%;
}

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

/* 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;
    /* Align cards vertically 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;
}

.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 */
}

.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;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.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;
}

/* 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 */
}

.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: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 20px !important;
    /* Match pricing-card 20px */
    margin-bottom: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    /* Match pricing-card shadow */
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    /* Match pricing-card border */
    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;
    /* Match pricing-card hover */
    transform: translateY(-2px);
}

.faq-question {
    padding: 10px 25px 20px !important;
    /* Raised by 10px */
    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 {
    background-color: #333;
    color: white;
    padding: 60px 0 20px;
}

.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 {
        max-height: 350px;
        /* Smaller image */
    }

    /* 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;
    /* Inherits colors from .btn */
}

.loc-info-btn:hover {
    transform: translateY(-2px);
    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);
}

/* 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;
    }
}

.trust-indicators,
.pricing,
.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: 30px 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 */
.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;
}



/* --- 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: 60px;
    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: 40px;
    /* Add internal padding to match card style */
}

.restriction-card {
    width: calc((100% - 60px) / 3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    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: 40px 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: 50%;
    transform: translateX(-50%) 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: translateX(-50%) 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;
}

/* --- Full Width Hero --- */
/* --- Premium Hero Section (Floating Card) --- */
.premium-hero-section {
    position: relative;
    padding-bottom: 60px;
    /* Space for bottom content */
    background: transparent;
    margin-top: 80px;
    /* Header height */
}

/* 1. Hero Image Container */
.hero-image-container {
    width: 100%;
    height: 500px;
    /* Desktop height */
    overflow: hidden;
    position: relative;
    z-index: 1;
}

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

/* 2. Floating Card */
.hero-floating-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 30px;
    padding: 50px;
    margin-top: -80px;
    /* THE OVERLAP */
    position: relative;
    z-index: 10;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
    /* Soft premium shadow */
    width: 100%;
    max-width: 1240px;
    /* Match site standard */
    margin-left: auto;
    margin-right: auto;
}

/* 3. Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    /* #1D8FBD */
    font-size: 1.2rem;
    margin-top: 3px;
    /* Align with first line of title */
}

.feature-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.feature-content p {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

/* CTA in Grid */
.feature-cta-wrapper {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    /* Optional separator */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .premium-hero-section {
        margin-top: 80px;
    }

    .hero-image-container {
        height: 300px;
        /* Smaller image on mobile */
    }

    .hero-floating-card {
        margin-top: -40px;
        /* Reduce overlap slightly */
        padding: 30px 20px;
        border-radius: 20px;
        width: 95%;
        /* Little side gap */
    }

    .features-grid {
        grid-template-columns: 1fr;
        /* Single column */
        gap: 25px;
    }

    .feature-item {
        align-items: flex-start;
    }
}

.hero-bullet:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-bullet i {
    color: #4cd137;
    /* Bright green checkmark */
    font-size: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-overlay-gradient {
        background: rgba(0, 0, 0, 0.6);
        /* Darker all over for mobile readability */
    }

    .hero-text-container {
        position: relative;
        /* Stack normally on mobile if desired, or keep absolute? */
        /* Keeping absolute can be tricky if image is small manually. 
           But .hero-img-full is height auto. 
           If image is short, text might overflow. 
           Better to switch to stacking on mobile or ensure min-height.
        */
        height: auto;
        transform: none;
        left: 0;
        top: 0;
        background: #1a1a1a;
        /* Dark background for text part on mobile? Or keep overlay? */
        /* Let's try overlay first, but with min-height on wrapper */
    }

    .hero-image-full-wrapper {
        display: flex;
        flex-direction: column;
    }

    /* On mobile, standard pattern: Image top, Text bottom (dark bg) or Overlay if image tall enough.
       Let's go for Overlay but ensure image has min-height or text flows below.
       Actually, requested design was Hero Full Width. 
       Let's try overlay, but if text is long, it might cover face. 
       Safest mobile bet: Image, then Text block below (black/dark styled).
    */
    .hero-text-container {
        position: relative;
        background: #000;
        /* Fallback */
        background: linear-gradient(180deg, rgba(30, 30, 30, 1) 0%, rgba(10, 10, 10, 1) 100%);
        padding: 40px 20px;
    }

    .hero-overlay-gradient {
        display: none;
        /* Not needed if separated */
    }

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

    .hero-text-content {
        max-width: 100%;
        text-shadow: none;
        padding: 0;
    }

    .hero-bullets-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-bullet {
        width: 100%;
        /* Full width pill on mobile? or just auto */
        width: auto;
    }
}

/* --- Constrained Hero Corrections --- */
/* Override previous hero-text-container styles since we moved it validly inside the wrapper */
.hero-text-container {
    left: 0;
    /* Reset centering logic since parent is now the image wrapper directly */
    transform: none;
    padding-left: 40px;
    /* Add internal padding */
    padding-right: 40px;
    width: 100%;
}

.hero-text-content {
    max-width: 60%;
    /* Limit width to not cover the whole image on desktop */
}

/* Ensure image fits nicely */
.hero-img-full {
    height: auto;
    min-height: 500px;
    /* Ensure height for text */
    object-fit: cover;
}

@media (max-width: 1024px) {
    .hero-text-content {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .hero-text-content {
        max-width: 100%;
        padding: 0;
    }

    .hero-text-container {
        padding: 20px;
        position: relative;
        /* Use relative stacking again if needed, or keep overlay */
        /* If keeping overlay */
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
        /* Add extra contrast at bottom if needed */
    }

    .hero-img-full {
        min-height: 600px;
        /* Taller on mobile to fit text stacking */
    }

    .hero-image-full-wrapper {
        border-radius: 20px !important;
        /* Slightly smaller radius on mobile */
    }
}

/* --- Hero Text Width Adjustment --- */
.hero-text-content {
    max-width: 100%;
    /* Allow text to span full width of image */
    padding-right: 20px;
    /* Slight padding to avoid absolute edge */
}

/* On larger screens, maybe we still want to avoid covering the person faces entirely if possible, 
   but user requested "width of picture". 
   Let's ensure it doesn't break layout. 
*/
/* --- Mobile Hero Height Adjustment --- */
@media (max-width: 768px) {

    /* Reduce vertical height by ~30% (was min-height 600px, now ~400px) */
    .hero-img-full {
        min-height: 0 !important;
        height: 420px !important;
        /* Fixed reduced height */
        object-fit: cover !important;
        object-position: center !important;
        /* Center the photo */
    }

    /* Ensure text is overlay on mobile to fit within this height */
    .hero-text-container {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5) !important;
        /* Dark overlay for text readability */
        padding: 30px 20px !important;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
    }

    .hero-text-content {
        padding: 0;
        margin: 0;
    }

    /* Adjust text size for smaller container */
    .hero-text-content h1 {
        font-size: 1.5rem !important;
        margin-bottom: 10px !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 15px !important;
        line-height: 1.3 !important;
    }

    .hero-bullets-wrapper {
        gap: 8px !important;
    }

    .hero-bullet {
        padding: 6px 12px !important;
        font-size: 0.8rem !important;
    }
}

/* --- Split Mobile Hero Layout --- */
@media (max-width: 768px) {

    /* 1. Wrapper becomes a flex column container */
    .hero-image-full-wrapper {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        /* Allow growing */
        background: #1D1D1D;
        /* Fallback for bottom block gap if any */
    }

    /* 2. Image stays top, fixed height */
    .hero-img-full {
        order: 1;
        height: 420px !important;
        position: relative;
        z-index: 1;
    }

    /* 3. Gradient only wraps the image area */
    .hero-overlay-gradient {
        height: 420px !important;
        z-index: 2;
        /* Ensure it's above image */
    }

    /* 4. Text Container becomes the "Bottom Block" */
    .hero-text-container {
        position: static !important;
        /* Flow after image */
        order: 2;
        height: auto !important;
        background: #111111 !important;
        /* Dark background */
        padding: 40px 20px 40px !important;
        transform: none !important;
        display: block !important;
        /* Reset flex */
    }

    .hero-text-content {
        max-width: 100% !important;
        position: static !important;
        /* Ensure H1 can position relative to wrapper */
    }

    /* 5. Headline: Positioned Absolutely over the Image (Top Block) */
    .hero-text-content h1 {
        position: absolute !important;
        top: 210px;
        /* Center of 420px image area roughly */
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        z-index: 10;
        text-align: center;
        /* Center align text on image looks better */
        margin: 0 !important;
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    }

    /* 6. Bottom Block Content (Subtitle + Bullets) */
    .hero-subtitle {
        margin-top: 0 !important;
        /* Reset margin since H1 is gone from flow */
        color: #e0e0e0 !important;
        font-size: 1.1rem !important;
        margin-bottom: 24px !important;
    }

    .hero-bullets-wrapper {
        gap: 12px !important;
    }

    .hero-bullet {
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        width: 100%;
        /* Full width bullets for better readability in list view */
    }
}

/* --- Mobile Headline Top Alignment --- */
@media (max-width: 768px) {
    .hero-text-content h1 {
        top: 30px !important;
        /* Move to top */
        transform: translateX(-50%) !important;
        /* Only center horizontally */
        bottom: auto !important;
        /* Ensure text shadow covers contrast if top area is light */
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
    }
}

/* --- Hero Typography Updates --- */

/* Desktop / General */
.hero-text-content h1 {
    font-size: 3.8rem;
    /* Increased from 3rem */
}

.hero-text-content .hero-subtitle {
    font-size: 1.5rem;
    /* Increased from 1.25rem */
    line-height: 1.5;
}

.hero-bullet {
    font-size: 1.4rem;
    /* Increased to match subtitle (approx visually) */
    font-weight: 500;
    /* Slightly lighter if text is big */
    padding: 12px 24px;
    /* More padding for larger text */
}

.hero-bullet i {
    font-size: 1.4rem;
    /* Scaling icon too */
}

/* Mobile Overrides */
@media (max-width: 768px) {
    .hero-text-content h1 {
        font-size: 2.2rem !important;
        /* Increased from 1.5rem */
        width: 100%;
        /* Ensure it uses width */
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 1.25rem !important;
        /* Increased from 1rem */
    }

    .hero-bullet {
        font-size: 1.25rem !important;
        /* Match subtitle */
        padding: 12px 16px !important;
        justify-content: flex-start;
        /* Ensure left align text */
        text-align: left;
    }

    .hero-bullet i {
        font-size: 1.25rem;
        min-width: 24px;
        /* Prevent icon shrinking */
    }
}

/* --- Mobile Bullets Overlay (Desktop-like) --- */
@media (max-width: 768px) {

    /* Revert Split Layout Wrapper */
    .hero-image-full-wrapper {
        display: block !important;
        /* Revert flex column */
        position: relative !important;
        background: transparent !important;
    }

    /* Restore Image to cover everything */
    .hero-img-full {
        order: unset !important;
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        /* Full height of wrapper */
        min-height: 500px !important;
        /* Ensure enough height for bullets */
        z-index: 0;
    }

    /* Gradient is back */
    .hero-overlay-gradient {
        display: block !important;
        height: 100% !important;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 100%) !important;
        /* Dark bottom for bullets */
        z-index: 1;
    }

    /* Text Container Overlay again */
    .hero-text-container {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: transparent !important;
        /* Remove solid dark bg */
        padding: 20px !important;
        display: flex !important;
        flex-direction: column;
        justify-content: flex-end;
        /* Align bullets to bottom */
        z-index: 10;
    }

    .hero-text-content {
        position: relative !important;
        width: 100% !important;
    }

    /* Headline (if user added it back, otherwise this stays hidden/irrelevant) 
       Note: User previously asked to remove H1/Subtitle. 
       If they are gone from HTML, this CSS won't hurt. 
       If bullets are the only thing, they will sit at bottom.
    */

    /* Bullets Styling */
    .hero-bullets-wrapper {
        gap: 10px !important;
        margin-bottom: 20px !important;
    }

    .hero-bullet {
        width: auto !important;
        /* Allow wrapping or fitting content, desktop-like? 
                                   User said "like in desktop". Desktop has flex-wrap inline-flex.
                                   So auto width is correct.
                                */
        background: rgba(255, 255, 255, 0.2) !important;
        /* Glassy */
        justify-content: flex-start;
    }
}

/* --- Fix Mobile Hero Collapse --- */
@media (max-width: 768px) {

    /* Make image take up space in the document flow again */
    .hero-img-full {
        position: relative !important;
        height: 500px !important;
        /* Explicit height */
        min-height: unset !important;
    }

    /* Ensure wrapper doesn't have weird flex behavior remaining */
    .hero-image-full-wrapper {
        height: auto !important;
        display: block !important;
    }
}

/* --- Sync Mobile Hero Style with Desktop --- */
@media (max-width: 768px) {

    /* Enforce Desktop Bullet Style on Mobile */
    .hero-bullet {
        background: rgba(255, 255, 255, 0.15) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        border-radius: 30px !important;
        width: auto !important;
        /* Pill shape, not full width */
        display: inline-flex !important;
        justify-content: center !important;
        /* Center text in pill */
        margin-bottom: 0 !important;
    }

    /* Allow wrapping like desktop, instead of forced vertical stack */
    .hero-bullets-wrapper {
        flex-direction: row !important;
        /* Allow side-by-side if they fit */
        flex-wrap: wrap !important;
        justify-content: center !important;
        /* Center bullets group */
        gap: 10px !important;
    }
}

/* --- FORCE Mobile Hero Style Sync (High Specificity) --- */
@media (max-width: 768px) {

    /* Target via body to increase specificity and override everything else */
    body .hero-bullets-wrapper {
        display: flex !important;
        flex-direction: row !important;
        /* Force row */
        flex-wrap: wrap !important;
        /* Allow wrapping */
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        margin-top: auto !important;
        /* Push to bottom of container if flex column */
        width: 100% !important;
        padding-bottom: 20px !important;
    }

    body .hero-bullet {
        width: auto !important;
        /* Reset width to content */
        max-width: 100% !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        /* Desktop visual style */
        background: rgba(255, 255, 255, 0.15) !important;
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        border-radius: 50px !important;
        /* Full pill */

        padding: 8px 16px !important;
        margin: 0 !important;

        /* Font adjustments to ensure pills fit */
        font-size: 0.9rem !important;
        font-weight: 600 !important;
    }

    body .hero-bullet i {
        font-size: 0.9rem !important;
        margin-right: 6px !important;
    }
}

/* --- Mobile Bullets Left Align & Size Increase --- */
@media (max-width: 768px) {

    /* Override previous centered flex */
    body .hero-bullets-wrapper {
        justify-content: flex-start !important;
        /* Align left */
        padding-left: 0 !important;
        /* Align with container padding */
    }

    body .hero-bullet {
        font-size: 1.15rem !important;
        /* Increase from 0.9rem */
        padding: 10px 18px !important;
        /* Slightly larger padding */
    }

    body .hero-bullet i {
        font-size: 1.15rem !important;
        /* Scale icon */
        margin-right: 10px !important;
    }
}

/* --- Mobile Hero Dark Overlay --- */
@media (max-width: 768px) {
    .hero-overlay-gradient {
        background: rgba(0, 0, 0, 0.5) !important;
        /* Uniform dark overlay 50% */
        height: 100% !important;
        display: block !important;
    }
}

/* --- Mobile Bullets Vertical Center --- */
@media (max-width: 768px) {
    .hero-text-container {
        justify-content: center !important;
        /* Vertically align center */
        padding-bottom: 20px !important;
        /* Reset/Equal padding */
    }
}

/* --- Fix Vertical Center (Force Override) --- */
@media (max-width: 768px) {

    /* 1. Remove the margin-top: auto that pushes it to bottom */
    body .hero-bullets-wrapper {
        margin-top: 0 !important;
        padding-bottom: 0 !important;
        /* Remove bottom padding to center perfectly */
    }

    /* 2. Ensure container centers its content */
    .hero-text-container {
        justify-content: center !important;
        align-items: flex-start !important;
        /* Ensure content starts at left */
        padding-bottom: 0 !important;
        /* Reset specific bottom padding */
    }
}

/* --- FORCE Absolute Vertical Center for Bullets --- */
@media (max-width: 768px) {

    /* 1. Reset Container to simple block reference */
    .hero-text-container {
        display: block !important;
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .hero-text-content {
        position: static !important;
        /* Let wrapper reference container */
        height: 100% !important;
        width: 100% !important;
    }

    /* 2. Position the Wrapper Absolutely in Center */
    body .hero-bullets-wrapper {
        position: absolute !important;
        top: 50% !important;
        left: 20px !important;
        /* Keep left padding alignment */
        right: 20px !important;
        /* Prevent overflow */
        transform: translateY(-50%) !important;
        /* Perfect center */
        margin: 0 !important;
        padding: 0 !important;

        /* Keep flex row for items */
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        align-content: center !important;
    }
}

/* --- EMERGENCY FIX: Revert Absolute & Apply Clean Flex Center --- */
@media (max-width: 768px) {

    /* 1. Reset Text Container to Flexbox, Full Height */
    .hero-text-container {
        display: flex !important;
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;

        /* Flex Centering */
        flex-direction: column !important;
        justify-content: center !important;
        /* Vertical Center */
        align-items: flex-start !important;
        /* Horizontal Left */

        padding: 20px !important;
        background: transparent !important;
        margin: 0 !important;
    }

    /* 2. Reset Bullets Wrapper from Absolute to Static/Flex Item */
    body .hero-bullets-wrapper {
        position: static !important;
        /* Back to flow */
        transform: none !important;
        top: auto !important;
        margin: 0 !important;
        /* No auto margins */

        /* Ensure it behaves well as a flex child */
        width: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        /* Keep row wrapping */
        flex-wrap: wrap !important;
        gap: 10px !important;
        justify-content: flex-start !important;
    }

    .hero-text-content {
        width: 100% !important;
        height: auto !important;
        /* Let content dictate height */
        display: block !important;
        flex: 0 1 auto !important;
        /* Don't stretch insanely */
    }
}

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

.pricing-swiper .pricing-card {
    height: 100%;
    /* Equal height in carousel */
    margin: 0;
    /* Swiper handles gap */
}

@media (min-width: 769px) {
    .pricing-swiper {
        overflow: visible !important;
        /* Allow popups/shadows/scale to show */
        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;
        /* Center vertically for 'Popular' scale effect */
        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%;
        /* Partial view of next slide */
        opacity: 0.4;
        transition: opacity 0.3s;
    }

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

    .pricing-swiper .pricing-card {
        /* Fix for popular card scaling in swiper */
        transform: none !important;
    }

    .pricing-swiper .pricing-card.popular {
        transform: scale(1.02) !important;
        /* Slight scale for active popular */
        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;
    /* Flex to center icon if not using default bg */
    align-items: center;
    justify-content: center;
    z-index: 10;
    /* Default Swiper icons are blue, let's keep them or color them */
    color: var(--primary-color);
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    /* Override default margin */
}

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

.pricing-prev {
    left: 10px;
}

.pricing-next {
    right: 10px;
}

/* Hide on Desktop */
@media (min-width: 769px) {

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

/* Override FAQ Top/Bottom Padding */
.faq {
    padding: 80px 0 30px !important;
    /* Side padding 0 to align with pricing edges */
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    border: none !important;
}

/* Also ensure card-body doesn't have excess padding if it exists */
/* Also ensure card-body doesn't have excess padding if it exists */
.faq .card-body {
    padding-top: 20px !important;
    /* Reduced from 30px to lift content further */
    padding-bottom: 10px !important;
    /* Added 10px bottom spacer inside card */
}

/* Override FAQ Container Top Margin & Width */
.faq-container {
    margin: 0 auto !important;
    /* Top margin 0 */
    width: 100% !important;
    /* Full width of parent */
    max-width: 100% !important;
    /* Inherit constraint */
}

/* Widened question padding (Top 15px, Bottom 15px) */
.faq-question {
    padding: 15px 25px 15px !important;
    /* Increased height by adding 10px top/bottom */
}

/* Safety Image Styles (Single Random Photo 4:5) */
.safety-image-container {
    width: 100%;
    max-width: 480px;
    /* Constrain width for a better vertical look on desktop */
    aspect-ratio: 4 / 5;
    border-radius: 15px;
    /* Slightly rounded corners as requested */
    overflow: hidden;
    /* Premium shadow under the image onto the card */
    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;
    /* Ensures the image fills the 4:5 area */
    object-position: center;
    /* Centers the image content */
    display: block;
    transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
    .safety-image-container {
        max-width: 100%;
        /* Full width on mobile */
        border-radius: 10px;
        /* Slightly less rounding for smaller screens */
    }
}