/* EYEVenue - Main Stylesheet */

/* ========================================
   CSS Variables & Root
======================================== */
:root {
    --primary-color: #2E8B99;
    --primary-dark: #236e7a;
    --secondary-color: #2C3E50;
    --light-bg: #F8F8F8;
    --white: #FFFFFF;
    --accent-red: #E74C3C;
    --text-dark: #2C3E50;
    --text-light: #666666;
    --border-light: #E0E0E0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    --font-primary: 'Montserrat', Arial, Helvetica, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

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

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 2.5rem;
}

/* ========================================
   Header
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

.header.scrolled {
    height: 70px;
}

.header.scrolled .header-container {
    height: 70px;
}

.header.scrolled .logo {
    height: 50px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    transition: height var(--transition-medium);
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
    transition: height var(--transition-medium);
}

.quick-contact {
    display: none;
}

.quick-phone {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.quick-phone:hover {
    color: var(--primary-color);
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--secondary-color);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all var(--transition-medium);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.desktop-cta {
    display: none;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    transition: all var(--transition-medium);
}

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

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

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

/* Mobile Menu Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

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

.mobile-nav {
    text-align: center;
}

.mobile-nav-list {
    margin-bottom: 2rem;
}

.mobile-nav-link {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 1rem;
    transition: color var(--transition-fast);
}

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

.mobile-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.mobile-phone {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    text-align: center;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.cta-button:hover {
    background: var(--primary-dark);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.cta-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.3s ease-out;
}

.hero-bg.scrolled .hero-image {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 139, 153, 0.85) 0%, rgba(44, 62, 80, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-cta {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

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

.hero-cta:hover {
    transform: scale(1.05);
}

/* ========================================
   Page Hero Banner
======================================== */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

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

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 139, 153, 0.85) 0%, rgba(44, 62, 80, 0.75) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.page-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ========================================
   Services Overview (Home)
======================================== */
.services-overview {
    padding: 5rem 0;
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
    border: 1px solid var(--border-light);
}

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

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

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

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

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

.learn-more {
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    display: inline-block;
}

.learn-more::after {
    content: ' →';
    transition: margin-left var(--transition-fast);
}

.learn-more:hover::after {
    margin-left: 5px;
}

/* ========================================
   About Snippet
======================================== */
.about-snippet {
    padding: 5rem 0;
    background: var(--secondary-color);
    color: var(--white);
}

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

.about-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.about-text .cta-button {
    background: var(--white);
    color: var(--primary-color);
}

.about-text .cta-button:hover {
    background: var(--light-bg);
    color: var(--primary-dark);
}

/* ========================================
   Testimonials
======================================== */
.testimonials {
    padding: 5rem 0;
    background: var(--light-bg);
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    transition: transform var(--transition-slow);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 1rem;
}

.testimonial-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    line-height: 1;
    color: var(--primary-color);
    opacity: 0.3;
    display: block;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.carousel-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.carousel-arrow:hover {
    background: var(--primary-color);
    color: var(--white);
}

.carousel-arrow svg {
    width: 20px;
    height: 20px;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* ========================================
   CTA Section
======================================== */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .cta-button {
    background: var(--white);
    color: var(--primary-color);
}

.cta-section .cta-button:hover {
    background: var(--light-bg);
    color: var(--primary-dark);
}

/* ========================================
   Detailed Services (Services Page)
======================================== */
.detailed-services {
    padding: 5rem 0;
}

.service-detail {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-medium);
}

.service-detail:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.service-detail-content {
    flex: 1;
}

.service-detail h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

.service-features {
    list-style: none;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    color: var(--white);
}

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

