/* ============================================
   DK MALER AS - Premium Website Styles
   "Clean Canvas" Design System
   ============================================ */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS Variables & Design Tokens
   ============================================ */
:root {
    /* Primary Palette */
    --forest-green: #2D5A47;
    --forest-green-light: #3A7A5E;
    --forest-green-dark: #1E3D30;

    /* Secondary Palette */
    --warm-sand: #E8DCC4;
    --warm-sand-light: #F5EFE3;
    --warm-sand-dark: #D4C5A9;

    /* Accent */
    --copper: #C67D4A;
    --copper-light: #D9956A;
    --copper-dark: #A66435;

    /* Neutrals */
    --canvas: #FEFDFB;
    --canvas-cream: #FAF8F5;
    --charcoal: #3A3A3A;
    --charcoal-light: #5A5A5A;
    --charcoal-lighter: #8A8A8A;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;

    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Transitions */
    --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(45, 90, 71, 0.06);
    --shadow-md: 0 4px 20px rgba(45, 90, 71, 0.08);
    --shadow-lg: 0 8px 40px rgba(45, 90, 71, 0.12);
    --shadow-xl: 0 16px 60px rgba(45, 90, 71, 0.16);

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

/* ============================================
   Reset & Base Styles
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--canvas);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection */
::selection {
    background-color: var(--forest-green);
    color: var(--canvas);
}

/* Focus Styles */
:focus-visible {
    outline: 2px solid var(--copper);
    outline-offset: 3px;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s var(--ease-smooth);
}

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

/* Lists */
ul, ol {
    list-style: none;
}

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

/* ============================================
   Typography System
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--charcoal);
}

.heading-xl {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.heading-lg {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.heading-md {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
}

.heading-sm {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.8;
}

.text-md {
    font-size: 1rem;
    line-height: 1.7;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.6;
}

.text-xs {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}

/* Italic accent for display text */
.italic-accent {
    font-style: italic;
    color: var(--copper);
}

/* ============================================
   Layout Components
   ============================================ */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-sm {
    max-width: 900px;
}

.container-lg {
    max-width: 1600px;
}

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

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

/* Grid System */
.grid {
    display: grid;
    gap: var(--space-xl);
}

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

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

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

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

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

/* Flex Utilities */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.flex-col {
    flex-direction: column;
}

.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* ============================================
   Decorative Elements
   ============================================ */

/* Paint Brush Stroke */
.brush-stroke {
    position: relative;
    display: inline-block;
}

.brush-stroke::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: -0.05em;
    right: -0.05em;
    height: 0.35em;
    background: linear-gradient(90deg,
        var(--copper) 0%,
        var(--copper-light) 50%,
        var(--copper) 100%
    );
    opacity: 0.3;
    z-index: -1;
    transform: skewX(-3deg);
    border-radius: 2px;
}

/* Paint Drip */
.paint-drip {
    position: relative;
}

.paint-drip::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 20%;
    width: 3px;
    height: 30px;
    background: var(--forest-green);
    border-radius: 0 0 3px 3px;
    opacity: 0.5;
}

/* Texture Overlay */
.texture-overlay {
    position: relative;
}

.texture-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

/* Gradient Mesh Background */
.gradient-mesh {
    background:
        radial-gradient(ellipse at 20% 30%, rgba(45, 90, 71, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(198, 125, 74, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(232, 220, 196, 0.3) 0%, transparent 70%),
        var(--canvas);
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-lg) 0;
    transition: all 0.4s var(--ease-smooth);
}

.nav.scrolled {
    background: rgba(254, 253, 251, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-md) 0;
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.nav-logo-mark {
    width: 48px;
    height: 48px;
    background: var(--forest-green);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--canvas);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    transition: transform 0.3s var(--ease-bounce);
}

.nav-logo:hover .nav-logo-mark {
    transform: scale(1.05) rotate(-2deg);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav-logo-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
}

.nav-logo-tagline {
    font-size: 0.7rem;
    color: var(--charcoal-lighter);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.nav-link {
    position: relative;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
    padding: var(--space-sm) 0;
    transition: color 0.3s var(--ease-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--copper);
    transition: width 0.3s var(--ease-out-expo);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--forest-green);
}

.nav-cta {
    background: var(--forest-green);
    color: var(--canvas);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: 0 4px 15px rgba(45, 90, 71, 0.2);
}

.nav-cta:hover {
    background: var(--forest-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 71, 0.3);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all 0.3s var(--ease-smooth);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--canvas);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-xl);
        transform: translateX(100%);
        transition: transform 0.5s var(--ease-out-expo);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.5rem;
        font-family: var(--font-display);
    }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all 0.3s var(--ease-smooth);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--forest-green);
    color: var(--canvas);
    box-shadow: 0 4px 20px rgba(45, 90, 71, 0.25);
}

