/*
Theme Name: Mould Removal Marylebone
Theme URI: https://mouldremovalmarylebone.co.uk
Author: Professional Web Design
Description: Modern, professional WordPress theme for Mould Removal Marylebone. Features mould-related color palette, creative sections, and unique service pages with British English content. Compatible with Bricks Builder.
Version: 2.1.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mouldremovalmarylebone
Tags: mould-removal, cleaning-services, responsive, custom-colors, custom-menu, featured-images
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
*/

/* ========================================
   CSS VARIABLES
======================================== */
:root {
    /* Primary Colors - Forest Green Palette */
    --color-forest: #1B4332;
    --color-teal: #2D6A4F;
    --color-sage: #40916C;
    --color-darkslate: #1E2D2F;
    --color-aqua: #52B788;
    --color-light-sage: #74C69D;
    --color-pale-green: #B7E4C7;
    --color-mint: #D8F3DC;
    
    /* Neutral Colors */
    --color-white: #ffffff;
    --color-gray-50: #F8FAF9;
    --color-gray-100: #f3f4f6;
    --color-gray-300: #d1d5db;
    --color-gray-500: #6b7280;
    --color-gray-700: #374151;
    --color-gray-900: #111827;
    
    /* Typography */
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-darkslate);
    background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-forest);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.125rem, 2vw, 1.25rem); }

p {
    margin-bottom: 1rem;
    color: var(--color-teal);
}

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

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

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

/* ========================================
   LAYOUT
======================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container { padding: 0 1.5rem; }
}

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

.section {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

/* ========================================
   HEADER & NAVIGATION
======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all var(--transition-base);
}

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

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.site-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
    transition: color var(--transition-base);
}

.site-header.scrolled .site-title {
    color: var(--color-forest);
}

.site-description {
    font-size: 0.75rem;
    color: var(--color-pale-green);
    margin: 0;
    transition: color var(--transition-base);
}

.site-header.scrolled .site-description {
    color: var(--color-aqua);
}

.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition-fast);
}

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

.site-header.scrolled .main-navigation a {
    color: var(--color-darkslate);
}

.site-header.scrolled .main-navigation a:hover {
    color: var(--color-aqua);
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-navigation {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--color-forest);
        padding: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }
    
    .main-navigation.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-navigation a {
        color: var(--color-white);
    }
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-teal) 100%);
    color: var(--color-white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-sage) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(27, 67, 50, 0.3);
    color: var(--color-white);
}

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

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, 
        rgba(27, 67, 50, 0.95), 
        rgba(27, 67, 50, 0.8), 
        rgba(27, 67, 50, 0.6)
    );
}

.hero-floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-circle:nth-child(1) {
    width: 80px;
    height: 80px;
    background: rgba(82, 183, 136, 0.2);
    top: 25%;
    left: 2.5rem;
}

.floating-circle:nth-child(2) {
    width: 128px;
    height: 128px;
    background: rgba(64, 145, 108, 0.2);
    bottom: 25%;
    right: 2.5rem;
    animation-delay: 2s;
}

.floating-circle:nth-child(3) {
    width: 64px;
    height: 64px;
    background: rgba(116, 198, 157, 0.2);
    top: 33%;
    right: 25%;
    animation-delay: 4s;
}

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

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--color-aqua);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title span {
    display: block;
    color: var(--color-aqua);
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    color: var(--color-aqua);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator-inner {
    width: 32px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
}

.scroll-indicator-dot {
    width: 4px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
}

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

/* ========================================
   STATS SECTION
======================================== */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(to right, 
        var(--color-forest), 
        var(--color-teal), 
        var(--color-forest)
    );
}

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

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--color-pale-green);
}

/* ========================================
   SERVICES SECTION
======================================== */
.services-section {
    background: var(--color-gray-50);
}

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

.service-card {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.service-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: all 0.5s;
}

.service-card:hover .service-card-image img {
    opacity: 1;
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(27, 67, 50, 0.95), rgba(27, 67, 50, 0.7), transparent);
    z-index: 5;
}

.service-card-icon {
    width: 32px;
    height: 32px;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.service-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-card-body {
    padding: 1.25rem;
    background: var(--color-white);
}

.service-card-description {
    font-size: 0.875rem;
    color: var(--color-teal);
    margin-bottom: 0.75rem;
}

.service-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.service-card-feature {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: var(--color-mint);
    color: var(--color-forest);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
}

.service-card-link {
    display: block;
    width: 100%;
    padding: 0.75rem;
    text-align: center;
    color: var(--color-aqua);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.service-card-link:hover {
    background: var(--color-mint);
    color: var(--color-sage);
}

/* ========================================
   ABOUT SECTION
======================================== */
.about-section {
    overflow: hidden;
}

.about-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image-wrapper {
    position: relative;
}

.about-image-decoration-1 {
    position: absolute;
    top: -2.5rem;
    left: -2.5rem;
    width: 160px;
    height: 160px;
    background: var(--color-mint);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

.about-image-decoration-2 {
    position: absolute;
    bottom: -2.5rem;
    right: -2.5rem;
    width: 128px;
    height: 128px;
    background: var(--color-pale-green);
    border-radius: 50%;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(82, 183, 136, 0.3); }
    50% { box-shadow: 0 0 40px rgba(82, 183, 136, 0.6); }
}

.about-image {
    position: relative;
    z-index: 10;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.about-content .badge {
    margin-bottom: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--color-mint);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-forest);
}

.about-feature-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-forest);
    margin-bottom: 0.25rem;
}

.about-feature-text {
    font-size: 0.75rem;
    color: var(--color-teal);
    margin: 0;
}

