/* Reset & Core Variables */
:root {
    --primary: #0B2046;      /* Navy Blue */
    --primary-light: #163670;
    --accent: #71BF45;       /* Green */
    --accent-hover: #5ba334;
    --bg-white: #ffffff;
    --bg-alt: #f4f7fb;
    --text-main: #1f2937;
    --text-muted: #4b5563;
    --border-color: #e5e7eb;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 4px 6px -1px rgba(11, 32, 70, 0.05), 0 2px 4px -1px rgba(11, 32, 70, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(11, 32, 70, 0.08), 0 4px 6px -2px rgba(11, 32, 70, 0.04);
    --shadow-hover: 0 20px 25px -5px rgba(11, 32, 70, 0.1), 0 10px 10px -5px rgba(11, 32, 70, 0.04);
    --radius-lg: 16px;
    --radius-md: 12px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

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

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.section {
    padding: 100px 0;
}
.text-accent { color: var(--accent); }
.text-accent-light { color: #a1e67b; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
    border: none;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    box-shadow: 0 4px 14px rgba(113, 191, 69, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(113, 191, 69, 0.4);
}

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

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

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: var(--transition);
    padding: 24px 0;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}
.logo-accent { color: var(--accent); }
.logo-dark { color: var(--text-main); }
.logo-white { color: white; }
.navbar.scrolled .logo-white { color: var(--primary); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    color: var(--primary);
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background-color: var(--bg-alt);
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding: 0 5%;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
}

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

.hero-image-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--bg-alt) 0%, rgba(244, 247, 251, 0.7) 40%, transparent 100%);
    z-index: 2;
}

.quick-info {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.info-badge {
    background: white;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
    color: var(--primary);
}
.info-badge i { color: var(--accent); }

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}
.fade-in {
    animation: fadeIn 1s ease forwards;
    opacity: 0;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    to { opacity: 1; }
}

/* Services */
.section-header {
    text-align: center;
    max-width: 700px;
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

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

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    top: 0;
}
.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.service-img-wrapper {
    height: 200px;
    overflow: hidden;
}
.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-img-wrapper img {
    transform: scale(1.05);
}

.service-content {
    padding: 24px;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-alt);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 16px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--accent);
    color: white;
}

.service-icon.large {
    width: 64px;
    height: 64px;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}
.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Insurance Banner */
.insurance.banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.insurance h2 { color: white; font-size: 2.5rem; margin-bottom: 16px; }
.insurance p { font-size: 1.1rem; max-width: 600px; opacity: 0.9; }

.insurance-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.tag {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(4px);
    font-size: 0.95rem;
}
.tag i { color: var(--accent); }

.banner-illustration {
    position: absolute;
    right: 5%;
    font-size: 15rem;
    opacity: 0.05;
    transform: rotate(-15deg);
}

/* Footer */
.footer {
    background-color: #050E1E;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.brand-col p {
    margin-top: 16px;
    max-width: 300px;
}

.contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}
.contact-list i { color: var(--accent); margin-top: 4px; }
.hover-link:hover { color: var(--accent); }

.social-links { display: flex; gap: 16px; }
.social-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 500;
    transition: var(--transition);
}
.social-icon:hover { color: var(--accent); }

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}
.hours-list .time.closed { color: #f87171; }

.footer-bottom {
    padding: 24px 0;
    font-size: 0.9rem;
}

/* Service Detail Pages */
.service-hero {
    background-color: var(--bg-alt);
    padding: 140px 0 60px;
    text-align: center;
}
.service-hero h1 { font-size: 3.5rem; margin-bottom: 20px; }
.service-hero p { max-width: 700px; margin: 0 auto; font-size: 1.15rem; color: var(--text-muted); }

.detail-section { padding: 80px 0; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.conditions-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}
.conditions-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-alt);
    padding: 16px;
    border-radius: var(--radius-md);
    font-weight: 500;
}
.conditions-list i { color: var(--accent); }

.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    background: white;
}
.faq-item h4 { margin-bottom: 12px; font-size: 1.1rem; }
.faq-item p { color: var(--text-muted); margin: 0; }

.cta-banner {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: white;
    text-align: center;
    padding: 80px 40px;
    border-radius: var(--radius-lg);
    margin: 80px auto;
    max-width: 1000px;
}
.cta-banner h2 { color: white; margin-bottom: 24px; font-size: 2.5rem; }

/* Responsive */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 3rem; }
    .hero-image-gradient {
        background: linear-gradient(to right, var(--bg-alt) 0%, rgba(244, 247, 251, 0.9) 100%);
    }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 24px;
        box-shadow: var(--shadow-sm);
    }
    .nav-links.active { display: flex; }
    
    .hero {
        flex-direction: column;
        padding-top: 100px;
    }
    .hero-content {
        padding: 40px 24px;
        max-width: 100%;
        text-align: center;
    }
    .hero-image-wrapper {
        position: relative;
        width: 100%;
        height: 400px;
    }
    .hero-image-gradient {
        background: linear-gradient(to bottom, var(--bg-alt) 0%, rgba(244, 247, 251, 0) 100%);
    }
    .quick-info { justify-content: center; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .banner-content { flex-direction: column; text-align: center; }
    .insurance-tags { justify-content: center; }
}
