/* ============================================
   BAAR-DAHL RØRSERVICE AS
   Scandinavian Industrial VVS Website
   ============================================ */

/* --- Font Imports --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
    /* Primary - Deep Slate Blue */
    --color-primary: #2D3E50;
    --color-primary-dark: #1A2A3A;
    --color-primary-light: #3D5166;

    /* Secondary - Warm Copper */
    --color-copper: #B87333;
    --color-copper-light: #D4956A;
    --color-copper-dark: #8B5A2B;
    --color-copper-glow: rgba(184, 115, 51, 0.15);

    /* Accent - Fresh Water Blue */
    --color-water: #4A90A4;
    --color-water-light: #7DB8C9;
    --color-water-dark: #3A7286;

    /* Neutrals */
    --color-white: #FFFFFF;
    --color-cream: #F8F6F3;
    --color-gray-100: #F3F4F6;
    --color-gray-200: #E5E7EB;
    --color-gray-300: #D1D5DB;
    --color-gray-400: #9CA3AF;
    --color-gray-500: #6B7280;
    --color-gray-600: #4B5563;
    --color-gray-700: #374151;
    --color-gray-800: #1F2937;
    --color-gray-900: #111827;

    /* Typography */
    --font-display: 'Outfit', 'Helvetica Neue', sans-serif;
    --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

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

    /* Layout */
    --max-width: 1280px;
    --header-height: 80px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-copper: 0 4px 20px rgba(184, 115, 51, 0.25);

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

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-gray-800);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

::selection {
    background-color: var(--color-copper);
    color: var(--color-white);
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-primary-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 1.75rem);
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    font-size: 1.0625rem;
    max-width: 65ch;
}

.text-lg {
    font-size: 1.25rem;
    line-height: 1.7;
}

.text-sm {
    font-size: 0.9375rem;
}

.text-xs {
    font-size: 0.8125rem;
}

.text-muted {
    color: var(--color-gray-500);
}

.text-copper {
    color: var(--color-copper);
}

.text-water {
    color: var(--color-water);
}

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

.font-mono {
    font-family: var(--font-mono);
}

/* --- Links & Buttons --- */
a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-copper), var(--color-copper-dark));
    color: var(--color-white);
    box-shadow: var(--shadow-md), var(--shadow-copper);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 6px 25px rgba(184, 115, 51, 0.35);
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
    border: 2px solid var(--color-gray-200);
}

.btn-secondary:hover {
    border-color: var(--color-copper);
    color: var(--color-copper);
}

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

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
    border-color: var(--color-white);
}

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

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

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

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

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

.grid {
    display: grid;
    gap: var(--space-lg);
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    transition: all var(--transition-base);
}

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

.header.transparent {
    background-color: transparent;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.header.scrolled .logo-text {
    color: var(--color-primary-dark);
}

.header.scrolled .nav-link {
    color: var(--color-gray-700);
}

.header.scrolled .nav-link:hover {
    color: var(--color-copper);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1001;
}

.logo-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-copper), var(--color-copper-dark));
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 3px solid var(--color-white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 16px;
    background-color: var(--color-white);
    transform: translate(-50%, 25%);
    border-radius: 0 0 4px 4px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    transition: color var(--transition-base);
}