/* ========================================
   WHY CHOOSE US SECTION
======================================== */
.why-choose-section {
    position: relative;
    background: linear-gradient(135deg, 
        var(--color-forest), 
        var(--color-teal), 
        var(--color-forest)
    );
    overflow: hidden;
}

.why-choose-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.why-choose-pattern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose-grid {
    position: relative;
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-choose-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    text-align: center;
}

.why-choose-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-aqua);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-choose-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-white);
}

.why-choose-title {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.why-choose-text {
    color: var(--color-pale-green);
    margin: 0;
}

/* ========================================
   PROCESS SECTION
======================================== */
.process-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    position: relative;
}

.process-step-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-mint);
    margin-bottom: 1rem;
}

.process-step-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-xl);
    background: var(--color-forest);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.process-step-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-white);
}

.process-step-title {
    font-size: 1.25rem;
    color: var(--color-forest);
    margin-bottom: 0.5rem;
}

.process-step-text {
    color: var(--color-teal);
    margin: 0;
}

.process-connector {
    display: none;
}

@media (min-width: 768px) {
    .process-connector {
        display: block;
        position: absolute;
        top: 2rem;
        right: -1.5rem;
        width: 3rem;
        border-top: 2px dashed var(--color-aqua);
    }
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials-grid {
    display: grid;
    gap: 2rem;
}

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

.testimonial-card {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.testimonial-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 128px;
    height: 128px;
    background: var(--color-mint);
    border-bottom-left-radius: 50%;
}

.testimonial-content {
    position: relative;
    padding: 1.5rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.testimonial-star {
    width: 20px;
    height: 20px;
    color: var(--color-aqua);
    fill: var(--color-aqua);
}

.testimonial-name {
    font-size: 1.125rem;
    color: var(--color-forest);
    margin-bottom: 0.25rem;
}

.testimonial-location {
    font-size: 0.875rem;
    color: var(--color-aqua);
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--color-teal);
    font-style: italic;
    margin: 0;
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    position: relative;
    background: linear-gradient(to right, 
        var(--color-aqua), 
        var(--color-sage), 
        var(--color-teal)
    );
    overflow: hidden;
}

.cta-decoration-1 {
    position: absolute;
    top: 0;
    left: 25%;
    width: 256px;
    height: 256px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(3rem);
}

.cta-decoration-2 {
    position: absolute;
    bottom: 0;
    right: 25%;
    width: 256px;
    height: 256px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(3rem);
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

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

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

.cta-buttons .btn-secondary:hover {
    background: var(--color-teal);
    color: var(--color-white);
}

/* ========================================
   CONTACT SECTION
======================================== */
.contact-section {
    background: var(--color-darkslate);
}

.contact-grid {
    display: grid;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info .badge {
    margin-bottom: 1rem;
}

.contact-info h2 {
    color: var(--color-white);
}

.contact-info > p {
    color: var(--color-pale-green);
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--color-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-aqua);
}

.contact-item-title {
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.contact-item-text {
    color: var(--color-pale-green);
    margin-bottom: 0.25rem;
}

.contact-item-note {
    font-size: 0.75rem;
    color: var(--color-aqua);
    margin: 0;
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(45, 59, 61, 1);
    border-radius: var(--radius-2xl);
    padding: 2rem;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--color-darkslate);
    border: 1px solid rgba(63, 79, 81, 1);
    border-radius: var(--radius-md);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--color-gray-500);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-aqua);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
}

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

/* ========================================
   FOOTER
======================================== */
.site-footer {
    background: linear-gradient(135deg, var(--color-darkslate), var(--color-forest));
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-branding {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--color-pale-green);
    margin: 0;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    font-size: 0.875rem;
    color: var(--color-mint);
    transition: color var(--transition-fast);
}

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

.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-aqua), transparent);
    margin-bottom: 2rem;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--color-mint);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.875rem;
    color: var(--color-mint);
}

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

/* ========================================
   BADGES
======================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-primary {
    background: var(--color-mint);
    color: var(--color-forest);
}

.badge-white {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

.badge-dark {
    background: var(--color-teal);
    color: var(--color-white);
}

/* ========================================
   SERVICE PAGE STYLES
======================================== */
.service-page-hero {
    position: relative;
    padding-top: 120px;
    padding-bottom: 4rem;
    overflow: hidden;
}

.service-page-hero-bg {
    position: absolute;
    inset: 0;
}

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

.service-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--color-forest), var(--color-teal), var(--color-forest));
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--color-pale-green);
    font-size: 0.875rem;
}

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

.breadcrumb span {
    color: var(--color-white);
    font-size: 0.875rem;
}

.service-page-content {
    position: relative;
    z-index: 10;
}

/* ========================================
   UTILITIES
======================================== */
.text-center { text-align: center; }
.text-white { color: var(--color-white); }
.text-forest { color: var(--color-forest); }
.text-teal { color: var(--color-teal); }
.text-aqua { color: var(--color-aqua); }

.bg-white { background-color: var(--color-white); }
.bg-gray-50 { background-color: var(--color-gray-50); }
.bg-forest { background-color: var(--color-forest); }
.bg-teal { background-color: var(--color-teal); }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 0.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden { display: none; }

@media (min-width: 640px) {
    .sm\:hidden { display: none; }
    .sm\:block { display: block; }
}

@media (min-width: 768px) {
    .md\:hidden { display: none; }
    .md\:block { display: block; }
    .md\:flex { display: flex; }
}

@media (min-width: 1024px) {
    .lg\:hidden { display: none; }
    .lg\:block { display: block; }
    .lg\:flex { display: flex; }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

/* Animation Delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }

/* ========================================
   RESPONSIVE ADJUSTMENTS
======================================== */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .stats-section {
        padding: 2rem 0;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .hero-section,
    .cta-section,
    .site-footer {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
}