.btn-primary:hover {
    background: var(--forest-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 90, 71, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--forest-green);
    border-color: var(--forest-green);
}

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

.btn-copper {
    background: var(--copper);
    color: var(--canvas);
    box-shadow: 0 4px 20px rgba(198, 125, 74, 0.3);
}

.btn-copper:hover {
    background: var(--copper-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(198, 125, 74, 0.4);
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1rem;
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s var(--ease-smooth);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

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

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(45, 90, 71, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 80%, rgba(198, 125, 74, 0.08) 0%, transparent 40%),
        linear-gradient(180deg, var(--canvas) 0%, var(--warm-sand-light) 100%);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image:
        linear-gradient(90deg, var(--warm-sand-dark) 1px, transparent 1px),
        linear-gradient(var(--warm-sand-dark) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
}

/* Animated brush strokes */
.hero-brush-1 {
    position: absolute;
    top: 15%;
    right: 5%;
    width: 200px;
    height: 60px;
    background: linear-gradient(90deg, var(--forest-green) 0%, transparent 100%);
    opacity: 0.15;
    border-radius: 30px;
    transform: rotate(-10deg);
    animation: brushFloat 8s ease-in-out infinite;
}

.hero-brush-2 {
    position: absolute;
    bottom: 20%;
    left: 3%;
    width: 150px;
    height: 40px;
    background: linear-gradient(90deg, var(--copper) 0%, transparent 100%);
    opacity: 0.12;
    border-radius: 20px;
    transform: rotate(5deg);
    animation: brushFloat 10s ease-in-out infinite reverse;
}

.hero-brush-3 {
    position: absolute;
    top: 40%;
    right: 15%;
    width: 100px;
    height: 30px;
    background: linear-gradient(90deg, var(--warm-sand-dark) 0%, transparent 100%);
    opacity: 0.2;
    border-radius: 15px;
    transform: rotate(-5deg);
    animation: brushFloat 6s ease-in-out infinite 2s;
}

@keyframes brushFloat {
    0%, 100% {
        transform: translateY(0) rotate(-10deg);
    }
    50% {
        transform: translateY(-20px) rotate(-8deg);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--warm-sand);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-xl);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--charcoal);
    animation: fadeSlideUp 0.8s var(--ease-out-expo) 0.2s both;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--forest-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    animation: fadeSlideUp 0.8s var(--ease-out-expo) 0.3s both;
}

.hero-title span {
    display: block;
}

.hero-title .line-2 {
    color: var(--forest-green);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--charcoal-light);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
    max-width: 500px;
    animation: fadeSlideUp 0.8s var(--ease-out-expo) 0.4s both;
}

.hero-ctas {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s var(--ease-out-expo) 0.5s both;
}

.hero-features {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
    animation: fadeSlideUp 0.8s var(--ease-out-expo) 0.6s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--charcoal-light);
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeSlideLeft 1s var(--ease-out-expo) 0.4s both;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.03);
}

/* Floating card */
.hero-float-card {
    position: absolute;
    bottom: -30px;
    left: -40px;
    background: var(--canvas);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    animation: float 4s ease-in-out infinite;
}

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

.hero-float-icon {
    width: 50px;
    height: 50px;
    background: var(--forest-green);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--canvas);
}

