/* ============================================
   GK Die Kandelaar - Main Stylesheet
   Apple Vision Pro Inspired Design
   ============================================ */
/* CSS Custom Properties (Variables) */
:root {
    /* Primary Colors */
    --color-white: #ffffff;
    --color-gray-50: #fbfbfd;
    --color-gray-100: #f5f5f7;
    --color-gray-200: #e8e8ed;
    --color-gray-300: #d2d2d7;

    /* Text & Line Colors */
    --color-black: #1d1d1f;
    --color-text-primary: #1d1d1f;
    --color-text-secondary: #6e6e73;
    --color-text-tertiary: #86868b;
    --color-line: rgba(0, 0, 0, 0.1);

    /* Accent Colors */
    --color-accent-warm: #cd8f00;
    --color-accent-cool: #0076ac9f;
    --color-accent-cool-medium: #0076acc4;
    --color-accent-cool-solid: #0076ac;
    --primary: #0d6efd;

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-bg-solid: rgba(255, 255, 255, 0.92);
    --glass-blur: saturate(180%) blur(20px);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);

    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

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

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

    /* Container */
    --container-max: 1200px;
    --container-narrow: 980px;
}

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

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

body {
    font-family: var(--font-primary);
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-gray-50);
    overflow-x: hidden;
}

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

