/* ========================================
   AK Dlhopolec - Professional Law Firm Website
   Modern, Clean, Professional Design
   ======================================== */

/* CSS Variables */
:root {
    /* Colors */
    --color-primary: #1a365d;
    --color-primary-dark: #0f2440;
    --color-primary-light: #2c5282;
    --color-accent: #c9a227;
    --color-accent-light: #d4b84a;
    --color-accent-dark: #a68b1f;

    --color-text: #2d3748;
    --color-text-light: #718096;
    --color-text-dark: #1a202c;

    --color-bg: #ffffff;
    --color-bg-light: #f7fafc;
    --color-bg-dark: #edf2f7;

    --color-border: #e2e8f0;
    --color-success: #38a169;
    --color-error: #e53e3e;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --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;

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

    /* 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);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;

    /* Container */
    --container-max: 1200px;
    --container-padding: 1.5rem;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

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

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

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

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

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

/* Sections */
.section {
    padding: var(--space-4xl) 0;
}

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

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

.section-description {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 600px;
}

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

.section-header .section-description {
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
}

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

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

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

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

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

.btn-full {
    width: 100%;
}

/* ========================================
   Cookie Banner
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: var(--space-lg);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-lg);
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.9375rem;
    color: var(--color-text);
}

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

.cookie-link {
    font-size: 0.875rem;
    color: var(--color-text-light);
    text-decoration: underline;
}

.cookie-link:hover {
    color: var(--color-primary);
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: white;
    box-shadow: var(--shadow-md);
}

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

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--color-primary);
}

.header.scrolled .lang-btn {
    color: var(--color-text);
    border-color: var(--color-border);
}

.header.scrolled .lang-btn.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

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

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

.logo-img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter var(--transition-normal);
}

.header.scrolled .logo-img {
    filter: brightness(0) saturate(100%);
}

.logo-img-footer {
    filter: brightness(0) invert(1);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

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

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    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-normal);
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

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

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

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: var(--space-xs);
}

.lang-btn {
    padding: 0.375rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.lang-btn.active {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border-color: var(--color-accent);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    transition: all var(--transition-fast);
}

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

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    background: var(--color-primary-dark);
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: var(--space-3xl);
}

/* Background Layer */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, #0a1628 0%, #0f2440 30%, #1a365d 60%, #1e3a5f 100%);
}

/* Radial glows for depth */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
    top: -10%;
    right: -5%;
    animation: glowFloat 12s ease-in-out infinite;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(44, 82, 130, 0.3) 0%, transparent 70%);
    bottom: -15%;
    left: -10%;
    animation: glowFloat 15s ease-in-out infinite reverse;
}

@keyframes glowFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Subtle grid pattern */
.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
}

/* Decorative diagonal lines */
.hero-line {
    position: absolute;
    background: linear-gradient(180deg, transparent, rgba(201, 162, 39, 0.08), transparent);
    transform-origin: center;
}

.hero-line-1 {
    width: 1px;
    height: 120%;
    top: -10%;
    right: 25%;
    transform: rotate(-20deg);
}

.hero-line-2 {
    width: 1px;
    height: 100%;
    top: 0;
    right: 35%;
    transform: rotate(-20deg);
    opacity: 0.5;
}

.hero-line-3 {
    width: 1px;
    height: 80%;
    top: 10%;
    right: 15%;
    transform: rotate(-20deg);
    opacity: 0.3;
}

/* Decorative rings */
.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 39, 0.06);
}

.hero-ring-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -100px;
    animation: ringRotate 60s linear infinite;
}

.hero-ring-2 {
    width: 350px;
    height: 350px;
    top: -25px;
    right: -25px;
    border-style: dashed;
    border-color: rgba(201, 162, 39, 0.04);
    animation: ringRotate 45s linear infinite reverse;
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Vignette overlay */
.hero-vignette {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(10, 22, 40, 0.4) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: var(--space-xl) 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1.25rem;
    background: rgba(201, 162, 39, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

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

@keyframes badgePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(201, 162, 39, 0); }
}

.hero-title {
    color: white;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.01em;
}

.hero-title span {
    display: block;
}

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

/* Gold accent line under title */
.hero-accent-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), rgba(201, 162, 39, 0.2));
    border-radius: 2px;
    margin-bottom: var(--space-xl);
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--space-xl);
    max-width: 560px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.hero-buttons .btn-primary {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary-dark);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hero-buttons .btn-primary:hover {
    background: var(--color-accent-light);
    border-color: var(--color-accent-light);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.3);
}

.hero-buttons .btn-outline {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

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

/* Stats with glass effect */
.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-lg) var(--space-xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    width: fit-content;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.02em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(201, 162, 39, 0.3), transparent);
}

/* Scroll Indicator */
.hero-scroll {
    display: none;
}

.scroll-indicator {
    display: block;
    width: 28px;
    height: 44px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    position: relative;
}

.scroll-indicator span {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 4px;
    margin-left: -2px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(18px); opacity: 0; }
}

/* ========================================
   About Section
   ======================================== */
.about {
    background: var(--color-bg-light);
}

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

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

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

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

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
}

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

.feature span {
    font-weight: 500;
    color: var(--color-text-dark);
}

/* About Image */
.about-image {
    position: relative;
}

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

.image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--color-accent);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    height: 400px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: rgba(255, 255, 255, 0.5);
}

.image-placeholder svg {
    width: 80px;
    height: 80px;
}

.image-placeholder span {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-text {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.3;
}

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

.service-card {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--color-border);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    color: var(--color-primary);
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    background: var(--color-primary);
    color: white;
}

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

