/* ===================================
   Global Styles & Variables
   =================================== */
:root {
    /* Color Palette - Inspired by CHCFL and HealthLeads */
    --primary-color: #0B82D8;
    --primary-dark: #004C99;
    --primary-light: #3385D6;
    --secondary-color: #00A651;
    --accent-color: #FF6B35;
    --banner-pink: #F9E5F0;
    --btn-dark: #2C3E50;
    --btn-red: #DC2626;
    --text-dark: #1A1A1A;
    --text-gray: #4A4A4A;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --border-color: #E5E7EB;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--spacing-sm);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-sm);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: var(--spacing-xs);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-gray);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    white-space: nowrap;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ===================================
   Top Banner - CHCFL Style
   =================================== */
.top-banner {
    background-color: var(--banner-pink);
    padding: 0.625rem 0;
    font-size: 0.875rem;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-text {
    color: var(--text-dark);
}

.banner-link {
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: underline;
}

.banner-links {
    display: flex;
    gap: 1rem;
    color: var(--text-gray);
}

.banner-links a {
    color: var(--text-gray);
}

.banner-links a:hover {
    color: var(--text-dark);
}

/* ===================================
   Site Header - CHCFL Style
   =================================== */
.site-header {
    background-color: white;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-color);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header-logo {
    flex-shrink: 0;
}

.logo-image {
    height: 70px;
    width: auto;
    display: block;
}

/* Phone Numbers Section */
.header-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-gray);
}

.header-phone svg {
    color: var(--secondary-color);
    flex-shrink: 0;
}

.phone-numbers {
    display: flex;
    gap: 2rem;
}

.phone-item {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.phone-item strong {
    font-size: 1.125rem;
    color: var(--text-dark);
}

.phone-item span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Header Action Buttons */
.header-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0.65rem 1.25rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: left;
    white-space: nowrap;
    gap: 0.6rem;
}

.btn-header svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.btn-header-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.125rem;
}

.btn-subtext {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
    font-style: italic;
}

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

.btn-dark:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-red:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-orange {
    background-color: #ff6b35;
    color: white;
}

.btn-orange:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* ===================================
   Main Navigation - CHCFL Style
   =================================== */
.main-nav {
    background: linear-gradient(90deg, #2C3E50 0%, var(--primary-color) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-nav .container {
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item svg {
    width: 18px;
    height: 18px;
}

.nav-item:hover,
.nav-item.active {
    background-color: var(--primary-color);
}

.has-dropdown .nav-item::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid white;
    margin-left: 0.25rem;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    padding: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.35rem;
}

/* Two columns for dropdowns with more than 3 items */
.dropdown-menu:has(.dropdown-item:nth-child(4)) {
    min-width: 520px;
    grid-template-columns: repeat(2, 1fr);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(231, 76, 60, 0.05) 0%, rgba(231, 76, 60, 0.1) 100%);
}

.dropdown-item-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.dropdown-item-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.dropdown-item-content {
    flex: 1;
}

