/* ============================================
   KONGSGÅRD DRIFT OG MONTASJE AS
   Coastal Scandinavian Craftsmanship
   Premium Website Styles
   ============================================ */

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

/* ============================================
   CSS Custom Properties
   ============================================ */
:root {
    /* Brand Colors - Coastal Palette */
    --color-primary: #2D4A5E;
    --color-primary-dark: #1E3444;
    --color-primary-light: #3D5A6E;
    --color-secondary: #8B7355;
    --color-secondary-light: #A08B6D;
    --color-secondary-dark: #6B5A42;
    --color-accent: #5BA88F;
    --color-accent-light: #7BBFAA;
    --color-accent-dark: #4A9278;

    /* Background Colors */
    --color-bg-warm: #F7F5F2;
    --color-bg-cream: #FAF8F5;
    --color-bg-dark: #1E2D38;
    --color-bg-navy: #162028;

    /* Text Colors */
    --color-text: #2C2C2C;
    --color-text-light: #6B7B8A;
    --color-text-inverse: #F7F5F2;
    --color-text-muted: #8A9AA8;

    /* Accent Colors */
    --color-larvikitt: #4A5568;
    --color-sea-foam: #E8F4F0;
    --color-driftwood: #C4B59D;
    --color-sand: #E8E0D5;

    /* Typography */
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, 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;

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

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-smooth: 600ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(45, 74, 94, 0.08);
    --shadow-md: 0 4px 12px rgba(45, 74, 94, 0.1);
    --shadow-lg: 0 8px 30px rgba(45, 74, 94, 0.12);
    --shadow-xl: 0 20px 50px rgba(45, 74, 94, 0.15);
    --shadow-glow: 0 0 40px rgba(91, 168, 143, 0.15);

    /* Layout */
    --container-max: 1400px;
    --container-narrow: 800px;
    --header-height: 80px;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg-warm);
    overflow-x: hidden;
}

/* Selection styling */
::selection {
    background: var(--color-accent);
    color: white;
}

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

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: -0.02em;
}

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

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

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

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-text-light);
}

.accent-text {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.15em;
    color: var(--color-secondary);
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-accent-dark);
}

/* ============================================
   Utility Classes
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container-narrow {
    max-width: var(--container-narrow);
}

.text-center { text-align: center; }
.text-light { color: var(--color-text-inverse); }
.text-muted { color: var(--color-text-light); }

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

/* ============================================
   Background Textures & Patterns
   ============================================ */
.bg-warm { background-color: var(--color-bg-warm); }
.bg-cream { background-color: var(--color-bg-cream); }
.bg-dark { background-color: var(--color-bg-dark); }
.bg-navy { background-color: var(--color-bg-navy); }

/* Wood grain texture overlay */
.texture-wood {
    position: relative;
}

.texture-wood::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.8' 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;
}

/* Coastal wave pattern */
.pattern-waves {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%232D4A5E' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--color-accent);
    color: white;
    box-shadow: 0 4px 15px rgba(91, 168, 143, 0.3);
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 168, 143, 0.4);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

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

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: white;
}

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

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-fast);
}

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

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-lg) 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(247, 245, 242, 0.95);
    backdrop-filter: blur(20px);
    padding: var(--space-md) 0;
    box-shadow: var(--shadow-md);
}

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

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

.logo-icon {
    width: 50px;
    height: 50px;
    position: relative;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-primary);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.logo-tagline {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-style: italic;
    color: var(--color-secondary);
    letter-spacing: 0.05em;
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-primary);
    padding: var(--space-sm) 0;
    position: relative;
}

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

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

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

.nav-cta {
    margin-left: var(--space-lg);
}

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

.nav-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-primary);
    transition: all var(--transition-fast);
    border-radius: 1px;
}

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

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

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

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
    background: linear-gradient(135deg, var(--color-bg-warm) 0%, var(--color-bg-cream) 50%, var(--color-sea-foam) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(91, 168, 143, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--color-bg-warm), transparent);
    pointer-events: none;
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(45, 74, 94, 0.08);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: var(--space-xl);
    animation: fadeSlideUp 0.8s ease forwards;
    opacity: 0;
}

.hero-badge-icon {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
}