/* ========================================
   Our Story (About Page)
======================================== */
.our-story {
    padding: 5rem 0;
    background: var(--white);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* ========================================
   Why Choose Us (About Page)
======================================== */
.why-choose-us {
    padding: 5rem 0;
    background: var(--light-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 139, 153, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
}

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

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   Meet the Team (About Page)
======================================== */
.meet-the-team {
    padding: 5rem 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.team-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all var(--transition-medium);
}

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

.team-image {
    width: 120px;
    height: 120px;
    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(--white);
}

.team-image svg {
    width: 50px;
    height: 50px;
}

.team-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.team-role {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

/* ========================================
   Patient Info Page
======================================== */
.patient-forms {
    padding: 5rem 0;
    background: var(--white);
}

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

.forms-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.insurance-payment {
    padding: 5rem 0;
    background: var(--light-bg);
}

.insurance-content {
    max-width: 700px;
    margin: 0 auto;
}

.insurance-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.insurance-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.insurance-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.insurance-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-dark);
}

.insurance-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.office-hours-section {
    padding: 5rem 0;
    background: var(--white);
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.hours-card, .location-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
}

.hours-card h3, .location-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.hours-list dt {
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 1rem;
}

.hours-list dt:first-child {
    margin-top: 0;
}

.hours-list dd {
    color: var(--text-light);
    margin-left: 0;
}

.hours-list .highlight {
    color: var(--accent-red);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.location-card address {
    font-style: normal;
    margin-bottom: 1rem;
}

.location-card address p {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.clinic-policies {
    padding: 5rem 0;
    background: var(--light-bg);
}

.policies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.policy-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1.5rem;
}

.policy-card.alert {
    border-left: 4px solid var(--accent-red);
}

.policy-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 139, 153, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
}

.policy-card.alert .policy-icon {
    background: rgba(231, 76, 60, 0.1);
    color: var(--accent-red);
}

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

.policy-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.policy-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-section {
    padding: 5rem 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.faq-item {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   Contact Page
======================================== */
.contact-form-section {
    padding: 5rem 0;
    background: var(--white);
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    transition: all var(--transition-fast);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 139, 153, 0.1);
}

.form-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

.form-success {
    display: none;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(46, 139, 153, 0.1);
    border-radius: 8px;
    color: var(--primary-color);
    text-align: center;
    font-weight: 600;
}

.form-success.show {
    display: block;
}

.contact-details-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    color: var(--white);
}

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

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

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

.contact-text .secondary {
    font-size: 0.85rem;
    color: var(--text-light);
}

.contact-text address {
    font-style: normal;
}

.hours-inline {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.25rem 1rem;
    font-size: 0.9rem;
}

.hours-inline dt {
    font-weight: 600;
    color: var(--secondary-color);
}

.hours-inline dd {
    color: var(--text-dark);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 350px;
    background: var(--white);
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--secondary-color);
    color: var(--light-bg);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand address {
    font-style: normal;
    margin-bottom: 1rem;
}

.footer-brand address p {
    color: var(--light-bg);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    opacity: 0.9;
}

.footer-brand a {
    color: var(--light-bg);
    opacity: 0.9;
}

.footer-brand a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-description {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

.footer h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--light-bg);
    opacity: 0.9;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-hours dl {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-hours dt {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
}

.footer-hours dd {
    font-size: 0.9rem;
    color: var(--light-bg);
    opacity: 0.9;
    margin-left: 0;
}

.footer-hours .closed {
    font-size: 0.8rem;
    color: var(--accent-red);
    font-weight: 500;
}

.footer-cta-btn {
    display: block;
    text-align: center;
    margin-bottom: 1.5rem;
    background: var(--primary-color);
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--light-bg);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.trust-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--light-bg);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ========================================
   Responsive - Tablet (md)
======================================== */
@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }

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

    .hero-content p {
        font-size: 1.25rem;
    }

    .page-hero-content h1 {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hours-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .policies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail {
        flex-direction: row;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   Responsive - Desktop (lg)
======================================== */
@media (min-width: 1024px) {
    .quick-contact {
        display: block;
    }

    .desktop-nav {
        display: block;
    }

    .desktop-cta {
        display: inline-block;
    }

    .hamburger {
        display: none;
    }

    .hero {
        min-height: 85vh;
    }

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

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .faq-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .insurance-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }

    .footer-bottom {
        text-align: left;
    }
}

/* ========================================
   Print Styles
======================================== */
@media print {
    .header,
    .footer,
    .cta-section,
    .carousel-controls,
    .hamburger {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding-top: 0;
    }

    .hero-bg,
    .hero-overlay {
        display: none;
    }

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