/* ==========================================================================
   DUCK RIVER DUMPSTERS — Custom Premium Design
   Warm Orange & Cream Palette
   ========================================================================== */

/* --------------------------------------------------------------------------
   FONTS
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* --------------------------------------------------------------------------
   DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
    /* Brand Colors — Orange Forward */
    --orange: #D4842A;
    --orange-dark: #B56B1A;
    --orange-darker: #8F5114;
    --orange-light: #E8A555;
    --orange-lighter: #F2C078;
    --orange-pale: #FDF0E0;
    --orange-glow: rgba(212, 132, 42, 0.35);
    --orange-subtle: rgba(212, 132, 42, 0.08);

    /* Warm Neutrals */
    --charcoal: #1C1812;
    --charcoal-light: #2A2520;
    --warm-900: #3D352D;
    --warm-800: #52483E;
    --warm-700: #6B5E52;
    --warm-600: #8A7B6D;
    --warm-500: #A69688;
    --warm-400: #C4B8AD;
    --warm-300: #DDD5CC;
    --warm-200: #ECE6E0;
    --warm-100: #F7F3EF;
    --cream: #FFFBF5;
    --white: #FFFFFF;

    /* Semantic */
    --star: #F5A623;
    --success: #2ECC71;

    /* Typography */
    --font-display: 'Merriweather', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.25rem;
    --text-6xl: 4rem;
    --text-7xl: 5rem;

    /* Spacing */
    --sp-1: 0.25rem;
    --sp-2: 0.5rem;
    --sp-3: 0.75rem;
    --sp-4: 1rem;
    --sp-5: 1.25rem;
    --sp-6: 1.5rem;
    --sp-8: 2rem;
    --sp-10: 2.5rem;
    --sp-12: 3rem;
    --sp-16: 4rem;
    --sp-20: 5rem;
    --sp-24: 6rem;
    --sp-32: 8rem;

    /* Layout */
    --max-w: 1200px;
    --max-w-tight: 800px;

    /* Radius */
    --r-sm: 0.375rem;
    --r-md: 0.5rem;
    --r-lg: 0.75rem;
    --r-xl: 1rem;
    --r-2xl: 1.5rem;
    --r-full: 9999px;

    /* Shadows — warmer tones */
    --shadow-sm: 0 1px 3px rgba(28, 24, 18, 0.08);
    --shadow-md: 0 4px 12px rgba(28, 24, 18, 0.1);
    --shadow-lg: 0 12px 40px rgba(28, 24, 18, 0.12);
    --shadow-xl: 0 24px 60px rgba(28, 24, 18, 0.15);
    --shadow-glow: 0 0 40px var(--orange-glow);
    --shadow-orange: 0 8px 30px rgba(212, 132, 42, 0.25);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --t-fast: 150ms var(--ease);
    --t-base: 300ms var(--ease);
    --t-slow: 500ms var(--ease);
    --t-slower: 800ms var(--ease);

    /* Z-index */
    --z-base: 1;
    --z-nav: 100;
    --z-menu: 200;
    --z-modal: 300;
    --z-toast: 400;
}

/* --------------------------------------------------------------------------
   RESET
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--warm-700);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--t-fast);
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* --------------------------------------------------------------------------
   UTILITY
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--sp-6);
}

.section {
    padding: var(--sp-24) 0;
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-3);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--orange);
    margin-bottom: var(--sp-4);
}

.section-label::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--orange);
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1.15;
    margin-bottom: var(--sp-4);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--warm-600);
    max-width: 560px;
    line-height: 1.7;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-3);
    padding: 0.95rem 2rem;
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--r-xl);
    transition: all var(--t-base);
    white-space: nowrap;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn svg {
    flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md), 0 0 0 0 var(--orange-glow);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
    opacity: 0;
    transition: opacity var(--t-base);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary>* {
    position: relative;
    z-index: 1;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

/* Light section variant */
.section--light .btn-outline,
.about .btn-outline,
.contact .btn-outline {
    color: var(--charcoal);
    border-color: var(--warm-300);
}

.section--light .btn-outline:hover,
.about .btn-outline:hover,
.contact .btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: var(--orange-subtle);
}