.hero-title {
    margin-bottom: var(--space-xl);
    animation: fadeSlideUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

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

.hero-title-highlight::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    width: 100%;
    height: 0.15em;
    background: rgba(91, 168, 143, 0.2);
    z-index: -1;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-secondary);
    margin-bottom: var(--space-lg);
    animation: fadeSlideUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-2xl);
    animation: fadeSlideUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    animation: fadeSlideUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-visual {
    position: relative;
    animation: fadeSlideLeft 1s ease 0.3s forwards;
    opacity: 0;
}

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

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 74, 94, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

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

.hero-floating-icon {
    width: 50px;
    height: 50px;
    background: var(--color-sea-foam);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.hero-floating-icon svg {
    width: 28px;
    height: 28px;
}

.hero-floating-text {
    display: flex;
    flex-direction: column;
}

.hero-floating-label {
    font-size: 0.8rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-floating-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-primary);
}

/* Decorative elements */
.hero-deco-line {
    position: absolute;
    top: 50%;
    right: 0;
    width: 150px;
    height: 1px;
    background: linear-gradient(to right, var(--color-accent), transparent);
    transform: translateY(-50%);
}

/* ============================================
   Dual Focus Section (Montasje | Drift)
   ============================================ */
.dual-focus {
    padding: var(--space-5xl) 0;
    position: relative;
}

.dual-focus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
}

.dual-focus-divider {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--color-bg-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: var(--shadow-lg);
}

.dual-focus-divider-inner {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.dual-focus-divider svg {
    width: 28px;
    height: 28px;
}

.focus-card {
    padding: var(--space-4xl);
    position: relative;
    transition: all var(--transition-smooth);
}

.focus-card:first-child {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-text-inverse);
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.focus-card:last-child {
    background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-secondary) 100%);
    color: var(--color-text-inverse);
    border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
}

.focus-card::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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
    border-radius: inherit;
}

.focus-icon {
    width: 70px;
    height: 70px;
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

.focus-title {
    font-size: 2.5rem;
    color: inherit;
    margin-bottom: var(--space-md);
}

.focus-subtitle {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.2rem;
    opacity: 0.85;
    margin-bottom: var(--space-xl);
}

.focus-list {
    list-style: none;
    margin-bottom: var(--space-2xl);
}

.focus-list-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    font-size: 1.05rem;
    opacity: 0.9;
}

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

.focus-cta {
    margin-top: var(--space-lg);
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-us {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-cream);
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-sand), transparent);
}

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

.section-label {
    display: inline-block;
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1rem;
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
    letter-spacing: 0.1em;
}

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

.section-description {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

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

.why-us-card {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

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

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

.why-us-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-lg);
    background: var(--color-sea-foam);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    transition: all var(--transition-base);
}

.why-us-card:hover .why-us-icon {
    background: var(--color-accent);
    color: white;
    transform: scale(1.1);
}

.why-us-icon svg {
    width: 30px;
    height: 30px;
}

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

.why-us-text {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

/* ============================================
   Services Preview Section
   ============================================ */
.services-preview {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-dark);
    color: var(--color-text-inverse);
    position: relative;
    overflow: hidden;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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.02'%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");
}

.services-preview .section-header {
    position: relative;
    z-index: 1;
}

.services-preview .section-label {
    color: var(--color-accent-light);
}

.services-preview .section-title {
    color: var(--color-text-inverse);
}

.services-preview .section-description {
    color: var(--color-text-muted);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(91, 168, 143, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(91, 168, 143, 0.3);
    box-shadow: var(--shadow-glow);
}

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

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: var(--space-lg);
    color: var(--color-accent);
}

.service-title {
    font-size: 1.3rem;
    color: var(--color-text-inverse);
    margin-bottom: var(--space-sm);
}

.service-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

.services-cta {
    text-align: center;
    margin-top: var(--space-3xl);
    position: relative;
    z-index: 1;
}

/* ============================================
   Local Area Section
   ============================================ */
.local-area {
    padding: var(--space-5xl) 0;
    position: relative;
}

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

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

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

.local-image:first-child {
    grid-column: span 2;
}

.local-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

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

.local-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(30, 45, 56, 0.9), transparent);
    color: white;
}

.local-image-label {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1rem;
}

.local-content .section-label {
    text-align: left;
}

.local-content .section-title {
    text-align: left;
    margin-bottom: var(--space-xl);
}

.local-text {
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.local-areas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
}

