/* ==========================================================================
   Duin Energie Advies - Main Stylesheet
   Theme: Business Trust & Certification
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
    /* Core Brand Colors */
    --color-primary: #64914C;
    --color-secondary: #CEC82E;
    --color-surface: #EEECE9;

    /* Neutral Colors */
    --color-ink: #1A1C19;
    --color-steel: #6B7280;
    --color-divider: #D1D5DB;
    --color-white: #FFFFFF;

    /* Typography */
    --font-heading: 'Inter', 'Public Sans', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

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

    /* Layout */
    --container-max: 1200px;
    --border-radius: 0px;
    --transition: 200ms ease-out;

    /* Shadows */
    --shadow-hard: 4px 4px 0px 0px var(--color-primary);
    --shadow-hard-sm: 2px 2px 0px 0px var(--color-primary);
}

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

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

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

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

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

a:hover {
    color: var(--color-ink);
}

ul, ol {
    list-style: none;
}

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

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

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

h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

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

p {
    margin-bottom: var(--space-sm);
}

.eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}

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

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

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

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

.grid--2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid--3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid--4 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-divider);
    transition: box-shadow var(--transition), background-color var(--transition), top var(--transition);
}

@media (min-width: 768px) {
    .site-header {
        top: 32px;
    }

    .site-header.scrolled {
        top: 0;
    }
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) var(--space-md);
    max-width: var(--container-max);
    margin: 0 auto;
}

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

.logo img {
    height: 48px;
    width: auto;
}

.main-nav {
    display: none;
}

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

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-ink);
    padding: var(--space-xs) 0;
    position: relative;
}

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

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

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

.header__cta {
    display: none;
}

/* Mobile menu toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-ink);
    transition: transform var(--transition), opacity var(--transition);
}

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

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

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

/* Mobile navigation */
.mobile-nav {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-white);
    padding: var(--space-lg);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
}

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

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

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

.mobile-nav .btn {
    margin-top: var(--space-lg);
    width: 100%;
    text-align: center;
}

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

    .header__cta {
        display: block;
    }

    .nav-toggle {
        display: none;
    }

    .mobile-nav {
        display: none;
    }
}

/* Dropdown Navigation */
.nav-item--dropdown {
    position: relative;
}

.nav-link--dropdown {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.dropdown-arrow {
    transition: transform var(--transition);
}

.nav-item--dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    z-index: 100;
    padding-top: var(--space-sm);
}

.nav-item--dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu__inner {
    background-color: var(--color-white);
    border: 1px solid var(--color-divider);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-width: 280px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    color: var(--color-ink);
    border-bottom: 1px solid var(--color-divider);
    transition: background-color var(--transition);
}

.dropdown-item:last-of-type {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: var(--color-surface);
    color: var(--color-primary);
}

.dropdown-item__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-surface);
    color: var(--color-primary);
    flex-shrink: 0;
}

.dropdown-item:hover .dropdown-item__icon,
.dropdown-item.active .dropdown-item__icon {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.dropdown-item.active {
    background-color: var(--color-surface);
}

.dropdown-item.active .dropdown-item__title {
    color: var(--color-primary);
}

.dropdown-item__icon svg {
    width: 20px;
    height: 20px;
}

.dropdown-item__title {
    font-weight: 500;
    font-size: 0.9375rem;
}

.dropdown-footer {
    padding: var(--space-sm) var(--space-md);
    background-color: var(--color-surface);
    border-top: 1px solid var(--color-divider);
}

.dropdown-footer__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.dropdown-footer__link svg {
    transition: transform var(--transition);
}

.dropdown-footer__link:hover svg {
    transform: translateX(4px);
}

/* Mobile Navigation Accordion */
.mobile-nav__accordion {
    width: 100%;
}

.mobile-nav__accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-xs) 0;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-ink);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.accordion-arrow {
    transition: transform var(--transition);
}

.mobile-nav__accordion-toggle.open .accordion-arrow {
    transform: rotate(180deg);
}

.mobile-nav__accordion-content {
    display: none;
    padding-left: var(--space-md);
    padding-bottom: var(--space-sm);
}