.hero-float-text strong {
    display: block;
    font-size: 1.5rem;
    font-family: var(--font-display);
    color: var(--charcoal);
}

.hero-float-text span {
    font-size: 0.85rem;
    color: var(--charcoal-lighter);
}

/* Color swatches */
.hero-swatches {
    position: absolute;
    top: 20px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    animation: float 5s ease-in-out infinite reverse;
}

.hero-swatch {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s var(--ease-bounce);
}

.hero-swatch:hover {
    transform: scale(1.15) rotate(5deg);
}

.hero-swatch-1 { background: var(--forest-green); }
.hero-swatch-2 { background: var(--copper); }
.hero-swatch-3 { background: var(--warm-sand); }

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

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

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-4xl);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: var(--space-md);
}

.section-label::before,
.section-label::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--copper);
    opacity: 0.5;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: var(--charcoal-light);
    line-height: 1.8;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    background: var(--canvas-cream);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 90, 71, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card {
    background: var(--canvas);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-smooth);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(45, 90, 71, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-green), var(--copper));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out-expo);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--forest-green-light), var(--forest-green));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--canvas);
    margin-bottom: var(--space-lg);
    transition: transform 0.3s var(--ease-bounce);
}

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

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    font-family: var(--font-display);
}

.service-description {
    color: var(--charcoal-light);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.service-feature {
    font-size: 0.8rem;
    padding: var(--space-xs) var(--space-sm);
    background: var(--warm-sand-light);
    border-radius: var(--radius-full);
    color: var(--charcoal-light);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    font-weight: 500;
    color: var(--forest-green);
    transition: gap 0.3s var(--ease-smooth);
}

.service-link:hover {
    gap: var(--space-md);
}

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

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

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-us {
    position: relative;
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.why-us-visual {
    position: relative;
}

.why-us-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.why-us-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--warm-sand);
    border-radius: var(--radius-xl);
    z-index: -1;
}

.why-us-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--forest-green);
    color: var(--canvas);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.why-us-badge-number {
    font-size: 2.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1;
}

.why-us-badge-text {
    font-size: 0.85rem;
    opacity: 0.9;
}

.why-us-text h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: var(--space-xl);
    line-height: 1.2;
}

.why-us-intro {
    font-size: 1.1rem;
    color: var(--charcoal-light);
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.why-feature {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--canvas-cream);
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--ease-smooth);
}

.why-feature:hover {
    background: var(--warm-sand-light);
    transform: translateX(10px);
}

.why-feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--canvas);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-green);
    box-shadow: var(--shadow-sm);
}

.why-feature-content h4 {
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.why-feature-content p {
    font-size: 0.95rem;
    color: var(--charcoal-light);
}

@media (max-width: 1024px) {
    .why-us-content {
        grid-template-columns: 1fr;
    }

    .why-us-visual {
        order: -1;
    }

    .why-us-image {
        height: 400px;
    }
}

/* ============================================
   Before/After Section
   ============================================ */
.before-after {
    background: var(--charcoal);
    color: var(--canvas);
    position: relative;
    overflow: hidden;
}

.before-after::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--canvas) 0%, transparent 100%);
    opacity: 0.03;
}

.before-after .section-label {
    color: var(--copper-light);
}

.before-after .section-label::before,
.before-after .section-label::after {
    background: var(--copper-light);
}

.before-after .section-title {
    color: var(--canvas);
}

.before-after .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.ba-slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.ba-image-after {
    z-index: 0;
}

.ba-slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--canvas);
    z-index: 2;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.ba-slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--canvas);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s var(--ease-bounce);
}

.ba-slider-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.ba-slider-button svg {
    color: var(--charcoal);
}

.ba-labels {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    z-index: 3;
    pointer-events: none;
}

.ba-label {
    background: rgba(0, 0, 0, 0.6);
    color: var(--canvas);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

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

/* ============================================
   Service Area Section
   ============================================ */
.service-area {
    background: var(--warm-sand-light);
    position: relative;
}

.service-area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.area-map {
    position: relative;
    background: var(--canvas);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
}

.area-map-visual {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--forest-green-light) 0%, var(--forest-green) 100%);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.area-map-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.area-pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: pinBounce 2s ease-in-out infinite;
}

