/* ==========================================
   BLOOM LOCAL - MODERN FARMHOUSE DESIGN
   Creative & Interactive UI
   ========================================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Modern Farmhouse Color Palette */
    --cream: #FAF8F3;
    --warm-white: #FEFDFB;
    --soft-beige: #E8E4DC;
    --sage-green: #A8B89A;
    --deep-sage: #7B8C6A;
    --charcoal: #3A3A3A;
    --warm-gray: #7A7A7A;
    --accent-terracotta: #D4A373;
    --soft-gold: #C9B382;
    --pure-white: #FFFFFF;
    --deep-navy: #2C3E50;

    /* Brand Accent Colors */
    --slate-blue: #5B6478;
    --bronze-gold: #B59663;

    /* Gradients */
    --gradient-sage: linear-gradient(135deg, #A8B89A 0%, #7B8C6A 100%);
    --gradient-cream: linear-gradient(135deg, #FAF8F3 0%, #E8E4DC 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(168, 184, 154, 0.9) 0%, rgba(123, 140, 106, 0.85) 100%);

    /* Glass effect */
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);

    /* Shadows */
    --shadow-soft: 0 8px 32px rgba(58, 58, 58, 0.08);
    --shadow-medium: 0 12px 48px rgba(58, 58, 58, 0.12);
    --shadow-large: 0 20px 60px rgba(58, 58, 58, 0.15);
    --shadow-floating: 0 25px 50px rgba(58, 58, 58, 0.2);

    /* Typography - Reduced to 2 fonts for performance */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Raleway', sans-serif;
    --font-accent: 'Playfair Display', serif; /* Consolidated from Cormorant Garamond */

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 32px;
    --space-lg: 64px;
    --space-xl: 96px;
    --space-xxl: 128px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 999px;
}

/* ==========================================
   DARK MODE THEME
   ========================================== */

/* Dark Mode Variables */
[data-theme="dark"] {
    --cream: #1a1a1a;
    --warm-white: #121212;
    --soft-beige: #2a2a2a;
    --sage-green: #8BA87E;
    --deep-sage: #6A7D5E;
    --charcoal: #e8e8e8;
    --warm-gray: #b0b0b0;
    --accent-terracotta: #e5b896;
    --soft-gold: #dac594;
    --pure-white: #1e1e1e;
    --deep-navy: #c4d4e2;

    /* Brand Accent Colors - Dark Mode */
    --slate-blue: #7A8699;
    --bronze-gold: #C9A876;

    /* Dark gradients */
    --gradient-sage: linear-gradient(135deg, #8BA87E 0%, #6A7D5E 100%);
    --gradient-cream: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(139, 168, 126, 0.9) 0%, rgba(106, 125, 94, 0.85) 100%);

    /* Dark glass effect */
    --glass-bg: rgba(30, 30, 30, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Dark shadows */
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 12px 48px rgba(0, 0, 0, 0.4);
    --shadow-large: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-floating: 0 25px 50px rgba(0, 0, 0, 0.6);
}

/* System preference detection (when no explicit theme set) */
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --cream: #1a1a1a;
        --warm-white: #121212;
        --soft-beige: #2a2a2a;
        --sage-green: #8BA87E;
        --deep-sage: #6A7D5E;
        --charcoal: #e8e8e8;
        --warm-gray: #b0b0b0;
        --accent-terracotta: #e5b896;
        --soft-gold: #dac594;
        --pure-white: #1e1e1e;
        --deep-navy: #c4d4e2;

        /* Brand Accent Colors - Dark Mode */
        --slate-blue: #7A8699;
        --bronze-gold: #C9A876;

        --gradient-sage: linear-gradient(135deg, #8BA87E 0%, #6A7D5E 100%);
        --gradient-cream: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
        --gradient-overlay: linear-gradient(135deg, rgba(139, 168, 126, 0.9) 0%, rgba(106, 125, 94, 0.85) 100%);

        --glass-bg: rgba(30, 30, 30, 0.7);
        --glass-border: rgba(255, 255, 255, 0.1);

        --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.3);
        --shadow-medium: 0 12px 48px rgba(0, 0, 0, 0.4);
        --shadow-large: 0 20px 60px rgba(0, 0, 0, 0.5);
        --shadow-floating: 0 25px 50px rgba(0, 0, 0, 0.6);
    }
}

/* Dark mode navbar adjustments */
[data-theme="dark"] .navbar {
    background: #1a1a1a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .navbar {
        background: #1a1a1a;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

[data-theme="dark"] .navbar.scrolled {
    background: #1a1a1a;
}

/* Dark mode form inputs */
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
    background: #2a2a2a;
    border-color: #3a3a3a;
    color: #e8e8e8;
}

