/* A2Z Tree Service — Redesign
   Color system: forest greens + orange accent
   Typography: Libre Baskerville headings, system body */

/* ==================== RESET ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==================== TOKENS ==================== */
:root {
    --forest: #1a4d32;
    --forest-dark: #143f28;
    --forest-deep: #0e2e1c;
    --accent: #ea580c;
    --accent-light: #f17432;
    --accent-glow: #ff8c42;
    --cream: #FDFBF7;
    --sage: #EDF4ED;
    --charcoal: #2C3E50;
    --warm-gray: #6B7280;
    --light-gray: #E5E7EB;
    --white: #ffffff;

    --font-heading: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    --container: 1100px;
    --radius: 8px;
    --radius-sm: 4px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --transition: 0.25s ease;
}

/* ==================== BASE ==================== */
body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--forest);
}

a {
    color: var(--forest);
    transition: color var(--transition);
}

a:hover {
    color: var(--accent);
}

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== SCROLL ANIMATIONS ==================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== HEADER ==================== */
header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--forest);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    flex-wrap: wrap;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest);
    letter-spacing: -0.01em;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.tagline {
    font-size: 0.75rem;
    color: var(--warm-gray);
    margin-top: -2px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: color var(--transition), border-color var(--transition);
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: var(--forest);
    border-bottom-color: var(--accent);
}

.contact-header .phone-btn {
    background: var(--forest);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

.contact-header .phone-btn:hover {
    background: var(--forest-dark);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(26, 77, 50, 0.3);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    order: 3;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: transform var(--transition);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .logo {
        order: 1;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    p.tagline {
        display: none !important;
    }

    .contact-header {
        order: 2;
    }

    .contact-header .phone-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .nav-links {
        display: none;
        width: 100%;
        order: 4;
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0;
        border-top: 1px solid var(--light-gray);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 12px 0;
        border-bottom: none;
        width: 100%;
    }
}

/* ==================== BUTTONS ==================== */
.btn-primary {
    background: var(--forest);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: background var(--transition), box-shadow var(--transition);
    display: inline-block;
    border: 2px solid var(--forest);
}

.btn-primary:hover {
    background: var(--forest-dark);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(26, 77, 50, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--forest);
    padding: 14px 32px;
    border: 2px solid var(--forest);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: background var(--transition), color var(--transition);
    display: inline-block;
}

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

/* ==================== HERO (Homepage) ==================== */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(14, 46, 28, 0.88) 0%,
        rgba(26, 77, 50, 0.75) 50%,
        rgba(26, 77, 50, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    padding: 4rem 24px;
    color: var(--white);
}

.hero-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.15;
    max-width: 600px;
}


/* Award logo */
.award-logo {
    height: 80px;
    width: auto;
    display: inline-block;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.award-logo-sm {
    height: 60px;
    width: auto;
    display: inline-block;
}

.hero-award {
    display: inline-block;
    margin-top: 1.5rem;
}

.hero-award a {
    display: inline-block;
    text-decoration: none;
}

.hero-award a:hover {
    text-decoration: underline;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 520px;
}

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

.hero .btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.hero .btn-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    box-shadow: 0 4px 16px rgba(234, 88, 12, 0.35);
}

.hero .btn-secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero .btn-secondary:hover {
    background: var(--white);
    color: var(--forest);
    border-color: var(--white);
}

@media (max-width: 768px) {
    .hero {
        min-height: 440px;
    }

    .hero-content {
        padding: 3rem 24px;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .award-logo {
        height: 64px;
    }

    .hero-award {
        margin-top: 1.25rem;
    }
}

/* ==================== SERVICES (Homepage) ==================== */
.services-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--warm-gray);
    max-width: 500px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--light-gray);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--forest);
    border-radius: var(--radius) var(--radius) 0 0;
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover {
    border-color: var(--forest);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card .service-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.service-card h3 {
    font-family: var(--font-heading);
    color: var(--forest);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-card p {
    color: var(--warm-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}

/* Services CTA */
.services-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ==================== PHOTO STRIP (Homepage) ==================== */
.photo-strip {
    padding: 4rem 0;
    background: var(--sage);
}

.photo-strip .section-header {
    margin-bottom: 2rem;
}

.photo-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
}

.photo-row img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    transition: opacity var(--transition);
    cursor: pointer;
}

.photo-row img:hover {
    opacity: 0.85;
}

.photo-strip-cta {
    text-align: center;
    margin-top: 1.5rem;
}

.photo-strip-cta a {
    font-weight: 600;
    color: var(--forest);
    text-decoration: none;
    font-size: 0.95rem;
}

.photo-strip-cta a:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .photo-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .photo-row img {
        height: 140px;
    }
}

@media (max-width: 480px) {
    .photo-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==================== ABOUT PREVIEW (Homepage) ==================== */
.about-preview {
    padding: 5rem 0;
    background: var(--white);
}

.about-preview-text {
    max-width: 640px;
}

.about-preview h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.about-preview p {
    font-size: 1.05rem;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.award-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.3);
}

.award-badge a {
    color: var(--white);
    text-decoration: none;
}



@media (max-width: 768px) {
    .about-preview {
        padding: 3.5rem 0;
    }

    .about-preview h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
}

/* ==================== EMERGENCY BANNER ==================== */
.emergency {
    background: var(--forest-deep);
    color: var(--white);
    padding: 3.5rem 0;
    text-align: center;
}

.emergency h2 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.emergency p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
}

.emergency a {
    color: var(--accent-glow);
    text-decoration: underline;
    font-weight: 700;
}

