/* ===================================
   DENVER INTERIOR & DOORS CO. - Design System
   Based on STYLE_GUIDE.md
   =================================== */

:root {
    /* ========================================
       COLOR PALETTE
       ======================================== */

    /* Core Backgrounds */
    --background: #FFFFFF;
    --background-secondary: #FAF8F5;
    --background-tertiary: #F2EDE7;

    /* Core Text */
    --foreground: #1A1714;
    /* Primary text */
    --foreground-muted: #5C5550;
    /* Body text */
    --foreground-subtle: #A89F97;
    /* Captions */

    /* Brand Colors */
    --primary: #1A1714;
    /* Primary buttons, key actions */
    --primary-foreground: #FAF8F5;
    --accent: #B07D3A;
    /* Links, highlights */
    --accent-light: #F3E9D8;
    /* Badges */
    --accent-dark: #8A5E22;
    /* Active states */

    /* Semantic Colors */
    --success: #3A7A52;
    --warning: #CA8A04;
    --destructive: #DC2626;

    /* Borders */
    --border: #E3DDD4;
    --border-light: #EDE9E3;
    --border-strong: #C8BFB3;

    /* Aliases for contact/sub pages */
    --background-subtle: var(--background-secondary);
    --card: var(--background);

    /* ========================================
       TYPOGRAPHY
       ======================================== */
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;

    /* Base scale assuming 16px root */
    --text-display: 4rem;
    /* 64px */
    --text-h1: 3rem;
    /* 48px */
    --text-h2: 2.25rem;
    /* 36px */
    --text-h3: 1.5rem;
    /* 24px */
    --text-h4: 1.25rem;
    /* 20px */
    --text-body-lg: 1.125rem;
    /* 18px */
    --text-body: 1rem;
    /* 16px */
    --text-body-sm: 0.875rem;
    /* 14px */
    --text-label: 0.75rem;
    /* 12px */

    /* ========================================
       SPACING SCALE (4px Base)
       ======================================== */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    /* 1rem */
    --space-6: 24px;
    /* 1.5rem */
    --space-8: 32px;
    /* 2rem */
    --space-12: 48px;
    /* 3rem */
    --space-16: 64px;
    /* 4rem */
    --space-24: 96px;
    /* 6rem */
    --space-32: 128px;
    /* 8rem */

    /* ========================================
       BORDER RADIUS
       ======================================== */
    --radius-sm: 4px;
    --radius-md: 6px;
    /* Buttons, Inputs */
    --radius-lg: 10px;
    /* Cards */
    --radius-xl: 12px;
    /* Photo Cards */
    --radius-full: 9999px;

    /* ========================================
       SHADOWS
       ======================================== */
    --shadow-sm: 0 1px 3px rgba(26, 23, 20, 0.06);
    --shadow-md: 0 4px 12px rgba(26, 23, 20, 0.08);
    --shadow-lg: 0 8px 32px rgba(26, 23, 20, 0.12);
    --shadow-xl: 0 12px 40px rgba(26, 23, 20, 0.15);
    --shadow-nav: 0 2px 8px rgba(26, 23, 20, 0.08);

    /* ========================================
       TRANSITIONS
       ======================================== */
    --ease-default: cubic-bezier(0.4, 0, 0.2, 1);
    --duration-fast: 150ms;
    --duration-normal: 250ms;
    --duration-slow: 400ms;
    --transition-base: var(--duration-normal) var(--ease-default);
}

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

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

body {
    font-family: var(--font-sans);
    color: var(--foreground-muted);
    background-color: var(--background);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--foreground);
    line-height: 1.25;
}

h1,
h2 {
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: -0.03em;
}

h3,
h4,
h5,
h6 {
    font-family: var(--font-sans);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration-fast) var(--ease-default);
}

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.text-label {
    font-size: var(--text-label);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* Container */
.container {
    width: 100%;
    max-width: 1152px;
    /* max-w-6xl */
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* ===================================
   TOP BAR
   =================================== */
.top-bar {
    background: var(--foreground);
    color: var(--background);
    padding: var(--space-2) 0;
    font-size: var(--text-body-sm);
}

.top-bar-content {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-text {
    opacity: 0.9;
}

.top-bar-email {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--background);
    opacity: 0.9;
    transition: opacity var(--duration-fast);
}

.top-bar-email:hover {
    opacity: 1;
}

.top-bar-email svg {
    width: 16px;
    height: 16px;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--background);
    border-bottom: 1px solid var(--border-light);
    padding: var(--space-4) 0;
    /* Added padding to fix skinny look */
    transition: box-shadow var(--duration-normal) var(--ease-default);
}

.navbar.scrolled {
    box-shadow: var(--shadow-nav);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-8);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Align to center */
    gap: var(--space-12);
    /* Add space between menu and actions */
}

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