[data-theme="dark"] .form-group select option {
    color: #e8e8e8;
    background: #2a2a2a;
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group select:focus,
[data-theme="dark"] .form-group textarea:focus {
    background: #1e1e1e;
    border-color: var(--sage-green);
}

[data-theme="dark"] .form-group input::placeholder,
[data-theme="dark"] .form-group textarea::placeholder {
    color: #808080;
}

/* Dark mode contact section */
[data-theme="dark"] .contact {
    background: #1a1a1a;
}

/* Dark mode contact form */
[data-theme="dark"] .contact-form {
    background: #1e1e1e;
    border-color: rgba(90, 156, 109, 0.2);
}

/* Dark mode form labels */
[data-theme="dark"] .form-group label {
    color: #e8e8e8;
}

/* Dark mode address section */
[data-theme="dark"] .address-section {
    background: #2a2a2a;
    border-color: #3a3a3a;
}

[data-theme="dark"] .address-toggle p {
    color: #a0a0a0 !important;
}

/* Dark mode service detail fields */
[data-theme="dark"] .service-detail-fields {
    background: rgba(90, 156, 109, 0.1);
    border-color: rgba(90, 156, 109, 0.3);
}

[data-theme="dark"] .service-fields-header {
    color: #7ab88a;
    border-bottom-color: rgba(90, 156, 109, 0.3);
}

/* Dark mode checkbox labels */
[data-theme="dark"] .checkbox-label {
    color: #e8e8e8;
}

/* Dark mode contact info text */
[data-theme="dark"] .contact-info h3 {
    color: #e8e8e8;
}

[data-theme="dark"] .contact-item-text h4 {
    color: #e8e8e8;
}

[data-theme="dark"] .contact-item-text p,
[data-theme="dark"] .contact-item-text a {
    color: #b0b0b0;
}

[data-theme="dark"] .contact-item-text a:hover {
    color: var(--bronze-gold);
}

/* Dark mode footer */
[data-theme="dark"] .footer {
    background: #3D4452;
}

[data-theme="dark"] .footer-section h3 {
    color: #e8e8e8;
}

[data-theme="dark"] .footer-section p,
[data-theme="dark"] .footer-section ul li a,
[data-theme="dark"] .footer-section a,
[data-theme="dark"] .footer-bottom {
    color: #b0b0b0;
}

[data-theme="dark"] .footer-section ul li a:hover,
[data-theme="dark"] .footer-section a:hover,
[data-theme="dark"] .footer-bottom a:hover {
    color: var(--bronze-gold);
}

/* Dark mode service cards */
[data-theme="dark"] .service-card {
    background: #1e1e1e;
    border-color: rgba(90, 156, 109, 0.2);
}

/* Dark mode feature cards */
[data-theme="dark"] .feature {
    background: #1e1e1e;
}

/* Dark mode gallery section */
[data-theme="dark"] .gallery {
    background: #1e1e1e;
}

[data-theme="dark"] .gallery-item {
    background: #2a2a2a;
}

[data-theme="dark"] .filter-btn {
    background: #2a2a2a;
    border-color: #3a3a3a;
    color: #e8e8e8;
}

[data-theme="dark"] .filter-btn:hover,
[data-theme="dark"] .filter-btn.active {
    background: var(--gradient-sage);
    color: var(--pure-white);
    border-color: transparent;
}

/* Dark mode testimonial cards */
[data-theme="dark"] .testimonial-card {
    background: rgba(30, 30, 30, 0.7);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Dark mode contact info */
[data-theme="dark"] .contact-info {
    background: #1a1a1a;
}

/* Dark mode sticky contact */
[data-theme="dark"] .sticky-option {
    background: #2a2a2a;
    color: #e8e8e8;
}

/* Dark mode privacy modal */
[data-theme="dark"] .privacy-modal-content {
    background: #1e1e1e;
    color: #e8e8e8;
}

[data-theme="dark"] .privacy-modal-content h2,
[data-theme="dark"] .privacy-modal-content h3 {
    color: #5a9c6d;
}

/* Theme toggle button */
.theme-toggle {
    background: transparent;
    border: 1px solid var(--charcoal);
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    color: var(--charcoal);
    font-size: 1.1rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.theme-toggle:hover {
    background: var(--soft-beige);
    border-color: var(--sage-green);
    color: var(--sage-green);
}

.theme-toggle:focus-visible {
    outline: 3px solid var(--sage-green);
    outline-offset: 2px;
}

[data-theme="dark"] .theme-toggle {
    border-color: #4a4a4a;
    color: #e8e8e8;
}

[data-theme="dark"] .theme-toggle:hover {
    background: #2a2a2a;
    border-color: var(--sage-green);
    color: var(--sage-green);
}

/* Dark mode hero section */
[data-theme="dark"] .hero-title {
    color: #e8e8e8;
}

[data-theme="dark"] .hero-subtitle {
    color: #a0a0a0;
}

[data-theme="dark"] .hero-label {
    background: rgba(90, 156, 109, 0.2);
    border-color: rgba(90, 156, 109, 0.4);
    color: #7ab88a;
}

/* Dark mode section titles */
[data-theme="dark"] .section-title {
    color: #e8e8e8;
}

[data-theme="dark"] .section-subtitle {
    color: #a0a0a0;
}

/* Dark mode about section */
[data-theme="dark"] .about {
    background: #1e1e1e;
}

[data-theme="dark"] .about-text p {
    color: #c0c0c0;
}

/* Dark mode services section */
[data-theme="dark"] .services {
    background: #1a1a1a;
}

[data-theme="dark"] .service-content h3 {
    color: #e8e8e8;
}

[data-theme="dark"] .service-content p {
    color: #a0a0a0;
}

/* Dark mode buttons */
[data-theme="dark"] .btn-secondary {
    background: rgba(90, 156, 109, 0.15);
    border: 2px solid var(--sage-green);
    color: #7ab88a;
}

[data-theme="dark"] .btn-secondary:hover {
    background: var(--sage-green);
    color: #1a1a1a;
    border-color: var(--sage-green);
}

/* System dark mode preference - button styles */
@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .btn-secondary {
        background: rgba(90, 156, 109, 0.15);
        border: 2px solid var(--sage-green);
        color: #7ab88a;
    }

    :root:not([data-theme="light"]) .btn-secondary:hover {
        background: var(--sage-green);
        color: #1a1a1a;
        border-color: var(--sage-green);
    }
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    line-height: 1.75;
    background-color: var(--warm-white);
    font-weight: 300;
    overflow-x: hidden;
}

/* Organic Background Shapes */
body::before {
    content: '';
    position: fixed;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(156, 175, 136, 0.08) 0%, transparent 70%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: -1;
    animation: float 20s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.06) 0%, transparent 70%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: -1;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(5deg); }
    50% { transform: translate(-10px, 10px) rotate(-3deg); }
    75% { transform: translate(15px, 15px) rotate(2deg); }
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--slate-blue);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--bronze-gold) 0%, #9A7D4E 100%);
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--warm-gray);
    font-family: var(--font-accent);
    font-style: italic;
    margin-bottom: var(--space-lg);
}