.mobile-nav__accordion-content.open {
    display: block;
}

.mobile-nav__sublink {
    display: block;
    padding: var(--space-xs) 0;
    font-size: 1rem;
    color: var(--color-steel);
}

.mobile-nav__sublink:hover {
    color: var(--color-primary);
}

.mobile-nav__sublink--all {
    font-weight: 600;
    color: var(--color-primary);
    margin-top: var(--space-xs);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--color-divider);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.btn--primary:hover {
    color: var(--color-white);
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-hard-sm);
}

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

.btn--secondary:hover {
    color: var(--color-primary);
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-hard-sm);
}

.btn--cert {
    background-color: var(--color-secondary);
    color: var(--color-ink);
}

.btn--cert:hover {
    transform: translate(-2px, -2px);
    box-shadow: 2px 2px 0px 0px var(--color-ink);
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.card {
    background-color: var(--color-white);
    border: 1px solid var(--color-divider);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
    transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-hard-sm);
}

.card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-md);
    color: var(--color-primary);
}

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

.card__text {
    color: var(--color-steel);
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 73px;
    background-color: var(--color-surface);
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding-top: 105px; /* 73px header + 32px top banner */
    }
}

.hero__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background: linear-gradient(135deg, rgba(100, 145, 76, 0.85) 0%, rgba(74, 112, 56, 0.85) 100%),
                url('/public/images/panorama-view-of-brick-houses-2026-01-07-23-05-55-utc.jpg');
    background-size: cover;
    background-position: center;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Subtle grid pattern overlay */
.hero__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

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

.hero__subtitle {
    font-size: 1.125rem;
    color: var(--color-steel);
    margin-bottom: var(--space-lg);
}

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

/* Trust indicators */
.trust-bar {
    background-color: var(--color-white);
    border-top: 1px solid var(--color-divider);
    border-bottom: 1px solid var(--color-divider);
    padding: var(--space-md) 0;
}

.trust-bar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-steel);
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

.trust-item {
    transition: transform var(--transition);
}

.trust-item:hover {
    transform: translateY(-2px);
}

.trust-item:hover svg {
    animation: trustPulse 0.4s ease;
}

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

/* --------------------------------------------------------------------------
   Services Section
   -------------------------------------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.service-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-divider);
    padding: var(--space-xl);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: var(--shadow-hard);
}

.service-card__number {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-divider);
    line-height: 1;
}

.service-card__icon {
    width: 56px;
    height: 56px;
    margin-bottom: var(--space-md);
}

.service-card__icon svg {
    width: 100%;
    height: 100%;
    color: var(--color-primary);
}

.service-card__title {
    margin-bottom: var(--space-sm);
}

.service-card__text {
    color: var(--color-steel);
    margin-bottom: var(--space-md);
}

.service-card__link {
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

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

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

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

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

.about__content h2 {
    margin-bottom: var(--space-md);
}

.about__content p {
    color: var(--color-steel);
}

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

.stat {
    text-align: center;
    padding: var(--space-md);
    background-color: var(--color-white);
    border: 1px solid var(--color-divider);
}

.stat__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat__label {
    font-size: 0.875rem;
    color: var(--color-steel);
}

.about__image {
    position: relative;
}

.about__image-main {
    width: 100%;
    border: 1px solid var(--color-divider);
}

.about__badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--color-secondary);
    padding: var(--space-md);
    text-align: center;
}

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

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}

.cta-section h2 {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.cta-section p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

.cta-section .btn--secondary {
    border-color: var(--color-white);
    color: var(--color-white);
}

.cta-section .btn--secondary:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    box-shadow: 4px 4px 0px 0px rgba(0,0,0,0.2);
}

/* --------------------------------------------------------------------------
   Contact Section
   -------------------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

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

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

.contact-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background-color: var(--color-white);
    border: 1px solid var(--color-divider);
}

.contact-item__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-surface);
    color: var(--color-primary);
}

.contact-item__icon svg {
    width: 20px;
    height: 20px;
}

.contact-item__content h4 {
    font-size: 0.875rem;
    margin-bottom: var(--space-xs);
}

.contact-item__content p,
.contact-item__content a {
    color: var(--color-steel);
    margin-bottom: 0;
    font-size: 0.9375rem;
}

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

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: var(--space-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid var(--color-divider);
    border-radius: var(--border-radius);
    background-color: var(--color-white);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(100, 145, 76, 0.1);
}

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

/* Alerts */
.alert {
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    border: 1px solid;
}

