/* ==========================================================================
   Crawford Heating and Air - Stylesheet
   Brand Colors:
   - #333333: Primary text, strong elements
   - #000000: CTA buttons, bold headings
   - #F9F9F9: Light backgrounds, cards
   - #787878: Secondary text, subtle details, dividers
   
   Fonts:
   - Headers: Playfair Display, serif
   - Body: Open Sans, sans-serif
   ========================================================================== */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #000000;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #333333;
}

a {
    color: #000000;
    text-decoration: none;
    transition: color 150ms ease-out;
}

a:hover {
    color: #787878;
}

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

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
    background-color: #000000;
    color: #ffffff;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    text-align: center;
}

.top-bar p {
    margin: 0;
    color: #ffffff;
}

.snowflake {
    font-size: 1rem;
    color: #ffffff;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

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

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

.logo-mobile {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    font-size: 0.875rem;
    color: #333333;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #000000;
    transition: all 100ms ease-out;
    transform: translateX(-50%);
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: #000000;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: #000000;
    transition: all 200ms ease-in-out;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
#hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-color: #F9F9F9;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 50%;
    padding: 4rem 0;
}

.hero-text {
    max-width: 600px;
}

#hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #000000;
}

.value-statement {
    font-size: 1.5rem;
    font-weight: 300;
    color: #333333;
    margin-bottom: 2rem;
    font-family: 'Open Sans', sans-serif;
}

.trust-element {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.phone-icon {
    width: 24px;
    height: 24px;
    color: #000000;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.button {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    transition: all 150ms ease-out;
    text-decoration: none;
}

.primary-cta {
    background-color: #000000;
    color: #ffffff;
}

.primary-cta:hover {
    background-color: #333333;
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.secondary-cta {
    background-color: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.secondary-cta:hover {
    background-color: #000000;
    color: #ffffff;
    transform: scale(1.05);
}

.button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
#services-preview {
    padding: 5rem 0;
    background-color: #ffffff;
}

#services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.service-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #F9F9F9;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 150ms ease-out;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: #000000;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-points {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-points li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.service-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
}

.learn-more {
    font-weight: 600;
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.learn-more:hover {
    color: #787878;
}

/* Service Card Icon Animation */
.service-card:hover .service-icon svg {
    animation: bounce 100ms ease-out;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* ==========================================================================
   About Section
   ========================================================================== */
#about-preview {
    padding: 5rem 0;
    background-color: #F9F9F9;
}

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

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

.about-image {
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   Process Section
   ========================================================================== */
#our-process {
    padding: 5rem 0;
    background-color: #ffffff;
}

#our-process h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background-color: #F9F9F9;
    border-radius: 8px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 200ms ease-out forwards;
}

.process-step:nth-child(1) { animation-delay: 0ms; }
.process-step:nth-child(2) { animation-delay: 100ms; }
.process-step:nth-child(3) { animation-delay: 200ms; }
.process-step:nth-child(4) { animation-delay: 300ms; }

.step-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.process-step h4 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.process-step p {
    font-size: 0.9rem;
    color: #787878;
}

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

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
#testimonials {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.testimonial-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.testimonial-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

#testimonials .container {
    position: relative;
    z-index: 1;
}

#testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

.testimonial-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 100ms ease-out;
}

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

.stars {
    color: #000000;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #333333;
}

.client-name {
    font-weight: 600;
    color: #787878;
    font-style: normal;
}

/* ==========================================================================
   Contact Form Section
   ========================================================================== */
#contact-form {
    padding: 5rem 0;
    background-color: #F9F9F9;
}

#contact-form h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.estimate-form {
    display: grid;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-group .required {
    color: #000000;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    background-color: #ffffff;
    transition: all 100ms ease-out;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000000;
    border-bottom-width: 2px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #787878;
}

.honeypot-field {
    display: none;
}

/* ==========================================================================
   Blog Preview Section
   ========================================================================== */
#blog-preview {
    padding: 5rem 0;
    background-color: #ffffff;
}

#blog-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-posts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-post-card {
    background-color: #F9F9F9;
    border-radius: 8px;
    overflow: hidden;
    transition: all 150ms ease-out;
}

.blog-post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.blog-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease-out;
}

.blog-post-card:hover .blog-thumbnail img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.blog-content p {
    font-size: 0.9rem;
    color: #787878;
    margin-bottom: 1rem;
}

.read-more {
    font-weight: 600;
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 0.875rem;
}

.read-more:hover {
    color: #787878;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background-color: #333333;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

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

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cccccc;
    transition: color 150ms ease-out;
}

.footer-section a:hover {
    color: #ffffff;
}

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

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 100ms ease-out;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.social-link:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    border-top: 1px solid #444444;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #999999;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.powered-by {
    font-size: 0.75rem;
}

/* ==========================================================================
   Cookie Banner
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333333;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    transform: translateY(100%);
    opacity: 0;
    animation: slideUp 300ms ease-out forwards;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    color: #ffffff;
    margin: 0;
    flex: 1;
    min-width: 280px;
    font-size: 0.875rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept,
.cookie-decline {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 150ms ease-out;
}

.cookie-accept {
    background-color: #ffffff;
    color: #000000;
}

.cookie-accept:hover {
    background-color: #F9F9F9;
}

.cookie-decline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cookie-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

/* ==========================================================================
   Page Header (for subpages)
   ========================================================================== */
