/* Heritage Air - Modern HVAC Website */
/* Brand Colors: Teal #2B9EB3, Orange #E8792B */

/* Self-hosted Google Fonts */
@font-face {
    font-family: 'Cinzel';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('fonts/cinzel.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('fonts/lato-300.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/lato-400.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/lato-700.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Anchor scroll offset for fixed header */
.service-detail-card[id] {
    scroll-margin-top: 200px;
}

/* Skip to Content — Accessibility */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 0 0 5px 5px;
    font-weight: 600;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-to-content:focus {
    top: 0;
}

/* Focus Indicator — Accessibility */
*:focus-visible {
    outline: 2px solid var(--teal, #2B9EB3);
    outline-offset: 2px;
}

/* Screen Reader Only — Accessibility */
.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;
}

:root {
    --teal: #2B9EB3;
    --teal-dark: #1E7A8A;
    --orange: #E8792B;
    --orange-dark: #D06620;
    --light-bg: #FEF8F7;
    --dark: #1B1B1B;
    --gray: #5E5E5E;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: var(--teal);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top a {
    color: var(--white);
    font-weight: 600;
}

.header-top a:hover {
    color: var(--orange);
}

nav {
    padding: 15px 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 85px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark);
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--teal);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--dark);
    padding: 5px 10px;
    transition: color 0.3s;
    z-index: 1001;
}

.mobile-menu-btn:hover {
    color: var(--teal);
}

.mobile-menu-btn.active {
    color: var(--orange);
}

/* Hero Section */
.hero {
    margin-top: 130px;
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(135deg, rgba(43, 158, 179, 0.55), rgba(30, 122, 138, 0.6)), url('images/ac-unit-crane-install.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--teal);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-header .accent-line {
    width: 60px;
    height: 4px;
    background: var(--orange);
    margin: 20px auto 0;
}

/* Trust Badges */
.trust-badges {
    background: var(--light-bg);
    padding: 40px 0;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.badge-item {
    padding: 20px;
}

.badge-item .icon {
    font-size: 2.5rem;
    color: var(--teal);
    margin-bottom: 10px;
}

.badge-item h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.badge-item p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* About Section */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image .experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--orange);
    color: var(--white);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.experience-badge span {
    font-size: 0.9rem;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.about-features li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
}

.about-features li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
}