/* Modern Glassmorphism Buttons */
.btn {
    display: inline-block;
    padding: 18px 48px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--bronze-gold) 0%, #9A7D4E 100%);
    color: var(--pure-white);
    box-shadow: var(--shadow-soft);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-floating);
}

.btn-primary:focus-visible {
    outline: 3px solid var(--pure-white);
    outline-offset: 2px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: var(--pure-white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
    background: var(--pure-white);
    color: var(--deep-sage);
    border-color: var(--pure-white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary:focus-visible {
    outline: 3px solid var(--charcoal);
    outline-offset: 2px;
}

/* Sticky Navigation with Blur */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 248, 243, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(58, 58, 58, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(250, 248, 243, 0.95);
    box-shadow: var(--shadow-soft);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 90px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    border-radius: 50%;
    background: transparent;
    margin-left: -10px;
}

.logo-text {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--charcoal);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 12px 8px;
    display: inline-flex;
    align-items: center;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--bronze-gold) 0%, #9A7D4E 100%);
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: var(--radius-full);
}

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

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

.nav-link:focus-visible {
    outline: 3px solid var(--bronze-gold);
    outline-offset: 4px;
}

.nav-link.contact-btn {
    background: linear-gradient(135deg, var(--bronze-gold) 0%, #9A7D4E 100%);
    color: var(--pure-white) !important;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-soft);
    font-size: 0.95rem;
}

.nav-link.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: var(--pure-white) !important;
}

.nav-link.contact-btn:focus-visible {
    outline: 3px solid var(--pure-white);
    outline-offset: 2px;
}

.nav-link.contact-btn::after {
    display: none;
}

/* Admin Link in Nav */
.admin-link {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(91, 100, 120, 0.15);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    color: var(--slate-blue) !important;
    font-size: 0.9rem;
}

.admin-link:hover {
    background: rgba(91, 100, 120, 0.25);
}

.admin-link::after {
    display: none;
}

.admin-link i {
    font-size: 0.85rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--charcoal);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

/* Split-Screen Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-lg);
    padding-top: 100px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 40%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(156, 175, 136, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
    z-index: 0;
}

.hero-content {
    z-index: 1;
    padding: var(--space-lg);
}

/* Welcome Back Badge (Return Visitors) */
.welcome-back-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--soft-gold) 0%, var(--accent-terracotta) 100%);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: white;
    margin-bottom: var(--space-sm);
    animation: fadeInSlide 0.6s ease forwards;
    font-weight: 500;
}

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

.hero-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    color: var(--deep-sage);
    margin-bottom: var(--space-md);
    animation: fadeIn 1s ease 0.2s backwards;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: var(--space-md);
    color: var(--charcoal);
    animation: fadeIn 1s ease 0.4s backwards;
}

.hero-title .highlight {
    color: var(--deep-sage);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(156, 175, 136, 0.2);
    z-index: -1;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--warm-gray);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    font-family: var(--font-body);
    animation: fadeIn 1s ease 0.6s backwards;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    animation: fadeIn 1s ease 0.8s backwards;
}

.hero-image {
    position: relative;
    height: 600px;
    z-index: 1;
    animation: fadeIn 1s ease 0.5s backwards;
}

.hero-image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 80%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-large);
    background: var(--gradient-cream);
}

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

.hero-image-float {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 40%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-floating);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    animation: float 6s ease-in-out infinite;
}

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

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

/* ==========================================
   SEASONAL BANNER
   ========================================== */
.seasonal-banner {
    background: var(--gradient-sage);
    color: white;
    padding: var(--space-sm) 0;
    position: relative;
    z-index: 100;
}

.seasonal-banner.emergency {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    animation: emergencyPulse 3s ease-in-out infinite;
}

