:root {
    --primary-blue: #1A74BA;
    --primary-blue-dark: #155e94;
    --dark-grey: #3A3A3A;
    --accent-yellow: #FFD700;
    --white: #FFFFFF;
    --light-grey: #F5F5F5;
    --font-primary: 'Poppins', sans-serif;
    --transition: 0.2s ease-in-out;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
}

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

ul {
    list-style: none;
}

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

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

/* Header Styles */
.top-bar {
    background-color: var(--light-grey);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    gap: 20px;
    color: var(--dark-grey);
}

.top-bar-contact a {
    color: var(--dark-grey);
}

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

.main-header {
    background-color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.main-header.scrolled {
    padding: 10px 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.nav-link {
    font-weight: 500;
    color: var(--dark-grey);
    position: relative;
    padding: 5px 0;
}

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

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

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

.nav-cta {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-cta {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
}

.header-cta:hover {
    background-color: var(--primary-blue-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.order-lenses-btn {
    color: var(--primary-blue);
    font-weight: 500;
    padding: 8px 15px;
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
}

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

.social-icons {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.social-icons a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--light-grey);
    color: var(--dark-grey);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-grey);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 2000;
    flex-direction: column;
    padding: 80px 20px 20px;
    overflow-y: auto;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: var(--dark-grey);
}

.mobile-nav-link {
    font-size: 20px;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-grey);
    color: var(--dark-grey);
}

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

.mobile-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.mobile-cta-buttons a {
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
}

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

.mobile-order-btn {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.mobile-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 20px;
    text-align: center;
    color: var(--dark-grey);
    font-size: 14px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(26, 116, 186, 0.9), rgba(21, 94, 148, 0.8)), url('../../images/hero-image.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h2 {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--white);
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    border: 2px solid var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

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

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

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

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-blue);
    border-radius: 12px;
    z-index: -1;
}

.about-content h2 {
    font-size: clamp(28px, 3vw, 36px);
    color: var(--dark-grey);
    margin-bottom: 25px;
}

.about-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-content .btn-primary {
    margin-top: 20px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--light-grey);
}

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

.section-header h2 {
    font-size: clamp(28px, 3vw, 40px);
    color: var(--dark-grey);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-blue);
    transform: scaleX(0);
    transition: var(--transition);
}

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

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: var(--light-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary-blue);
    transform: scale(1.1);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-blue);
    transition: var(--transition);
}

.service-card:hover .service-icon svg {
    color: var(--white);
}

.service-card h3 {
    font-size: 22px;
    color: var(--dark-grey);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-card .read-more {
    color: var(--primary-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-card .read-more:hover {
    color: var(--primary-blue-dark);
    gap: 10px;
}

/* Locations Section */
.locations-section {
    padding: 100px 0;
    background-color: var(--white);
}

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

.location-card {
    background-color: var(--light-grey);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: var(--transition);
}

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

.location-card h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.location-card address {
    font-style: normal;
    color: var(--dark-grey);
    margin-bottom: 15px;
    line-height: 1.6;
}

.location-card .phone {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 15px;
}

.location-card .phone:hover {
    color: var(--primary-blue-dark);
}

.location-card .hours {
    font-size: 14px;
    color: #666;
    border-top: 1px solid #ddd;
    padding-top: 15px;
    margin-top: 15px;
}

.locations-section .view-all {
    text-align: center;
    margin-top: 50px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(26, 116, 186, 0.95), rgba(21, 94, 148, 0.9)), url('../../images/testimonial-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.testimonials-section .section-header h2,
.testimonials-section .section-header p {
    color: var(--white);
}

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

.testimonial {
    text-align: center;
    padding: 40px;
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial.active {
    display: block;
}

.testimonial blockquote {
    font-size: 20px;
    color: var(--white);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial cite {
    color: var(--accent-yellow);
    font-weight: 600;
    font-style: normal;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active,
.carousel-dot:hover {
    background-color: var(--accent-yellow);
    transform: scale(1.2);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-color: var(--primary-blue);
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(28px, 3vw, 40px);
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

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

.cta-section .btn-primary:hover {
    background-color: var(--light-grey);
    color: var(--primary-blue);
}

.cta-section .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

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

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.main-footer {
    background-color: var(--dark-grey);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 14px;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--primary-blue);
}

.footer-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-cta {
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

.footer-cta-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.footer-cta-primary:hover {
    background-color: var(--primary-blue-dark);
}

.footer-cta-secondary {
    border: 2px solid var(--primary-blue);
    color: var(--white);
}

.footer-cta-secondary:hover {
    background-color: var(--primary-blue);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

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

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-legal a:hover {
    color: var(--primary-blue);
}

/* Page Hero (for inner pages) */
.page-hero {
    background: linear-gradient(135deg, rgba(26, 116, 186, 0.9), rgba(21, 94, 148, 0.8)), url('../../images/hero-image.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--white);
    margin-bottom: 15px;
}

.page-hero p {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.9);
}

/* Locations Page */
.locations-detail-section {
    padding: 80px 0;
}

.location-detail-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.location-detail-info h3 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.location-detail-info address {
    font-style: normal;
    margin-bottom: 15px;
    line-height: 1.8;
}

.location-detail-info .phone {
    color: var(--primary-blue);
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.location-detail-info .hours {
    background-color: var(--light-grey);
    padding: 20px;
    border-radius: 8px;
}

.location-detail-info .hours h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--dark-grey);
}

.location-detail-info .hours p {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    height: 350px;
    background-color: var(--light-grey);
}

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

.location-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--primary-blue);
    font-weight: 600;
}

.location-directions:hover {
    color: var(--primary-blue-dark);
}

/* Services Page */
.services-detail-section {
    padding: 80px 0;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail-card:nth-child(even) {
    direction: rtl;
}

.service-detail-card:nth-child(even) > * {
    direction: ltr;
}

.service-detail-content h3 {
    font-size: 28px;
    color: var(--dark-grey);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Patient Info Page */
.patient-info-section {
    padding: 80px 0;
}

.forms-section {
    margin-bottom: 80px;
}

.forms-section h2,
.faq-section h2,
.insurance-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--dark-grey);
}

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

.form-download {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: var(--light-grey);
    border-radius: 8px;
    transition: var(--transition);
}

.form-download:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.form-download svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.form-download span {
    font-weight: 500;
}

.faq-section {
    margin-bottom: 80px;
}

.faq-item {
    background-color: var(--light-grey);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark-grey);
}

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

.faq-answer {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-toggle {
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.insurance-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.insurance-logo {
    background-color: var(--white);
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--dark-grey);
    border: 1px solid #ddd;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2,
.contact-form h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--dark-grey);
}

.contact-info-item {
    margin-bottom: 30px;
}

.contact-info-item h4 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.contact-info-item p,
.contact-info-item address {
    color: #666;
    line-height: 1.7;
}

.contact-info-item a {
    color: var(--primary-blue);
    font-weight: 500;
}

.contact-form {
    background-color: var(--light-grey);
    padding: 40px;
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark-grey);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 15px;
    transition: var(--transition);
}

.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(26, 116, 186, 0.1);
}

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

.contact-form .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-detail-card,
    .service-detail-card,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-card:nth-child(even) {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        min-height: 70vh;
        background-attachment: scroll;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .hero-ctas a {
        width: 100%;
        text-align: center;
    }
    
    .about-section .container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-cta-buttons {
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-section {
        background-attachment: scroll;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons a {
        width: 100%;
    }
    
    .contact-form {
        padding: 25px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .reveal {
        opacity: 1;
        transform: none;
    }
}
