/* ========================================
   RS GMC Takengon - Premium Modern Stylesheet
   Version: 2.0.0
   ======================================== */

/* ========================================
   1. CSS Variables & Reset
   ======================================== */
:root {
    /* Colors - Tosca Theme */
    --primary-color: #0f6d78;
    --primary-dark: #0b5660;
    --primary-light: #2b8b95;
    --primary-lighter: #4a9aa3;
    --secondary-color: #1b9d90;
    --secondary-dark: #157a71;
    --accent-color: #35b6aa;

    /* Text Colors */
    --text-color: #1a1a2e;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    --text-white: #ffffff;

    /* Background Colors */
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-off-white: #fefefe;
    --bg-dark: #0f172a;
    --bg-gradient: linear-gradient(135deg, #f8fafc 0%, #e0f2f1 100%);
    --bg-card: #ffffff;
    --bg-overlay: rgba(15, 109, 120, 0.95);

    /* Border & Shadow */
    --border-color: #e5e7eb;
    --border-light: #f0f1f3;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-primary: 0 10px 40px rgba(15, 109, 120, 0.2);
    --shadow-glow: 0 0 20px rgba(15, 109, 120, 0.3);

    /* Typography */
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-vm-heading: 'Sora', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-vm-body: 'Manrope', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 5rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--bg-light);
    overflow-x: hidden;
}

/* ========================================
   2. Navbar Styles
   ======================================== */
.navbar {
    padding: 1rem 0;
    background: linear-gradient(135deg, rgba(15, 109, 120, 0.95) 0%, rgba(11, 86, 96, 0.95) 100%);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(15, 109, 120, 0.2);
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(15, 109, 120, 0.98) 0%, rgba(11, 86, 96, 0.98) 100%);
    padding: 0.75rem 0;
    box-shadow: 0 4px 30px rgba(15, 109, 120, 0.3);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white) !important;
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
}

/* Mobile menu close button customization */
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M7 7l16 16M7 23L23 7'/%3e%3c/svg%3e");
}

.navbar-nav {
    gap: 0.5rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-white) !important;
    background: rgba(255, 255, 255, 0.2);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--text-white);
    border-radius: 2px;
}

.btn-login {
    border: 2px solid rgba(255, 255, 255, 0.7) !important;
    color: var(--text-white) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    font-weight: 600;
    padding: 0.625rem 1.5rem !important;
    border-radius: var(--radius-lg) !important;
    transition: all 0.3s ease !important;
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: var(--text-white) !important;
    transform: translateY(-2px);
}

.btn-daftar {
    background: var(--primary-color) !important;
    border: none !important;
    color: var(--text-white) !important;
    font-weight: 600;
    padding: 0.625rem 1.5rem !important;
    border-radius: var(--radius-lg) !important;
    transition: all 0.3s ease !important;
}

.btn-daftar:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/* ========================================
   3. Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('../images/poto1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 109, 120, 0.95) 0%, rgba(11, 86, 96, 0.9) 50%, rgba(15, 109, 120, 0.85) 100%);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--bg-light), transparent);
    z-index: 0;
}

.hero-content {
    color: var(--text-white);
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.feature-item i {
    color: #4ade80;
    font-size: 1.125rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-buttons .btn {
    padding: 0.875rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
}

.hero-buttons .btn-primary {
    background: var(--text-white);
    color: var(--primary-color);
    border: none;
}

.hero-buttons .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--text-white);
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--text-white);
}

/* Hero Search Card */
.hero-search-wrapper {
    position: relative;
    z-index: 1;
    animation: fadeInRight 0.8s ease 0.4s both;
    margin-top: 2rem;
}

.hero-search-card {
    background: var(--bg-white);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.search-header {
    text-align: center;
    margin-bottom: 2rem;
}

.search-header i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.search-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.search-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.search-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.search-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.search-group label i {
    color: var(--primary-color);
}

.search-input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(15, 109, 120, 0.1);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-top: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: var(--shadow-lg);
}