.area-pin-icon {
    width: 36px;
    height: 36px;
    background: var(--copper);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(198, 125, 74, 0.4);
}

.area-pin-icon svg {
    transform: rotate(45deg);
    color: var(--canvas);
}

.area-pin-label {
    background: var(--canvas);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: var(--space-sm);
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

.area-pin.main {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.area-pin.secondary-1 {
    top: 30%;
    left: 70%;
    animation-delay: 0.3s;
}

.area-pin.secondary-2 {
    top: 70%;
    left: 30%;
    animation-delay: 0.6s;
}

.area-pin.secondary-3 {
    top: 25%;
    left: 25%;
    animation-delay: 0.9s;
}

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

.area-pin.main {
    transform: translate(-50%, -50%);
}

.area-pin.main:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.area-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.area-list h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: var(--space-md);
}

.area-intro {
    color: var(--charcoal-light);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.area-regions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.area-region {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--canvas);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease-smooth);
}

.area-region:hover {
    background: var(--forest-green);
    color: var(--canvas);
    transform: translateX(5px);
}

.area-region-icon {
    width: 8px;
    height: 8px;
    background: var(--copper);
    border-radius: 50%;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .service-area-content {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-dark) 100%);
    color: var(--canvas);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--canvas);
    margin-bottom: var(--space-lg);
}

.cta-description {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-light {
    background: var(--canvas);
    color: var(--forest-green);
    padding: var(--space-md) var(--space-2xl);
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cta-btn-outline {
    background: transparent;
    color: var(--canvas);
    padding: var(--space-md) var(--space-2xl);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    font-weight: 500;
    transition: all 0.3s var(--ease-smooth);
}

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

.cta-features {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
    opacity: 0.9;
}

.cta-feature svg {
    color: var(--copper-light);
}

@media (max-width: 640px) {
    .cta-features {
        flex-direction: column;
        gap: var(--space-md);
    }
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.footer-logo-mark {
    width: 48px;
    height: 48px;
    background: var(--forest-green);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--canvas);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--canvas);
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

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

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--canvas);
    transition: all 0.3s var(--ease-smooth);
}

.footer-social-link:hover {
    background: var(--forest-green);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--canvas);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-link {
    font-size: 0.95rem;
    transition: all 0.3s var(--ease-smooth);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer-link:hover {
    color: var(--canvas);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
}

.footer-contact-item svg {
    flex-shrink: 0;
    color: var(--copper);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-copyright {
    font-size: 0.85rem;
    opacity: 0.7;
}

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

.footer-legal a {
    font-size: 0.85rem;
    opacity: 0.7;
    transition: opacity 0.3s var(--ease-smooth);
}

.footer-legal a:hover {
    opacity: 1;
}

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

    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }
}

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   Page Headers
   ============================================ */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, var(--warm-sand-light) 0%, var(--canvas) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(45, 90, 71, 0.05) 0%, transparent 60%);
    border-radius: 50%;
}

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

.page-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: var(--charcoal-lighter);
    margin-bottom: var(--space-lg);
}

.page-breadcrumb a {
    color: var(--charcoal-lighter);
    transition: color 0.3s var(--ease-smooth);
}

.page-breadcrumb a:hover {
    color: var(--forest-green);
}

.page-breadcrumb span {
    color: var(--charcoal);
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--space-lg);
}

.page-description {
    font-size: 1.15rem;
    color: var(--charcoal-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   Services Page
   ============================================ */
.services-detailed {
    background: var(--canvas);
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    padding: var(--space-4xl) 0;
    border-bottom: 1px solid var(--warm-sand);
}

.service-detail-card:nth-child(even) {
    direction: rtl;
}

.service-detail-card:nth-child(even) > * {
    direction: ltr;
}

.service-detail-card:last-child {
    border-bottom: none;
}

.service-detail-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.service-detail-image:hover img {
    transform: scale(1.05);
}

.service-detail-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--forest-green);
    color: var(--canvas);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
}