.hero-parallax {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-track {
    position: absolute;
    top: 0;
    left: 50%;
    height: 115vh;
    transform: translateX(-50%) translateY(0);
    will-change: transform;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100vh;
    width: auto;
    max-width: none;
    display: block;
    transform: translateX(-50%);
    will-change: transform;

    /* ADD THIS */
}

.hero-blur {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    filter: blur(18px);
    transform-origin: center center;
}

.hero-full {
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-full.loaded {
    opacity: 1;
}

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

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

ul,
ol {
    list-style: none;
}

/* Focus States for Accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-accent-cool);
    outline-offset: 3px;
}

/* ============================================
   Typography
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--font-weight-semibold);
    line-height: 1.1;
    color: var(--color-text-primary);
}

.text-overline {
    font-size: clamp(20px, 4vw, 40px) !important;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent-cool);
}

.text-headline-xl {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
}

.text-headline-lg {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: var(--font-weight-semibold);
    letter-spacing: -0.02em;
}

.text-headline-md {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: var(--font-weight-semibold);
    letter-spacing: -0.01em;
}

.text-body-lg {
    font-size: clamp(18px, 2.5vw, 21px);
    font-weight: var(--font-weight-regular);
    color: var(--color-text-secondary);
}

.text-body {
    font-size: 17px;
    color: var(--color-text-secondary);
}

.text-caption {
    font-size: 14px;
    color: var(--color-text-tertiary);
}

/* ============================================
   Layout & Containers
   ============================================ */
.container {
    width: 100%;
    padding: 0 var(--spacing-md);
    grid-area: 1 / 1 / 2 / 2;
}

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

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

.section-white {
    background-color: var(--color-white);
}

.section-gray {
    background-color: var(--color-gray-100);
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 52px;
    transition: all var(--transition-normal);
    background-color: var(--color-accent-cool);
    box-shadow: inset 0 -4px 0 rgba(255, 255, 255, 0.1),
        inset 0 -2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(255, 255, 255, 1),
        0 1px 12px rgba(0, 0, 0, 0.5);
}

.header.scrolled {
    background-color: var(--color-accent-cool-medium);
}

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

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    transition: opacity var(--transition-fast);
}

.nav-logo:hover {
    opacity: 0.7;
}

.nav-logo svg {
    width: 37px;
    height: 37px;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 14px 0;
    font-size: 17px;
    font-weight: var(--font-weight-regular);
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

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

/* Desktop Dropdown */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    padding: 16px 0;
    background: var(--glass-bg-solid);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    pointer-events: none;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.dropdown-link {
    display: block;
    padding: 10px 24px;
    font-size: 13px;
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.dropdown-link:hover {
    color: var(--color-accent-cool);
    background-color: var(--color-gray-100);
}

/* Nav Contact Button */
.nav-cta {
    display: none;
    padding: 8px 20px;
    font-size: 17px;
    font-weight: var(--font-weight-medium);
    color: var(--color-white);
    transition: all var(--transition-fast);
}

.nav-cta:hover {
    background-color: #006680;
    transform: scale(1.02);
}

@media (min-width: 640px) {
    .nav-cta {
        display: block;
    }
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    margin-right: -10px;
    color: white;
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle svg {
    width: 22px;
    height: 22px;
}

.nav-toggle .icon-close {
    display: none;
}

.nav-toggle.active .icon-menu {
    display: none;
}

.nav-toggle.active .icon-close {
    display: block;
}

/* Mobile Menu Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 998;
}

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

/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: var(--color-white);
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
    z-index: 999;
    overflow-y: auto;
}

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

.mobile-menu-content {
    padding: 80px 24px 40px;
}

.mobile-menu-section {
    margin-bottom: 24px;
}

.mobile-menu-label {
    display: block;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-tertiary);
}

.mobile-menu-link {
    display: block;
    padding: 14px 12px;
    font-size: 15px;
    color: var(--color-text-primary);
    border-radius: var(--radius-sm);
    transition: background-color var(--transition-fast);
}

.mobile-menu-link:hover {
    background-color: var(--color-gray-100);
}

.mobile-menu-divider {
    height: 1px;
    margin: 16px 0;
    background: linear-gradient(to right, transparent, var(--color-gray-200), transparent);
}

.mobile-menu-cta {
    display: block;
    width: 100%;
    padding: 16px;
    margin-top: 24px;
    font-size: 15px;
    font-weight: var(--font-weight-medium);
    text-align: center;
    color: var(--color-white);
    background-color: var(--color-accent-cool);
    border-radius: var(--radius-full);
    transition: background-color var(--transition-fast);
}

.mobile-menu-cta:hover {
    background-color: #006680;
}

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

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

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

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(  to bottom,  rgba(255, 255, 255, 0) 0%,  rgba(255, 255, 255, 0.2) 10%,  rgba(255, 255, 255, 0.4) 90%,  rgba(255, 255, 255, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 100px var(--spacing-md) 80px;
}

.hero-overline {
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
    color: #ffffff;
    text-shadow: 0 0 7px rgba(2, 2, 2);
    font-size: 16px;
}

.hero-title {
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.8s;
    border-top-color: #594a4a;
    color: #ffffff;
    text-shadow: 0 0 17px rgba(2, 2, 2);
}

.hero-subtitle {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
    text-shadow: 0 0 7px rgba(2, 2, 2);
}

.hero-description {
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 0 7px rgba(2, 2, 2);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1s;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 0.6s ease forwards, bounce 2s ease-in-out infinite;
    animation-delay: 1.5s, 2s;
}

.hero-scroll svg {
    width: 37px;
    height: 37px;
    color: var(--color-text-tertiary);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 17px;
    font-weight: var(--font-weight-medium);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.btn-primary {
    color: var(--color-white);
    background-color: var(--color-accent-cool);
    box-shadow: 0 0 7px rgba(255, 255, 255, 0.88);
    border-width: 0.2px;
    border-color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--color-accent-cool-medium);
    border-color: var(--color-accent-cool);
    transform: scale(1.02);
}

.btn-secondary {
    color: #000000;
    background-color: rgba(255, 255, 255, 0.70);
    border: 1px solid #ffffff;
    box-shadow: 0 0 7px rgba(255, 255, 255, 0.88);
}

.btn-secondary:hover {
    border-color: var(--color-accent-cool);
    color: var(--color-accent-cool-solid);
}

.btn-warm {
    color: var(--color-white);
    background-color: var(--color-accent-warm);
}

.btn-warm:hover {
    background-color: #b8744f;
    transform: scale(1.02);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: var(--font-weight-medium);
    color: var(--color-accent-cool);
    padding: 0;
    transition: gap var(--transition-fast);
}

.btn-link:hover {
    gap: 12px;
}

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

/* ============================================
   Quote Section
   ============================================ */
.quote-section {
    position: relative;
    padding: var(--spacing-3xl) 0;
    background: var(--color-white);
    overflow: hidden;
}

.quote-mark {
    position: absolute;
    top: 20px;
    left: 40px;
    font-family: Georgia, serif;
    font-size: 140px;
    line-height: 1;
    color: rgba(0, 120, 151, 0.08);
    user-select: none;
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-text {
    font-size: clamp(18px, 3vw, 24px);
    font-style: italic;
    font-weight: var(--font-weight-light);
    color: var(--color-text-primary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.quote-cite {
    font-size: 14px;
    font-style: normal;
    color: var(--color-text-tertiary);
}

/* ============================================
   Feature Cards
   ============================================ */
.cards-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 845px) {
    .cards-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .cards-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.card {
    padding: var(--spacing-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    transition: all var(--transition-smooth);
}

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

.section-gray .card {
    background: var(--color-white);
}

.section-white .card {
    background: var(--color-gray-100);
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(0, 120, 151, 0.1) 0%, rgba(208, 136, 101, 0.1) 100%);
    border-radius: var(--radius-md);
}

.card-icon svg {
    width: 37px;
    height: 37px;
    color: var(--color-accent-cool);
}

.card-title {
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 8px;
}

.card-text {
    font-size: 17px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ============================================
   Two Column Layout
   ============================================ */
.two-col {
    display: grid;
    gap: var(--spacing-xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .two-col {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.two-col-content {
    order: 1;
}

@media (min-width: 1024px) {
    .two-col-content {
        order: unset;
    }
}

.two-col-media {
    position: relative;
    order: 0;
}

.two-col-image-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.two-col-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.two-col-image-wrap:hover .two-col-image {
    transform: scale(1.03);
}

.two-col-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.87);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid #fff;
}

.two-col-badge-number {
    font-size: 36px;
    font-weight: var(--font-weight-bold);
    color: var(--color-accent-warm);
    line-height: 1;
    text-shadow: -2px -2px 0 #fff,
      2px -2px 0 #fff,
    -2px  2px 0 #fff,
      2px  2px 0 #fff,
      0px -2px 0 #fff,
      0px  2px 0 #fff,
    -2px  0px 0 #fff,
      2px  0px 0 #fff;
}

.two-col-badge-text {
    font-size: 12px;
    color: var(--color-text-secondary);
    margin-top: 4px;
}

/* ============================================
   Timeline
   ============================================ */
.timeline {
    position: relative;
    padding-left: 0;
}

@media (min-width: 10px) {
    .timeline {
        padding-left: 0;
    }
}

.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--color-gray-200), transparent);
}

@media (min-width: 768px) {
    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
}

@media (min-width: 10px) {
    .timeline-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 80px;
    }

    .timeline-item:nth-child(odd) {
        flex-direction: row;
    }

    .timeline-item:nth-child(even) {
        flex-direction: row-reverse;
    }
}

.timeline-dot {
    position: absolute;
    top: 8px;
    width: 37px;
    height: 37px;
    background: var(--color-accent-cool);
    border: 4px solid var(--color-white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-content {
    flex: 1;
}

@media (min-width: 768px) {
    .timeline-content {
        max-width: 48%;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        text-align: right;
    }

    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
    }
}

.timeline-year {
    font-size: 40px;
    font-weight: var(--font-weight-bold);
    color: var(--color-accent-warm);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: -2px -2px 0 #fff,
      2px -2px 0 #fff,
    -2px  2px 0 #fff,
      2px  2px 0 #fff,
      0px -2px 0 #fff,
      0px  2px 0 #fff,
    -2px  0px 0 #fff,
      2px  0px 0 #fff;
}

.timeline-title {
    font-size: 20px;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 12px;
}

.timeline-text {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ============================================
   Services Section
   ============================================ */
.service-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 120, 151, 0.1) 0%, rgba(208, 136, 101, 0.1) 100%);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.service-icon svg {
    width: 37px;
    height: 37px;
    color: var(--color-accent-cool);
}

.service-title {
    font-size: 25px;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 4px;
}

.service-text {
    font-size: 19px;
    color: var(--color-text-secondary);
}

/* ============================================
   Principles Grid
   ============================================ */
.principle-card {
    text-align: center;
    padding: var(--spacing-lg);
}

.principle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(0, 120, 151, 0.12) 0%, rgba(208, 136, 101, 0.12) 100%);
    border-radius: var(--radius-lg);
}

.principle-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-accent-cool);
}

.principle-title {
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 8px;
}

.principle-subtitle {
    font-size: 14px;
    color: var(--color-text-tertiary);
}

/* ============================================
   Info List
   ============================================ */
.info-table {
    width: 100%;
}

.info-row {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-gray-200);
}

