/* ==========================================
   SURICAT - Security Awareness Website
   ========================================== */

/* --- CSS Variables --- */
:root {
    --color-primary: #00a093;
    --color-primary-dark: #008a7e;
    --color-primary-light: #00b8a9;
    --color-accent: #ff5400;
    --color-accent-light: #ff6b1a;
    --color-dark: #1a1a2e;
    --color-dark-soft: #2d2d44;
    --color-gray-900: #1f2937;
    --color-gray-700: #374151;
    --color-gray-600: #4b5563;
    --color-gray-400: #9ca3af;
    --color-gray-200: #e5e7eb;
    --color-gray-100: #f3f4f6;
    --color-gray-50: #f9fafb;
    --color-white: #ffffff;

    --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-gray-700);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    color: var(--color-gray-900);
    font-weight: 700;
    line-height: 1.2;
}

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

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 160, 147, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn-accent {
    background: #e86a3b;
    color: var(--color-white);
    border-color: #e86a3b;
}

.btn-accent:hover {
    background: #d45a2b;
    border-color: #d45a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 106, 59, 0.35);
}

/* Hero-specifieke oranje knoppen */
.hero .btn-primary {
    background: #e86a3b;
    border-color: #e86a3b;
}

.hero .btn-primary:hover {
    background: #d45a2b;
    border-color: #d45a2b;
    box-shadow: 0 8px 25px rgba(232, 106, 59, 0.35);
}

.hero .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
}

.hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-white);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

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

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

.btn-nav {
    background: var(--color-primary);
    color: var(--color-white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
}

.btn-nav:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
    padding: 16px 0;
}

.navbar.scrolled {
    padding: 10px 0;
    border-bottom-color: var(--color-gray-200);
    box-shadow: var(--shadow-sm);
}

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

.nav-logo img {
    height: 40px;
    width: auto;
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-gray-700);
    position: relative;
    letter-spacing: 0.01em;
}

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

.nav-link:not(.btn-nav):hover::after {
    width: 100%;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-gray-900);
    border-radius: 2px;
    transition: all var(--transition);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../assets/background-suricat.jpg') center/cover no-repeat;
    overflow: hidden;
    padding: 140px 24px 100px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 160, 147, 0.15);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-text h1 {
    color: var(--color-white);
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.highlight {
    color: var(--color-white);
    display: inline;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-bg-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--color-white) 0%, transparent 100%);
    z-index: 2;
}

/* --- Section Shared --- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.section-label--light {
    color: var(--color-primary-light);
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header--light h2 {
    color: var(--color-white);
}

.section-description {
    font-size: 1.1rem;
    color: var(--color-gray-600);
    line-height: 1.8;
}

.section-header--light .section-description {
    color: rgba(255, 255, 255, 0.65);
}

/* --- Bewustwording-in-a-Box Section --- */
.diensten {
    padding: 100px 0;
    background: var(--color-white);
}

.box-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.box-image {
    opacity: 0;
    transform: translateX(-30px);
}

.box-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.box-image img {
    width: 100%;
    max-width: 520px;
    height: auto;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.12));
}

.box-content {
    opacity: 0;
    transform: translateX(30px);
}

.box-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.box-content h2 {
    margin-bottom: 16px;
}

.box-description {
    color: var(--color-gray-600);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.check-list {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-gray-900);
}

.check-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

/* --- Diensten Detail --- */
.diensten-detail {
    padding: 100px 0;
    background: #e8f5f3;
}

.diensten-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.dienst-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 40px 36px;
    border: 1px solid var(--color-gray-200);
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

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

.dienst-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.dienst-image {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.dienst-image img {
    max-height: 180px;
    width: auto;
    object-fit: contain;
}

.dienst-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 12px;
}