.service-detail-content h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: var(--space-lg);
}

.service-detail-content p {
    color: var(--charcoal-light);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.service-detail-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm) var(--space-lg);
    margin-bottom: var(--space-xl);
}

.service-detail-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
}

.service-detail-list li svg {
    color: var(--forest-green);
    flex-shrink: 0;
}

.service-price-hint {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: var(--warm-sand-light);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--charcoal-light);
}

.service-price-hint strong {
    color: var(--charcoal);
}

@media (max-width: 1024px) {
    .service-detail-card {
        grid-template-columns: 1fr;
    }

    .service-detail-card:nth-child(even) {
        direction: ltr;
    }

    .service-detail-image img {
        height: 300px;
    }

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

/* ============================================
   About Page
   ============================================ */
.about-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: var(--space-xl);
}

.about-text p {
    color: var(--charcoal-light);
    line-height: 1.9;
    margin-bottom: var(--space-lg);
}

.about-signature {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--warm-sand);
}

.about-signature-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--forest-green);
}

.about-signature-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--charcoal);
}

.about-signature-text span {
    font-size: 0.9rem;
    color: var(--charcoal-lighter);
}

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

.about-image-1 {
    position: absolute;
    width: 70%;
    height: 80%;
    top: 0;
    left: 0;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.about-image-2 {
    position: absolute;
    width: 60%;
    height: 60%;
    bottom: 0;
    right: 0;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.about-accent-box {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--forest-green);
    color: var(--canvas);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    z-index: 3;
    box-shadow: var(--shadow-lg);
}

.about-accent-number {
    font-size: 2.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1;
}

.about-accent-text {
    font-size: 0.85rem;
    opacity: 0.9;
}

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

    .about-image-stack {
        height: 400px;
        order: -1;
    }
}

/* Values Section */
.values-section {
    background: var(--canvas-cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.value-card {
    background: var(--canvas);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.4s var(--ease-smooth);
    box-shadow: var(--shadow-sm);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--warm-sand-light), var(--warm-sand));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--forest-green);
    transition: all 0.3s var(--ease-bounce);
}

.value-card:hover .value-icon {
    background: var(--forest-green);
    color: var(--canvas);
    transform: scale(1.1) rotate(5deg);
}

.value-title {
    font-size: 1.2rem;
    font-family: var(--font-display);
    margin-bottom: var(--space-sm);
}

.value-description {
    font-size: 0.95rem;
    color: var(--charcoal-light);
    line-height: 1.7;
}

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

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

/* Process Section */
.process-section {
    background: var(--canvas);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    width: 2px;
    height: 100%;
    background: var(--warm-sand);
}

.process-step {
    display: flex;
    gap: var(--space-xl);
    padding-bottom: var(--space-3xl);
    position: relative;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--forest-green);
    color: var(--canvas);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    z-index: 1;
    box-shadow: var(--shadow-md);
}

.process-content {
    flex: 1;
    padding-top: var(--space-sm);
}

.process-content h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
}

.process-content p {
    color: var(--charcoal-light);
    line-height: 1.7;
}

/* ============================================
   Gallery Page
   ============================================ */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.gallery-filter {
    padding: var(--space-sm) var(--space-lg);
    border: 2px solid var(--warm-sand);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
    background: var(--canvas);
    transition: all 0.3s var(--ease-smooth);
    cursor: pointer;
}

.gallery-filter:hover,
.gallery-filter.active {
    background: var(--forest-green);
    border-color: var(--forest-green);
    color: var(--canvas);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-xl);
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
}

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

.gallery-title {
    color: var(--canvas);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.gallery-category {
    color: var(--copper-light);
    font-size: 0.85rem;
}

.gallery-expand {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--canvas);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s var(--ease-bounce);
}

.gallery-item:hover .gallery-expand {
    opacity: 1;
    transform: scale(1);
}