.search-results-list {
    padding: 0.5rem 0;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-result-item:hover {
    background: var(--bg-light);
}

.search-result-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.search-result-item strong {
    display: block;
    color: var(--text-color);
    font-size: 0.95rem;
}

.search-result-item small {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
}

.no-results {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
}

.no-results i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

.btn-search {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    border: none;
    color: var(--text-white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.btn-search:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.quick-links {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.quick-links-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.quick-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    background: var(--bg-light);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.quick-link i {
    font-size: 0.875rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    animation: fadeInUp 1s ease 1s both, bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.scroll-indicator i {
    font-size: 1.5rem;
}

/* ========================================
   4. Section Styles
   ======================================== */
section {
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(15, 109, 120, 0.1);
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   5. Services Section
   ======================================== */
.services-section {
    background: var(--bg-light);
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid var(--border-light);
    opacity: 0;
    transform: translateY(30px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-white);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

.service-info-btn {
    border: 0;
    background: transparent;
    padding: 0;
}

/* ========================================
   5A. AdSense Section
   ======================================== */
.adsense-section {
    padding: 1.5rem 0 0;
    background:
        radial-gradient(circle at top right, rgba(53, 182, 170, 0.08), transparent 38%),
        linear-gradient(180deg, rgba(248, 250, 252, 0) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.adsense-frame {
    max-width: 980px;
    margin: 0 auto;
    padding: 1rem;
    border-radius: var(--radius-2xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 250, 250, 0.98) 100%);
    border: 1px solid rgba(15, 109, 120, 0.12);
    box-shadow: 0 18px 40px rgba(15, 109, 120, 0.08);
}

.adsense-frame-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.875rem;
}

.adsense-frame-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: rgba(15, 109, 120, 0.08);
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.adsense-slot {
    width: 100%;
    min-height: 140px;
    border-radius: calc(var(--radius-xl) + 2px);
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(15, 109, 120, 0.06) 0%, rgba(53, 182, 170, 0.03) 100%),
        var(--bg-white);
}

.adsense-slot--landscape {
    min-height: clamp(140px, 18vw, 220px);
}

.adsense-slot .adsbygoogle {
    width: 100%;
    min-height: inherit;
}

/* ========================================
   6. About Section
   ======================================== */
.about-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.about-image {
    position: relative;
    margin-bottom: 0;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 4px solid white;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
}

.badge-inner {
    text-align: center;
    color: var(--text-white);
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.75rem;
    line-height: 1.2;
}

.about-content {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.about-description {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.about-content .section-title {
    font-family: var(--font-vm-heading);
    font-size: clamp(2rem, 3.8vw, 2.9rem);
    letter-spacing: 0.3px;
}

.about-vm-background {
    position: relative;
    padding: 2rem;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: var(--shadow-xl);
}

.about-vm-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 39, 46, 0.72) 0%, rgba(15, 109, 120, 0.5) 100%);
}

.about-vm-row {
    position: relative;
    z-index: 1;
}

.vision-mission {
    /* Container handled by Bootstrap grid */
}

.vm-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.45);
    transition: all 0.3s ease;
    height: 100%;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.vm-item:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.vm-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
    align-self: flex-start;
    box-shadow: 0 4px 12px rgba(15, 109, 120, 0.3);
}

.vm-content h4 {
    font-family: var(--font-vm-heading);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: var(--text-white);
    margin-bottom: 0.65rem;
}

.vm-content p {
    font-family: var(--font-vm-body);
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.02rem;
    font-weight: 500;
    line-height: 1.8;
}

.vm-content ul {
    list-style: none;
    padding: 0;
}

.vm-content ul li {
    font-family: var(--font-vm-body);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    font-weight: 500;
}

.vm-content ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.motto-text {
    font-family: var(--font-vm-body);
    font-style: italic;
    color: var(--text-white);
    font-size: 1.04rem;
    font-weight: 600;
    line-height: 1.85;
}

/* ========================================
   7. Doctors Section
   ======================================== */
.doctors-section {
    background: var(--bg-light);
}

.doctor-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid var(--border-light);
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.doctor-image {
    position: relative;
    overflow: hidden;
    height: 320px;
    background: linear-gradient(135deg, rgba(15, 109, 120, 0.1) 0%, rgba(15, 109, 120, 0.05) 100%);
}

.doctor-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%230f6d78" opacity="0.1" width="100" height="100"/><circle fill="%230f6d78" opacity="0.2" cx="50" cy="35" r="20"/><path fill="%230f6d78" opacity="0.2" d="M50 60 Q35 75 20 85 L80 85 Q65 75 50 60"/></svg>') center/cover no-repeat;
    z-index: 1;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.doctor-card:hover .doctor-image img {
    transform: scale(1.1);
}

.doctor-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 109, 120, 0.95), rgba(15, 109, 120, 0.3) 50%, transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.doctor-card:hover .doctor-overlay {
    opacity: 1;
}

.doctor-overlay .btn {
    background: var(--text-white);
    color: var(--primary-color);
    border: 2px solid var(--text-white);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.doctor-overlay .btn:hover {
    background: transparent;
    color: var(--text-white);
    transform: translateY(-3px);
}

.doctor-info {
    padding: 1.5rem;
    text-align: center;
}

.doctor-info h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.doctor-specialty {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-schedule {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    color: white;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn-schedule:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(15, 109, 120, 0.3);
    color: white;
}

.btn-schedule i {
    font-size: 1rem;
}

/* Doctor Schedule Modal */
.doctor-schedule-modal {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.doctor-schedule-modal .modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 0;
    border-bottom: none;
    position: relative;
}

.doctor-modal-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
}

.doctor-modal-photo {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.doctor-modal-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-modal-icon {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 2rem;
}

.service-modal-description {
    margin-bottom: 1.4rem;
    color: #44556b;
    line-height: 1.75;
    font-size: 0.98rem;
}

.doctor-modal-info {
    flex: 1;
}

.doctor-modal-info .modal-title {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.doctor-modal-specialty {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

.doctor-schedule-modal .btn-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.doctor-schedule-modal .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.doctor-schedule-modal .modal-body {
    padding: 2rem;
    background: var(--bg-light);
}

.schedule-container {
    margin-bottom: 2rem;
}

.schedule-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.schedule-title i {
    color: var(--primary-color);
}

.schedule-grid {
    display: grid;
    gap: 1rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.schedule-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(15, 109, 120, 0.1);
    transform: translateX(5px);
}

.schedule-day {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.schedule-day i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.schedule-time {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.time-badge {
    background: linear-gradient(135deg, rgba(15, 109, 120, 0.1) 0%, rgba(15, 109, 120, 0.05) 100%);
    color: var(--primary-color);
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.schedule-off .schedule-day {
    opacity: 0.6;
}

.off-badge {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.schedule-note {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(15, 109, 120, 0.05) 0%, rgba(15, 109, 120, 0.02) 100%);
    border-radius: 12px;
    border: 1px solid rgba(15, 109, 120, 0.1);
}

.service-note-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    gap: 1rem;
    align-items: stretch;
}

.service-note-card {
    height: 100%;
}

.service-photo-panel {
    border: 1px solid rgba(15, 109, 120, 0.15);
    border-radius: 12px;
    background: #ffffff;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.service-photo-panel-single {
    margin-top: 1rem;
}

.service-photo-image {
    width: 100%;
    height: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--border-light);
}

.service-photo-empty {
    flex: 1;
    min-height: 160px;
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    color: #64748b;
    text-align: center;
    font-size: 0.9rem;
}

.service-photo-empty i {
    font-size: 1.3rem;
}

.note-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 10px;
    flex-shrink: 0;
}

.note-icon i {
    font-size: 1.25rem;
}

.note-content {
    flex: 1;
}

.note-title {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

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

.note-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.375rem;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

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

.doctor-schedule-modal .modal-footer {
    padding: 1.5rem 2rem;
    background: white;
    border-top: 1px solid var(--border-light);
}

.doctor-schedule-modal .btn-secondary {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.doctor-schedule-modal .btn-secondary:hover {
    background: var(--border-light);
}

.doctor-schedule-modal .btn-primary {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.doctor-schedule-modal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .doctor-modal-header {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .doctor-modal-photo {
        width: 80px;
        height: 80px;
    }

    .service-modal-icon {
        width: 80px;
        height: 80px;
        font-size: 1.75rem;
    }

    .doctor-modal-info .modal-title {
        font-size: 1.25rem;
    }

    .doctor-schedule-modal .modal-body {
        padding: 1.5rem;
    }

    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .schedule-time {
        width: 100%;
        justify-content: flex-start;
    }

    .schedule-note {
        flex-direction: column;
    }

    .service-note-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   7.5. Organization Structure Section
   ======================================== */
.organization-section {
    background: var(--bg-light);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.organization-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 109, 120, 0.02) 0%, rgba(15, 109, 120, 0.05) 100%);
    z-index: 0;
}

.organization-structure {
    position: relative;
    z-index: 1;
}

.organization-level {
    margin-bottom: 3rem;
}

.organization-level:last-child {
    margin-bottom: 0;
}

.level-lead {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.organization-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.organization-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.organization-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.organization-card:hover::before {
    opacity: 1;
}

.leader-card {
    max-width: 500px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.leader-card::before {
    display: none;
}

.leader-card .org-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.leader-card .org-name {
    color: white;
}

.leader-card .org-title {
    color: rgba(255, 255, 255, 0.9);
}

.member-card {
    height: 100%;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.member-card:nth-child(1) { animation-delay: 0.1s; }
.member-card:nth-child(2) { animation-delay: 0.2s; }
.member-card:nth-child(3) { animation-delay: 0.3s; }
.member-card:nth-child(4) { animation-delay: 0.4s; }
.member-card:nth-child(5) { animation-delay: 0.5s; }
.member-card:nth-child(6) { animation-delay: 0.6s; }

.org-photo {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.org-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.leader-card .org-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.org-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 109, 120, 0.1) 0%, rgba(15, 109, 120, 0.05) 100%);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
    color: var(--primary-color);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.organization-card:hover .org-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.org-info {
    flex: 1;
}

.org-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.org-title {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0 0 0.75rem 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.org-schedule {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(15, 109, 120, 0.1) 0%, rgba(15, 109, 120, 0.05) 100%);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-color);
    font-weight: 500;
}

.org-schedule i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.leader-card .org-schedule {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.leader-card .org-schedule i {
    color: white;
}

.organization-connector {
    display: flex;
    justify-content: center;
    margin: -2rem 0 2rem;
    position: relative;
    z-index: 0;
}

.organization-connector::before {
    content: '';
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--primary-color) 0%, transparent 100%);
}

.organization-connector::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--bg-white);
    box-shadow: 0 2px 8px rgba(15, 109, 120, 0.3);
}

/* ========================================
   8. Insurance Partnership Section
   ======================================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
}

.insurance-collab-section {
    padding-left: 2rem;
    padding-right: 2rem;
}

.insurance-collab-section .row,
.collab-header {
    position: relative;
    z-index: 1;
}

.section-badge-light {
    background: rgba(255, 255, 255, 0.16);
    color: var(--text-white);
}

.collab-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

.collab-subtitle {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.stat-item {
    height: 100%;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.24);
    transition: all 0.35s ease;
    opacity: 0;
    transform: translateY(30px);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.partner-logo {
    width: 100%;
    height: 88px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: saturate(1.05);
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-logo img {
    transform: scale(1.05);
}

.partner-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-white);
}

.partner-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.partner-status.active {
    background: rgba(61, 193, 123, 0.2);
    color: #d8ffe7;
    border: 1px solid rgba(61, 193, 123, 0.45);
}

.partner-card-soon .partner-logo {
    background: rgba(255, 255, 255, 0.22);
    border: 1px dashed rgba(255, 255, 255, 0.5);
}

.partner-logo-placeholder {
    color: var(--text-white);
    font-size: 2rem;
}

.partner-status.soon {
    background: rgba(255, 193, 7, 0.2);
    color: #fff3cd;
    border: 1px solid rgba(255, 193, 7, 0.45);
}

/* ========================================
   9. Contact Section
   ======================================== */
.contact-section {
    background: var(--bg-white);
}

.contact-info-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.75rem;
}

.contact-info-card h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ========================================
   10. Footer
   ======================================== */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-color) 100%);
}

.footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(15, 109, 120, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-about {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    background: white;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(15, 109, 120, 0.3);
}

.footer-logo h4 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
    line-height: 1.3;
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.75);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(15, 109, 120, 0.4);
    border-color: var(--primary-color);
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.875rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links ul li a::before {
    content: '▹';
    color: var(--primary-color);
    font-size: 1.1rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--text-white);
    padding-left: 8px;
}

.footer-links ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.operational-hours {
    list-style: none;
    padding: 0;
}

.operational-hours li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.operational-hours li:hover {
    background: rgba(15, 109, 120, 0.1);
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    border-radius: 8px;
    border-bottom-color: transparent;
}

.operational-hours li:last-child {
    border-bottom: none;
}

.operational-hours .day {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.operational-hours .time {
    color: var(--primary-light);
    font-weight: 600;
}

.footer-bottom {
    margin-top: 3.5rem;
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.9rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom .developer-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-bottom .developer-link:hover {
    color: #a7f3d0;
}

.footer-bottom .text-danger {
    color: #ef4444;
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ========================================
   11. Modal
   ======================================== */
.modal-content {
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    border-bottom: none;
    padding: 1.5rem;
}

.modal-title {
    font-family: var(--font-heading);
    font-weight: 600;
}

.btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 2rem;
}

.igd-alert {
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.igd-info h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.igd-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.igd-info ul li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.igd-info ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.modal-footer {
    border-top: 1px solid var(--border-light);
}

/* ========================================
   12. Back to Top Button
   ======================================== */
.btn-back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.btn-back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ========================================
   12.1 WhatsApp Floating Button
   ======================================== */
.btn-whatsapp-float {
    position: fixed;
    bottom: 7.5rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    animation: pulse-whatsapp 2s infinite;
}

.btn-whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: #ffffff;
}

.btn-whatsapp-float:active {
    transform: scale(0.95);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
}

/* Adjust back to top button position when WhatsApp button is present */
.btn-back-to-top {
    bottom: 2rem;
}

/* ========================================
   12.2 Login Modal
   ======================================== */
.modal-login-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-login-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 2rem;
    position: relative;
}

.modal-login-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-login-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 10px;
    background: white;
    padding: 5px;
}

.modal-login-logo .modal-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.modal-login-body {
    padding: 2.5rem;
    background: var(--bg-white);
}

.login-form .form-label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.login-form .input-group {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.login-form .input-group-text {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-right: none;
    color: var(--primary-color);
}

.login-form .form-control {
    border: 1px solid var(--border-color);
    border-left: none;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}

.login-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.login-form .toggle-password {
    border: 1px solid var(--border-color);
    border-left: none;
    background: var(--bg-light);
    color: var(--text-light);
}

.login-form .toggle-password:hover {
    background: var(--border-light);
    color: var(--primary-color);
}

.login-form .form-check {
    padding-left: 1.5rem;
}

.login-form .form-check-input {
    border-color: var(--border-color);
}

.login-form .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.login-form .form-check-label {
    font-size: 0.9rem;
    color: var(--text-color);
}

.btn-login-submit {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    color: white;
    padding: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-login-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
    color: white;
}

.forgot-password-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* ========================================
   13. Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========================================
   14. Responsive Design
   ======================================== */
@media (max-width: 991.98px) {
    .hero {
        padding-top: 100px;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-search-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .adsense-section {
        padding-top: 1rem;
    }

    .adsense-frame {
        padding: 0.875rem;
    }

    /* Mobile Navigation Improvements */
    .navbar-collapse {
        background: linear-gradient(135deg, rgba(15, 109, 120, 0.98) 0%, rgba(11, 86, 96, 0.98) 100%);
        backdrop-filter: blur(20px);
        padding: 0;
        margin-top: 0.75rem;
        border-radius: var(--radius-xl);
        box-shadow: 0 10px 40px rgba(15, 109, 120, 0.4);
        overflow: hidden;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
        padding: 1rem 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        color: rgba(255, 255, 255, 0.95) !important;
        padding: 1rem 1.5rem !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 1rem;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
    }

    .nav-link::after {
        content: '\f105';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 255, 255, 0.15);
        color: var(--text-white) !important;
        padding-left: 2rem !important;
    }

    /* Mobile Login Button */
    .btn-login,
    .btn-daftar {
        width: 100%;
        margin: 0;
        padding: 1rem 1.5rem;
        border-radius: 0;
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
    }

    .btn-login {
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
    }

    .btn-login:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.5);
        color: white;
    }

    .d-flex.gap-2 {
        flex-direction: column;
        width: 100%;
        gap: 0 !important;
    }

    /* Smooth animation for mobile menu */
    .navbar-collapse.collapsing {
        height: auto;
        transition: all 0.35s ease;
    }

    .navbar-collapse.show {
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        max-width: 100%;
        margin: 0 auto 2rem;
        text-align: center;
    }

    .about-vm-background {
        padding: 1.5rem;
    }

    .about-image {
        margin-bottom: 0;
    }

    .image-wrapper {
        max-width: 100%;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: -10px;
        right: -10px;
    }

    .badge-number {
        font-size: 1.5rem;
    }

    .badge-text {
        font-size: 0.65rem;
    }

    .btn-back-to-top {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .about-section {
        padding: 3rem 0;
    }

    .adsense-slot--landscape {
        min-height: 160px;
    }

    .about-content {
        margin-bottom: 2rem;
    }

    .about-vm-background {
        padding: 1.25rem 1rem;
        border-radius: var(--radius-xl);
    }

    .about-image {
        margin-bottom: 2rem;
    }

    .service-card,
    .doctor-card,
    .stat-item,
    .contact-info-card {
        padding: 1.5rem;
    }

    .service-icon,
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Insurance/Collaboration Section */
    .insurance-collab-section {
        padding: 3rem 1rem;
        margin-top: 3rem;
    }

    .collab-header {
        margin-bottom: 2rem;
    }

    .collab-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .collab-subtitle {
        font-size: 1rem;
    }

    .section-badge-light {
        font-size: 0.8rem;
        padding: 0.45rem 1rem;
    }

    /* Partner Card Styles */
    .partner-card {
        padding: 1.5rem;
        gap: 1rem;
    }

    .partner-logo {
        height: 80px;
        padding: 0.75rem;
    }

    .partner-logo img {
        max-height: 50px;
        width: auto;
    }

    .partner-logo-placeholder {
        font-size: 1.75rem;
    }

    .partner-name {
        font-size: 1rem;
        line-height: 1.4;
    }

    .partner-status {
        padding: 0.3rem 0.75rem;
        font-size: 0.8rem;
    }

    /* 2 column grid for tablets */
    .insurance-collab-section .col-md-6 {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }

    .doctor-image img {
        height: 250px;
    }

    .btn-schedule {
        font-size: 0.8rem;
        padding: 0.625rem 0.875rem;
    }

    .btn-schedule i {
        font-size: 0.875rem;
    }

    .organization-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .org-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .org-name {
        font-size: 1rem;
    }

    .org-title {
        font-size: 0.85rem;
    }

    .vm-item {
        padding: 1.5rem 1rem;
        text-align: center;
    }

    .vm-item {
        flex-direction: column;
        align-items: center;
    }

    .vm-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        align-self: center;
    }

    .vm-content h4 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }

    .vm-content p, .vm-content ul li {
        font-size: 0.92rem;
    }

    .vm-content ul li {
        padding-left: 1rem;
    }

    /* 3 columns for medium tablets */
    .insurance-collab-section .col-md-4 {
        flex: 0 0 calc(33.333% - 0.667rem);
        max-width: calc(33.333% - 0.667rem);
    }

    /* Mobile portrait (576px and below) - 2 columns */
    .insurance-collab-section .col-6 {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
}