.header.transparent .logo-text {
    color: var(--color-white);
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.logo-tagline {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.header.transparent .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.header.transparent .nav-link:hover {
    color: var(--color-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-copper);
    transition: width var(--transition-base);
}

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

.nav-cta {
    padding: 0.625rem 1.25rem;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    transition: all var(--transition-fast);
    border-radius: 1px;
}

.header.scrolled .menu-toggle span {
    background-color: var(--color-primary-dark);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    transition: right var(--transition-slow);
    z-index: 1000;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav .nav-link {
    font-size: 1.5rem;
    color: var(--color-white);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

/* Industrial Pattern Overlay */
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 25%, var(--color-copper-glow) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(74, 144, 164, 0.1) 0%, transparent 50%);
    z-index: 1;
}

/* Geometric Pipe Elements */
.hero-pipes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.pipe {
    position: absolute;
    background: linear-gradient(90deg, var(--color-copper-dark), var(--color-copper), var(--color-copper-dark));
    opacity: 0.08;
}

.pipe-h {
    height: 4px;
    border-radius: 2px;
}

.pipe-v {
    width: 4px;
    border-radius: 2px;
}

.pipe-1 {
    width: 200px;
    top: 20%;
    left: -50px;
    animation: pipe-slide 20s linear infinite;
}

.pipe-2 {
    height: 150px;
    top: 10%;
    right: 15%;
    animation: pipe-slide-v 25s linear infinite;
}

.pipe-3 {
    width: 300px;
    bottom: 30%;
    right: -100px;
    animation: pipe-slide 30s linear infinite reverse;
}

.pipe-4 {
    height: 200px;
    bottom: 5%;
    left: 20%;
    animation: pipe-slide-v 22s linear infinite;
}

.pipe-joint {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 3px solid var(--color-copper);
    border-radius: 50%;
    opacity: 0.1;
}

.pipe-joint-1 { top: 20%; left: 25%; }
.pipe-joint-2 { top: 60%; right: 20%; }
.pipe-joint-3 { bottom: 25%; left: 40%; }

@keyframes pipe-slide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(50px); }
}

@keyframes pipe-slide-v {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(30px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: var(--space-3xl) 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
    animation: fadeIn 0.6s ease-out;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-badge-text {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-title {
    color: var(--color-white);
    margin-bottom: var(--space-md);
    animation: slideUp 0.6s ease-out 0.1s both;
}

.hero-title-accent {
    color: var(--color-copper-light);
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-xl);
    animation: slideUp 0.6s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    animation: slideUp 0.6s ease-out 0.3s both;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideUp 0.6s ease-out 0.4s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

.hero-feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-copper-light);
    fill: none;
    stroke-width: 2;
}

.hero-feature-text {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: var(--space-2xl);
    right: var(--space-2xl);
    display: flex;
    gap: var(--space-xl);
    z-index: 2;
    animation: fadeIn 0.6s ease-out 0.5s both;
}

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

.hero-stat-value {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-copper-light);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    animation: fadeIn 0.6s ease-out 0.6s both;
}

.scroll-indicator-mouse {
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator-mouse::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--color-copper-light);
    border-radius: 2px;
    animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes scroll-dot {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

.scroll-indicator-text {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

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

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

/* --- Section Headers --- */
.section-header {
    margin-bottom: var(--space-2xl);
}

.section-header.centered {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background-color: var(--color-copper);
}

.section-header.centered .section-label::after {
    content: '';
    width: 24px;
    height: 2px;
    background-color: var(--color-copper);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-gray-600);
}

/* --- Services Section --- */
.services-section {
    background-color: var(--color-white);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gray-200), transparent);
}

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

.service-card {
    background-color: var(--color-cream);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: relative;
    transition: all var(--transition-base);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-copper), var(--color-copper-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

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

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

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-white);
    fill: none;
    stroke-width: 1.5;
}

.service-number {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gray-300);
}

.service-title {
    font-size: 1.375rem;
    margin-bottom: var(--space-sm);
}

.service-description {
    color: var(--color-gray-600);
    margin-bottom: var(--space-md);
}

.service-features {
    list-style: none;
    margin-bottom: var(--space-md);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    padding: 0.25rem 0;
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--color-copper);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-copper);
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

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

/* --- Why Choose Us Section --- */
.why-section {
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-copper-glow) 0%, transparent 70%);
    pointer-events: none;
}

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

.why-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.why-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.why-image-badge {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-lg);
    background: linear-gradient(135deg, var(--color-copper), var(--color-copper-dark));
    color: var(--color-white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
}