.nav-logo-img {
    height: 100px;
    width: auto;
    transform: scale(1.4);
    transform-origin: left center;
    margin-right: var(--space-4);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-link {
    font-weight: 500;
    font-size: var(--text-body-sm);
    color: var(--foreground-muted);
    transition: color var(--duration-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link.active::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: 600;
    color: var(--foreground-muted);
    font-size: var(--text-body-sm);
}

.phone-icon-wrapper {
    width: 32px;
    height: 32px;
    background: var(--background-secondary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.phone-icon-wrapper svg {
    width: 16px;
    height: 16px;
}

.nav-phone:hover {
    color: var(--foreground);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 0 20px;
    height: 44px;
    font-weight: 600;
    font-size: var(--text-body-sm);
    border-radius: var(--radius-md);
    transition: background-color var(--duration-fast) var(--ease-default), color var(--duration-fast), transform var(--duration-fast);
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: scale(0.97);
}

.glow-track {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.btn .glow-track,
.btn-hero-cta .glow-track,
.btn-cta-outline .glow-track {
    width: 120px;
    height: 120px;
}

.service-card .glow-track {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(176, 125, 58, 0.08) 0%, transparent 70%);
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary,
.btn-nav-cta {
    background: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover,
.btn-nav-cta:hover {
    background: #3D3530;
    /* Lighter shade of primary for hover */
}

/* Accent Button */
.btn-accent {
    background: var(--accent);
    color: #FFFFFF;
}

.btn-accent:hover {
    background: var(--accent-dark);
}

/* Secondary Button */
.btn-secondary {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

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

.btn-lg {
    height: 52px;
    padding: 0 32px;
    font-size: 1rem;
}

.btn-lg svg {
    width: 20px;
    height: 20px;
}

.btn-full {
    width: 100%;
}

.btn-sm {
    height: 36px;
    padding: 0 16px;
    font-size: var(--text-label);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
}

.hamburger {
    width: 24px;
    height: 2px;
    background: var(--foreground);
    position: relative;
    display: block;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--foreground);
    left: 0;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    bottom: -7px;
}

/* ===================================
   HERO SECTION
   =================================== */
/* Hero Logo Overlay */
.hero-logo-overlay {
    position: absolute;
    top: var(--space-8);
    left: var(--space-8);
    z-index: 20;
    display: block;
    transition: opacity var(--duration-normal);
}

.hero-logo-overlay:hover {
    opacity: 0.9;
}

.hero-logo-img {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: var(--space-16) 0;
}

.hero-video-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    background-color: #000;
    pointer-events: none;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-video.active {
    opacity: 1;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(26, 23, 20, 0.75) 0%,
            rgba(26, 23, 20, 0.0) 60%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-8);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-8);
}

.hero-text {
    width: 100%;
    max-width: 800px;
    color: var(--background);
}

.hero-page {
    min-height: 50vh;
    background-size: cover;
    background-position: center;
}

.hero-page .hero-text {
    padding-top: var(--space-16);
}

.hero-page .hero-quote-wrapper {
    justify-content: center;
}

.hero-label {
    font-size: var(--text-label);
    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    display: block;
    margin-bottom: var(--space-4);
    opacity: 0.9;
}

.hero-title {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    color: var(--background);
    line-height: 1.1;
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: var(--text-body-lg);
    opacity: 0.9;
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-8);
}

.trust-badge {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.trust-badge svg {
    color: var(--accent);
    flex-shrink: 0;
}

.trust-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.2);
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    height: 56px;
    padding: 0 40px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    background: var(--accent);
    color: var(--foreground);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-default);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(176, 125, 58, 0.3);
}

.btn-hero-cta:hover {
    background: var(--accent-dark);
    box-shadow: 0 6px 32px rgba(176, 125, 58, 0.45);
    transform: translateY(-2px);
}

.btn-hero-cta:active {
    transform: scale(0.97);
}

.btn-hero-cta svg {
    transition: transform var(--duration-fast);
}

.btn-hero-cta:hover svg {
    transform: translateX(4px);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-4);
}

.badge {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    padding: var(--space-2) var(--space-4) var(--space-2) var(--space-2);
    text-decoration: none;
    color: inherit;
    transition: background var(--duration-fast), transform var(--duration-fast);
}

.badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.02);
}

.badge-icon {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon.google {
    background: #FFFFFF;
}

.badge-icon.facebook {
    background: #1877F2;
}

.badge-icon svg {
    width: 16px;
    height: 16px;
}

.badge-icon.google svg {
    color: #4285F4;
}

.badge-icon.facebook svg {
    color: #FFFFFF;
}

.badge-content {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.badge-rating {
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--background);
}

.stars {
    color: #FFD700;
    font-size: 0.8em;
}

.badge-label {
    font-size: 0.7rem;
    opacity: 0.8;
    color: var(--background);
}

/* ===================================
   STICKY CTA BAR
   =================================== */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--foreground);
    color: var(--background);
    padding: var(--space-3) var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-bar .btn-primary {
    background: var(--accent);
}

.sticky-cta-bar .btn-primary:hover {
    background: var(--accent-dark);
}

.sticky-cta-text {
    font-size: var(--text-body-sm);
    font-weight: 500;
}

/* ===================================
   CONTACT BAR SECTION
   =================================== */
.contact-bar {
    background: var(--background);
    padding: var(--space-16) 0;
    position: relative;
    z-index: 20;
    margin-top: -60px;
    border-top-left-radius: var(--radius-xl);
    border-top-right-radius: var(--radius-xl);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.contact-bar-container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.contact-bar-title {
    text-align: center;
    font-family: var(--font-sans);
    font-size: var(--text-h3);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-8);
}

.contact-bar-title strong {
    color: var(--accent);
    font-weight: 700;
}

.contact-bar-cards {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-6);
    justify-content: center;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    background: var(--background-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-6) var(--space-8);
    transition: var(--transition-base);
    min-width: 280px;
}

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

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: var(--background);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
}

.contact-card-content {
    display: flex;
    flex-direction: column;
}

