/* Summit Peak Physical Therapy - Main Stylesheet */

:root {
    --primary-blue: #005691;
    --light-blue: #D9E6F2;
    --beige-cream: #F5F5DC;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --gold-accent: #FFD700;
    --white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark-gray);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

p {
    color: var(--medium-gray);
}

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

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

ul {
    list-style: none;
}

/* ========== HEADER STYLES ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-desktop a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-gray);
    position: relative;
    padding: 0.25rem 0;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width var(--transition-normal);
}

.nav-desktop a:hover {
    color: var(--primary-blue);
}

.nav-desktop a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-blue);
    color: var(--white) !important;
    padding: 0.625rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all var(--transition-fast) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--gold-accent) !important;
    color: var(--dark-gray) !important;
    transform: scale(1.05);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.call-btn {
    display: none;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 0.9rem;
}

.call-btn:hover {
    color: var(--dark-gray);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--dark-gray);
    transition: all var(--transition-fast);
}

.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 */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    background: var(--white);
    z-index: 1001;
    transition: right var(--transition-normal);
    padding: 6rem 2rem 2rem;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu a {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--dark-gray);
    display: block;
    padding: 0.5rem 0;
}

.mobile-menu a:hover {
    color: var(--primary-blue);
}

.mobile-menu .cta-btn {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    margin-top: 1rem;
}

.mobile-menu .cta-btn:hover {
    background: var(--gold-accent);
    color: var(--dark-gray);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

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

/* ========== HERO STYLES ========== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 86, 145, 0.85) 0%, rgba(0, 86, 145, 0.7) 100%);
}

.hero-content {
    max-width: 700px;
    padding: 2rem;
    color: var(--white);
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.5s;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.7s;
}

.hero-cta {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-fast);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.9s;
}

.hero-cta:hover {
    background: var(--gold-accent);
    color: var(--dark-gray);
    transform: scale(1.05);
}

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

/* ========== SECTION STYLES ========== */
.section {
    padding: 5rem 2rem;
}

.section-light {
    background: var(--light-blue);
}

.section-cream {
    background: var(--beige-cream);
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.about-content.visible {
    opacity: 1;
    transform: translateX(0);
}

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

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-image {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.about-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    position: relative;
}

.learn-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width var(--transition-normal);
}

.learn-more:hover::after {
    width: 100%;
}

/* ========== SERVICES GRID ========== */
.services-section {
    background: var(--light-blue);
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-blue);
    border-radius: 50%;
}

.service-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.service-card h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
}

.service-card p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-link:hover {
    color: var(--gold-accent);
}

/* ========== WHY CHOOSE US ========== */
.why-choose-section {
    background: var(--white);
}

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

.feature-block {
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.feature-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast);
}

.feature-icon:hover {
    transform: scale(1.1);
}

.feature-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.feature-block h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
}

.feature-block p {
    font-size: 0.95rem;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    background: var(--beige-cream);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast);
}

.testimonial-card:hover {
    transform: scale(1.02);
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.25rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--dark-gray);
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004a7a 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.cta-btn {
    display: inline-block;
    background: var(--gold-accent);
    color: var(--dark-gray);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.cta-btn:hover {
    transform: scale(1.05);
    background: var(--white);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

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

.footer h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold-accent);
}

.footer-specializations ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-specializations li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-specializations li::before {
    content: '✓';
    color: var(--gold-accent);
    font-weight: bold;
}

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

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--gold-accent);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

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

.footer-social a:hover {
    background: var(--gold-accent);
    color: var(--dark-gray);
    transform: translateY(-3px);
}

/* ========== BUTTON STYLES ========== */
.btn-primary {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--gold-accent);
    color: var(--dark-gray);
    transform: scale(1.05);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-blue);
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-fast);
    border: 2px solid var(--primary-blue);
    cursor: pointer;
}

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

/* ========== SERVICE DETAIL PAGE ========== */
.service-detail {
    padding: 8rem 2rem 5rem;
    background: var(--white);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.service-detail-grid.reverse .service-detail-content {
    order: -1;
}

.service-detail-content h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-detail-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

.service-detail-content ul {
    margin-bottom: 1.5rem;
}

.service-detail-content li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--medium-gray);
}

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

.service-detail-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* ========== APPROACH SECTION ========== */
.approach-section {
    background: var(--light-blue);
    padding: 5rem 2rem;
}

.approach-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.approach-step {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.approach-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.approach-number {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.approach-step h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
}

.approach-step p {
    font-size: 0.95rem;
}

/* ========== TEAM SECTION ========== */
.team-section {
    background: var(--white);
    padding: 5rem 2rem;
}

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

.team-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(30px);
}

.team-card.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.team-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

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

.team-info h3 {
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.team-title {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.team-bio {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.5;
}

/* ========== FACILITY SECTION ========== */
.facility-section {
    background: var(--beige-cream);
    padding: 5rem 2rem;
}

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

.facility-content h2 {
    margin-bottom: 1rem;
}

.facility-content p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.facility-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.facility-image img {
    width: 100%;
    transition: transform var(--transition-slow);
}

.facility-section:hover .facility-image img {
    transform: scale(1.02);
}

/* ========== FAQ SECTION ========== */
.faq-section {
    background: var(--white);
    padding: 5rem 2rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--light-blue);
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--medium-gray);
}

/* ========== INSURANCE SECTION ========== */
.insurance-section {
    background: var(--light-blue);
    padding: 5rem 2rem;
}

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

.insurance-content h2 {
    margin-bottom: 1rem;
}

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

.insurance-item {
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: var(--dark-gray);
    box-shadow: var(--shadow-sm);
}

.insurance-note {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: var(--medium-gray);
    font-style: italic;
}

/* ========== LOCATION SECTION ========== */
.location-section {
    background: var(--white);
    padding: 5rem 2rem;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 400px;
    background: var(--light-blue);
}

.location-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.location-info h2 {
    margin-bottom: 1.5rem;
}

.location-address {
    margin-bottom: 2rem;
}

.location-address h3 {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.location-address p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.25rem;
}

.location-hours {
    margin-bottom: 2rem;
}

.location-hours h3 {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.location-hours ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.location-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    color: var(--medium-gray);
}

.location-hours li strong {
    color: var(--dark-gray);
}

.directions-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.directions-link:hover {
    background: var(--gold-accent);
    color: var(--dark-gray);
}

/* ========== CONTACT FORM ========== */
.contact-section {
    background: var(--beige-cream);
    padding: 5rem 2rem;
}

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

.contact-form-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-form-container h2 {
    margin-bottom: 0.5rem;
}

.contact-form-container > p {
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.form-group label span {
    color: #e74c3c;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--light-blue);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 86, 145, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.submit-btn:hover {
    background: var(--gold-accent);
    color: var(--dark-gray);
    transform: scale(1.02);
}

.direct-contact h2 {
    margin-bottom: 1.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
    transition: transform var(--transition-fast);
}

.contact-method:hover .contact-method-icon {
    transform: scale(1.1);
}

.contact-method h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--primary-blue);
}

.contact-method a,
.contact-method p {
    font-size: 1rem;
    color: var(--medium-gray);
}

.contact-method a:hover {
    color: var(--primary-blue);
}

/* ========== PAGE HEADER ========== */
.page-header {
    background: var(--primary-blue);
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

/* ========== RESPONSIVE STYLES ========== */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .call-btn {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .hero-content {
        padding: 3rem;
    }

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

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

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

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

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

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

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

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

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

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

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

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

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

@media (min-width: 1024px) {
    .section {
        padding: 6rem 2rem;
    }

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

    .service-detail-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