/* Gallery item sizes for masonry-like effect */
.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

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

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 4/3;
    }
}

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

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-smooth);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-lg);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--canvas);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s var(--ease-bounce);
}

.lightbox-close:hover {
    transform: scale(1.1) rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--canvas);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
}

.lightbox-nav:hover {
    background: var(--forest-green);
    color: var(--canvas);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-caption {
    text-align: center;
    color: var(--canvas);
    margin-top: var(--space-lg);
}

.lightbox-caption h4 {
    color: var(--canvas);
    margin-bottom: var(--space-xs);
}

.lightbox-caption p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-section {
    background: var(--canvas);
}

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

.contact-info {
    background: var(--forest-green);
    color: var(--canvas);
    padding: var(--space-3xl);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.contact-info h3 {
    color: var(--canvas);
    font-size: 1.8rem;
    margin-bottom: var(--space-lg);
}

.contact-info > p {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.contact-detail {
    display: flex;
    gap: var(--space-md);
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-content strong {
    display: block;
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: var(--space-xs);
    font-weight: 500;
}

.contact-detail-content span,
.contact-detail-content a {
    font-size: 1.05rem;
    color: var(--canvas);
}

.contact-hours {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
}

.contact-hours h4 {
    color: var(--canvas);
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

.contact-hours-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    font-size: 0.95rem;
}

.contact-hours-list li {
    display: flex;
    justify-content: space-between;
}

.contact-hours-list li span:last-child {
    opacity: 0.8;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--canvas);
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: var(--space-sm);
}

.contact-form-wrapper > p {
    color: var(--charcoal-light);
    margin-bottom: var(--space-2xl);
}

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

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--charcoal);
}

.form-label .required {
    color: var(--copper);
}

.form-input,
.form-select,
.form-textarea {
    padding: var(--space-md) var(--space-lg);
    border: 2px solid var(--warm-sand);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--charcoal);
    background: var(--canvas);
    transition: all 0.3s var(--ease-smooth);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--forest-green);
    box-shadow: 0 0 0 4px rgba(45, 90, 71, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--charcoal-lighter);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233A3A3A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: var(--space-3xl);
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--forest-green);
}

.form-checkbox span {
    font-size: 0.95rem;
    color: var(--charcoal-light);
}

.form-submit {
    padding: var(--space-lg) var(--space-2xl);
    background: var(--forest-green);
    color: var(--canvas);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    align-self: flex-start;
}

.form-submit:hover {
    background: var(--forest-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 90, 71, 0.3);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    font-size: 0.85rem;
    color: var(--charcoal-lighter);
    margin-top: var(--space-md);
}

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }
}

/* Form success/error states */
.form-message {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    display: none;
}

.form-message.success {
    background: rgba(45, 90, 71, 0.1);
    color: var(--forest-green);
    border: 1px solid var(--forest-green);
    display: block;
}

.form-message.error {
    background: rgba(198, 74, 74, 0.1);
    color: #C64A4A;
    border: 1px solid #C64A4A;
    display: block;
}

/* Map Section */
.map-section {
    height: 400px;
    background: var(--warm-sand-light);
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: var(--space-md);
    color: var(--charcoal-light);
}

.map-placeholder svg {
    color: var(--forest-green);
}

/* ============================================
   Sticky CTA
   ============================================ */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-smooth);
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--copper);
    color: var(--canvas);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-full);
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(198, 125, 74, 0.4);
    transition: all 0.3s var(--ease-smooth);
}

.sticky-cta-btn:hover {
    background: var(--copper-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(198, 125, 74, 0.5);
}

@media (max-width: 768px) {
    .sticky-cta {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }

    .sticky-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   Animations & Scroll Reveals
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out-expo);
}

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

.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; }

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s var(--ease-out-expo);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.hidden { display: none; }
.visible { display: block; }

/* Color utilities */
.text-forest { color: var(--forest-green); }
.text-copper { color: var(--copper); }
.text-muted { color: var(--charcoal-light); }

.bg-cream { background-color: var(--canvas-cream); }
.bg-sand { background-color: var(--warm-sand-light); }