.local-area-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-sea-foam);
    color: var(--color-primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.local-area-tag svg {
    width: 14px;
    height: 14px;
    color: var(--color-accent);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: var(--space-5xl) 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(91, 168, 143, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.cta-section::after {
    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.8' 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;
}

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

.cta-title {
    color: var(--color-text-inverse);
    margin-bottom: var(--space-lg);
}

.cta-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    margin-bottom: var(--space-2xl);
}

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

.cta-phone {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-2xl);
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
}

.cta-phone-icon {
    width: 20px;
    height: 20px;
}

.cta-phone a {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-phone a:hover {
    color: var(--color-accent-light);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--color-bg-navy);
    color: var(--color-text-inverse);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

.footer-brand-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: var(--space-xl);
}

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

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

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

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

.footer-column-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-inverse);
    margin-bottom: var(--space-lg);
}

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

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

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

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
}

.footer-copyright {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

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

.footer-legal a {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

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

/* ============================================
   Page Headers (Internal Pages)
   ============================================ */
.page-header {
    padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
    background: linear-gradient(135deg, var(--color-bg-warm) 0%, var(--color-sea-foam) 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 160%;
    background: radial-gradient(ellipse at center, rgba(45, 74, 94, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.page-header .section-label {
    text-align: left;
}

.page-header-title {
    margin-bottom: var(--space-lg);
}

.page-header-text {
    font-size: 1.15rem;
    color: var(--color-text-light);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    margin-bottom: var(--space-xl);
}

.breadcrumb a {
    color: var(--color-text-light);
}

.breadcrumb a:hover {
    color: var(--color-accent);
}

.breadcrumb-separator {
    color: var(--color-text-muted);
}

.breadcrumb-current {
    color: var(--color-primary);
    font-weight: 500;
}

/* ============================================
   Services Page
   ============================================ */
.services-section {
    padding: var(--space-5xl) 0;
}

.services-category {
    margin-bottom: var(--space-5xl);
}

.services-category:last-child {
    margin-bottom: 0;
}

.category-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    margin-bottom: var(--space-3xl);
}

.category-header.reverse {
    direction: rtl;
}

.category-header.reverse > * {
    direction: ltr;
}

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

.category-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.category-image-badge {
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
    background: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.category-content .section-label {
    text-align: left;
}

.category-content .section-title {
    text-align: left;
}

.category-description {
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

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

.service-detail-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

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

.service-detail-icon {
    width: 50px;
    height: 50px;
    background: var(--color-sea-foam);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    margin-bottom: var(--space-lg);
}

.service-detail-icon svg {
    width: 26px;
    height: 26px;
}

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

.service-detail-text {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

/* ============================================
   About Page
   ============================================ */
.about-intro {
    padding: var(--space-5xl) 0;
}

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

.about-image-wrapper {
    position: relative;
}

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

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

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--color-sea-foam);
    border-radius: var(--radius-xl);
    z-index: -1;
}

.about-content .lead {
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: var(--space-xl);
}

.about-content p {
    margin-bottom: var(--space-lg);
    color: var(--color-text-light);
}

.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(--color-sand);
}

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

.about-signature-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-primary);
}

.about-signature-title {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.values-section {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-cream);
}

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

.value-card {
    text-align: center;
    padding: var(--space-2xl);
}

.value-number {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--color-accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: var(--space-md);
}

.value-title {
    font-size: 1.3rem;
    margin-bottom: var(--space-md);
}

.value-text {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* ============================================
   Service Agreements Page
   ============================================ */
.agreements-intro {
    padding: var(--space-5xl) 0;
}

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

.agreements-benefits {
    list-style: none;
    margin-top: var(--space-xl);
}

.agreements-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-sand);
}

.agreements-benefit-item:last-child {
    border-bottom: none;
}

.agreements-benefit-icon {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.agreements-benefit-text {
    color: var(--color-text-light);
}

.packages-section {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-dark);
}

.packages-section .section-title {
    color: var(--color-text-inverse);
}

.packages-section .section-description {
    color: var(--color-text-muted);
}

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

.package-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
    position: relative;
}

.package-card.featured {
    border-color: var(--color-accent);
    transform: scale(1.05);
}

.package-card.featured::before {
    content: 'Mest populær';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: white;
    padding: var(--space-xs) var(--space-lg);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.package-card:hover {
    border-color: rgba(91, 168, 143, 0.5);
    box-shadow: var(--shadow-glow);
}

.package-name {
    font-size: 1.5rem;
    color: var(--color-text-inverse);
    margin-bottom: var(--space-sm);
}

.package-description {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: var(--space-xl);
}

.package-features {
    list-style: none;
    margin-bottom: var(--space-2xl);
}

.package-feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.package-feature svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.package-cta {
    width: 100%;
}

/* Target groups */
.target-groups {
    padding: var(--space-5xl) 0;
}

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

.target-group-card {
    display: flex;
    gap: var(--space-xl);
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.target-group-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.target-group-icon {
    width: 70px;
    height: 70px;
    background: var(--color-sea-foam);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    flex-shrink: 0;
}

.target-group-icon svg {
    width: 36px;
    height: 36px;
}

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

.target-group-text {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-section {
    padding: var(--space-5xl) 0;
}

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

.contact-info-card {
    background: var(--color-bg-dark);
    color: var(--color-text-inverse);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(91, 168, 143, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.contact-info-title {
    color: var(--color-text-inverse);
    margin-bottom: var(--space-lg);
    position: relative;
}

.contact-info-text {
    color: var(--color-text-muted);
    margin-bottom: var(--space-2xl);
    position: relative;
}

.contact-details {
    position: relative;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background: rgba(91, 168, 143, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    flex-shrink: 0;
}

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

.contact-detail-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.contact-detail-value {
    font-size: 1.1rem;
    color: var(--color-text-inverse);
}

.contact-detail-value a {
    color: var(--color-text-inverse);
}

.contact-detail-value a:hover {
    color: var(--color-accent);
}

.contact-hours {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.contact-hours-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-text-inverse);
}

.contact-hours-list {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.contact-hours-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-xs) 0;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    box-shadow: var(--shadow-md);
}

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

.contact-form-subtitle {
    color: var(--color-text-light);
    margin-bottom: var(--space-2xl);
}

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

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

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

.form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
}

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

.form-input,
.form-select,
.form-textarea {
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--color-sand);
    border-radius: var(--radius-md);
    background: var(--color-bg-cream);
    transition: all var(--transition-fast);
    color: var(--color-text);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: white;
    box-shadow: 0 0 0 4px rgba(91, 168, 143, 0.1);
}

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

.form-checkbox-group {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.form-checkbox {
    width: 22px;
    height: 22px;
    accent-color: var(--color-accent);
    cursor: pointer;
}

.form-checkbox-label {
    font-size: 0.95rem;
    color: var(--color-text-light);
    cursor: pointer;
}

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

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

/* Map Section */
.map-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-cream);
}

.map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

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

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

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

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    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; }

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 1200px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-grid > *:last-child {
        grid-column: span 3;
    }
}

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

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

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

    .hero-visual {
        order: -1;
    }

    .hero-image {
        height: 400px;
    }

    .hero-floating-card {
        left: 50%;
        transform: translateX(-50%);
    }

    .dual-focus-grid {
        grid-template-columns: 1fr;
    }

    .focus-card:first-child {
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    }

    .focus-card:last-child {
        border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    }

    .dual-focus-divider {
        top: auto;
        bottom: auto;
        transform: translate(-50%, -50%) rotate(90deg);
    }

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

    .local-content {
        order: -1;
    }

    .category-header {
        grid-template-columns: 1fr;
    }

    .category-header.reverse {
        direction: ltr;
    }

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

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

    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

@media (max-width: 768px) {
    :root {
        --space-4xl: 4rem;
        --space-5xl: 5rem;
    }

    .container {
        padding: 0 var(--space-lg);
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-bg-warm);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-xl);
        transform: translateX(100%);
        transition: transform var(--transition-base);
        z-index: 999;
    }

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

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: var(--space-lg);
    }

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

    .nav-cta {
        margin-left: 0;
    }

    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }

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

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

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

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

    .target-groups-grid {
        grid-template-columns: 1fr;
    }

    .target-group-card {
        flex-direction: column;
        text-align: center;
    }

    .target-group-icon {
        margin: 0 auto;
    }

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

    .footer-grid > *:last-child {
        grid-column: auto;
    }

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .local-images {
        grid-template-columns: 1fr;
    }

    .local-image:first-child {
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    .hero-image {
        height: 300px;
    }

    .hero-floating-card {
        display: none;
    }

    .focus-card {
        padding: var(--space-2xl);
    }

    .logo-text {
        display: none;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

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

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .header,
    .footer,
    .nav-toggle,
    .cta-section {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: black;
        background: white;
    }

    h1, h2, h3, h4 {
        color: black;
        page-break-after: avoid;
    }

    a {
        color: black;
        text-decoration: underline;
    }
}