.alert--success {
    background-color: #f0fdf4;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.alert--error {
    background-color: #fef2f2;
    border-color: #dc2626;
    color: #dc2626;
}

.alert ul {
    margin: 0;
    padding-left: var(--space-md);
    list-style: disc;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
    background-color: var(--color-ink);
    color: var(--color-white);
    padding: var(--space-3xl) 0 var(--space-lg);
}

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

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

.footer__brand img {
    height: 40px;
    margin-bottom: var(--space-md);
}

.footer__brand p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer__heading {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

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

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer__links a:hover {
    color: var(--color-white);
}

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

.footer__contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer__contact a:hover {
    color: var(--color-white);
}

.footer__bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

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

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

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

.footer__legal a:hover {
    color: var(--color-white);
}

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

.footer__cert-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background-color: var(--color-secondary);
    color: var(--color-ink);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

/* Top Contact Banner */
.top-banner {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-xs) 0;
    font-size: 0.8125rem;
}

.top-banner__inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-lg);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.top-banner__item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: rgba(255, 255, 255, 0.95);
}

.top-banner__item a {
    color: rgba(255, 255, 255, 0.95);
}

.top-banner__item a:hover {
    color: var(--color-white);
}

.top-banner__item svg {
    width: 14px;
    height: 14px;
    color: var(--color-white);
}

@media (max-width: 767px) {
    .top-banner {
        display: none;
    }
}

/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    bottom: var(--space-lg);
    right: calc(var(--space-lg) + 60px);
    width: 56px;
    height: 56px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: transform var(--transition), box-shadow var(--transition);
    z-index: 99;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: var(--color-white);
}