/* Medium mobile phones (480px - 576px) */
@media (max-width: 576px) and (min-width: 480px) {
    .insurance-collab-section {
        padding: 2.5rem 1rem !important;
    }

    .collab-title {
        font-size: 1.6rem;
    }

    .collab-subtitle {
        font-size: 0.95rem;
    }

    .partner-card {
        padding: 1.25rem 1rem !important;
    }

    .partner-logo {
        height: 72px;
    }

    .partner-logo img {
        max-height: 48px;
    }

    .partner-name {
        font-size: 0.95rem;
    }

    .partner-status {
        font-size: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    /* Very Small Phones Improvements */
    .navbar {
        padding: 0.75rem 0;
    }

    .navbar-brand {
        font-size: 1.1rem;
        gap: 0.5rem;
    }

    .navbar-brand img {
        height: 40px;
    }

    .brand-text {
        display: none;
    }

    .navbar-toggler {
        padding: 0.4rem;
    }

    .nav-link {
        padding: 0.875rem 1.25rem !important;
        font-size: 0.95rem;
    }

    .nav-link:hover,
    .nav-link.active {
        padding-left: 1.5rem !important;
    }

    .btn-login {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    /* Partner/Collaboration Section Mobile */
    .insurance-collab-section {
        padding: 2rem 0.75rem !important;
        margin-top: 2rem !important;
    }

    .collab-header {
        margin-bottom: 1.25rem !important;
        padding: 0 0.5rem;
    }

    .collab-title {
        font-size: 1.35rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .collab-subtitle {
        font-size: 0.85rem;
        line-height: 1.5;
        padding: 0 0.5rem;
    }

    .section-badge-light {
        font-size: 0.65rem;
        padding: 0.3rem 0.75rem;
    }

    /* Partner Card Responsive */
    .partner-card {
        padding: 1rem 0.75rem !important;
        gap: 0.6rem !important;
    }

    .partner-logo {
        height: 56px;
        padding: 0.5rem;
    }

    .partner-logo img {
        max-height: 36px;
        width: auto;
    }

    .partner-logo-placeholder {
        font-size: 1.25rem;
    }

    .partner-name {
        font-size: 0.85rem;
        line-height: 1.3;
        word-wrap: break-word;
        hyphens: auto;
    }

    .partner-status {
        padding: 0.2rem 0.5rem;
        font-size: 0.7rem;
        white-space: nowrap;
    }

    /* Grid layout for partner cards on very small screens */
    .insurance-collab-section .row {
        gap: 0.5rem !important;
        margin: 0 !important;
    }

    /* 2 columns on mobile - more compact */
    .insurance-collab-section .col-6 {
        flex: 0 0 calc(50% - 0.25rem);
        max-width: calc(50% - 0.25rem);
        padding: 0 0.25rem !important;
    }

    .insurance-collab-section .col-md-6 {
        flex: 0 0 calc(50% - 0.25rem);
        max-width: calc(50% - 0.25rem);
        padding: 0 0.25rem !important;
    }

    /* Fix stat-item height for consistency */
    .stat-item.partner-card {
        min-height: 140px;
        height: auto;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .adsense-frame {
        padding: 0.75rem;
        border-radius: var(--radius-xl);
    }

    .adsense-frame-header {
        margin-bottom: 0.75rem;
    }

    .adsense-slot--landscape {
        min-height: 180px;
    }

    .about-section {
        padding: 2.5rem 0;
    }

    .about-content {
        margin-bottom: 1.5rem;
    }

    .about-vm-background {
        padding: 1rem 0.875rem;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .hero-search-card {
        padding: 1.5rem;
    }

    .search-header i {
        font-size: 2rem;
    }

    .search-header h3 {
        font-size: 1.25rem;
    }

    .quick-links {
        flex-direction: column;
    }

    .quick-link {
        width: 100%;
        justify-content: center;
    }

    .vm-item {
        padding: 1.25rem 0.875rem;
    }

    .vm-icon {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }

    .vm-content h4 {
        font-size: 1.05rem;
    }

    .vm-content p, .vm-content ul li {
        font-size: 0.88rem;
    }

    /* Footer Responsive */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-logo h4 {
        font-size: 1.1rem;
    }

    .footer-about p {
        font-size: 0.9rem;
    }

    .footer-links h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-links ul li {
        margin-bottom: 0.5rem;
    }

    .footer-links ul li a {
        font-size: 0.9rem;
    }

    .footer-contact h4 {
        font-size: 1rem;
    }

    .operational-hours li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }

    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }
}