.dienst-card p {
    color: var(--color-gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Security Snack --- */
.security-snack {
    padding: 100px 0;
    background: var(--color-white);
}

.snack-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.snack-content {
    opacity: 0;
    transform: translateX(-30px);
}

.snack-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.snack-content h2 {
    margin-bottom: 20px;
}

.snack-description {
    color: var(--color-gray-600);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.snack-features {
    list-style: none;
    margin: 24px 0 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.snack-features li {
    position: relative;
    padding-left: 28px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-gray-700);
}

.snack-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-primary);
}

.snack-image {
    opacity: 0;
    transform: translateX(30px);
    display: flex;
    justify-content: center;
}

.snack-image.visible {
    opacity: 1;
    transform: translateX(0);
}

/* --- Snack E-mail Mock-up --- */
.snack-mockup {
    width: 100%;
    max-width: 400px;
    background: #f5f7fa;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    font-size: 0.75rem;
    line-height: 1.5;
    color: #333;
}

.snack-mock-header {
    text-align: center;
    padding: 20px 16px 14px;
    background: var(--color-white);
    border-bottom: 1px solid #eee;
}

.snack-mock-logo {
    height: 40px;
    width: auto;
    margin: 0 auto 8px;
    display: block;
}

.snack-mock-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gray-900);
}

.snack-mock-greeting {
    font-size: 0.75rem;
    color: var(--color-gray-400);
    margin-top: 2px;
}

.snack-mock-body {
    background: var(--color-white);
    margin: 12px;
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.snack-mock-intro {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.snack-mock-img {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.snack-mock-intro p {
    font-size: 0.7rem;
    color: var(--color-gray-600);
    margin: 0;
    line-height: 1.6;
}

.snack-mock-divider {
    height: 1px;
    background: #eee;
    margin: 14px 0;
}

.snack-mock-question {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 10px;
}

.snack-mock-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
}

.snack-mock-option {
    background: #e8f4f8;
    border: 1.5px solid #e8f4f8;
    border-radius: 8px;
    padding: 10px 8px;
    text-align: center;
    font-size: 0.62rem;
    font-weight: 500;
    color: #333;
    transition: all var(--transition);
}

.snack-mock-option--selected {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 700;
}

.snack-mock-submit {
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    padding: 11px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
}

.snack-mock-footer {
    text-align: center;
    padding: 10px;
    font-size: 0.6rem;
    color: var(--color-gray-400);
}

/* --- Statistieken --- */
.statistieken {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-dark) 0%, #1a3a4a 100%);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

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

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: rgba(0, 184, 169, 0.3);
}

.stat-number {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--color-primary-light);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.stat-suffix {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

/* --- Contact --- */
.contact {
    padding: 100px 0;
    background: var(--color-gray-50);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-label {
    text-align: left;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--color-gray-600);
    font-size: 1.05rem;
    margin-bottom: 36px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-gray-700);
    font-weight: 500;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
}

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

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    color: var(--color-gray-600);
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

/* --- Contact Form --- */
.contact-form-wrapper {
    background: var(--color-white);
    padding: 44px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-gray-200);
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--color-gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 0.95rem;
    color: var(--color-gray-900);
    background: var(--color-gray-50);
    transition: all var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-gray-400);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(0, 160, 147, 0.1);
}

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

.contact-form .btn-primary {
    padding: 16px 32px;
    font-size: 1rem;
}

/* --- Footer --- */
.footer {
    background: var(--color-dark);
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 8px;
    opacity: 0.8;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    font-style: italic;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
}

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

.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

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

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .box-section {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .box-image img {
        max-width: 400px;
        margin: 0 auto;
    }

    .check-list {
        align-items: center;
    }

    .snack-section {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .snack-features {
        align-items: center;
    }

    .snack-image img {
        max-width: 320px;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition);
    }

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

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

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

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

    .box-section {
        gap: 32px;
    }

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

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-card {
        padding: 28px 16px;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .diensten,
    .statistieken,
    .contact {
        padding: 72px 0;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

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

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

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .btn-outline {
        color: var(--color-white);
        border-color: rgba(255, 255, 255, 0.3);
    }

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