@keyframes emergencyPulse {
    0%, 100% { box-shadow: inset 0 0 0 0 rgba(255,255,255,0); }
    50% { box-shadow: inset 0 0 20px 5px rgba(255,255,255,0.1); }
}

.seasonal-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.seasonal-banner-text {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex: 1;
}

.seasonal-banner-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.seasonal-banner-headline {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
}

.seasonal-banner-services {
    font-size: 0.9rem;
    opacity: 0.9;
}

.seasonal-banner-cta {
    background: white;
    color: var(--deep-sage);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.seasonal-banner-cta:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-soft);
}

.seasonal-banner.emergency .seasonal-banner-cta {
    color: #dc3545;
}

.seasonal-banner-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.seasonal-banner-close:hover {
    background: rgba(255,255,255,0.3);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .seasonal-banner-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }

    .seasonal-banner-text {
        flex-direction: column;
        gap: var(--space-xs);
    }

    .seasonal-banner-headline {
        font-size: 1.1rem;
    }

    .seasonal-banner-services {
        font-size: 0.85rem;
    }

    .seasonal-banner-close {
        position: absolute;
        top: 10px;
        right: 10px;
    }
}

/* About Section with Diagonal Split */
.about {
    position: relative;
    padding: var(--space-xxl) 0;
    background: var(--gradient-cream);
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    margin-top: -80px;
    margin-bottom: -80px;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    padding: var(--space-lg) 0;
}