.contact-card-label {
    font-size: var(--text-label);
    color: var(--foreground-subtle);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.contact-card-value {
    font-size: var(--text-body-lg);
    font-weight: 600;
    color: var(--foreground);
}

/* ===================================
   SECTION DIVIDERS
   =================================== */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
    margin: 0 auto var(--space-12);
    max-width: 200px;
}

.section-divider-accent {
    background: linear-gradient(90deg, transparent, var(--accent) 20%, var(--accent) 80%, transparent);
    opacity: 0.5;
}

/* ===================================
   SECTION STYLING
   =================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-12);
}

.section-header .section-divider {
    margin-bottom: var(--space-8);
}

.section-label {
    display: block;
    font-size: var(--text-label);
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--space-4);
}

.section-title {
    font-family: var(--font-sans);
    font-size: var(--text-h2);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: var(--space-4);
    letter-spacing: -0.03em;
    display: inline-block;
    position: relative;
    padding-bottom: var(--space-3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40px;
    height: 2px;
    background: var(--accent);
    transition: transform 0.6s ease;
}

.section-header.visible .section-title::after {
    transform: translateX(-50%) scaleX(1);
}

.section-title strong {
    font-weight: 700;
    color: inherit;
}

.section-desc {
    font-size: var(--text-body-lg);
    color: var(--foreground-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: var(--space-24) 0;
    background: var(--background-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-6);
}

.service-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius-lg);
}

.service-card {
    background-color: var(--foreground);
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    padding: 0;
    box-shadow: var(--shadow-sm);
    transition: transform var(--duration-normal) var(--ease-default), box-shadow var(--duration-normal) var(--ease-default);
    border: none;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 40%, transparent 100%);
    z-index: 1;
    transition: background var(--duration-normal);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.service-card-body {
    position: relative;
    z-index: 2;
    padding: var(--space-8);
    padding-top: var(--space-6);
}

.service-title {
    color: #FFFFFF;
    font-family: var(--font-sans);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
    transition: margin var(--duration-normal);
}

.service-desc {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    margin-top: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height var(--duration-normal) var(--ease-default),
        opacity var(--duration-normal) var(--ease-default),
        margin var(--duration-normal) var(--ease-default);
}

.service-card:hover .service-title {
    margin-bottom: var(--space-3);
}

.service-card:hover .service-desc {
    max-height: 200px;
    opacity: 1;
    margin-top: 0;
}

.service-card .link-text {
    color: var(--accent);
    margin-top: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all var(--duration-normal);
    position: relative;
    z-index: 2;
}

.service-card .link-text::after {
    content: '→';
    transition: transform var(--duration-fast);
}

.service-card:hover .link-text {
    opacity: 1;
    max-height: 40px;
    margin-top: var(--space-4);
}

.service-card:hover .link-text::after {
    transform: translateX(4px);
}



/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    padding: var(--space-24) 0;
    background: var(--background);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.about-text {
    color: var(--foreground-muted);
    margin-bottom: var(--space-6);
}

.about-stats {
    display: flex;
    gap: var(--space-12);
    margin-top: var(--space-8);
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-sans);
    color: var(--accent);
    line-height: 1;
    margin-bottom: var(--space-2);
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: var(--text-body-sm);
    color: var(--foreground-muted);
    font-weight: 500;
}

.visual-card {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    padding: var(--space-4);
    background: var(--background-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.visual-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--background);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    border: 1px solid var(--border-light);
}

.visual-icon svg {
    width: 20px;
    height: 20px;
}

/* Updated About Visual - Single Image with Badge */
.about-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 560px;
    width: 100%;
}

.about-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-xl);
    transform: scale(1);
    transition: transform var(--duration-slow);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.02);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: float 6s ease-in-out infinite;
}

.about-badge-number {
    font-family: var(--font-sans);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.03em;
}

.about-badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--foreground);
    line-height: 1.2;
    margin-top: 4px;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .about-image {
        height: 350px;
    }

    .about-image-wrapper {
        max-width: 100%;
    }

    .about-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
        animation: none;
    }
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery {
    padding: var(--space-24) 0;
    background: var(--background);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-12);
}

/* Masonry-ish look on larger screens if we wanted, but uniform grid for now is safer */
@media (min-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 400px;
        gap: var(--space-4);
    }

    /* First item spans 2 columns */
    .gallery-item:nth-child(1) {
        grid-column: span 2;
    }

    /* Last item spans 2 columns for symmetry (Row 2: 1+1+2 = 4 cols) */
    .gallery-item:nth-child(6) {
        grid-column: span 2;
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    background: var(--background-secondary);
    min-height: 300px;
    display: block;
    text-decoration: none;
    color: inherit;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.08);
    /* Gentle zoom */
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: var(--space-6);
}

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

.gallery-content {
    transform: translateY(20px);
    transition: transform 0.3s ease;
    width: 100%;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: var(--space-2);
    font-weight: 500;
}

.btn-text {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: none;
    padding: 0;
    border: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.gallery-item .btn-text::after {
    display: none;
}

.gallery-item .btn-text {
    color: var(--accent);
    font-weight: 600;
}

.gallery-cta {
    display: flex;
    justify-content: center;
    margin-top: var(--space-8);
}

/* ===================================
   REVIEWS CAROUSEL
   =================================== */
.reviews {
    padding: var(--space-24) 0 var(--space-16);
    background: var(--background-secondary);
    overflow: hidden;
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
    padding: var(--space-2) 0;
}

.reviews-carousel.dragging {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    gap: var(--space-6);
    will-change: transform;
    width: max-content;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
}

.reviews-carousel.dragging .carousel-track {
    cursor: grabbing;
}

.review-card {
    flex: 0 0 360px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--duration-normal), border-color var(--duration-normal);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-strong);
}