.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: var(--text-lg);
}

/* --------------------------------------------------------------------------
   HEADER
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    padding: var(--sp-5) 0;
    transition: all var(--t-base);
}

.header.scrolled {
    background: rgba(28, 24, 18, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    padding: var(--sp-3) 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(212, 132, 42, 0.15);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
}

.nav-logo-img {
    width: 48px;
    height: 48px;
    border-radius: var(--r-lg);
    object-fit: cover;
    border: 2px solid var(--orange);
    box-shadow: 0 0 20px rgba(212, 132, 42, 0.2);
    transition: all var(--t-base);
}

.nav-logo:hover .nav-logo-img {
    box-shadow: 0 0 30px rgba(212, 132, 42, 0.4);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

.header.scrolled .nav-logo-text {
    color: var(--white);
}

.nav-logo-text span {
    color: var(--orange);
}

.nav-menu {
    display: flex;
    gap: var(--sp-8);
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--t-fast);
    position: relative;
}

.header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width var(--t-base);
}

.nav-link:hover {
    color: var(--white);
}

.header.scrolled .nav-link:hover {
    color: var(--orange);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.6rem 1.4rem;
    font-size: var(--text-sm);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: var(--sp-2);
    z-index: var(--z-menu);
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: var(--r-full);
    transition: all var(--t-base);
    transform-origin: center;
}

.header.scrolled .nav-toggle span {
    background: var(--white);
}

/* --------------------------------------------------------------------------
   MOBILE MENU
   -------------------------------------------------------------------------- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 340px;
    height: 100vh;
    height: 100dvh;
    background: var(--cream);
    border-left: 1px solid var(--warm-200);
    padding: var(--sp-8);
    transform: translateX(100%);
    transition: transform var(--t-base);
    z-index: var(--z-menu);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: var(--sp-6);
    border-bottom: 1px solid var(--warm-200);
    margin-bottom: var(--sp-6);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}

.mobile-menu-logo img {
    width: 40px;
    height: 40px;
    border-radius: var(--r-md);
    object-fit: cover;
    border: 2px solid var(--orange);
}

.mobile-menu-logo span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--text-base);
    color: var(--charcoal);
}

.mobile-menu-close {
    color: var(--warm-600);
    padding: var(--sp-2);
    transition: color var(--t-fast);
}

.mobile-menu-close:hover {
    color: var(--orange);
}

.mobile-menu-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    flex: 1;
}

.mobile-menu-link {
    display: block;
    padding: var(--sp-4) var(--sp-4);
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--warm-800);
    border-radius: var(--r-lg);
    transition: all var(--t-fast);
}

.mobile-menu-link:hover {
    background: var(--orange-pale);
    color: var(--orange-dark);
    padding-left: var(--sp-6);
}

.mobile-menu-cta {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

/* Mobile overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(28, 24, 18, 0.5);
    backdrop-filter: blur(4px);
    z-index: calc(var(--z-menu) - 1);
    opacity: 0;
    visibility: hidden;
    transition: all var(--t-base);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --------------------------------------------------------------------------
   HERO — Dark section (keeps dramatic feel)
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, #2A2218 50%, var(--warm-900) 100%);
}

.hero-image {
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.png') center/cover no-repeat;
    opacity: 0.15;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212, 132, 42, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 132, 42, 0.15) 0%, transparent 50%),
        linear-gradient(to bottom, rgba(28, 24, 18, 0.5) 0%, rgba(28, 24, 18, 0.7) 50%, var(--charcoal) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(1);
    }
}

.hero-content {
    position: relative;
    text-align: center;
    padding: var(--sp-32) var(--sp-6);
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-3);
    padding: var(--sp-3) var(--sp-6);
    background: rgba(212, 132, 42, 0.15);
    border: 1px solid rgba(212, 132, 42, 0.35);
    border-radius: var(--r-full);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--orange-lighter);
    margin-bottom: var(--sp-8);
    backdrop-filter: blur(10px);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(212, 132, 42, 0.4);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 8px rgba(212, 132, 42, 0);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(var(--text-4xl), 7vw, var(--text-7xl));
    font-weight: 900;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: var(--sp-6);
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 4px 40px rgba(0, 0, 0, 0.3);
}

.hero-title .accent {
    background: linear-gradient(135deg, var(--orange-lighter) 0%, var(--orange) 50%, var(--orange-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--warm-300);
    max-width: 580px;
    margin: 0 auto var(--sp-10);
    line-height: 1.8;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.hero-actions {
    display: flex;
    gap: var(--sp-4);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: var(--sp-10);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-3);
    color: var(--warm-500);
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 1;
        height: 40px;
    }

    50% {
        opacity: 0.4;
        height: 24px;
    }
}

/* --------------------------------------------------------------------------
   ABOUT — Dark contrast section
   -------------------------------------------------------------------------- */