.about-text {
    position: relative;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.feature {
    background: var(--pure-white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-sage);
    transition: height 0.4s ease;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.feature:hover::before {
    height: 100%;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-text h3 {
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

.about-image {
    position: relative;
    height: 500px;
}

.about-image-main {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-main:hover img {
    transform: scale(1.1);
}

.about-decorative {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--gradient-sage);
    border-radius: 50%;
    opacity: 0.15;
    z-index: -1;
}

/* Bento Box Services Grid */
.services {
    padding: var(--space-xxl) 0;
    background: var(--warm-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(420px, auto);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.service-card {
    background: var(--pure-white);
    padding: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(156, 175, 136, 0.1);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    flex: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-sage);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

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

/* All service cards now uniform size */

.service-card:hover {
    transform: translateY(-12px) rotate(1deg);
    box-shadow: var(--shadow-floating);
    border-color: var(--bronze-gold);
}

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

.service-icon {
    font-size: 3.5rem;
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
    color: var(--sage-green);
}

.service-icon i {
    font-size: 3.5rem;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(-10deg);
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--slate-blue);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

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

/* Gallery with Masonry Style */
.gallery {
    padding: var(--space-xxl) 0;
    background: var(--cream);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 14px 32px;
    background: var(--pure-white);
    border: 2px solid var(--soft-beige);
    border-radius: var(--radius-full);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--charcoal);
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-sage);
    color: var(--pure-white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-medium);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 30%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: var(--pure-white);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.gallery-overlay p {
    color: var(--pure-white);
    opacity: 0.9;
    font-size: 0.85rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.gallery-item.hidden {
    display: none;
}

/* Large gallery item (for featured/before-after) */
.gallery-item--large {
    grid-column: span 2;
    grid-row: span 1;
}

@media (max-width: 768px) {
    .gallery-item--large {
        grid-column: span 1;
    }
}

/* Gallery Tags */
.gallery-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.gallery-tags .tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--pure-white);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================
   BEFORE/AFTER SLIDER
   ========================================== */

.before-after-container {
    aspect-ratio: 16/9;
}

.before-after-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
}

.before-after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.before-after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.before-image {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.after-image {
    z-index: 1;
}

/* Before/After Labels */
.before-after-label {
    position: absolute;
    top: 16px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    pointer-events: none;
}

.before-image .before-after-label {
    left: 16px;
}

.after-image .before-after-label {
    right: 16px;
}

/* Slider Handle */
.before-after-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
}

.handle-line {
    flex: 1;
    width: 3px;
    background: var(--pure-white);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.handle-circle {
    width: 48px;
    height: 48px;
    background: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: var(--charcoal);
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform 0.2s ease, background 0.2s ease;
}

.before-after-handle:hover .handle-circle,
.before-after-slider:active .handle-circle {
    transform: scale(1.1);
    background: var(--sage-green);
    color: var(--pure-white);
}

/* Before/After overlay adjustments */
.before-after-container .gallery-overlay {
    z-index: 5;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
}

.before-after-container:hover .gallery-overlay {
    opacity: 1;
}

/* Testimonials with Glassmorphism */
.testimonials {
    padding: var(--space-xxl) 0;
    background: var(--gradient-sage);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.testimonials .section-title,
.testimonials .section-subtitle {
    color: var(--pure-white);
}

.testimonials .section-title::after {
    background: var(--pure-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.1);
    font-family: var(--font-heading);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.35);
    box-shadow: var(--shadow-medium);
}

.testimonial-rating {
    color: var(--soft-gold);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--pure-white);
    margin-bottom: var(--space-md);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    color: var(--pure-white);
    margin-bottom: 0.3rem;
    font-family: var(--font-accent);
}

.testimonial-author p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Testimonial Source Badges (for Google/Facebook reviews) */
.testimonial-source {
    display: inline-block;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.testimonial-source.google {
    background: rgba(66, 133, 244, 0.2);
    color: #8ab4f8;
    border: 1px solid rgba(66, 133, 244, 0.3);
}

.testimonial-source.facebook {
    background: rgba(24, 119, 242, 0.2);
    color: #7eb8ff;
    border: 1px solid rgba(24, 119, 242, 0.3);
}

.testimonial-source.manual {
    background: rgba(212, 163, 115, 0.2);
    color: var(--accent-terracotta);
    border: 1px solid rgba(212, 163, 115, 0.3);
}

/* Contact Section with Modern Layout */
.contact {
    padding: var(--space-xxl) 0;
    background: var(--warm-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.contact-info {
    background: var(--gradient-cream);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid rgba(156, 175, 136, 0.2);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item:hover {
    background: rgba(156, 175, 136, 0.08);
    transform: translateX(4px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-sage);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    line-height: 1;
}

.contact-item-text h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--warm-gray);
    margin-bottom: 2px;
    font-family: var(--font-body);
    font-weight: 600;
}

.contact-item-text p {
    margin: 0;
    color: var(--charcoal);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

.contact-item a {
    color: var(--deep-sage);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--sage-green);
}

/* Modern Contact Form */
.contact-form {
    background: var(--pure-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(156, 175, 136, 0.1);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--charcoal);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--soft-beige);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--charcoal);
    transition: all 0.3s ease;
    background: var(--warm-white);
}

.form-group select option {
    color: var(--charcoal);
    background: var(--pure-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage-green);
    background: var(--pure-white);
    box-shadow: 0 0 0 4px rgba(156, 175, 136, 0.1);
}

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

/* Service Selection Checkboxes */
.service-select-group {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.service-option {
    position: relative;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 14px 16px;
    gap: 8px;
    border-radius: 12px;
    border: 2px solid var(--soft-beige);
    transition: all 0.25s ease;
}

.service-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.service-icon {
    font-size: 1.5rem;
    color: var(--warm-gray);
    transition: color 0.25s ease, transform 0.25s ease;
}

.service-option span {
    font-size: 0.88rem;
    line-height: 1.3;
}

/* Circle check indicator */
.service-option::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--soft-beige);
    transition: all 0.25s ease;
}

.service-option:hover {
    border-color: var(--bronze-gold);
    background: rgba(181, 150, 99, 0.04);
}

.service-option:hover .service-icon {
    color: var(--bronze-gold);
}

.service-option:hover::after {
    border-color: var(--bronze-gold);
}

/* Selected state */
.service-option:has(input:checked) {
    border-color: var(--bronze-gold);
    background: rgba(181, 150, 99, 0.08);
    box-shadow: 0 0 0 1px rgba(181, 150, 99, 0.15);
}

.service-option:has(input:checked) .service-icon {
    color: var(--bronze-gold);
    transform: scale(1.1);
}

.service-option:has(input:checked) span {
    color: var(--charcoal);
    font-weight: 600;
}

.service-option:has(input:checked)::after {
    border-color: var(--bronze-gold);
    background: var(--bronze-gold);
    box-shadow: inset 0 0 0 3px var(--pure-white);
}

.label-hint {
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--warm-gray);
}

/* Dark mode service options */
[data-theme="dark"] .service-option:has(input:checked) span {
    color: #f0f0f0;
}

[data-theme="dark"] .service-option:has(input:checked)::after {
    box-shadow: inset 0 0 0 3px var(--dark-bg);
}

/* Dynamic Service Fields */
.service-fields {
    margin-bottom: var(--space-md);
}

.service-detail-fields {
    display: none;
    animation: slideDown 0.3s ease-out;
    background: linear-gradient(135deg, rgba(156, 175, 136, 0.08) 0%, rgba(156, 175, 136, 0.04) 100%);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-top: var(--space-md);
    border: 1px solid rgba(156, 175, 136, 0.25);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-detail-fields.active {
    display: block;
}

.service-fields-header {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--deep-sage);
    margin: 0 0 var(--space-md) 0;
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(156, 175, 136, 0.2);
}

.service-detail-fields .form-group {
    margin-bottom: var(--space-md);
}

.service-detail-fields .form-group:last-child {
    margin-bottom: 0;
}

.service-detail-fields label {
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}

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

.form-row {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-group.half {
    flex: 1;
    min-width: 0;
    margin-bottom: 0;
}

.form-group.third {
    flex: 2;
    min-width: 0;
    margin-bottom: 0;
}

.form-group.sixth {
    flex: 1;
    min-width: 0;
    margin-bottom: 0;
}

/* Address section toggle */
.address-section {
    border: 2px solid var(--soft-beige);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    background: var(--pure-white);
}

.address-toggle {
    cursor: pointer;
}

.address-toggle:hover {
    color: var(--sage-green);
}

.address-chevron.rotated {
    transform: rotate(180deg);
}

.address-fields input {
    min-height: 50px;
    font-size: 16px;
    padding: 14px 16px;
    border: 2px solid var(--soft-beige);
    border-radius: var(--radius-sm);
    background: var(--pure-white);
    width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.address-fields input:focus {
    outline: none;
    border-color: var(--sage-green);
    box-shadow: 0 0 0 3px rgba(156, 175, 136, 0.15);
}

/* Enhanced inputs for service fields */
.service-detail-fields input,
.service-detail-fields select {
    min-height: 50px;
    font-size: 16px;
    padding: 14px 16px;
    border: 2px solid var(--soft-beige);
    border-radius: var(--radius-sm);
    background: var(--pure-white);
    color: var(--charcoal);
    width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.service-detail-fields select option {
    color: var(--charcoal);
    background: var(--pure-white);
}

.service-detail-fields select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%235a5a5a' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 44px;
    cursor: pointer;
}

.service-detail-fields input:focus,
.service-detail-fields select:focus {
    outline: none;
    border-color: var(--sage-green);
    box-shadow: 0 0 0 3px rgba(156, 175, 136, 0.15);
}

/* Checkbox group - mobile optimized */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 14px 16px;
    background: var(--pure-white);
    border: 2px solid var(--soft-beige);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: all 0.2s;
    min-height: 48px;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.checkbox-label:hover {
    border-color: var(--sage-green);
    background: rgba(156, 175, 136, 0.08);
}

.checkbox-label:active {
    transform: scale(0.98);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: var(--sage-green);
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label:has(input:checked) {
    border-color: var(--sage-green);
    background: rgba(156, 175, 136, 0.15);
    color: var(--deep-sage);
    font-weight: 500;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .service-detail-fields {
        padding: var(--space-md);
        margin-top: var(--space-sm);
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group.half {
        margin-bottom: var(--space-md);
    }

    .form-row .form-group.half:last-child {
        margin-bottom: 0;
    }

    .form-group.third,
    .form-group.sixth {
        margin-bottom: var(--space-md);
    }

    .form-row .form-group.sixth:last-child {
        margin-bottom: 0;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .service-select-group {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .service-option {
        padding: 16px 10px 12px;
    }

    .service-icon {
        font-size: 1.3rem;
    }

    .service-option span {
        font-size: 0.82rem;
    }

    .checkbox-label {
        padding: 16px;
        font-size: 1rem;
    }

    .service-detail-fields input,
    .service-detail-fields select {
        min-height: 52px;
        font-size: 16px;
    }
}

/* Touch device enhancements */
@media (hover: none) and (pointer: coarse) {
    .checkbox-label {
        padding: 16px 18px;
    }

    .checkbox-label:hover {
        border-color: var(--soft-beige);
        background: var(--pure-white);
    }

    .service-option:hover {
        border-color: var(--soft-beige);
        background: transparent;
    }

    .service-option:hover .service-icon {
        color: var(--warm-gray);
    }

    .service-option:hover::after {
        border-color: var(--soft-beige);
    }

    .service-option:has(input:checked):hover {
        border-color: var(--bronze-gold);
        background: rgba(181, 150, 99, 0.08);
    }

    .service-option:has(input:checked):hover .service-icon {
        color: var(--bronze-gold);
    }

    .checkbox-label:active {
        border-color: var(--sage-green);
        background: rgba(156, 175, 136, 0.1);
    }

    .service-option:active {
        border-color: var(--bronze-gold);
        background: rgba(181, 150, 99, 0.06);
    }

    .service-detail-fields select {
        min-height: 54px;
    }
}

.contact-form .btn {
    width: 100%;
    margin-top: var(--space-md);
}

/* Hide reCAPTCHA badge - branding text added near form per Google TOS */
.grecaptcha-badge {
    visibility: hidden !important;
}

.recaptcha-branding {
    margin-top: var(--space-sm);
    font-size: 0.75rem;
    color: var(--warm-gray);
    text-align: center;
    opacity: 0.7;
}

.recaptcha-branding a {
    color: var(--warm-gray);
    text-decoration: underline;
}

.form-message {
    margin-top: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    display: none;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: rgba(156, 175, 136, 0.15);
    color: var(--deep-sage);
    border: 2px solid var(--sage-green);
    display: block;
}

.form-message.error {
    background: rgba(212, 163, 115, 0.15);
    color: var(--charcoal);
    border: 2px solid var(--accent-terracotta);
    display: block;
}

/* Footer */
.footer {
    background: var(--slate-blue);
    color: var(--soft-beige);
    padding: var(--space-xl) 0 var(--space-md);
    position: relative;
}

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

.footer-section h3 {
    color: var(--pure-white);
    margin-bottom: var(--space-md);
    font-size: 1.3rem;
    font-family: var(--font-accent);
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.85;
}

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

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

.footer-section ul li a {
    color: var(--soft-beige);
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.3s ease;
    padding: 8px 0;
    display: inline-block;
    min-height: 44px;
    line-height: 28px;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--bronze-gold);
    padding-left: 8px;
}

.footer-section a {
    color: var(--bronze-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--soft-beige);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    padding: 8px 4px;
}

.footer-bottom a:hover {
    color: white;
}

/* Mobile footer adjustments - prevent sticky button overlap */
@media (max-width: 768px) {
    .footer-bottom {
        padding-bottom: 100px; /* Space for sticky contact button */
    }
}

/* ==========================================
   PRIVACY MODAL
   ========================================== */
.privacy-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    overflow-y: auto;
}

.privacy-modal.active {
    display: flex;
}

.privacy-modal-content {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-floating);
}

.privacy-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--warm-gray);
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.privacy-modal-close:hover {
    background: var(--soft-beige);
    color: var(--charcoal);
}

.privacy-modal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--deep-sage);
    padding: var(--space-lg);
    padding-bottom: 0;
    margin-bottom: var(--space-md);
}

.privacy-modal-body {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--charcoal);
    line-height: 1.7;
}

.privacy-modal-body h3 {
    font-size: 1.1rem;
    color: var(--deep-sage);
    margin-top: var(--space-md);
    margin-bottom: var(--space-xs);
}

.privacy-modal-body p {
    margin-bottom: var(--space-sm);
}

.privacy-modal-body ul {
    margin-left: var(--space-md);
    margin-bottom: var(--space-sm);
}

.privacy-modal-body li {
    margin-bottom: 4px;
}

.privacy-modal-body a {
    color: var(--deep-sage);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-modal {
        padding: var(--space-sm);
    }

    .privacy-modal-content h2 {
        font-size: 1.4rem;
        padding: var(--space-md);
        padding-right: 50px;
    }

    .privacy-modal-body {
        padding: 0 var(--space-md) var(--space-md);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-card:nth-child(1),
    .service-card:nth-child(4),
    .service-card:nth-child(7),
    .service-card:nth-child(10) {
        grid-column: span 1;
    }
}

@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        padding: var(--space-xl) 0;
    }

    .hero-image {
        height: 400px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* Mobile-only elements (hidden on desktop) */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    /* Show mobile-only elements on mobile */
    .mobile-only {
        display: block;
    }

    li.mobile-only {
        display: list-item;
    }

    .nav-menu {
        position: fixed;
        top: 110px;
        left: -100%;
        flex-direction: column;
        background: var(--warm-white);
        width: 100%;
        padding: var(--space-lg);
        box-shadow: var(--shadow-medium);
        transition: left 0.3s ease;
        backdrop-filter: blur(20px);
    }

    .nav-menu.active {
        left: 0;
    }

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

    /* Staff login link styling in mobile menu */
    .staff-link {
        color: var(--warm-gray);
        font-size: 0.9rem;
    }

    .staff-link i {
        margin-right: 8px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .service-card:nth-child(n) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    :root {
        --space-md: 20px;
        --space-lg: 40px;
        --space-xl: 60px;
        --space-xxl: 80px;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

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

/* ==========================================
   STICKY CONTACT BUTTON (Mobile)
   ========================================== */

.sticky-contact {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.sticky-contact-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-sage);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-ring 2s ease-out infinite;
}

.sticky-contact-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-floating);
}

.sticky-contact-toggle.active {
    animation: none;
    background: var(--charcoal);
}

.sticky-contact-toggle.active i::before {
    content: "\f00d"; /* X icon */
}

/* Pulse animation */
@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(156, 175, 136, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(156, 175, 136, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(156, 175, 136, 0);
    }
}

/* Options container */
.sticky-contact-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s ease;
    pointer-events: none;
}