.review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-card-stars {
    color: #FFD700;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-google-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.review-card-text {
    font-size: var(--text-body);
    color: var(--foreground-muted);
    line-height: 1.7;
    flex: 1;
}

.review-card-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-top: auto;
    padding-top: var(--space-4);
    border-top: 1px solid var(--border-light);
}

.review-card-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--accent);
    color: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-body-sm);
    flex-shrink: 0;
}

.review-card-info {
    display: flex;
    flex-direction: column;
}

.review-card-name {
    font-weight: 600;
    color: var(--foreground);
    font-size: var(--text-body-sm);
}

.review-card-detail {
    font-size: var(--text-label);
    color: var(--foreground-subtle);
}


@media (max-width: 600px) {
    .review-card {
        flex: 0 0 300px;
    }
}

/* ===================================
   CTA / CONTACT SECTION
   =================================== */
.cta-section {
    padding: var(--space-24) 0;
    background: var(--foreground);
    color: var(--background);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(176, 125, 58, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
}

.cta-headline {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--background);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: var(--space-4);
}

.cta-desc {
    color: var(--foreground-subtle);
    font-size: var(--text-body-lg);
    line-height: 1.7;
    margin-bottom: var(--space-8);
    max-width: 440px;
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    height: 52px;
    padding: 0 32px;
    font-size: 1rem;
    font-weight: 600;
    background: transparent;
    color: var(--background);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-md);
    transition: all var(--duration-fast);
    position: relative;
    overflow: hidden;
}


.btn-cta-outline svg {
    width: 18px;
    height: 18px;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.cta-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--foreground-subtle);
    font-weight: 500;
}

.cta-trust-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.cta-map-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.cta-map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cta-map-embed iframe {
    border: 0;
    display: block;
}

.cta-map-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.cta-detail {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--foreground-subtle);
    font-size: var(--text-body-sm);
}

.cta-detail svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cta-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

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

    .cta-buttons .btn,
    .cta-buttons .btn-cta-outline {
        width: 100%;
    }
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--foreground);
    color: var(--foreground-subtle);
    padding: 0 0 0;
    position: relative;
}

.footer-accent-bar {
    height: 3px;
    background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-dark));
}

.footer>.container {
    padding-top: var(--space-16);
    padding-bottom: var(--space-12);
}

.footer a {
    transition: color var(--duration-fast);
}

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

.footer-grid ul a {
    position: relative;
    display: inline-block;
}

.footer-grid ul a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.footer-grid ul a:hover::after {
    transform: scaleX(1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-logo-img {
    height: 48px;
    opacity: 0.95;
    margin-bottom: var(--space-6);
    filter: brightness(0) invert(1);
}

.footer-desc {
    max-width: 300px;
    margin-bottom: var(--space-6);
    line-height: 1.7;
    font-size: var(--text-body-sm);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--foreground-subtle);
    transition: all var(--duration-fast);
}

.footer-social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--background);
    transform: translateY(-2px);
}

.footer-social-link svg {
    width: 16px;
    height: 16px;
}

.footer h4 {
    color: var(--background);
    font-size: var(--text-body-sm);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-6);
    position: relative;
    padding-bottom: var(--space-3);
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

.footer ul li {
    margin-bottom: var(--space-3);
}

.footer ul li a {
    font-size: var(--text-body-sm);
    line-height: 1.6;
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-body-sm);
    color: var(--foreground-subtle);
    transition: color var(--duration-fast);
}

.footer-contact-item:hover {
    color: var(--background);
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

.footer-locations {
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-locations h4 {
    font-size: 0.8rem;
    color: var(--foreground-subtle);
    margin-bottom: var(--space-4);
    padding-bottom: 0;
}

.footer-locations h4::after {
    display: none;
}

.footer-locations-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    font-size: 0.85rem;
    color: var(--foreground-subtle);
}

.footer-locations-list a {
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast);
}

.footer-locations-list a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--background);
}

.footer-locations-list span {
    color: rgba(255, 255, 255, 0.15);
    line-height: 1.8;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.15);
    padding: var(--space-6) 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-label);
    color: var(--foreground-subtle);
}

.footer-bottom-inner p {
    opacity: 0.7;
}

.footer-legal {
    display: flex;
    gap: var(--space-6);
}

.footer-legal a {
    color: var(--foreground-subtle);
    font-size: var(--text-label);
    opacity: 0.7;
    transition: opacity var(--duration-fast), color var(--duration-fast);
}