.service-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    color: var(--color-text-dark);
}

.service-description {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ========================================
   Team Section — Founder Profile
   ======================================== */
.team {
    background: var(--color-bg-light);
}

.team-profile {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 900px;
    margin: 0 auto;
}

.team-profile-image {
    position: relative;
    min-height: 400px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-profile-image svg {
    width: 120px;
    height: 120px;
    color: rgba(255, 255, 255, 0.15);
    stroke-width: 1;
}

.team-profile-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-accent);
}

.team-profile-info {
    padding: var(--space-3xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-profile-name {
    font-size: 2rem;
    margin-bottom: var(--space-xs);
    color: var(--color-text-dark);
}

.team-profile-position {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 1.0625rem;
    margin-bottom: var(--space-xl);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.team-profile-bio {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.team-profile-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
}

.team-detail {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.9375rem;
    color: var(--color-text);
}

.team-detail-icon {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
    flex-shrink: 0;
}

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

.team-languages {
    display: flex;
    gap: var(--space-sm);
}

.lang-tag {
    padding: 0.375rem 0.875rem;
    background: var(--color-bg-light);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-primary);
    border: 1px solid var(--color-border);
}

@media (max-width: 768px) {
    .team-profile {
        grid-template-columns: 1fr;
    }

    .team-profile-image {
        min-height: 240px;
    }

    .team-profile-info {
        padding: var(--space-xl);
    }

    .team-profile-name {
        font-size: 1.5rem;
    }
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-lg) 0;
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--color-text-dark);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
    gap: var(--space-md);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-accent);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: var(--space-lg);
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ========================================
   Blog / Aktuality Section
   ======================================== */
.blog {
    background: var(--color-bg-light);
}

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

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--color-border);
}

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

.blog-card-image {
    height: 200px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: var(--space-lg);
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.blog-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.7), transparent);
    z-index: 1;
    pointer-events: none;
}

.blog-card-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    position: relative;
    z-index: 2;
}

.blog-card-content {
    padding: var(--space-xl);
}

.blog-card-date {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    display: block;
    margin-bottom: var(--space-sm);
}

.blog-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: var(--space-md);
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

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

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

/* ========================================
   Contact Section
   ======================================== */
.contact {
    background: white;
}

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

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

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

.contact-item {
    display: flex;
    gap: var(--space-lg);
}

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

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

.contact-text strong {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-dark);
    margin-bottom: var(--space-xs);
}

.contact-text p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.contact-text a {
    color: var(--color-primary);
}

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

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-bg-light);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: white;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--color-error);
}

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

.error-message {
    font-size: 0.8125rem;
    color: var(--color-error);
    display: none;
}

.form-group.has-error .error-message {
    display: block;
}

/* Checkbox */
.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-md);
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--color-primary);
}

.form-checkbox label {
    font-size: 0.875rem;
    color: var(--color-text);
    line-height: 1.5;
}

.form-checkbox a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Form Success */
.form-success {
    text-align: center;
    padding: var(--space-3xl);
}

.form-success.hidden {
    display: none;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-success);
    border-radius: 50%;
    color: white;
}

.success-icon svg {
    width: 40px;
    height: 40px;
}

.form-success h3 {
    margin-bottom: var(--space-md);
    color: var(--color-text-dark);
}

.form-success p {
    color: var(--color-text-light);
}

/* ========================================
   Map Section
   ======================================== */
.map-section {
    background: var(--color-bg-light);
}

.map-container {
    height: 400px;
    background: var(--color-bg-dark);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

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

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

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

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: var(--space-lg);
}

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

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

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

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-sak {
    font-style: italic;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

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

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

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

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

@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }

    .nav {
        height: 64px;
    }

    .logo-img {
        height: 26px;
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: white;
        padding: 80px var(--space-xl) var(--space-xl);
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-normal);
        z-index: 101;
    }

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

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

    .nav-link {
        color: var(--color-text-dark);
        font-size: 1.125rem;
    }

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

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

    .image-placeholder {
        height: 250px;
    }

    .nav-toggle {
        display: flex;
        z-index: 102;
    }

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

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

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

    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-lg);
        padding: var(--space-md) var(--space-lg);
    }

    .stat-divider {
        display: none;
    }

    .hero-ring,
    .hero-line {
        display: none;
    }

    .hero {
        padding-top: 88px;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }
}

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

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

    .hero-stats {
        width: 100%;
        justify-content: space-around;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .experience-badge {
        right: 10px;
        bottom: -20px;
        padding: var(--space-md);
    }

    .experience-number {
        font-size: 2rem;
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Floating Contact Button
   ======================================== */
.floating-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
    z-index: 99;
    transition: all var(--transition-normal);
}

.floating-contact svg {
    width: 26px;
    height: 26px;
    position: relative;
    z-index: 1;
}

.floating-contact:hover {
    background: var(--color-accent-light);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.5);
    color: var(--color-primary-dark);
}

.floating-contact:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 72px;
    white-space: nowrap;
    background: var(--color-primary-dark);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: var(--shadow-md);
}

.floating-contact-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--color-accent);
    animation: contactPulse 2s ease-out infinite;
    z-index: 0;
}

@keyframes contactPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Hide floating button when cookie banner is visible */
.cookie-banner.visible ~ .floating-contact {
    bottom: 100px;
}

@media (max-width: 768px) {
    .floating-contact {
        width: 52px;
        height: 52px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .floating-contact svg {
        width: 22px;
        height: 22px;
    }

    .floating-contact:hover::after {
        display: none;
    }

    .cookie-banner.visible ~ .floating-contact {
        bottom: 90px;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

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