/* Services Section */
.services {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.service-card .learn-more {
    color: var(--orange);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-card .learn-more:hover {
    color: var(--orange-dark);
}

/* Work Gallery */
.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(43, 158, 179, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay span {
    color: var(--white);
    font-weight: 600;
}

/* Trane Partner */
.trane-partner {
    padding: 60px 0;
    background: var(--white);
}

.trane-partner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.trane-partner-content img {
    width: 280px;
    height: auto;
    flex-shrink: 0;
}

.trane-partner-text h2 {
    font-family: 'Cinzel', serif;
    color: var(--dark);
    margin-bottom: 12px;
    font-size: 1.6rem;
}

.trane-partner-text p {
    color: var(--text);
    line-height: 1.7;
    font-size: 1rem;
}

/* Affiliations */
.affiliations {
    background: var(--light-bg);
    padding: 60px 0;
}

.affiliations-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.affiliations-grid img {
    height: 80px;
    width: auto;
    filter: grayscale(30%);
    opacity: 0.8;
    transition: all 0.3s;
}

.affiliations-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta .phone {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 25px;
}

.cta .phone a {
    color: var(--white);
}

.cta .phone a:hover {
    color: var(--orange);
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p {
    color: #aaa;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #aaa;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--orange);
}

.footer-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #aaa;
    font-size: 0.9rem;
}

/* Services Page Specific */
.page-hero {
    margin-top: 130px;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #eee;
}

.service-detail-card:nth-child(even) {
    direction: rtl;
}

.service-detail-card:nth-child(even) > * {
    direction: ltr;
}

.service-detail-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-detail-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-detail-content h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.service-detail-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    padding: 8px 0;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-detail-content ul li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
}

/* Contact Page Specific */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.contact-info p {
    color: var(--gray);
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.info-item p {
    color: var(--gray);
    margin: 0;
}

.info-item a {
    color: var(--teal);
    word-break: break-all;
}

.info-item a:hover {
    color: var(--orange);
}

.contact-form {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 10px;
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: var(--orange-dark);
}

/* Emergency Banner */
.emergency-banner {
    background: var(--orange);
    color: var(--white);
    padding: 15px 0;
    text-align: center;
}

.emergency-banner p {
    font-size: 1.1rem;
}

.emergency-banner a {
    color: var(--white);
    font-weight: 700;
    text-decoration: underline;
}

/* Legal Pages (Terms, Privacy) */
.legal-content {
    padding: 60px 0 80px;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
}

.legal-body .legal-updated {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 30px;
}

.legal-body h2 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-top: 35px;
    margin-bottom: 12px;
}

.legal-body h3 {
    font-size: 1.15rem;
    color: var(--dark);
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-body p {
    color: var(--gray);
    margin-bottom: 15px;
}

.legal-body ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.legal-body ul li {
    color: var(--gray);
    margin-bottom: 8px;
}

.legal-body a {
    color: var(--teal);
}

.legal-body a:hover {
    color: var(--orange);
}

/* 404 Page */
.error-page {
    padding: 60px 0 80px;
}

/* Turnstile Container */
.cf-turnstile {
    margin-bottom: 10px;
}

.cf-turnstile iframe {
    max-width: 100% !important;
    transform-origin: left top;
}

@media (max-width: 480px) {
    .cf-turnstile {
        transform: scale(0.85);
        transform-origin: left top;
    }
}

/* Service Areas Grid (services page) */
.service-areas-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-areas-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-col {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 0;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        display: flex;
    }

    .nav-links.active {
        max-height: 300px;
        padding: 15px 0;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }

    .nav-links a {
        display: block;
        padding: 15px 30px;
        border-bottom: 1px solid #eee;
        font-size: 1.1rem;
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .nav-links a:hover {
        background: var(--light-bg);
    }

    .nav-links a::after {
        display: none;
    }

    .hero {
        height: auto;
        padding: 60px 0;
        margin-top: 120px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-content > p {
        display: none;
    }

    .hero-buttons {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .hero-buttons .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .service-detail-card,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .header-top .container {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .about-content {
        text-align: center;
    }

    .about-features {
        max-width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .service-detail-card:nth-child(even) {
        direction: ltr;
    }

    .service-detail-content {
        text-align: center;
    }

    .service-detail-image {
        display: flex;
        justify-content: center;
    }

    .service-detail-content ul {
        text-align: left;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-image .experience-badge {
        position: absolute;
        bottom: -15px;
        right: 20px;
        margin-top: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
        aspect-ratio: 4 / 3;
    }

    .trane-partner {
        padding-top: 20px;
    }

    .trane-partner-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .trane-partner-content img {
        width: 160px;
    }

    .affiliations {
        padding-top: 30px;
    }

    .affiliations-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        justify-items: center;
        align-items: center;
    }

    .affiliations-grid img {
        height: 55px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 120px 0 80px;
        margin-top: 140px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .badges-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .service-areas-grid {
        grid-template-columns: 1fr;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .cta .phone {
        font-size: 1.5rem;
    }

    .contact-form {
        padding: 20px 15px;
    }

    .contact-section {
        padding: 40px 0;
    }

    .contact-grid {
        max-width: 100%;
        overflow: hidden;
        word-wrap: break-word;
    }

    .contact-info,
    .contact-form {
        max-width: 100%;
        overflow: hidden;
    }

    .contact-info h3 {
        font-size: 1.4rem;
    }

    .contact-info > p {
        font-size: 0.9rem;
    }

    .info-item {
        gap: 12px;
    }

    .info-item .icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .page-hero {
        margin-top: 130px;
        padding-top: 120px;
        padding-bottom: 50px;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .logo img {
        height: 65px;
    }
}

/* Reduced Motion — Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