.footer-legal a:hover {
    color: var(--background);
    opacity: 1;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    /* Hide Hero Logo on Mobile */
    .hero-logo-overlay {
        display: none;
    }

    .nav-menu {
        position: fixed;
        inset: 0;
        width: 100%;
        max-width: none;
        height: 100vh;
        background: var(--background);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1); */
        padding: var(--space-8);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
    }

    .nav-menu.active {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
        /* right: 0; removed right property in favor of opacity/transform for full screen fade */
    }

    .nav-actions {
        display: none;
    }

    .nav-container {
        justify-content: space-between;
        padding: 0 var(--space-4);
    }

    .logo {
        margin-right: 0;
    }

    .nav-logo-img {
        height: 60px;
        transform: none;
    }

    /* Hero Adjustments */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-desc {
        font-size: 1.1rem;
    }

    /* Stack Grids */
    .about-grid,
    .footer-grid,
    .business-card-details {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    /* Business Card Mobile */
    .business-card {
        padding: var(--space-6);
    }

    .business-card-cta {
        flex-direction: column;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: var(--space-4);
    }

    .footer-legal {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        min-height: 250px;
    }

    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 320px;
    }

    .service-card::before {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    }

    .service-desc {
        max-height: 200px;
        opacity: 1;
    }

    .service-card .link-text {
        opacity: 1;
        max-height: 40px;
        margin-top: var(--space-3);
    }

    .service-card .service-title {
        margin-bottom: var(--space-3);
    }

    /* Mobile Menu Premium Styling */
    .mobile-only {
        display: block !important;
    }

    .nav-brand {
        margin-bottom: var(--space-8);
        text-align: center;
    }

    .nav-menu-logo {
        height: 60px;
        width: auto;
        filter: brightness(0);
    }

    .nav-link {
        font-family: var(--font-sans);
        font-size: 1.75rem;
        color: var(--foreground);
        font-weight: 600;
        letter-spacing: -0.02em;
        transition: color 0.2s;
    }

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

    .nav-link:active {
        color: var(--accent);
    }

    .nav-cta-item {
        margin-top: var(--space-8);
        width: 100%;
        max-width: 300px;
    }

    /* Chat Widget Minified */
    .chatbot-toggle {
        width: 56px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .chatbot-toggle-label {
        display: none;
    }

    .chatbot-toggle-icon {
        margin: 0;
    }
}

/* Default state for mobile-only items */
.mobile-only {
    display: none;
}

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

    .footer-brand {
        grid-column: auto;
    }

    .hero {
        height: 100svh;
        padding: var(--space-16) 0;
    }

    .hero-logo-img {
        width: 160px;
        /* Smaller logo on mobile */
    }

    .hero-logo-overlay {
        position: relative;
        top: auto;
        left: auto;
        margin: 0 auto var(--space-6);
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
        /* Smaller title on mobile */
    }
}

/* ===================================
   HAMBURGER ANIMATION
   =================================== */
.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
    background: var(--foreground);
}

.nav-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
    background: var(--foreground);
}

.hamburger,
.hamburger::before,
.hamburger::after {
    transition: all 0.3s ease-in-out;
}

/* Enhanced Mobile Menu */
@media (max-width: 768px) {
    .nav-menu {
        padding-top: 80px;
        /* Space for close button */
        gap: var(--space-6);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
    }

    .nav-link {
        font-size: 1.25rem;
    }
}

/* ===================================
   HERO QUOTE FORM
   =================================== */
.hero-quote-wrapper {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-quote-container {
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, opacity 0.4s ease-in-out;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-top: 0;
}

.hero-quote-container.expanded {
    max-height: 500px;
    opacity: 1;
    margin-top: var(--space-4);
    padding: var(--space-6);
    pointer-events: auto;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: var(--text-body-sm);
    transition: border-color var(--duration-fast);
    background: #fff;
    color: var(--foreground);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(176, 125, 58, 0.1);
}

.form-input::placeholder {
    color: var(--foreground-subtle);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

#heroQuoteBtn {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#heroQuoteBtn.hidden {
    display: none;
}

/* ===================================
   AI CHATBOT WIDGET
   =================================== */
.chatbot-widget {
    position: fixed;
    bottom: 100px;
    right: 32px;
    width: 380px;
    height: 500px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-xl);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom right;
}

.chatbot-widget.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: all;
}

/* Header */
.chatbot-header {
    background: var(--foreground);
    color: var(--background);
    padding: var(--space-4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.chatbot-avatar {
    width: 36px;
    height: 36px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background);
}

.chatbot-avatar svg {
    width: 20px;
    height: 20px;
}

.chatbot-header-text {
    display: flex;
    flex-direction: column;
}

.chatbot-title {
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.2;
}

.chatbot-status {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 4px;
}

.chatbot-status::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: #10B981;
    border-radius: 50%;
}

.chatbot-close {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s;
    padding: 4px;
}

.chatbot-close:hover {
    color: #fff;
}

.chatbot-close svg {
    width: 20px;
    height: 20px;
}