.page-header {
    background-color: #000000;
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    color: #cccccc;
    font-size: 1.25rem;
    margin: 0;
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */
.about-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.values-section {
    padding: 5rem 0;
    background-color: #F9F9F9;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 150ms ease-out;
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: #000000;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.team-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.team-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #787878;
}

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

.team-card {
    background-color: #F9F9F9;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
}

.team-photo {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    margin: 1.5rem 1.5rem 0.5rem;
}

.team-card p {
    padding: 0 1.5rem 1.5rem;
    color: #787878;
    font-size: 0.9rem;
}

.why-us-section {
    padding: 5rem 0;
    background-color: #F9F9F9;
}

.why-us-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.why-us-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.why-us-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    color: #000000;
}

.why-us-icon svg {
    width: 100%;
    height: 100%;
}

.why-us-item h4 {
    margin-bottom: 0.75rem;
}

.why-us-item p {
    color: #787878;
}

.covid-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.covid-text h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.covid-text h3 {
    text-align: center;
    color: #787878;
    margin-bottom: 2rem;
}

.safety-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.safety-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.safety-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
}

.safety-assurance {
    font-style: italic;
    text-align: center;
    color: #787878;
}

.cta-section {
    padding: 5rem 0;
    background-color: #000000;
    text-align: center;
}

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #cccccc;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Services Page Styles
   ========================================================================== */
.service-detail-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.service-detail-section.alt-bg {
    background-color: #F9F9F9;
}

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

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-detail-content {
    display: flex;
    flex-direction: column;
}

.service-icon-large {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    color: #000000;
}

.service-icon-large svg {
    width: 100%;
    height: 100%;
}

.service-intro {
    font-size: 1.125rem;
    color: #787878;
    margin-bottom: 2rem;
}

.service-features {
    margin-bottom: 2rem;
}

.feature-item {
    margin-bottom: 1.5rem;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.feature-item p {
    color: #787878;
    font-size: 0.95rem;
}

.service-detail-image {
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contract-services {
    padding: 5rem 0;
    background-color: #ffffff;
}

.contract-services h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #787878;
}

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

.contract-card {
    background-color: #F9F9F9;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 150ms ease-out;
}

.contract-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contract-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: #000000;
}

.contract-icon svg {
    width: 100%;
    height: 100%;
}

.contract-card h3 {
    margin-bottom: 0.75rem;
}

.contract-card p {
    color: #787878;
    font-size: 0.9rem;
}

.contract-cta {
    text-align: center;
}

.service-areas {
    padding: 5rem 0;
    background-color: #F9F9F9;
}

.service-areas h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.service-areas-intro {
    text-align: center;
    color: #787878;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.area-tag {
    background-color: #000000;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.areas-note {
    text-align: center;
    color: #787878;
    font-size: 0.9rem;
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-info-section {
    padding: 5rem 0;
    background-color: #F9F9F9;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-info-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 150ms ease-out;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: #000000;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-info-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.contact-detail {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-detail a {
    color: #000000;
}

.contact-note {
    color: #787878;
    font-size: 0.875rem;
}

.contact-form-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

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

.form-header p {
    color: #787878;
}

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

.checkbox-group {
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #000000;
}

.checkbox-text {
    font-size: 0.9rem;
    color: #333333;
    line-height: 1.5;
}

.emergency-section {
    padding: 5rem 0;
    background-color: #000000;
    text-align: center;
}

.emergency-content {
    max-width: 600px;
    margin: 0 auto;
}

.emergency-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: #ffffff;
}

.emergency-icon svg {
    width: 100%;
    height: 100%;
}

.emergency-section h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.emergency-section p {
    color: #cccccc;
    margin-bottom: 2rem;
}

.emergency-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.emergency-button svg {
    width: 24px;
    height: 24px;
}

.service-areas.contact-page-areas {
    background-color: #F9F9F9;
}

.faq-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background-color: #F9F9F9;
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.faq-item p {
    color: #787878;
    font-size: 0.95rem;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.375rem; }
    
    #hero h1 {
        font-size: 2.5rem;
    }
    
    .service-detail {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 1rem;
        transition: right 250ms ease-out;
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        font-size: 1rem;
        padding: 0.75rem 0;
    }
    
    /* Hero Section */
    #hero {
        flex-direction: column;
        min-height: auto;
    }
    
    .hero-content {
        width: 100%;
        padding: 3rem 0;
        order: 2;
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        height: 300px;
        order: 1;
    }
    
    #hero h1 {
        font-size: 2rem;
    }
    
    .value-statement {
        font-size: 1.25rem;
    }
    
    .phone-number {
        font-size: 1.25rem;
    }
    
    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Service Details */
    .service-detail {
        grid-template-columns: 1fr;
    }
    
    .service-detail.reverse {
        direction: ltr;
    }
    
    .service-detail.reverse > * {
        direction: ltr;
    }
    
    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
    }
    
    /* FAQ Grid */
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    /* Cookie Banner */
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .service-cards-container,
    .blog-posts-container {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Reduced Motion
   ========================================================================== */
@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;
    }
    
    .process-step {
        opacity: 1;
        transform: none;
    }
    
    .cookie-banner {
        animation: none;
        transform: none;
        opacity: 1;
    }
}

/* ==========================================================================
   Focus States for Accessibility
   ========================================================================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #000000;
    outline-offset: 2px;
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
    .top-bar,
    .mobile-menu-toggle,
    .cookie-banner,
    footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    a {
        text-decoration: underline;
    }
    
    .hero-image,
    .about-image,
    .service-detail-image {
        max-width: 50%;
    }
}