.whatsapp-fab svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 767px) {
    .whatsapp-fab {
        bottom: var(--space-md);
        right: calc(var(--space-md) + 56px);
        width: 50px;
        height: 50px;
    }

    .whatsapp-fab svg {
        width: 24px;
        height: 24px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background-color var(--transition);
    z-index: 100;
}

.back-to-top:hover {
    background-color: var(--color-ink);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-ink);
    color: var(--color-white);
    padding: var(--space-md);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

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

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

.cookie-banner__content p {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-banner__content a {
    color: var(--color-secondary);
}

.cookie-banner__content a:hover {
    color: var(--color-white);
}

@media (max-width: 767px) {
    .cookie-banner__content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner__content .btn {
        width: 100%;
    }
}

/* --------------------------------------------------------------------------
   Page Headers
   -------------------------------------------------------------------------- */
.page-header {
    padding: calc(73px + var(--space-3xl)) 0 var(--space-xl);
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-divider);
}

@media (min-width: 768px) {
    .page-header {
        padding: calc(105px + var(--space-3xl)) 0 var(--space-xl);
    }
}

.page-header h1 {
    margin-bottom: var(--space-sm);
}

.page-header p {
    color: var(--color-steel);
    font-size: 1.125rem;
    max-width: 600px;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
}

.breadcrumbs a {
    color: var(--color-steel);
}

.breadcrumbs a:hover {
    color: var(--color-primary);
}

.breadcrumbs span {
    color: var(--color-steel);
}

.breadcrumbs__current {
    color: var(--color-ink);
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.text-center {
    text-align: center;
}

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

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

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

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

/* --------------------------------------------------------------------------
   Responsive Adjustments
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
    .section {
        padding: var(--space-xl) 0;
    }

    .hero {
        min-height: auto;
        padding: calc(73px + var(--space-xl)) 0 var(--space-xl);
    }

    .hero__bg {
        display: none;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__buttons {
        flex-direction: column;
    }

    .hero__buttons .btn {
        width: 100%;
        text-align: center;
    }

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

    .stat__number {
        font-size: 2rem;
    }

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

    .error-page__links-grid {
        grid-template-columns: 1fr;
    }

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

    .service-overview-card__visual {
        width: 100%;
        height: 120px;
    }

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

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

    .page-header h1 {
        font-size: 2rem;
    }

    .back-to-top {
        bottom: var(--space-md);
        right: var(--space-md);
        width: 44px;
        height: 44px;
    }
}

/* --------------------------------------------------------------------------
   Animation
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Hero content animation */
.hero__content {
    animation: heroFadeIn 0.8s ease-out forwards;
}

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

.hero__content .eyebrow {
    animation: heroFadeIn 0.6s ease-out 0.1s forwards;
    opacity: 0;
}

.hero__content .hero__title {
    animation: heroFadeIn 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

.hero__content .hero__subtitle {
    animation: heroFadeIn 0.6s ease-out 0.3s forwards;
    opacity: 0;
}

.hero__content .hero__buttons {
    animation: heroFadeIn 0.6s ease-out 0.4s forwards;
    opacity: 0;
}

/* Section reveal animation */
.section--animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .section--animate {
        opacity: 1;
        transform: none;
    }

    .hero__content,
    .hero__content .eyebrow,
    .hero__content .hero__title,
    .hero__content .hero__subtitle,
    .hero__content .hero__buttons {
        opacity: 1;
        animation: none;
    }
}

/* --------------------------------------------------------------------------
   Service Detail Pages
   -------------------------------------------------------------------------- */
.service-hero {
    position: relative;
    padding: calc(73px + var(--space-3xl)) 0 var(--space-3xl);
    background-color: var(--color-white);
    overflow: hidden;
}

@media (min-width: 768px) {
    .service-hero {
        padding: calc(105px + var(--space-3xl)) 0 var(--space-3xl);
    }
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(100, 145, 76, 0.9) 0%, rgba(74, 112, 56, 0.9) 100%),
                url('/public/images/family-housing-market-concept-2026-01-09-01-13-25-utc.jpg');
    background-size: cover;
    background-position: center;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.service-hero__content {
    position: relative;
    z-index: 1;
}

.service-hero__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-surface);
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.service-hero__icon svg {
    width: 40px;
    height: 40px;
}

.service-hero h1 {
    margin-bottom: var(--space-md);
    max-width: 600px;
}

.service-hero__lead {
    font-size: 1.25rem;
    color: var(--color-steel);
    max-width: 600px;
    margin-bottom: var(--space-lg);
}

.service-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.service-hero__meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--color-steel);
}

.service-hero__meta-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}

@media (max-width: 767px) {
    .service-hero::before {
        display: none;
    }
}

/* Service Content Sections */
.service-content {
    padding: var(--space-3xl) 0;
}

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

@media (min-width: 992px) {
    .service-content__grid {
        grid-template-columns: 2fr 1fr;
    }
}

.service-content__main h2 {
    margin-bottom: var(--space-md);
}

.service-content__main h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.service-content__main p {
    color: var(--color-steel);
}

.service-content__main ul,
.service-content__main ol {
    list-style: disc;
    padding-left: var(--space-md);
    color: var(--color-steel);
    margin-bottom: var(--space-md);
}

.service-content__main li {
    margin-bottom: var(--space-xs);
}

/* Service Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.sidebar-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-divider);
    padding: var(--space-lg);
}

.sidebar-card__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-primary);
}

.sidebar-card--cta {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
}

.sidebar-card--cta .sidebar-card__title {
    color: var(--color-white);
    border-bottom-color: var(--color-secondary);
}

.sidebar-card--cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md);
}

.sidebar-card--cta .btn {
    width: 100%;
    text-align: center;
}

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

.sidebar-list__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--color-steel);
}

.sidebar-list__item svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.feature-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-divider);
    padding: var(--space-lg);
    display: flex;
    gap: var(--space-md);
    transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-hard-sm);
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-surface);
    color: var(--color-primary);
    flex-shrink: 0;
}

.feature-card__icon svg {
    width: 24px;
    height: 24px;
}

.feature-card__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.feature-card__text {
    font-size: 0.875rem;
    color: var(--color-steel);
    margin-bottom: 0;
}

/* Process Steps */
.process-section {
    background-color: var(--color-white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-lg);
    counter-reset: step;
}