@media (min-width: 640px) {
    .info-row {
        flex-direction: row;
    }
}

.info-label {
    font-size: 17px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-tertiary);
    min-width: 140px;
    margin-bottom: 4px;
}

@media (min-width: 640px) {
    .info-label {
        margin-bottom: 0;
    }
}

.info-value {
    font-size: 17px;
    color: var(--color-text-primary);
}

.info-value a {
    color: var(--color-accent-cool);
}

.info-value a:hover {
    text-decoration: underline;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-grid {
    display: grid;
    gap: var(--spacing-xl);
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 120, 151, 0.1) 0%, rgba(208, 136, 101, 0.1) 100%);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-accent-cool);
}

.contact-label {
    font-size: 19px;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 17px;
    color: var(--color-text-secondary);
}

.contact-value a {
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

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

/* Contact Form */
.contact-form-wrap {
    background: var(--color-gray-100);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
}

.section-gray .contact-form-wrap {
    background: var(--color-white);
}

.form-title {
    font-size: 22px;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: inherit;
    font-size: 15px;
    color: var(--color-text-primary);
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.section-gray .form-input,
.section-gray .form-textarea {
    background: var(--color-gray-50);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-accent-cool);
    box-shadow: 0 0 0 3px rgba(0, 120, 151, 0.1);
}

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

.form-submit {
    width: 100%;
}

/* ============================================
   Map Section
   ============================================ */
.map-section {
    height: 400px;
    background: var(--color-gray-200);
    border-top: 1px solid var(--color-accent-cool);
    border-bottom: 1px solid var(--color-accent-cool);
}

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

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--color-gray-100);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-grid {
    display: grid;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    margin-bottom: 16px;
}