.about {
    overflow: hidden;
    background: var(--charcoal);
    color: var(--warm-300);
}

.about .section-label {
    color: var(--orange-light);
}

.about .section-title {
    color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: center;
}

.about-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: var(--r-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl), var(--shadow-orange);
    border: 3px solid rgba(212, 132, 42, 0.25);
}

.about-photo {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-image-badge {
    position: absolute;
    bottom: var(--sp-4);
    right: var(--sp-4);
    width: 64px;
    height: 64px;
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 3px solid rgba(212, 132, 42, 0.5);
    box-shadow: var(--shadow-lg);
    background: var(--charcoal);
}

.about-badge-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    color: var(--warm-400);
    margin-bottom: var(--sp-6);
    line-height: 1.8;
    font-size: var(--text-base);
}

.about-highlight {
    padding: var(--sp-6);
    background: rgba(212, 132, 42, 0.1);
    border-left: 3px solid var(--orange);
    border-radius: 0 var(--r-lg) var(--r-lg) 0;
    margin-bottom: var(--sp-8);
}

.about-highlight p {
    color: var(--warm-200);
    font-weight: 500;
    font-style: italic;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
    padding-top: var(--sp-8);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: var(--sp-2);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--warm-500);
}

/* --------------------------------------------------------------------------
   SERVICES — Bold orange background section
   -------------------------------------------------------------------------- */
.services {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 40%, var(--orange-darker) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Subtle texture overlay */
.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.services .section-label {
    color: rgba(255, 255, 255, 0.7);
}

.services .section-label::before {
    background: rgba(255, 255, 255, 0.5);
}

.services .section-title {
    color: var(--white);
}

.services .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.services-header {
    text-align: center;
    margin-bottom: var(--sp-16);
    position: relative;
}

.services-header .section-label {
    justify-content: center;
}

.services-header .section-label::before {
    display: none;
}

.services-header .section-subtitle {
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
    position: relative;
}

.service-card {
    position: relative;
    padding: var(--sp-8);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--r-2xl);
    transition: all var(--t-slow);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    opacity: 0;
    transition: opacity var(--t-base);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--t-base);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--r-xl);
    margin-bottom: var(--sp-6);
    color: var(--white);
    position: relative;
    z-index: 1;
    transition: all var(--t-base);
}

.service-card:hover .service-card-icon {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.service-card-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--sp-3);
    position: relative;
    z-index: 1;
}

.service-card-desc {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* --------------------------------------------------------------------------
   PHOTO SHOWCASE STRIP
   -------------------------------------------------------------------------- */
.showcase {
    background: var(--charcoal-light);
    padding: var(--sp-2) 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-2);
}

.showcase-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}

.showcase-item:hover img {
    transform: scale(1.08);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 24, 18, 0.85) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: var(--sp-6);
    opacity: 0;
    transition: opacity var(--t-base);
}

.showcase-item:hover .showcase-overlay {
    opacity: 1;
}

.showcase-overlay span {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --------------------------------------------------------------------------
   WHY CHOOSE US — Dark with warm accents
   -------------------------------------------------------------------------- */
.why-us {
    background: var(--charcoal-light);
    color: var(--warm-300);
}

.why-us .section-title {
    color: var(--white);
}

.why-us-header {
    text-align: center;
    margin-bottom: var(--sp-16);
}

.why-us-header .section-label {
    justify-content: center;
}

.why-us-header .section-label::before {
    display: none;
}

.why-us-header .section-subtitle {
    margin: 0 auto;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-8);
}