.emergency a:hover {
    color: var(--white);
}

/* ==================== PAGE HERO (Inner pages) ==================== */
.page-hero {
    background: var(--forest);
    padding: 3.5rem 0;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-hero .hero-subtitle {
    color: var(--accent-glow);
    font-size: 1rem;
    font-weight: 600;
}

/* ==================== WORK/GALLERY PAGE ==================== */
.work-gallery-page {
    padding: 3rem 0 5rem;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius);
    cursor: pointer;
    transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
}

.gallery-grid img:hover {
    opacity: 0.9;
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .gallery-grid img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid img {
        height: 250px;
    }
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.94);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 85vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    user-select: none;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    opacity: 0.7;
    transition: opacity var(--transition);
    z-index: 2001;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem 1.25rem;
    opacity: 0.7;
    transition: opacity var(--transition), background var(--transition);
    user-select: none;
    z-index: 2001;
    border-radius: var(--radius);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
    background: rgba(255,255,255,0.15);
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .lightbox-prev, .lightbox-next {
        font-size: 1.5rem;
        padding: 0.75rem 1rem;
    }

    .lightbox-img {
        max-width: 95vw;
        max-height: 80vh;
    }
}

/* ==================== ABOUT PAGE ==================== */
.team-section {
    padding: 4rem 0;
    background: var(--white);
}

.about-text-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-text-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.about-text-content p {
    font-size: 1.05rem;
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-story {
    padding: 4rem 0;
    background: var(--sage);
}

.testimonial {
    border-left: 3px solid var(--accent);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--white);
    border-radius: 0 var(--radius) var(--radius) 0;
    box-shadow: var(--shadow-sm);
}

.testimonial p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--charcoal);
    margin: 0;
}

.testimonial-source {
    font-size: 0.9rem;
    color: var(--warm-gray);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* ==================== CONTACT PAGE ==================== */
.contact-info {
    padding: 4rem 0;
    background: var(--white);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-method {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    background: var(--cream);
    border: 1px solid var(--light-gray);
}

.contact-method h2 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.contact-method p {
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.phone-link {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--forest);
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

/* Contact Form */
.contact-forms-section {
    padding: 3rem 0 5rem;
    background: var(--sage);
}

.contact-forms-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--forest);
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--charcoal);
    margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(26, 77, 50, 0.1);
}

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

.form-group small {
    display: block;
    margin-top: 0.35rem;
    color: var(--warm-gray);
    font-size: 0.8rem;
}

/* File upload styling */
.file-upload {
    position: relative;
    border: 2px dashed var(--light-gray);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
}

.file-upload:hover {
    border-color: var(--forest);
    background: var(--sage);
}

.file-upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload-label {
    color: var(--warm-gray);
    font-size: 0.9rem;
}

.file-upload-label strong {
    color: var(--forest);
}

.form-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success h3 {
    color: var(--forest);
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 4rem 0;
    background: var(--forest);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--accent);
    border-color: var(--accent);
}

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

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

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

/* ==================== SERVICE AREA ==================== */
.service-area {
    padding: 3.5rem 0;
    background: var(--white);
}

.service-area h2 {
    text-align: center;
    margin-bottom: 0.75rem;
    font-size: 1.75rem;
}

.service-area > .container > p {
    text-align: center;
    color: var(--warm-gray);
    margin-bottom: 2rem;
}

.areas-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.area-list ul {
    list-style: none;
}

.area-list li {
    padding: 0.4rem 0;
    color: var(--charcoal);
    font-size: 1rem;
    position: relative;
    padding-left: 1.25rem;
}

.area-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ==================== FOOTER ==================== */
footer {
    background: var(--forest-deep);
    color: rgba(255, 255, 255, 0.75);
    padding-top: 3.5rem;
}

.footer-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px 2.5rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
}

.footer-section h3 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.footer-section h4 {
    color: var(--accent-glow);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    color: var(--accent-glow);
}

.footer-section p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-section a:hover {
    color: var(--accent-glow);
}

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

.footer-section li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-award {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(234, 88, 12, 0.2);
    border: 1px solid rgba(196, 151, 42, 0.3);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-glow);
    margin-top: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: var(--container);
    margin: 0 auto;
    padding: 1.25rem 24px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ==================== 404 PAGE ==================== */
.error-page {
    padding: 5rem 0;
    text-align: center;
    background: var(--cream);
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.error-page h2 {
    font-size: 5rem;
    color: var(--light-gray);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.error-page p {
    font-size: 1.1rem;
    color: var(--warm-gray);
    margin-bottom: 2rem;
}

.error-page .error-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== SERVICES DETAIL PAGE ==================== */
.services-detail {
    padding: 4rem 0;
    background: var(--white);
}

.services-detail .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-detail-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: var(--radius);
    border-left: 3px solid var(--forest);
}

.service-detail-card h3 {
    font-family: var(--font-heading);
    color: var(--forest);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.service-detail-card p {
    color: var(--charcoal);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-detail-card ul {
    list-style: none;
    padding: 0;
}

.service-detail-card li {
    padding: 0.3rem 0;
    color: var(--charcoal);
    font-size: 0.9rem;
    padding-left: 1.25rem;
    position: relative;
}

.service-detail-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--forest);
    font-weight: 700;
}

@media (max-width: 768px) {
    .services-detail .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact page value emphasis */
.contact-value {
    font-weight: 600;
}

/* Full-width button variant */
.btn-full {
    width: 100%;
    text-align: center;
}