.why-image-badge-value {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.why-image-badge-label {
    font-size: 0.8125rem;
    opacity: 0.9;
}

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

.why-feature {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-100);
    transition: all var(--transition-base);
}

.why-feature:hover {
    border-color: var(--color-copper);
    box-shadow: var(--shadow-md);
}

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

.why-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-copper);
    fill: none;
    stroke-width: 2;
}

.why-feature-content h4 {
    margin-bottom: 0.25rem;
}

.why-feature-content p {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
}

/* --- Area Section --- */
.area-section {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.area-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(184, 115, 51, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(74, 144, 164, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

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

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

.area-header .section-title {
    color: var(--color-white);
}

.area-header .section-description {
    color: rgba(255, 255, 255, 0.7);
}

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

.area-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--transition-base);
}

.area-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-copper);
    transform: translateY(-2px);
}

.area-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.area-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-copper), var(--color-copper-dark));
    border-radius: var(--radius-md);
}

.area-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-white);
    fill: none;
    stroke-width: 2;
}

.area-card-title {
    font-size: 1.5rem;
    color: var(--color-white);
}

.area-card-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-md);
}

.area-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.area-location {
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-copper-light);
}

/* Area Stats */
.area-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-top: var(--space-2xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.area-stat {
    background-color: var(--color-primary-dark);
    padding: var(--space-lg);
    text-align: center;
}

.area-stat-value {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-copper-light);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.area-stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

/* --- CTA Section --- */
.cta-section {
    background-color: var(--color-cream);
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cta-content {
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-title {
    margin-bottom: var(--space-md);
}

.cta-description {
    color: var(--color-gray-600);
    margin-bottom: var(--space-lg);
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
}

.cta-feature svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-copper);
    fill: none;
    stroke-width: 2;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.cta-image {
    position: relative;
    min-height: 400px;
}

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

.cta-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 62, 80, 0.2), transparent);
}

/* --- Contact Section --- */
.contact-section {
    background-color: var(--color-white);
}

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

.contact-info {
    padding-right: var(--space-xl);
}

.contact-info-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-gray-100);
}

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

.contact-info-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-copper);
    fill: none;
    stroke-width: 2;
}

.contact-info-label {
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.contact-info-value {
    font-size: 1.0625rem;
    color: var(--color-primary-dark);
}

.contact-info-value a:hover {
    color: var(--color-copper);
}

.contact-hours {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background-color: var(--color-cream);
    border-radius: var(--radius-lg);
}

.contact-hours-title {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.contact-hours-list {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
}

.contact-hours-list div {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
}

.contact-hours-list .highlight {
    color: var(--color-copper);
    font-weight: 600;
}

/* Contact Form */
.contact-form {
    background-color: var(--color-cream);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

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

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-700);
    margin-bottom: 0.5rem;
}

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-gray-800);
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-copper);
    box-shadow: 0 0 0 3px var(--color-copper-glow);
}

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

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

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--color-copper);
}

.form-checkbox-text {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
}

.form-radio-group {
    display: flex;
    gap: var(--space-md);
}

.form-radio {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.form-radio input {
    width: 18px;
    height: 18px;
    accent-color: var(--color-copper);
}

.form-radio-text {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
}

.form-submit {
    margin-top: var(--space-md);
}

.form-submit .btn {
    width: 100%;
}

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

.form-message.success {
    background-color: rgba(16, 185, 129, 0.1);
    color: #059669;
    display: block;
}

.form-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    display: block;
}

/* --- Footer --- */
.footer {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding: var(--space-2xl) 0 var(--space-lg);
}

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

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

.footer-logo {
    margin-bottom: var(--space-md);
}

.footer-logo .logo-text {
    color: var(--color-white);
}

.footer-description {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-md);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

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

.footer-social-link:hover {
    background-color: var(--color-copper);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--color-white);
}

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