.dropdown-item-title {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-item-badge {
    background: var(--primary-color);
    color: white;
    font-size: 0.6rem;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
}

.dropdown-item-description {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.3;
}

/* Responsive Design - Header */
@media (max-width: 992px) {
    .top-banner {
        font-size: 0.75rem;
    }
    
    .banner-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .banner-links {
        font-size: 0.75rem;
        gap: 0.75rem;
    }
    
    .site-header .container {
        flex-wrap: wrap;
    }
    
    .header-phone {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .phone-numbers {
        gap: 1rem;
    }
    
    .phone-item strong {
        font-size: 1rem;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .btn-header {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .btn-header svg {
        display: none;
    }
    
    .btn-subtext {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: relative;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 2000;
    }
    
    .nav-menu.active {
        display: flex;
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-item {
        padding: 1rem 2rem;
        color: var(--text-dark);
        width: 100%;
        border-left: 3px solid transparent;
    }
    
    .nav-item:hover,
    .nav-item.active {
        background-color: var(--bg-light);
        border-left-color: var(--primary-color);
        color: var(--primary-color);
    }
    
    .logo-image {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .header-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-header {
        width: 100%;
    }
    
    .phone-numbers {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .hero-form {
        flex-direction: column;
    }
    
    .hero-select {
        width: 100%;
        min-width: 100%;
    }
    
    .hero-continue {
        width: 100%;
    }
    
    .hero-rating {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .insurance-logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .insurance-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    background: url('images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: var(--spacing-xl) 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0;
}

.hero-overlay {
    display: none;
}

.hero .container {
    display: flex;
    justify-content: flex-start;
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 550px;
    background: rgba(44, 62, 80, 0.85);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 165, 0, 0.2);
    color: #FFA500;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.5px;
}

.hero-title {
    color: white;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: clamp(2rem, 5vw, 3rem);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.hero-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.hero-select {
    flex: 1;
    min-width: 250px;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    font-size: 1rem;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-select:hover {
    border-color: var(--primary-color);
}

.hero-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(11, 130, 216, 0.2);
}

.hero-continue {
    padding: 0.875rem 2rem;
    white-space: nowrap;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 1rem;
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.rating-stars {
    color: #FFA500;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.rating-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
}

/* ===================================
   Trust Section
   =================================== */
.trust-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.trust-item {
    text-align: center;
    padding: var(--spacing-md);
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    color: white;
}

.trust-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.section-title {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* ===================================
   Programs Section
   =================================== */
.programs-section {
    padding: 0;
    background-color: #A63A3A;
    margin-top: var(--spacing-xl);
}

.programs-container {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.programs-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.programs-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.programs-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.programs-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.3;
}

.programs-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
}

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

.programs-list li {
    margin-bottom: 16px;
}

.programs-list a {
    color: white;
    text-decoration: none;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    padding-left: 0;
}

.programs-list a::before {
    content: '→';
    margin-right: 12px;
    font-size: 1.25rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.programs-list a:hover {
    opacity: 0.8;
    padding-left: 8px;
}

.programs-list a:hover::before {
    transform: translateX(4px);
}

/* ===================================
   Why Patients Love Section
   =================================== */
.why-patients-love-section {
    padding: var(--spacing-xl) 0;
    background-color: #F5F5F5;
}

.why-patients-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
}

.why-patients-subtitle {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.why-patients-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.why-patients-title .highlight-blue {
    color: var(--primary-color);
}

.why-patients-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.why-patients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.why-patients-column {
    text-align: left;
}

.why-patients-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.why-patients-icon.blue {
    background-color: #E3F2FD;
    color: var(--primary-color);
}

.why-patients-icon.green {
    background-color: #E8F5E9;
    color: #4CAF50;
}

.why-patients-icon.orange {
    background-color: #FFF3E0;
    color: #FF9800;
}

.why-patients-icon.gray {
    background-color: #F5F5F5;
    color: #757575;
}

.why-patients-column h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

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

.why-patients-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.why-patients-list li svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

.why-patients-video {
    max-width: 700px;
    margin: 0 auto var(--spacing-md);
}

.video-link-box {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.video-link-box:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: #000;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.video-link-box:hover .play-button-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-watch-text {
    text-align: center;
    margin-top: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.125rem;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.why-patients-footer {
    text-align: center;
}

.why-patients-link {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.why-patients-link:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

@media (max-width: 992px) {
    .why-patients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-patients-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.service-card {
    background: white;
    padding: var(--spacing-md) var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--border-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-color);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--secondary-color), #00C964);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 166, 81, 0.3);
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.service-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ===================================
   About Section
   =================================== */
.about-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.advantage-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.advantage-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.advantage-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.advantage-content p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   Events Section
   =================================== */
.events-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-white);
}

.event-featured {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.event-featured::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.event-content {
    position: relative;
    z-index: 1;
}

.event-badge {
    display: inline-block;
    background: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-content h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.event-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

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

.event-content .btn-primary:hover {
    background: var(--bg-light);
}

/* ===================================
   Insurance Section
   =================================== */
.insurance-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-light);
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    max-width: 900px;
    margin: 0 auto;
}

.insurance-item {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.insurance-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* ===================================
   Insurance Logos Section
   =================================== */
.insurance-logos-section {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.insurance-logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--spacing-md);
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.insurance-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm);
}

.insurance-logo {
    max-width: 140px;
    height: auto;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.insurance-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.contact-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta h2 {
    margin-bottom: var(--spacing-sm);
}

.contact-cta p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   Donation Form Section
   =================================== */
.donation-form-section {
    padding: 0;
    background-color: white;
}

.donation-split-container {
    display: flex;
    min-height: 700px;
}

.donation-image {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
}

.donation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.donation-form-wrapper {
    flex: 1;
    background: linear-gradient(135deg, #1e5a8e 0%, #2b6ba8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.donation-form-content {
    max-width: 600px;
    width: 100%;
}

.donation-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.3;
}

.highlight-text {
    font-style: italic;
    color: #87ceeb;
}

.donation-form-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: white;
    margin-bottom: 32px;
}

.donation-form {
    background: white;
    padding: 32px;
    border-radius: 8px;
}

.form-section {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.required {
    color: #e74c3c;
}

.donation-type-buttons {
    display: flex;
    gap: 8px;
}

.donation-type-btn {
    flex: 1;
    padding: 12px 24px;
    border: 2px solid #e0e0e0;
    background: white;
    color: #666;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.donation-type-btn.active {
    background: #ffd700;
    border-color: #ffd700;
    color: #1a1a1a;
}

.donation-type-btn svg {
    width: 16px;
    height: 16px;
}

.donation-type-btn:hover {
    border-color: #0066cc;
}

.donation-amount-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.amount-btn {
    padding: 14px 24px;
    border: 2px solid #e0e0e0;
    background: white;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn.active {
    background: #ffd700;
    border-color: #ffd700;
}

.amount-btn:hover {
    border-color: #0066cc;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.9375rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #0066cc;
}

.btn-submit-donation {
    width: 100%;
    padding: 16px 32px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 24px;
}

.btn-submit-donation:hover {
    background: #004c99;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

/* ===================================
   Events Calendar Section
   =================================== */
.events-calendar-section {
    position: relative;
    padding: 80px 0;
    background-color: white;
    overflow: hidden;
}

.events-calendar-pattern {
    position: absolute;
    right: 0;
    top: 0;
    width: 300px;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(200, 200, 200, 0.3) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.events-calendar-header {
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.events-calendar-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.events-calendar-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    max-width: 700px;
}

.view-all-link {
    color: #1a1a1a;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: #0066cc;
}

.events-calendar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.event-calendar-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e5e5e5;
    text-decoration: none;
    color: inherit;
    display: block;
}

.event-calendar-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.event-calendar-image {
    position: relative;
    height: 240px;
    background-color: #f5f5f5;
    overflow: hidden;
}

.event-calendar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-calendar-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background-color: #0066cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.event-calendar-card:hover .event-calendar-arrow {
    background-color: #004c99;
    transform: scale(1.05);
}

.event-calendar-content {
    padding: 24px;
}

.event-calendar-event-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.4;
    min-height: 50px;
}

.event-calendar-event-type {
    font-size: 0.8125rem;
    color: #0066cc;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-calendar-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    color: #666;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid #0066cc;
    width: fit-content;
}

.event-calendar-date svg {
    flex-shrink: 0;
    opacity: 0.8;
}

.event-calendar-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.events-calendar-navigation {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.event-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    border: none;
    background-color: #e5e5e5;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-nav-btn:hover {
    background-color: #d0d0d0;
}

.event-nav-next {
    background-color: #0066cc;
    color: white;
}

.event-nav-next:hover {
    background-color: #004c99;
}

/* ===================================
   Donate Section
   =================================== */
.donate-section {
    position: relative;
    background: linear-gradient(135deg, #3d7a3d 0%, #2d5a2d 100%);
    padding: 0;
    overflow: hidden;
}

.donate-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(255, 255, 255, 0.12) 2px, transparent 2px),
        radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 30px 30px, 15px 15px;
    background-position: 0 0, 15px 15px;
    opacity: 0.8;
    z-index: 1;
}

.donate-container {
    position: relative;
    z-index: 2;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.donate-pattern {
    position: absolute;
    left: 0;
    top: 0;
    width: 200px;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(255, 255, 255, 0.15) 2px, transparent 2px),
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px, 15px 15px;
    background-position: 0 0, 15px 15px;
    opacity: 0.8;
}

.donate-pattern::before {
    content: '';
    position: absolute;
    right: -100px;
    top: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
}

.donate-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.donate-heading {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    line-height: 1.4;
}

.donate-description {
    font-size: 1rem;
    line-height: 1.7;
    color: white;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-donate {
    display: inline-block;
    background-color: white;
    color: #2d5a2d;
    padding: 12px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-donate:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-col h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.footer-col h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: var(--spacing-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-address {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.footer-address svg {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-hours-title {
    margin-top: var(--spacing-md);
}

.footer-hours {
    font-size: 0.9375rem;
}

.footer-closure {
    background: rgba(255, 107, 53, 0.2);
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    margin-top: var(--spacing-sm);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.footer-copyright {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.footer-copyright p {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.footer-legal-links {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: white;
    text-decoration: underline;
}

.footer-disclaimers {
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimers p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.footer-disclaimers p:last-child {
    margin-bottom: 0;
}

.footer-developer {
    text-align: center;
    margin-top: var(--spacing-md);
}

.footer-developer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.footer-developer p:first-child {
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-developer a {
    color: var(--primary-light);
    text-decoration: none;
}

.footer-developer a:hover {
    text-decoration: underline;
}

/* Administrator email toggle */
.admin-toggle {
    color: var(--primary-light);
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
}

.admin-toggle:hover {
    color: white;
}

.admin-email {
    display: none;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.admin-email.show {
    display: inline;
}

.footer-dev a {
    color: var(--primary-light);
}

.footer-dev a:hover {
    text-decoration: underline;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: var(--spacing-lg) 0;
        min-height: 500px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .programs-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .programs-image {
        flex: 0 0 300px;
        min-height: 300px;
    }
    
    .programs-content {
        padding: 40px 24px;
    }
    
    .programs-heading {
        font-size: 1.875rem;
    }
    
    .programs-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .programs-list a {
        font-size: 1rem;
    }
    
    .services-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .events-calendar-section {
        padding: 60px 0;
    }
    
    .events-calendar-title {
        font-size: 1.75rem;
    }
    
    .events-calendar-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .event-calendar-image {
        height: 200px;
    }
    
    .event-calendar-event-title {
        font-size: 1rem;
        min-height: auto;
    }
    
    .events-calendar-navigation {
        justify-content: center;
    }
    
    .donation-split-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .donation-image {
        flex: 0 0 300px;
        min-height: 300px;
    }
    
    .donation-form-wrapper {
        padding: 40px 24px;
    }
    
    .donation-form-title {
        font-size: 1.5rem;
    }
    
    .donation-form {
        padding: 24px;
    }
    
    .donation-amount-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .amount-btn {
        padding: 12px 16px;
        font-size: 0.9375rem;
    }
    
    .donate-container {
        padding: 60px 24px;
        min-height: auto;
    }
    
    .donate-pattern {
        width: 100px;
    }
    
    .donate-heading {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
    
    .donate-description {
        font-size: 0.9375rem;
        margin-bottom: 28px;
    }
    
    .btn-donate {
        padding: 12px 32px;
        font-size: 0.9375rem;
        width: 100%;
        max-width: 300px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-md: 1rem;
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .insurance-grid {
        grid-template-columns: 1fr;
    }
}

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

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

/* ===================================
   Utility Classes
   =================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

/* ===================================
   Page Header
   =================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.page-header p {
    font-size: 1.125rem;
    opacity: 0.95;
}

/* ===================================
   Programs Page Specific
   =================================== */
.program-details-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.program-detail {
    margin-bottom: var(--spacing-xl);
    scroll-margin-top: 100px;
}

.program-detail-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.program-detail-header h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.program-detail-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.detail-card {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--secondary-color);
}

.detail-card h3 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.detail-card ul {
    list-style: none;
    padding: 0;
}

.detail-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.detail-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

/* ===================================
   Services Page Specific
   =================================== */
.service-details-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.service-detail-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.feature-item {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    font-size: 1.5rem;
    font-weight: 700;
}

.feature-item h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
}

/* ===================================
   About Page Specific
   =================================== */
.about-content {
    display: grid;
    gap: var(--spacing-lg);
}

.about-text .lead {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.about-text p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.95;
}

.mission-vision-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.mv-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.mv-icon {
    width: 64px;
    height: 64px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.mv-icon svg {
    width: 32px;
    height: 32px;
}

.mv-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.team-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.team-member {
    text-align: center;
}

.member-image {
    margin-bottom: var(--spacing-md);
}

.member-placeholder {
    width: 150px;
    height: 150px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.member-placeholder svg {
    width: 64px;
    height: 64px;
    color: var(--text-light);
}

.team-member h3 {
    margin-bottom: 0.25rem;
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

/* ===================================
   Events Page Specific
   =================================== */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.event-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.event-image {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-placeholder svg {
    width: 64px;
    height: 64px;
    color: white;
    opacity: 0.3;
}

.event-date-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.date-month {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
}

.date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.event-content {
    padding: var(--spacing-md);
}

.event-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    flex-wrap: wrap;
}

.event-content h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.event-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--spacing-md);
}

.event-tag {
    background: var(--bg-light);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
}

.event-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

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

.past-events-section {
    padding: var(--spacing-lg) 0;
    background: var(--bg-light);
}

.past-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.past-event-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.past-event-card h3 {
    margin-bottom: var(--spacing-sm);
}

.past-date {
    display: inline-block;
    margin-top: var(--spacing-sm);
    color: var(--text-light);
    font-size: 0.875rem;
    font-style: italic;
}

.newsletter-section {
    padding: var(--spacing-lg) 0;
    background: white;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-text {
    margin-bottom: var(--spacing-md);
}

.form-group-inline {
    display: flex;
    gap: var(--spacing-sm);
    max-width: 600px;
    margin: 0 auto;
}

.form-group-inline input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
}

/* ===================================
   Insurance Page Specific
   =================================== */
.insurance-info-section {
    padding: var(--spacing-xl) 0;
}

.insurance-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.insurance-note {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
    background: #FEF3C7;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-left: 4px solid #F59E0B;
    margin-top: var(--spacing-md);
}

.insurance-note svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #F59E0B;
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.insurance-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.insurance-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.insurance-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.insurance-icon svg {
    width: 28px;
    height: 28px;
}

.insurance-logo-card {
    text-align: center;
}

.insurance-logo-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.payment-options-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.payment-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.payment-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.insurance-faq-section {
    padding: var(--spacing-xl) 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.faq-item {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.billing-contact-section {
    padding: var(--spacing-lg) 0;
    background: var(--bg-light);
}

.billing-contact-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.billing-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

.billing-info-item {
    text-align: left;
}

/* ===================================
   Contact Page Specific
   =================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-lg);
}

.contact-form-wrapper {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form {
    margin-top: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-info-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.contact-info-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.contact-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    margin-top: var(--spacing-sm);
    display: inline-block;
}

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

.emergency-notice {
    background: #FEE2E2;
    border: 2px solid #EF4444;
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    display: flex;
    gap: var(--spacing-sm);
}

.emergency-notice svg {
    width: 24px;
    height: 24px;
    color: #EF4444;
    flex-shrink: 0;
}

.map-section {
    padding: var(--spacing-lg) 0;
    background: var(--bg-light);
}

.map-placeholder {
    height: 400px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.map-overlay {
    text-align: center;
    z-index: 1;
}

.map-overlay svg {
    width: 64px;
    height: 64px;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.departments-section {
    padding: var(--spacing-xl) 0;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.department-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.department-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.department-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.department-card a {
    display: block;
    margin-top: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

/* ===================================
   Services Page - New Design
   =================================== */

/* Hero Section */
.services-hero {
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    background-image: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1600');
    background-size: cover;
    background-position: center;
    padding: 6rem 0 4rem;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.services-hero .container {
    position: relative;
    z-index: 1;
}

.services-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
}

.breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Services Introduction */
.services-intro {
    padding: 4rem 0 3rem;
    background: white;
}

.intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.intro-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.highlight-text {
    color: #007bff;
}

.intro-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Services Grid Display */
.services-grid-section {
    padding: 3rem 0 4rem;
    background: #f8f9fa;
}

.services-display-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-display-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-display-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-display-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 50%;
    color: white;
}

.service-display-icon svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
}

.service-display-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
    letter-spacing: 0.5px;
}

.service-display-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* CTA Section with Rating */
.services-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    background-image: url('https://images.unsplash.com/photo-1559839734-2b71ea197ec2?w=1600');
    background-size: cover;
    background-position: center;
    position: relative;
}

.services-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.85);
}

.cta-content-box {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    color: white;
}

.cta-rating {
    text-align: center;
}

.rating-number {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stars {
    font-size: 2.5rem;
    color: #ffc107;
    margin-bottom: 1rem;
    letter-spacing: 0.5rem;
}

.star {
    display: inline-block;
}

.rating-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.rating-note {
    font-size: 0.85rem;
    opacity: 0.8;
    font-style: italic;
}

.cta-appointment {
    text-align: center;
}

.appointment-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.appointment-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.btn-schedule {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #007bff;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-schedule:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.btn-schedule svg {
    stroke: currentColor;
}

/* Find Office Section */
.find-office-section {
    padding: 3rem 0;
    background: #007bff;
    color: white;
}

.find-office-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.find-office-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.find-office-content svg {
    stroke: currentColor;
}

/* Responsive - Services Page */
@media (max-width: 992px) {
    .services-display-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .cta-content-box {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .intro-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .services-display-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-hero {
        padding: 4rem 0 3rem;
    }
    
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .intro-title {
        font-size: 1.75rem;
    }
    
    .rating-number {
        font-size: 3.5rem;
    }
    
    .stars {
        font-size: 2rem;
    }
    
    .appointment-number {
        font-size: 1.75rem;
    }
    
    .find-office-content {
        flex-direction: column;
    }
    
    .find-office-content h2 {
        font-size: 1.5rem;
        text-align: center;
    }
}

/* ===================================
   Service Detail Pages
   =================================== */

/* Service Detail Hero */
.service-detail-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.service-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L100 100M100 0L0 100" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
    opacity: 0.1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.service-detail-hero .container {
    position: relative;
    z-index: 1;
}

.service-detail-hero h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-light);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* Service Detail Content */
.service-detail-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.service-main-content {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-intro {
    margin-bottom: 2rem;
}

.intro-tagline {
    font-size: 1.25rem;
    color: #007bff;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.service-description h2 {
    color: var(--text-dark);
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
}

.service-description p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.service-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.service-list li {
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-color);
    font-size: 1rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-cta-box {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin: 2.5rem 0;
}

.service-cta-box h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-cta-box p {
    color: white;
    margin-bottom: 0;
}

.service-closing {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

/* Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-box {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.sidebar-box h3 {
    text-align: center;
    color: var(--text-dark);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: none;
}

.services-offered {
    background: white;
}

.elementor-divider {
    display: flex;
    justify-content: center;
    margin: 0 auto 2rem;
    width: 80px;
}

.elementor-divider-separator {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
}

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

.sidebar-services-list li {
    margin-bottom: 1.25rem;
}

.sidebar-services-list li:last-child {
    margin-bottom: 0;
}

.sidebar-services-list a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 1.05rem;
}

.sidebar-services-list a:hover {
    color: var(--primary-color);
}

.sidebar-services-list a:hover .service-icon {
    transform: scale(1.1);
}

.service-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    flex-shrink: 0;
    stroke: var(--primary-color);
    transition: transform 0.3s ease;
    display: block;
    background: white;
}

.btn-schedule-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--btn-dark);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 2rem;
}

.btn-schedule-sidebar:hover {
    background: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-schedule-sidebar svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.btn-schedule-sidebar svg {
    stroke: currentColor;
}

.contact-box p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.contact-box strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.25rem;
}

/* ===================================
   Responsive Design - Pages
   =================================== */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .service-detail-hero h1 {
        font-size: 2rem;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .service-main-content {
        padding: 2rem 1.5rem;
    }
    
    .service-list {
        grid-template-columns: 1fr;
    }

    
    .form-group-inline {
        flex-direction: column;
    }
    
    .event-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}