.process-step {
    position: relative;
    padding: var(--space-xl) var(--space-lg);
    background-color: var(--color-surface);
    border: 1px solid var(--color-divider);
}

.process-step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-divider);
    line-height: 1;
}

.process-step__title {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.process-step__text {
    font-size: 0.9375rem;
    color: var(--color-steel);
    margin-bottom: 0;
}

/* Related Services */
.related-services {
    padding: var(--space-3xl) 0;
    background-color: var(--color-surface);
}

.related-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.related-service-card {
    display: flex;
    background-color: var(--color-white);
    border: 1px solid var(--color-divider);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.related-service-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-hard-sm);
    color: var(--color-ink);
}

.related-service-card__icon {
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--color-white);
    flex-shrink: 0;
}

.related-service-card__icon svg {
    width: 32px;
    height: 32px;
}

.related-service-card__content {
    padding: var(--space-md);
    flex: 1;
}

.related-service-card__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.related-service-card__text {
    font-size: 0.875rem;
    color: var(--color-steel);
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Enhanced Service Cards (for overview page)
   -------------------------------------------------------------------------- */
.services-overview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

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

.service-overview-card {
    display: grid;
    grid-template-columns: auto 1fr;
    background-color: var(--color-white);
    border: 1px solid var(--color-divider);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-overview-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: var(--shadow-hard);
}

.service-overview-card__visual {
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, #4a7038 100%);
    color: var(--color-white);
}

.service-overview-card__visual svg {
    width: 48px;
    height: 48px;
}

.service-overview-card__content {
    padding: var(--space-lg);
}

.service-overview-card__number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-steel);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.service-overview-card__title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.service-overview-card__text {
    font-size: 0.9375rem;
    color: var(--color-steel);
    margin-bottom: var(--space-md);
}

.service-overview-card__link {
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.service-overview-card__link svg {
    width: 14px;
    height: 14px;
    transition: transform var(--transition);
}

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

/* --------------------------------------------------------------------------
   FAQ Section
   -------------------------------------------------------------------------- */
.faq-section {
    padding: var(--space-3xl) 0;
}

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

.faq-item {
    border: 1px solid var(--color-divider);
    margin-bottom: var(--space-sm);
    background-color: var(--color-white);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-ink);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-item__icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-surface);
    color: var(--color-primary);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item__icon svg {
    width: 14px;
    height: 14px;
}

.faq-item.open .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    display: none;
    padding: 0 var(--space-md) var(--space-md);
    color: var(--color-steel);
}

.faq-item.open .faq-item__answer {
    display: block;
}

/* --------------------------------------------------------------------------
   Testimonial Section
   -------------------------------------------------------------------------- */
.testimonial-section {
    padding: var(--space-3xl) 0;
    background-color: var(--color-white);
}

.testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-xl);
    background-color: var(--color-surface);
    border: 1px solid var(--color-divider);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    line-height: 1;
    color: var(--color-primary);
    opacity: 0.2;
}

.testimonial-card__quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-ink);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.testimonial-card__author {
    font-weight: 600;
    color: var(--color-ink);
}

.testimonial-card__role {
    font-size: 0.875rem;
    color: var(--color-steel);
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.testimonials-grid .testimonial-card {
    max-width: none;
    margin: 0;
}

.testimonials-grid .testimonial-card__quote {
    font-size: 1rem;
}

/* --------------------------------------------------------------------------
   Service Area Section
   -------------------------------------------------------------------------- */
.service-area-section {
    position: relative;
    padding: var(--space-3xl) 0 calc(var(--space-3xl) + 3rem);
    min-height: 600px;
    display: flex;
    align-items: center;
}

.service-area-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 28, 25, 0.55) 0%, rgba(26, 28, 25, 0.65) 100%),
                url('/public/images/giethoorn-village-netherlands-2026-01-08-07-40-30-utc.jpg');
    background-size: cover;
    background-position: center 40%;
    z-index: 0;
}

.service-area-section > .container {
    position: relative;
    z-index: 1;
}