.sticky-contact-options.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* Individual option buttons */
.sticky-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--pure-white);
    border-radius: var(--radius-full);
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.sticky-option:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-medium);
}

.sticky-option i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
}

.sticky-call i {
    background: var(--sage-green);
    color: white;
}

.sticky-text i {
    background: var(--accent-terracotta);
    color: white;
}

/* Hide button */
.sticky-contact-hide {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--warm-gray);
    border: 2px solid var(--pure-white);
    color: white;
    font-size: 0.7rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sticky-contact:hover .sticky-contact-hide,
.sticky-contact-options.active ~ .sticky-contact-hide {
    opacity: 1;
}

.sticky-contact-hide:hover {
    background: var(--charcoal);
}

/* Hidden state */
.sticky-contact.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

/* Recall tab */
.sticky-contact-recall {
    position: fixed;
    bottom: 24px;
    right: 0;
    width: 40px;
    height: 50px;
    background: var(--sage-green);
    border: none;
    border-radius: 8px 0 0 8px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.3s ease;
    z-index: 999;
}

.sticky-contact-recall.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.sticky-contact-recall:hover {
    width: 50px;
    background: var(--deep-sage);
}

/* Desktop: Show on all screen sizes but adjust position */
@media (min-width: 769px) {
    .sticky-contact {
        bottom: 32px;
        right: 32px;
    }

    .sticky-contact-toggle {
        width: 56px;
        height: 56px;
    }
}