.why-us-card {
    text-align: center;
    padding: var(--sp-10) var(--sp-6);
    border-radius: var(--r-2xl);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--t-base);
}

.why-us-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-md), var(--shadow-orange);
    transform: translateY(-5px);
}

.why-us-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--sp-6);
    background: rgba(212, 132, 42, 0.1);
    border-radius: 50%;
    color: var(--orange);
    transition: all var(--t-base);
}

.why-us-card:hover .why-us-icon {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

.why-us-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--sp-4);
}

.why-us-desc {
    font-size: var(--text-sm);
    color: var(--warm-400);
    line-height: 1.8;
    max-width: 300px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   TESTIMONIALS — Dark charcoal, warm feel
   -------------------------------------------------------------------------- */
.testimonials {
    overflow: hidden;
    background: var(--charcoal);
    color: var(--white);
    position: relative;
}

/* Warm ambient glow */
.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 0%, rgba(212, 132, 42, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(212, 132, 42, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-subtitle {
    color: var(--warm-400);
}

.testimonials-header {
    text-align: center;
    margin-bottom: var(--sp-16);
    position: relative;
}

.testimonials-header .section-label {
    justify-content: center;
}

.testimonials-header .section-label::before {
    display: none;
}

.testimonials-header .section-subtitle {
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
    position: relative;
}

.testimonial-card {
    padding: var(--sp-8);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-2xl);
    transition: all var(--t-base);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: var(--sp-6);
    right: var(--sp-6);
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(212, 132, 42, 0.12);
    line-height: 1;
}

.testimonial-card:hover {
    border-color: rgba(212, 132, 42, 0.25);
    background: rgba(212, 132, 42, 0.06);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--sp-6);
    color: var(--star);
}

.testimonial-quote {
    font-size: var(--text-base);
    color: var(--warm-300);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: var(--sp-6);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: var(--sp-1);
    padding-top: var(--sp-6);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-name {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--white);
    font-size: var(--text-base);
}

.testimonial-location {
    font-size: var(--text-sm);
    color: var(--warm-500);
}

/* --------------------------------------------------------------------------
   CONTACT — Cream background
   -------------------------------------------------------------------------- */
.contact {
    background: var(--cream);
}

.contact .section-title {
    color: var(--charcoal);
}

.contact-header {
    text-align: center;
    margin-bottom: var(--sp-16);
}

.contact-header .section-label {
    justify-content: center;
}

.contact-header .section-label::before {
    display: none;
}

.contact-header .section-subtitle {
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-12);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--sp-6);
}

.contact-card {
    display: flex;
    gap: var(--sp-5);
    padding: var(--sp-6);
    background: var(--white);
    border: 1px solid var(--warm-200);
    border-radius: var(--r-xl);
    transition: all var(--t-base);
    box-shadow: var(--shadow-sm);
}

.contact-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange-pale) 0%, rgba(212, 132, 42, 0.08) 100%);
    border-radius: var(--r-lg);
    color: var(--orange);
}

.contact-details h3 {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--sp-2);
}

.contact-details p,
.contact-details a {
    font-size: var(--text-sm);
    color: var(--warm-600);
    line-height: 1.7;
    word-break: break-all;
}

.contact-details a:hover {
    color: var(--orange);
}

.contact-cta {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 50%, var(--orange-darker) 100%);
    border-radius: var(--r-2xl);
    padding: var(--sp-10);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-orange);
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.contact-cta h3 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--sp-4);
    position: relative;
}

.contact-cta>p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--sp-8);
    line-height: 1.7;
    position: relative;
}

.contact-buttons {
    display: flex;
    gap: var(--sp-4);
    flex-wrap: wrap;
    position: relative;
}

.contact-cta .btn-primary {
    background: var(--white);
    color: var(--orange-dark);
}

.contact-cta .btn-primary::after {
    background: var(--warm-100);
}

.contact-cta .btn-primary:hover {
    box-shadow: var(--shadow-lg);
}

