/* CSS Variabelen voor consistentie */
:root {
    --accent: #FFD700;
    --accent-dark: #e6c200;
    --bg: #ffffff;
    --surface: #f8f9fa;
    --surface-hover: #f0f0f0;
    --text: #1a1a1a;
    --text-light: #4a4a4a;
    --muted: #666666;
    --glass: rgba(0, 0, 0, 0.05);
    --glass-dark: rgba(0, 0, 0, 0.1);
    --border-radius: 24px;
    --border-radius-sm: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Reset en basis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Typografie */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
}

/* Container voor consistentie */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Fallback voor AOS als CDN niet laadt */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* ===== NAVIGATIE - Transparant bij start ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: none;
}

nav.scrolled {
    padding: 12px 8%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Logo styling */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
    position: relative;
    z-index: 1001;
}

.logo-img {
    height: 100px;
    width: auto;
    max-width: 350px;
    object-fit: contain;
    transition: var(--transition);
    filter: brightness(1.2) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

nav.scrolled .logo-img {
    height: 75px;
    filter: none;
    max-width: 300px;
}

.logo span {
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-left: 10px;
}

nav.scrolled .logo span {
    color: var(--text);
    text-shadow: none;
}

.logo span span {
    color: var(--accent);
    margin-left: 0;
}

/* Navigatie links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

nav.scrolled .nav-menu li a {
    color: var(--text);
    text-shadow: none;
}

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

.nav-menu li a:hover {
    color: var(--accent);
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* Navigatie button */
.nav-menu li a.btn {
    background: transparent;
    color: white;
    padding: 10px 24px !important;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-shadow: none;
}

nav.scrolled .nav-menu li a.btn {
    border: 2px solid var(--accent);
    color: var(--text);
}

.nav-menu li a.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: white;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

nav.scrolled .nav-menu li a.btn::before {
    background: var(--accent);
}

.nav-menu li a.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.nav-menu li a.btn:hover::before {
    width: 100%;
}

.nav-menu li a.btn:hover {
    color: var(--text);
}

nav.scrolled .nav-menu li a.btn:hover {
    color: var(--text);
}

.nav-menu li a.btn::after {
    display: none;
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
    padding: 10px;
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: white;
    transition: var(--transition);
    border-radius: 3px;
    transform-origin: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

nav.scrolled .hamburger span {
    background: var(--text);
    box-shadow: none;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ===== HERO SECTIE ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    margin-top: 0;
}

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

.hero-inner {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero .tag {
    color: var(--accent);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    line-height: 1.3;
    margin-bottom: 25px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid var(--accent);
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--accent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn:hover {
    color: var(--text);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}

.btn:hover::before {
    width: 100%;
}

.btn:active {
    transform: translateY(-1px);
}

/* Hero button */
.hero .btn {
    border: 2px solid var(--accent);
    background: transparent;
    color: white;
}

.hero .btn::before {
    background: var(--accent);
}

.hero .btn:hover {
    color: var(--text);
}

/* Form submit button */
button.btn {
    width: 100%;
    background: transparent;
    border: 2px solid var(--accent);
    border-radius: 50px;
    padding: 16px 32px;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: var(--text);
}

button.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--accent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

button.btn:hover::before {
    width: 100%;
}

button.btn:hover {
    color: var(--text);
    border-color: var(--accent);
}

/* ===== CONTENT SECTIES ===== */
.section {
    padding: 100px 8%;
}

.section:nth-child(even) {
    background: var(--surface);
}

.tag {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 20px;
    display: block;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 40px;
    position: relative;
}

h2 span {
    color: var(--accent);
}

/* ===== SERVICES CARDS - VERBETERD ===== */
.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    margin: 40px 0;
    width: 100%;
    max-width: 100%;
}

.card-container {
    grid-column: span 4;
    height: auto;  /* Auto hoogte, geen vaste hoogte */
    min-height: 320px;  /* Minimale hoogte */
    position: relative;
    cursor: pointer;
}

.card-container.c-8 {
    grid-column: span 8;
}

.card-front {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    padding: 28px;  /* Iets minder padding */
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    background: var(--surface);
    border: 1px solid var(--glass);
    transition: all 0.3s ease;
}

.card-front i {
    font-size: 2.2rem;  /* Kleinere iconen */
    color: var(--accent);
    margin-bottom: 15px;
    display: inline-block;
}

.card-front h3 {
    font-size: 1.4rem;  /* Kleinere titels */
    margin-bottom: 12px;
}

.card-front p {
    color: var(--muted);
    line-height: 1.5;
    font-size: 0.95rem;  /* Kleinere tekst */
    flex-grow: 1;
    overflow-y: visible;  /* Geen scroll meer */
}

.card-container:hover .card-front {
    background: var(--surface-hover);
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Grote kaart aanpassing */
.card-container.c-8 .card-front {
    padding: 32px;
}

/* ===== OVER ONS SECTIE ===== */
.over-ons-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.over-ons-content {
    padding-right: 20px;
}

.over-ons-text .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.5;
}

.over-ons-text p {
    color: var(--muted);
    margin-bottom: 20px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px 15px;
    background: var(--surface);
    border-radius: var(--border-radius);
    border: 1px solid var(--glass);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Over Ons Afbeelding */
.over-ons-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.over-ons-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

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

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--accent);
    color: var(--text);
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

.experience-badge .years {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* Feature Cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.feature-card {
    background: var(--bg);
    border: 1px solid var(--glass);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--accent);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--muted);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.feature-list i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* ===== CONTACT SECTIE ===== */
.contact-box {
    background: linear-gradient(145deg, var(--surface), var(--bg));
    padding: 60px;
    border-radius: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    border: 1px solid var(--glass);
    box-shadow: var(--shadow-lg);
}

.contact-info {
    padding-right: 20px;
}

.contact-info p {
    margin: 20px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info i {
    color: var(--accent);
    font-size: 1.3rem;
    width: 30px;
}

.contact-info a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

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

.contact-info a, 
.contact-info p {
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

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

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
}

input, textarea, select {
    width: 100%;
    padding: 18px 20px;
    background: var(--bg);
    border: 2px solid var(--glass);
    color: var(--text);
    border-radius: 50px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

textarea {
    border-radius: 24px;
    resize: vertical;
}

input:hover, textarea:hover, select:hover {
    border-color: var(--accent);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.error-message {
    color: #dc2626;
    font-size: 0.9rem;
    margin-top: 5px;
    display: none;
}

input.error, textarea.error {
    border-color: #dc2626;
}

.success-message {
    background: #10b981;
    color: white;
    padding: 15px;
    border-radius: 50px;
    margin-top: 20px;
    display: none;
}

/* ===== FOOTER ===== */
footer {
    padding: 40px 8%;
    border-top: 1px solid var(--glass);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    background: var(--surface);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    transition: var(--transition);
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .card-front {
        padding: 25px;
    }
    
    .card-front p {
        font-size: 0.9rem;
    }
    
    .card-front i {
        font-size: 2rem;
    }
    
    .card-front h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    nav {
        padding: 15px 5%;
    }
    
    nav.scrolled {
        padding: 10px 5%;
    }

    .logo-img {
        height: 85px;
        max-width: 280px;
    }
    
    nav.scrolled .logo-img {
        height: 65px;
        max-width: 240px;
    }
    
    .logo span {
        font-size: 1.4rem;
    }

    .section {
        padding: 80px 5%;
    }

    .grid {
        gap: 25px;
    }

    .card-container {
        grid-column: span 12 !important;
        min-height: 300px;
    }

    .contact-box {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }

    .over-ons-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .over-ons-content {
        padding-right: 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid {
        gap: 20px;
    }

    .card-container {
        min-height: 280px;
    }
    
    .card-front {
        padding: 22px 18px;
    }
    
    .card-front i {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .card-front h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .card-front p {
        font-size: 0.9rem;
    }

    /* Logo - GROTER op mobiel */
    .logo-img {
        height: 90px !important;
        max-width: 280px !important;
    }
    
    nav.scrolled .logo-img {
        height: 75px !important;
        max-width: 250px !important;
    }
    
    .logo span {
        font-size: 1.3rem;
    }

    /* Hamburger menu icon - ZWART */
    .hamburger span {
        background: black !important;
        box-shadow: none !important;
    }
    
    nav.scrolled .hamburger span {
        background: black !important;
    }

    /* FULL-SCREEN MOBIELE NAVIGATIE */
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1002;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        max-width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 80px 20px;
        gap: 30px;
        transition: left 0.3s ease-in-out;
        box-shadow: none;
        z-index: 1001;
        margin: 0;
        display: flex !important;
        pointer-events: auto;
    }

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

    .nav-links {
        display: flex;
        align-items: center;
        gap: 30px;
        position: relative;
        z-index: 1000;
    }

    .nav-menu li {
        width: 100%;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        transition-delay: calc(0.1s * var(--i, 0));
        text-align: center;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu li:nth-child(1) { --i: 1; }
    .nav-menu li:nth-child(2) { --i: 2; }
    .nav-menu li:nth-child(3) { --i: 3; }
    .nav-menu li:nth-child(4) { --i: 4; }
    .nav-menu li:nth-child(5) { --i: 5; }

    .nav-menu li a {
        color: var(--text) !important;
        text-shadow: none;
        font-size: 1.5rem;
        font-weight: 700;
        display: inline-block;
        padding: 15px 25px;
        border-bottom: none;
        width: auto;
        transition: color 0.3s ease, transform 0.3s ease;
        position: relative;
    }

    .nav-menu li a::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 3px;
        background: var(--accent);
        transition: width 0.3s ease;
        display: block !important;
    }

    .nav-menu li a:hover {
        color: var(--accent) !important;
        transform: scale(1.05);
    }

    .nav-menu li a:hover::after {
        width: 70%;
    }

    .nav-menu li a.btn {
        margin-top: 20px;
        text-align: center;
        width: auto;
        min-width: 200px;
        border-bottom: none;
        border: 2px solid var(--accent) !important;
        color: var(--text) !important;
        background: transparent;
        transition: all 0.3s ease;
        font-size: 1.2rem;
        padding: 15px 30px;
    }
    
    .nav-menu li a.btn::before {
        background: var(--accent) !important;
    }
    
    .nav-menu li a.btn:hover {
        background: var(--accent);
        color: var(--text) !important;
        transform: translateY(-2px) scale(1.05);
        padding-left: 30px;
    }

    /* Hero */
    .hero {
        padding: 0 5%;
        min-height: 90vh;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 7vw, 3rem);
    }

    /* Contact */
    .contact-box {
        padding: 25px 15px;
        gap: 30px;
    }

    .contact-info p {
        font-size: 1rem;
        margin: 15px 0;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .contact-info i {
        font-size: 1.1rem;
        width: 25px;
    }

    .contact-info a {
        word-break: break-word;
        overflow-wrap: break-word;
    }

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

    input, textarea, select {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    label {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .contact-info h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    /* Feature grid */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 25px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }
    
    .experience-badge .years {
        font-size: 1.8rem;
    }

    /* Footer */
    footer {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .grid {
        gap: 15px;
    }

    .card-container {
        min-height: 260px;
    }
    
    .card-front {
        padding: 18px 15px;
    }
    
    .card-front i {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .card-front h3 {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .card-front p {
        font-size: 0.85rem;
    }

    .logo-img {
        height: 75px !important;
        max-width: 240px !important;
    }
    
    nav.scrolled .logo-img {
        height: 60px !important;
        max-width: 200px !important;
    }

    .logo span {
        font-size: 1.1rem;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
    }

    .section {
        padding: 60px 4%;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
    }

    .contact-box {
        padding: 20px 12px;
    }

    .contact-info p {
        font-size: 0.95rem;
        gap: 10px;
    }

    .contact-info i {
        font-size: 1rem;
        width: 22px;
    }

    input, textarea, select {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .contact-info h2 {
        font-size: 1.6rem;
    }

    .contact-info div {
        width: 100%;
        overflow: hidden;
    }

    .footer-links {
        gap: 15px;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .over-ons-text .lead {
        font-size: 1.1rem;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
        padding: 10px;
    }
    
    .experience-badge .years {
        font-size: 1.4rem;
    }
    
    .experience-badge .text {
        font-size: 0.7rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    nav, .btn, footer {
        display: none;
    }

    .hero {
        min-height: auto;
        color: black;
        background: none;
    }

    .hero::after {
        display: none;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}