.service-area-section .eyebrow {
    color: var(--color-secondary);
    font-weight: 700;
}

.service-area-section h2 {
    color: var(--color-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-area-section p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.service-area-section .divider {
    background-color: var(--color-secondary);
}

/* Image Banner Section */
.image-banner {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.image-banner--overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 28, 25, 0.3) 0%, rgba(26, 28, 25, 0.5) 100%);
}

.image-banner__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--color-white);
    z-index: 1;
}

.image-banner__content h2 {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

@media (max-width: 767px) {
    .image-banner {
        height: 200px;
    }
}

.service-area__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    max-width: 800px;
    margin: 0 auto;
}

.service-area__tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-ink);
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.service-area__tag:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-hard-sm);
    background-color: var(--color-white);
    color: var(--color-ink);
}

.service-area__tag--highlight {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.service-area__tag--highlight:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* --------------------------------------------------------------------------
   Improved Button Styles
   -------------------------------------------------------------------------- */
.btn--lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

.btn--sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.75rem;
}

.btn--icon {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.btn--icon svg {
    width: 16px;
    height: 16px;
}

/* Button loading state */
.btn--loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn--loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: btnSpin 0.6s linear infinite;
}

@keyframes btnSpin {
    to { transform: rotate(360deg); }
}

/* Button group */
.btn-group {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.btn-group--center {
    justify-content: center;
}

/* --------------------------------------------------------------------------
   List Styles
   -------------------------------------------------------------------------- */
.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--color-steel);
}

.check-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: var(--color-primary);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Badge Styles
   -------------------------------------------------------------------------- */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.badge--secondary {
    background-color: var(--color-secondary);
    color: var(--color-ink);
}

.badge--outline {
    background-color: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

/* --------------------------------------------------------------------------
   Divider Styles
   -------------------------------------------------------------------------- */
.divider {
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
    margin: var(--space-md) 0;
}

.divider--center {
    margin-left: auto;
    margin-right: auto;
}

.divider--secondary {
    background-color: var(--color-secondary);
}

/* --------------------------------------------------------------------------
   404 Error Page
   -------------------------------------------------------------------------- */
.error-page {
    min-height: calc(100vh - 73px);
    padding: calc(73px + var(--space-3xl)) 0 var(--space-3xl);
    display: flex;
    align-items: center;
    background-color: var(--color-surface);
}

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

.error-page__visual {
    position: relative;
    display: inline-block;
    margin-bottom: var(--space-lg);
}

.error-page__code {
    font-size: clamp(6rem, 20vw, 12rem);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    opacity: 0.15;
}

.error-page__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-primary);
}

.error-page__icon svg {
    width: 80px;
    height: 80px;
}

.error-page__content h1 {
    margin-bottom: var(--space-md);
}

.error-page__content p {
    color: var(--color-steel);
    max-width: 500px;
    margin: 0 auto var(--space-lg);
}

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

.error-page__links h3 {
    margin-bottom: var(--space-lg);
    color: var(--color-steel);
    font-weight: 500;
}

.error-page__links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    max-width: 800px;
    margin: 0 auto;
}

.error-page__link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background-color: var(--color-white);
    border: 1px solid var(--color-divider);
    color: var(--color-ink);
    transition: transform var(--transition), box-shadow var(--transition);
}

.error-page__link:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-hard-sm);
    color: var(--color-primary);
}

.error-page__link svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.error-page__link span {
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   Legal Pages (Privacy, Terms)
   -------------------------------------------------------------------------- */
.legal-content {
    background-color: var(--color-white);
    border: 1px solid var(--color-divider);
    padding: var(--space-xl);
}

.legal-content h2 {
    font-size: 1.25rem;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-primary);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--color-steel);
}

.legal-content ul {
    list-style: disc;
    padding-left: var(--space-md);
    color: var(--color-steel);
    margin-bottom: var(--space-md);
}

.legal-content li {
    margin-bottom: var(--space-xs);
}

.legal-content a {
    color: var(--color-primary);
}