.contact-cta .btn-outline {
    color: var(--white) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.contact-cta .btn-outline:hover {
    border-color: var(--white) !important;
    background: rgba(255, 255, 255, 0.12) !important;
}

/* --------------------------------------------------------------------------
   FOOTER — Dark warm charcoal
   -------------------------------------------------------------------------- */
.footer {
    background: var(--charcoal);
    color: var(--warm-400);
    padding: var(--sp-16) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--sp-10);
    padding-bottom: var(--sp-12);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    margin-bottom: var(--sp-4);
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: var(--r-md);
    object-fit: cover;
    border: 2px solid var(--orange);
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--white);
}

.footer-tagline {
    color: var(--warm-500);
    font-size: var(--text-sm);
    line-height: 1.7;
    margin-bottom: var(--sp-6);
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: var(--sp-3);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-lg);
    color: var(--warm-500);
    transition: all var(--t-base);
}

.social-link:hover {
    background: rgba(212, 132, 42, 0.15);
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--sp-6);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.footer-links a {
    font-size: var(--text-sm);
    color: var(--warm-500);
    transition: all var(--t-fast);
}

.footer-links a:hover {
    color: var(--orange);
    padding-left: var(--sp-2);
}

.footer-contact p {
    font-size: var(--text-sm);
    color: var(--warm-500);
    margin-bottom: var(--sp-3);
    line-height: 1.7;
}

.footer-contact a {
    color: var(--warm-500);
}

.footer-contact a:hover {
    color: var(--orange);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-6) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: var(--text-sm);
    color: var(--warm-600);
}

.footer-credit a {
    color: var(--warm-500);
    transition: color var(--t-fast);
}

.footer-credit a:hover {
    color: var(--orange);
}

/* --------------------------------------------------------------------------
   MOBILE BOTTOM BAR
   -------------------------------------------------------------------------- */
.mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(28, 24, 18, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(212, 132, 42, 0.2);
    padding: var(--sp-3) var(--sp-4);
    z-index: var(--z-nav);
    gap: var(--sp-3);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
}

.mobile-bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    padding: var(--sp-4);
    border-radius: var(--r-lg);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--text-sm);
    transition: all var(--t-base);
}

.mobile-bar-btn--call {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 132, 42, 0.3);
}

.mobile-bar-btn--email {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
}

/* --------------------------------------------------------------------------
   SCROLL REVEAL
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delay for grids */
.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

.reveal-delay-6 {
    transition-delay: 0.6s;
}

/* --------------------------------------------------------------------------
   RESPONSIVE — TABLET
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid .why-us-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--sp-8);
    }
}

/* --------------------------------------------------------------------------
   RESPONSIVE — MOBILE
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .section {
        padding: var(--sp-16) 0;
    }

    .section-title {
        font-size: var(--text-3xl);
    }

    /* Nav */
    .nav-menu,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-logo-text {
        font-size: var(--text-base);
    }

    .nav-logo-img {
        width: 40px;
        height: 40px;
    }

    /* Hero */
    .hero-content {
        padding: var(--sp-24) var(--sp-4);
    }

    .hero-subtitle {
        font-size: var(--text-base);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
    }

    .hero-scroll {
        display: none;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-10);
    }

    .about-image-wrapper {
        max-width: 100%;
    }

    .about-image-badge {
        width: 52px;
        height: 52px;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--sp-4);
    }

    .stat-number {
        font-size: var(--text-2xl);
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-4);
    }

    .service-card {
        padding: var(--sp-6);
    }

    /* Showcase */
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-2);
    }

    /* Why Us */
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-4);
    }

    .why-us-grid .why-us-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-4);
    }

    .testimonials-grid .testimonial-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-8);
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-buttons .btn {
        width: 100%;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-8);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--sp-3);
        text-align: center;
    }

    /* Mobile bar */
    .mobile-bar {
        display: flex;
    }

    /* Add padding to body for mobile bar */
    body {
        padding-bottom: 72px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--sp-4);
    }

    .section-title {
        font-size: var(--text-2xl);
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: var(--sp-4);
    }

    .stat {
        display: flex;
        align-items: center;
        gap: var(--sp-3);
        text-align: left;
    }
}