/* Body */
.chatbot-body {
    flex: 1;
    background: var(--background-secondary);
    padding: var(--space-4);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.chat-message {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 85%;
    animation: messageSlideIn 0.3s ease-out;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.chat-message.bot {
    align-self: flex-start;
}

.chat-message.user {
    align-self: flex-end;
}

.message-content {
    background: white;
    padding: 12px 16px;
    border-radius: 16px;
    border-top-left-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    color: var(--foreground);
    line-height: 1.5;
}

.chat-message.user .message-content {
    background: var(--accent);
    color: white;
    border-radius: 16px;
    border-top-right-radius: 4px;
}

.message-content ul {
    margin-top: 8px;
    padding-left: 20px;
    list-style-type: disc;
}

.message-content li {
    margin-bottom: 4px;
}

.message-time {
    font-size: 0.7rem;
    color: var(--foreground-subtle);
    margin-left: 4px;
}

/* Footer */
.chatbot-footer {
    padding: var(--space-3) var(--space-4);
    background: white;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.chatbot-input {
    flex: 1;
    border: none;
    background: var(--background-secondary);
    padding: 10px 16px;
    border-radius: 20px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--foreground);
    outline: none;
    transition: background 0.2s;
}

.chatbot-input:focus {
    background: var(--background-tertiary);
}

.chatbot-send {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--foreground);
    color: white;
    border-radius: 50%;
    transition: transform 0.2s;
}

.chatbot-send:hover {
    transform: scale(1.05);
}

.chatbot-send svg {
    width: 18px;
    height: 18px;
    margin-right: -2px;
    /* Visual centering adjustment */
}

/* Toggle Button */
.chatbot-toggle {
    position: fixed;
    bottom: 32px;
    right: 32px;
    height: 56px;
    background: var(--foreground);
    /* Use dark primary color */
    color: var(--background);
    border-radius: 28px;
    padding: 0 24px 0 8px;
    /* Balanced padding: 8px left (near icon), 24px right (near text) */
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.chatbot-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: #000;
    /* Darker on hover */
}

/* Specific state for when chat is open */
.chatbot-toggle.active {
    width: 56px;
    /* Shrinks to circle */
    padding: 0;
    justify-content: center;
    background: var(--background);
    color: var(--foreground);
    border-color: var(--border);
}

.chatbot-toggle-label {
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    transition: opacity 0.2s, max-width 0.3s;
    opacity: 1;
    max-width: 100px;
}

.chatbot-toggle.active .chatbot-toggle-label {
    opacity: 0;
    max-width: 0;
    margin: 0;
}

.chatbot-toggle-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    /* Subtle background for icon */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* transition: transform 0.3s; */
}

.chatbot-toggle.active .chatbot-toggle-icon {
    background: transparent;
    /* Remove background when active so X is on white button */
}

.chatbot-toggle-icon svg {
    width: 20px;
    height: 20px;
    position: absolute;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--accent);
    /* Accent color for icon */
}

.icon-open {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.icon-close {
    opacity: 0;
    transform: scale(0.5) rotate(-90deg);
    color: var(--foreground);
}

.chatbot-toggle.active .icon-open {
    opacity: 0;
    transform: scale(0.5) rotate(90deg);
}

.chatbot-toggle.active .icon-close {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .chatbot-widget {
        width: calc(100% - 40px);
        bottom: 90px;
        right: 20px;
        left: 20px;
        height: 60vh;
    }

    .chatbot-toggle {
        bottom: 20px;
        right: 20px;
    }
}

/* ===================================
   INDIVIDUAL SERVICE PAGES
   =================================== */
.service-details {
    background: var(--background-secondary);
    /* Match section background */
    padding: var(--space-16) 0;
}

.service-layout {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-12);
}

/* Main Content */
.service-content {
    flex: 2;
    min-width: 300px;
}

.service-content h2 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: var(--text-h2);
    color: var(--foreground);
    letter-spacing: -0.03em;
    margin-bottom: var(--space-6);
}

.service-content h3 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: var(--text-h3);
    color: var(--foreground);
    letter-spacing: -0.02em;
    margin-top: var(--space-8);
    margin-bottom: var(--space-4);
}

.service-content p {
    font-size: var(--text-body-lg);
    color: var(--foreground-muted);
    margin-bottom: var(--space-6);
    line-height: 1.7;
}

/* Feature List (Standard unordered list style but cleaner) */
.feature-list {
    list-style: none;
    margin-bottom: var(--space-8);
}

.feature-list li {
    position: relative;
    padding-left: var(--space-6);
    margin-bottom: var(--space-3);
    color: var(--foreground-muted);
    font-size: var(--text-body);
}

.feature-list li::before {
    content: "•";
    color: var(--accent);
    font-weight: bold;
    position: absolute;
    left: var(--space-2);
    font-size: 1.2em;
    line-height: 1;
}

.feature-list strong {
    color: var(--foreground);
}

/* Mini Grid - MATCHING HOME PAGE CARDS */
.service-grid-mini {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-6);
}

.mini-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.mini-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.mini-card h4 {
    font-family: var(--font-sans);
    /* Match h3 style from cards */
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--foreground);
    margin-bottom: var(--space-3);
}

.mini-card p {
    font-size: var(--text-body);
    color: var(--foreground-muted);
    margin-bottom: 0;
}

/* Sidebar - MATCHING CONTACT CARD STYLE */
.service-sidebar {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-box {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
}

.sidebar-box h3 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--foreground);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--border-light);
}

.sidebar-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-3);
    font-size: var(--text-body);
    color: var(--foreground-muted);
}

.sidebar-list li strong {
    color: var(--foreground);
    font-weight: 500;
}

/* CTA Sidebar Box */
.sidebar-cta {
    background: var(--foreground);
    /* Dark background like buttons */
    color: var(--background);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.sidebar-cta h4 {
    color: var(--background);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: var(--space-2);
    letter-spacing: -0.02em;
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-6);
    font-size: var(--text-body);
}

.sidebar-cta .btn {
    width: 100%;
}

/* Gallery Preview adjustment */
.section-light-bg {
    background: var(--background-secondary);
    padding: var(--space-24) 0;
}

@media (max-width: 900px) {
    .service-layout {
        flex-direction: column;
    }

    .service-sidebar {
        position: static;
        order: 10;
        margin-top: var(--space-8);
    }

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

/* ===================================
   LOCATION PAGES
   =================================== */

.location-layout {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-12);
}