.legal-content a:hover {
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Map Placeholder
   -------------------------------------------------------------------------- */
.map-placeholder {
    background: linear-gradient(135deg, var(--color-surface) 0%, #e0ded9 100%);
    border: 1px solid var(--color-divider);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(var(--color-divider) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-divider) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.map-placeholder__content {
    position: relative;
    z-index: 1;
    text-align: center;
    background-color: var(--color-white);
    padding: var(--space-xl);
    border: 1px solid var(--color-divider);
    box-shadow: var(--shadow-hard);
}

.map-placeholder__icon {
    margin-bottom: var(--space-md);
    color: var(--color-primary);
}

.map-placeholder__icon svg {
    width: 48px;
    height: 48px;
}

.map-placeholder__content h3 {
    margin-bottom: var(--space-xs);
}

.map-placeholder__content p {
    color: var(--color-steel);
    margin-bottom: var(--space-md);
}

.map-placeholder__content .btn {
    display: inline-flex;
    align-items: center;
}

/* --------------------------------------------------------------------------
   Focus States for Accessibility
   -------------------------------------------------------------------------- */
.btn:focus-visible,
.nav-link:focus-visible,
.service-card:focus-visible,
.service-overview-card:focus-visible,
.dropdown-item:focus-visible,
.faq-item__question:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Loading Skeleton (for future use)
   -------------------------------------------------------------------------- */
.skeleton {
    background: linear-gradient(90deg, var(--color-surface) 25%, var(--color-white) 50%, var(--color-surface) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* --------------------------------------------------------------------------
   Print Styles
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   Enhanced Hover & Interaction States
   -------------------------------------------------------------------------- */
.contact-item {
    transition: transform var(--transition), box-shadow var(--transition);
}

.contact-item:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-hard-sm);
}

.stat {
    transition: transform var(--transition), box-shadow var(--transition);
}

.stat:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-hard-sm);
}

.testimonial-card {
    transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-hard);
}

/* Staggered animation for cards */
.services-grid .service-card:nth-child(1),
.services-overview .service-overview-card:nth-child(1) { animation-delay: 0s; }
.services-grid .service-card:nth-child(2),
.services-overview .service-overview-card:nth-child(2) { animation-delay: 0.1s; }
.services-grid .service-card:nth-child(3),
.services-overview .service-overview-card:nth-child(3) { animation-delay: 0.2s; }
.services-grid .service-card:nth-child(4),
.services-overview .service-overview-card:nth-child(4) { animation-delay: 0.3s; }

.process-steps .process-step:nth-child(1) { animation-delay: 0s; }
.process-steps .process-step:nth-child(2) { animation-delay: 0.1s; }
.process-steps .process-step:nth-child(3) { animation-delay: 0.15s; }
.process-steps .process-step:nth-child(4) { animation-delay: 0.2s; }

/* Active nav link styling */
.nav-link.active {
    color: var(--color-primary);
}

/* Sidebar card enhanced hover */
.sidebar-card:not(.sidebar-card--cta) {
    transition: transform var(--transition), box-shadow var(--transition);
}

.sidebar-card:not(.sidebar-card--cta):hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-hard-sm);
}

/* Image placeholder styling */
.image-placeholder {
    background: linear-gradient(135deg, var(--color-primary) 0%, #4a7038 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 1px solid var(--color-divider);
}

.image-placeholder__content {
    text-align: center;
    padding: var(--space-lg);
}

.image-placeholder__icon {
    margin-bottom: var(--space-sm);
}

.image-placeholder__text {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Form field enhanced focus */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(100, 145, 76, 0.15);
}

/* Link underline animation */
.footer__links a,
.footer__contact a {
    position: relative;
}

.footer__links a::after,
.footer__contact a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-white);
    transition: width var(--transition);
}

.footer__links a:hover::after,
.footer__contact a:hover::after {
    width: 100%;
}

/* Page header enhanced */
.page-header {
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(100, 145, 76, 0.05) 100%);
    pointer-events: none;
}

/* CTA section enhanced */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

@media print {
    .site-header,
    .site-footer,
    .back-to-top,
    .hero__bg,
    .service-hero::before,
    .btn,
    .mobile-nav {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero {
        min-height: auto;
        padding-top: 0;
    }

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