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

:root {
    /* Vel Health Brand Colors */
    --primary-dark-blue: #223645;
    --primary-teal: #4ABCC1;
    --accent-teal: #05BEC1;
    --light-gray: #F7F7F7;
    --medium-gray: #7A8A9E;
    --border-gray: #EEEEEE;
    --white: #FFFFFF;
    
    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--primary-dark-blue);
    line-height: 1.6;
    background-color: var(--white);
}

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

/* ===================================
   Navigation
   =================================== */
.navbar {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-gray);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.logo-text {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark-blue);
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--primary-dark-blue);
}

.contact-item i {
    color: var(--primary-teal);
}

.btn-contact {
    background-color: var(--primary-teal);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-secondary);
    transition: var(--transition);
}

.btn-contact:hover {
    background-color: var(--primary-dark-blue);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-dark-blue);
    cursor: pointer;
}

.mobile-menu {
    display: none;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 80px 0;
}

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

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-dark-blue);
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--medium-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Insurance Disclaimer Box - Prominent */
.insurance-disclaimer-box {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-teal) 100%);
    color: var(--white);
    padding: 25px 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(5, 190, 193, 0.2);
}

.insurance-disclaimer-box i {
    font-size: 24px;
    margin-top: 2px;
    flex-shrink: 0;
}

.insurance-disclaimer-box p {
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.patient-notice {
    background-color: #FFF9E6;
    border-left: 4px solid #FFC107;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 50px;
}

.patient-notice p {
    color: var(--primary-dark-blue);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.patient-notice i {
    color: #FFC107;
    font-size: 18px;
}

/* Clinic Hours Cards */
.clinic-hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.clinic-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.clinic-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-teal);
    box-shadow: 0 8px 30px rgba(74, 188, 193, 0.2);
}

.clinic-icon {
    font-size: 48px;
    color: var(--primary-teal);
    margin-bottom: 20px;
}

.clinic-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark-blue);
    margin-bottom: 10px;
}

.clinic-type {
    color: var(--primary-teal);
    font-weight: 600;
    margin-bottom: 15px;
}

.clinic-days {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark-blue);
    margin-bottom: 5px;
}

.clinic-time {
    font-size: 16px;
    color: var(--medium-gray);
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding: 80px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-dark-blue);
    margin-bottom: 15px;
    font-family: var(--font-secondary);
}

.section-header p {
    font-size: 18px;
    color: var(--medium-gray);
}

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

.service-item {
    background-color: var(--light-gray);
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-item:hover {
    background-color: var(--white);
    border-color: var(--primary-teal);
    box-shadow: 0 5px 20px rgba(74, 188, 193, 0.15);
    transform: translateY(-3px);
}

.service-icon {
    font-size: 42px;
    color: var(--primary-teal);
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark-blue);
    margin-bottom: 10px;
}

.service-item p {
    font-size: 14px;
    color: var(--medium-gray);
}

/* ===================================
   Booking CTA Section
   =================================== */
.booking-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark-blue) 0%, #2C4A5E 100%);
    color: var(--white);
}

.booking-cta .section-header h2 {
    color: var(--white);
}

.booking-cta .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 35px 50px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 320px;
}

.btn-large i {
    font-size: 36px;
}

.btn-large small {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
}

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

.btn-primary:hover {
    background-color: var(--accent-teal);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(74, 188, 193, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.appointment-notice {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.appointment-notice i {
    font-size: 20px;
}

/* ===================================
   Provider Section
   =================================== */
.provider {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.provider-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.provider-icon {
    font-size: 80px;
    color: var(--primary-teal);
    flex-shrink: 0;
}

.provider-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-dark-blue);
    margin-bottom: 20px;
    font-family: var(--font-secondary);
}

.partnership-info {
    font-size: 18px;
    color: var(--primary-dark-blue);
    margin-bottom: 15px;
    line-height: 1.8;
}

.provider-credentials {
    font-size: 16px;
    color: var(--medium-gray);
    line-height: 1.8;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--primary-dark-blue);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo span {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 700;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.footer-disclaimer {
    background-color: rgba(74, 188, 193, 0.1);
    border-left: 3px solid var(--primary-teal);
    padding: 15px;
    border-radius: 5px;
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
    color: var(--primary-teal);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

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

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--primary-teal);
    font-size: 16px;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    .nav-contact {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu {
        display: none;
        background-color: var(--white);
        border-bottom: 1px solid var(--border-gray);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .mobile-menu-content {
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-item-mobile {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: var(--primary-dark-blue);
    }
    
    .contact-item-mobile i {
        color: var(--primary-teal);
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .insurance-disclaimer-box {
        flex-direction: column;
        text-align: center;
    }
    
    .insurance-disclaimer-box p {
        text-align: center;
    }
    
    .clinic-hours-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        min-width: 280px;
    }
    
    .provider-content {
        flex-direction: column;
        text-align: center;
    }
    
    .provider-text h2 {
        font-size: 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .btn-large {
        padding: 25px 30px;
        min-width: 100%;
        font-size: 18px;
    }
}