.footer-links {
    list-style: none;
}

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

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-copper-light);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 2px;
}

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

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-legal a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

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

/* --- Page Hero --- */
.page-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, var(--color-copper-glow) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(74, 144, 164, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    padding-top: calc(var(--header-height) + var(--space-2xl));
    padding-bottom: var(--space-2xl);
}

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-md);
}

.page-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
}

.page-hero-breadcrumb a:hover {
    color: var(--color-copper-light);
}

.page-hero-breadcrumb svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
}

.page-hero-title {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.page-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

/* --- Services Page --- */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid var(--color-gray-100);
}

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

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

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

.service-detail-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-detail-number {
    font-family: var(--font-mono);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gray-100);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.service-detail-title {
    margin-bottom: var(--space-md);
}

.service-detail-text {
    color: var(--color-gray-600);
    margin-bottom: var(--space-lg);
}

.service-detail-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem var(--space-md);
    list-style: none;
    margin-bottom: var(--space-lg);
}

.service-detail-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
}

.service-detail-list li svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-copper);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

/* --- Prices Page --- */
.prices-section {
    background-color: var(--color-white);
}

.prices-intro {
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
    text-align: center;
}

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

.price-card {
    background-color: var(--color-cream);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

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

.price-card.featured {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    color: var(--color-white);
    transform: scale(1.05);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.price-card-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--color-copper);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.price-card-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.price-card.featured .price-card-title {
    color: var(--color-white);
}

.price-card-price {
    margin-bottom: var(--space-md);
}

.price-card-amount {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-copper);
}

.price-card.featured .price-card-amount {
    color: var(--color-copper-light);
}

.price-card-unit {
    font-size: 0.9375rem;
    color: var(--color-gray-500);
}

.price-card.featured .price-card-unit {
    color: rgba(255, 255, 255, 0.7);
}

.price-card-description {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    margin-bottom: var(--space-md);
}

.price-card.featured .price-card-description {
    color: rgba(255, 255, 255, 0.8);
}

.price-card-features {
    list-style: none;
    text-align: left;
    margin-bottom: var(--space-lg);
}

.price-card-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    padding: 0.375rem 0;
    color: var(--color-gray-600);
}

.price-card.featured .price-card-features li {
    color: rgba(255, 255, 255, 0.9);
}

.price-card-features li svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-copper);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.price-card.featured .price-card-features li svg {
    stroke: var(--color-copper-light);
}

/* Price Table */
.price-table {
    background-color: var(--color-cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.price-table-header {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    padding: var(--space-lg);
    text-align: center;
}

.price-table-title {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.price-table-subtitle {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.price-table-body {
    padding: var(--space-lg);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-gray-200);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row-label {
    font-size: 0.9375rem;
    color: var(--color-gray-700);
}

.price-row-value {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-copper);
}

.price-note {
    margin-top: var(--space-md);
    padding: var(--space-md);
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

/* --- About Page --- */
.about-intro {
    background-color: var(--color-white);
}

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

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-text .section-description {
    margin-bottom: var(--space-lg);
}

.about-values {
    background-color: var(--color-cream);
}

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

.value-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    border: 1px solid var(--color-gray-100);
    transition: all var(--transition-base);
}

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

.value-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    border-radius: var(--radius-lg);
    margin: 0 auto var(--space-md);
}

.value-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-white);
    fill: none;
    stroke-width: 1.5;
}

.value-title {
    margin-bottom: var(--space-sm);
}

.value-text {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
}

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

    .hero-stats {
        display: none;
    }

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

    .area-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-card {
        grid-template-columns: 1fr;
    }

    .cta-image {
        min-height: 300px;
    }

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

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

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

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

    .prices-grid {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: none;
    }

    .price-card.featured:hover {
        transform: translateY(-4px);
    }

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

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

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

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

    .area-stats {
        grid-template-columns: 1fr;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: none;
    }

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

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

    .values-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

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

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

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

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

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