.location-content {
    flex: 2;
    min-width: 300px;
}

.location-content h3 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
}

.location-content h3:not(:first-of-type) {
    margin-top: var(--space-8);
}

.neighborhood-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.location-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-6);
    margin-bottom: var(--space-8);
}

.location-gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.location-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

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

/* Location Hub Cards */
.location-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--border);
    background: var(--background);
}

.location-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.location-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.location-card .card-body {
    padding: var(--space-6);
}

.location-card .card-title {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--foreground);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-2);
}

.location-card .card-text {
    font-size: var(--text-body);
    color: var(--foreground-muted);
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

.location-card .btn-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: color var(--duration-fast);
}

.location-card .btn-link:hover {
    color: var(--accent-hover);
}

@media (max-width: 900px) {
    .location-layout {
        flex-direction: column;
    }

    .location-gallery {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}

/* ===================================
   SERVICE SUBPAGE STYLES
   =================================== */

/* Section Utilities */
.section-padding {
    padding: var(--space-24) 0;
}

.section-light-bg {
    background: var(--background-secondary);
}

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

.mt-4 {
    margin-top: var(--space-8);
}

/* Service Page Section Headers */
.service-section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.service-section-header .section-divider-accent {
    width: 48px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto var(--space-4);
    border-radius: var(--radius-full);
}

.service-section-header .section-label {
    font-size: var(--text-label);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    display: block;
    margin-bottom: var(--space-3);
}

.service-section-header .section-title {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: var(--text-h2);
    color: var(--foreground);
    letter-spacing: -0.03em;
    margin-bottom: var(--space-4);
}

.service-section-header .section-desc {
    font-size: var(--text-body-lg);
    color: var(--foreground-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Service Trust Bar (below hero) */
.service-trust-bar {
    background: var(--background);
    border-bottom: 1px solid var(--border-light);
    padding: var(--space-6) 0;
}

.service-trust-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.service-trust-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-body-sm);
    font-weight: 500;
    color: var(--foreground-muted);
}

.service-trust-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* Service Layout (Two-Column Grid) */
.service-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: var(--space-16);
    align-items: start;
}

/* Service Content Column */
.service-content h2 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: var(--text-h2);
    color: var(--foreground);
    letter-spacing: -0.03em;
    margin-bottom: var(--space-6);
    position: relative;
    padding-bottom: var(--space-4);
}

.service-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: var(--accent);
    border-radius: var(--radius-full);
}

.service-content h3 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: var(--text-h3);
    color: var(--foreground);
    margin-top: var(--space-12);
    margin-bottom: var(--space-6);
    padding-left: var(--space-4);
    border-left: 3px solid var(--accent);
}

.service-content p {
    font-size: var(--text-body-lg);
    color: var(--foreground-muted);
    line-height: 1.75;
    margin-bottom: var(--space-6);
}

/* Feature List (styled bullet points) */
.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-8);
}

.feature-list li {
    position: relative;
    padding-left: var(--space-8);
    margin-bottom: var(--space-4);
    font-size: var(--text-body);
    color: var(--foreground-muted);
    line-height: 1.7;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 20px;
    height: 20px;
    background: var(--accent-light);
    border-radius: var(--radius-full);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23B07D3A'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
}

.feature-list li strong {
    color: var(--foreground);
}

/* Mini Cards Grid */
.service-grid-mini {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.mini-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    transition: all var(--duration-normal) var(--ease-default);
    position: relative;
    overflow: hidden;
}

.mini-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform var(--duration-normal) var(--ease-default);
}

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

.mini-card:hover::before {
    transform: scaleY(1);
}

.mini-card h4 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: var(--text-h4);
    color: var(--foreground);
    margin-bottom: var(--space-2);
}

.mini-card p {
    font-size: var(--text-body-sm) !important;
    color: var(--foreground-muted);
    line-height: 1.6;
    margin-bottom: 0 !important;
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.sidebar-box {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.sidebar-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
}

.sidebar-box h3 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: var(--text-h4);
    color: var(--foreground);
    margin-bottom: var(--space-6);
    border-left: none;
    padding-left: 0;
    margin-top: 0;
}

.sidebar-list {
    list-style: none;
    padding: 0;
}

.sidebar-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--border-light);
    font-size: var(--text-body);
    color: var(--foreground-muted);
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list li strong {
    color: var(--foreground);
    font-weight: 600;
    margin-right: var(--space-4);
    white-space: nowrap;
}

/* Sidebar CTA Box */
.sidebar-cta {
    background: var(--foreground);
    color: var(--primary-foreground);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    text-align: center;
}

.sidebar-cta h4 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: var(--text-h3);
    color: var(--background);
    margin-bottom: var(--space-3);
}