/* Mobile optimizations */
@media (max-width: 480px) {
    .sticky-contact {
        bottom: 16px;
        right: 16px;
    }

    .sticky-contact-toggle {
        width: 56px;
        height: 56px;
    }

    .sticky-option {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

/* ==========================================
   MOBILE FORM OPTIMIZATIONS
   ========================================== */

@media (max-width: 768px) {
    /* Ensure minimum touch target size (44px) */
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 48px;
        padding: 14px 16px;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }

    .form-group select {
        /* Better touch target for select */
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237A7A7A' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
        padding-right: 40px;
    }

    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

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

    .contact-form {
        padding: var(--space-md);
        margin-bottom: 80px; /* Space for sticky button */
    }

    /* Sticky submit button on mobile */
    .contact-form .btn {
        position: fixed;
        bottom: 0;
        bottom: env(safe-area-inset-bottom, 0px);
        left: 0;
        right: 0;
        margin: 0;
        border-radius: 0;
        z-index: 100;
        padding: 18px;
        padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
        font-size: 1.1rem;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    }

    /* Adjust sticky contact button position when form is visible */
    .contact .sticky-contact,
    .contact:target ~ .sticky-contact {
        bottom: 70px;
    }
}

/* Form field validation visual feedback */
.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: var(--sage-green);
}