.footer-logo svg {
    width: 24px;
    height: 24px;
}

.footer-description {
    font-size: 17px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.footer-title {
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 17px;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--color-accent-cool);
}

.footer-contact-item {
    font-size: 17px;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gray-300), transparent);
    margin-bottom: var(--spacing-lg);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 13px;
    color: var(--color-text-tertiary);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal a {
    color: var(--color-text-tertiary);
    transition: color var(--transition-fast);
}

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

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

.section-header .text-overline {
    margin-bottom: 12px;
}

.section-header .text-headline-lg,
.section-header .text-headline-md {
    margin-bottom: 16px;
}

.section-header .text-body-lg {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.reveal-delay-5 {
    transition-delay: 0.5s;
}

/* ============================================
   Keyframe Animations
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-12px);
    }

    60% {
        transform: translateX(-50%) translateY(-6px);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

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

    50% {
        opacity: 0.6;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* ============================================
   Parallax Effects
   ============================================ */
.parallax-bg {
    background-attachment: fixed;
    background-position: bottom;
    background-size: cover;
}

@media (max-width: 1024px) {
    .parallax-bg {
        background-attachment: scroll;
    }
}

/* ============================================
   Frosted Glass Sections (Apple Style)
   ============================================ */
.frosted-section {
    position: relative;
    overflow: hidden;
}

.frosted-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--glass-bg);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
    z-index: 0;
}

.frosted-section > * {
    position: relative;
    z-index: 1;
}

/* ============================================
   Image Loading States
   ============================================ */
.img-loading {
    background: linear-gradient(90deg, 
        var(--color-gray-100) 0%,
        var(--color-gray-200) 50%,
        var(--color-gray-100) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.img-loaded {
    animation: none;
    background: none;
}

/* ============================================
   Checklist Style
   ============================================ */
.checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--color-text-primary);
}

.checklist-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: var(--color-accent-cool);
    flex-shrink: 0;
}

.checklist-icon svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   Blockquote Style
   ============================================ */
.blockquote {
    padding-left: 24px;
    border-left: 3px solid var(--color-accent-warm);
}

.blockquote-text {
    font-size: 16px;
    font-style: italic;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.blockquote-cite {
    font-size: 14px;
    font-style: normal;
    color: var(--color-text-tertiary);
}

/* ============================================
   Link Cards
   ============================================ */
.link-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    transition: all var(--transition-smooth);
}

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

.link-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 120, 151, 0.1) 0%, rgba(208, 136, 101, 0.1) 100%);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.link-card-icon svg {
    width: 37px;
    height: 37px;
    color: var(--color-accent-cool);
}

.link-card-title {
    font-size: 25px;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 2px;
}

.link-card-subtitle {
    font-size: 17px;
    color: var(--color-text-secondary);
}

/* ============================================
   Evangelisasie Section Special Styles
   ============================================ */
.project-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.project-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
}

.project-bullet {
    width: 6px;
    height: 6px;
    margin-top: 8px;
    background: var(--color-accent-warm);
    border-radius: 50%;
    flex-shrink: 0;
}

.project-text {
    font-size: 17px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

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

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

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

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: var(--spacing-xs);
}

.mb-2 {
    margin-bottom: var(--spacing-sm);
}

.mb-3 {
    margin-bottom: var(--spacing-md);
}

.mb-4 {
    margin-bottom: var(--spacing-lg);
}

.mb-5 {
    margin-bottom: var(--spacing-xl);
}

.mb-6 {
    margin-bottom: var(--spacing-2xl);
}

.mt-0 {
    margin-top: 0;
}

.mt-4 {
    margin-top: var(--spacing-lg);
}

.mt-5 {
    margin-top: var(--spacing-xl);
}

.hidden {
    display: none;
}

@media (min-width: 768px) {
    .md\:text-right {
        text-align: right;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .header,
    .mobile-menu,
    .mobile-overlay,
    .hero-scroll {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .section {
        page-break-inside: avoid;
    }
}