.sidebar-cta p {
    font-size: var(--text-body);
    color: rgba(250, 248, 245, 0.75);
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

.sidebar-cta .btn-primary {
    background: var(--accent);
    color: var(--foreground);
    font-weight: 700;
}

.sidebar-cta .btn-primary:hover {
    background: var(--accent-dark);
    color: #FFFFFF;
}

/* Sidebar Review Quote */
.sidebar-review {
    background: var(--background-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
}

.sidebar-review-stars {
    color: #FFD700;
    font-size: 1rem;
    margin-bottom: var(--space-3);
    letter-spacing: 2px;
}

.sidebar-review-text {
    font-size: var(--text-body-sm);
    color: var(--foreground-muted);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: var(--space-3);
}

.sidebar-review-author {
    font-size: var(--text-label);
    font-weight: 600;
    color: var(--foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Service Process Steps */
.service-process {
    padding: var(--space-24) 0;
    background: var(--background);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.process-step {
    text-align: center;
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    background: var(--background);
    border: 1px solid var(--border-light);
    transition: all var(--duration-normal) var(--ease-default);
    position: relative;
}

.process-step:hover {
    border-color: var(--accent-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.process-step-number {
    width: 48px;
    height: 48px;
    background: var(--accent-light);
    color: var(--accent-dark);
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: var(--text-h3);
    margin-bottom: var(--space-4);
}

.process-step h4 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: var(--text-h4);
    color: var(--foreground);
    margin-bottom: var(--space-3);
}

.process-step p {
    font-size: var(--text-body-sm);
    color: var(--foreground-muted);
    line-height: 1.7;
}

/* Gallery Preview Section */
.gallery-preview {
    padding: var(--space-24) 0;
}

.gallery-preview .section-title {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: var(--text-h2);
    color: var(--foreground);
    letter-spacing: -0.03em;
    margin-bottom: var(--space-12);
}

.gallery-preview .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: var(--space-3);
    grid-auto-rows: auto;
}

.gallery-preview.section-light-bg {
    padding: var(--space-12) 0;
}

.gallery-preview .gallery-grid .gallery-item {
    grid-column: span 1 !important;
}

.gallery-preview .gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    min-height: 0;
}

.gallery-preview .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-default);
}

.gallery-preview .gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 23, 20, 0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-default);
}

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

.gallery-preview .gallery-item:hover::after {
    opacity: 1;
}

/* Service Dark CTA Section */
.service-cta-section {
    background: var(--foreground);
    padding: var(--space-24) 0;
    text-align: center;
}

.service-cta-section .cta-label {
    font-size: var(--text-label);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    display: block;
    margin-bottom: var(--space-4);
}

.service-cta-section .cta-headline {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: var(--text-h2);
    color: var(--background);
    letter-spacing: -0.03em;
    margin-bottom: var(--space-4);
}

.service-cta-section .cta-desc {
    font-size: var(--text-body-lg);
    color: rgba(250, 248, 245, 0.75);
    max-width: 500px;
    margin: 0 auto var(--space-8);
    line-height: 1.7;
}

.service-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-8);
}

.service-cta-buttons .btn-accent {
    height: 52px;
    padding: 0 32px;
    font-size: 1rem;
    box-shadow: 0 4px 24px rgba(176, 125, 58, 0.3);
}

.service-cta-buttons .btn-accent:hover {
    box-shadow: 0 6px 32px rgba(176, 125, 58, 0.45);
    transform: translateY(-2px);
}

.btn-cta-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    height: 52px;
    padding: 0 32px;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(250, 248, 245, 0.9);
    border: 1px solid rgba(250, 248, 245, 0.25);
    border-radius: var(--radius-md);
    background: transparent;
    transition: all var(--duration-fast) var(--ease-default);
}

.btn-cta-outline-light:hover {
    border-color: rgba(250, 248, 245, 0.5);
    background: rgba(250, 248, 245, 0.08);
    color: #FFFFFF;
}

.btn-cta-outline-light svg {
    width: 18px;
    height: 18px;
}

.service-cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.service-cta-trust-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-body-sm);
    font-weight: 500;
    color: rgba(250, 248, 245, 0.6);
}

.service-cta-trust-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* ===================================
   SERVICE SUBPAGE RESPONSIVE
   =================================== */
@media (max-width: 900px) {
    .service-layout {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .service-sidebar {
        position: static;
    }

    .service-grid-mini {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .gallery-preview .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-3);
    }

    .service-content h2 {
        font-size: 1.75rem;
    }

    .service-section-header .section-title {
        font-size: 1.75rem;
    }

    .service-cta-section .cta-headline {
        font-size: 1.75rem;
    }

    .section-padding {
        padding: var(--space-16) 0;
    }

    .gallery-preview {
        padding: var(--space-16) 0;
    }

    .service-process {
        padding: var(--space-16) 0;
    }

    .service-cta-section {
        padding: var(--space-16) 0;
    }

    .service-trust-bar .container {
        gap: var(--space-4);
    }
}

@media (max-width: 600px) {
    .service-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .service-cta-buttons .btn-accent,
    .btn-cta-outline-light {
        width: 100%;
    }

    .hero-logo-img {
        width: 160px;
    }
}

/* ===================================
   BOOKING MODAL (DRIPJOBS IFRAME)
   =================================== */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 23, 20, 0.85);
    /* Dark overlay */
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration-normal) var(--ease-default), visibility var(--duration-normal) var(--ease-default);
}

.booking-modal.active {
    opacity: 1;
    visibility: visible;
}

.booking-modal-content {
    background-color: var(--background);
    width: 90%;
    max-width: 600px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    transition: transform var(--duration-normal) var(--ease-default);
}

.booking-modal.active .booking-modal-content {
    transform: translateY(0);
}

.booking-iframe-container {
    width: 100%;
    height: 80vh;
    /* Responsive height */
    max-height: 800px;
    min-height: 500px;
    overflow: hidden;
}

.booking-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.booking-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: var(--foreground);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    background: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    z-index: 10;
    transition: background 0.2s, color 0.2s;
}

.booking-modal-close:hover {
    background: var(--background-secondary);
    color: var(--destructive);
}