.form-group input:invalid:not(:placeholder-shown):not(:focus),
.form-group textarea:invalid:not(:placeholder-shown):not(:focus) {
    border-color: var(--accent-terracotta);
}

/* Optional: Progress indicator dots for form */
.form-progress {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: var(--space-md);
}

.form-progress-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--soft-beige);
    transition: all 0.3s ease;
}

.form-progress-dot.active {
    background: var(--sage-green);
    transform: scale(1.2);
}

.form-progress-dot.completed {
    background: var(--deep-sage);
}

/* ==========================================
   DARK MODE FORM INPUT OVERRIDES
   Placed at end of file to ensure highest cascade priority
   ========================================== */

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
    background-color: #2a2a2a !important;
    border-color: #3a3a3a !important;
    color: #e8e8e8 !important;
}

[data-theme="dark"] .form-group select option,
[data-theme="dark"] .service-detail-fields select option {
    color: #e8e8e8 !important;
    background-color: #2a2a2a !important;
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group select:focus,
[data-theme="dark"] .form-group textarea:focus {
    background-color: #1e1e1e !important;
    border-color: var(--sage-green) !important;
    box-shadow: 0 0 0 4px rgba(90, 156, 109, 0.2) !important;
}

/* Handle browser autofill in dark mode */
[data-theme="dark"] .form-group input:-webkit-autofill,
[data-theme="dark"] .form-group input:-webkit-autofill:hover,
[data-theme="dark"] .form-group input:-webkit-autofill:focus,
[data-theme="dark"] .form-group select:-webkit-autofill,
[data-theme="dark"] .form-group textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #2a2a2a inset !important;
    -webkit-text-fill-color: #e8e8e8 !important;
    border-color: #3a3a3a !important;
    caret-color: #e8e8e8 !important;
}

/* Validation styles in dark mode */
[data-theme="dark"] .form-group input:valid:not(:placeholder-shown),
[data-theme="dark"] .form-group textarea:valid:not(:placeholder-shown) {
    background-color: #2a2a2a !important;
    border-color: var(--sage-green) !important;
}

[data-theme="dark"] .form-group input:invalid:not(:placeholder-shown):not(:focus),
[data-theme="dark"] .form-group textarea:invalid:not(:placeholder-shown):not(:focus) {
    background-color: #2a2a2a !important;
    border-color: var(--accent-terracotta) !important;
}

/* ==========================================
   SKIP LINK (Accessibility)
   ========================================== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--charcoal);
    color: var(--pure-white);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    z-index: 10000;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

/* ==========================================
   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;
    }
}

/* ==========================================
   BLOG SECTION
   ========================================== */
.blog-section {
    padding: var(--space-xl) 0;
    background: var(--cream);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.blog-card {
    background: var(--pure-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--soft-beige);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.blog-card-image.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-sage);
}

.blog-card-image.no-image i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.5);
}

.blog-card-content {
    padding: var(--space-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-date {
    font-size: 0.85rem;
    color: var(--warm-gray);
    margin-bottom: var(--space-xs);
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--slate-blue);
    margin-bottom: var(--space-xs);
    line-height: 1.3;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-title a:hover {
    color: var(--deep-sage);
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: var(--warm-gray);
    line-height: 1.6;
    flex: 1;
}

.blog-card-tags {
    margin-top: var(--space-sm);
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.blog-tag {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: var(--soft-beige);
    color: var(--warm-gray);
    border-radius: var(--radius-full);
}

.blog-view-all {
    text-align: center;
    margin-top: var(--space-lg);
}

/* Blog Coming Soon */
.blog-coming-soon {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    color: var(--warm-gray);
}

.blog-coming-soon i {
    font-size: 4rem;
    color: var(--sage-green);
    margin-bottom: var(--space-md);
    opacity: 0.7;
}

.blog-coming-soon h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--slate-blue);
    margin-bottom: var(--space-sm);
}

.blog-coming-soon p {
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

[data-theme="dark"] .blog-coming-soon h3 {
    color: #e8e8e8;
}

[data-theme="dark"] .blog-coming-soon i {
    color: var(--sage-green);
}

/* Blog section responsive */
@media (max-width: 968px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Dark mode blog styles */
[data-theme="dark"] .blog-section {
    background: #1a1a1a;
}

[data-theme="dark"] .blog-card {
    background: #1e1e1e;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .blog-card-image {
    background: #2a2a2a;
}

[data-theme="dark"] .blog-card-title {
    color: #e8e8e8;
}

[data-theme="dark"] .blog-card-title a:hover {
    color: var(--sage-green);
}

[data-theme="dark"] .blog-card-excerpt {
    color: #a0a0a0;
}

[data-theme="dark"] .blog-tag {
    background: #2a2a2a;
    color: #a0a0a0;
}
