/* =====================
   RESET & BASIS
===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    font-family: 'Poppins', sans-serif;
    height: 100%;
    background: #0f0f1a;
    color: #fff;
    overflow-x: hidden;
}

/* =====================
   LUXE GRADIENT BACKGROUND
===================== */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, #ff7f50, #6a11cb, #2575fc);
    background-size: 300% 300%;
    animation: gradientMove 20s ease infinite;
    z-index: -1;
}
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* =====================
   NAVBAR
===================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(20,20,40,0.9));
    border-bottom: 2px solid #fff2;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}
.logo {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 50px;
}
.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    padding-bottom: 5px;
}
.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg,#ff7f50,#2575fc);
    transition: width 0.3s ease;
}
.nav-links li a:hover::after { width: 100%; }
.nav-links li a:hover { color: #ff7f50; }

.logo-link {
    color: #fff; /* altijd wit */
    text-decoration: none; /* geen underline */
    font-weight: 800;
    font-size: 1.6rem;
    transition: color 0.3s ease, transform 0.3s ease;
}
.logo-link:hover {
    color: #6a11cb; /* subtiel luxe hover effect */
    transform: scale(1.05);
}
/* =====================
   HERO SECTION
===================== */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    z-index: 5;
}
.hero-title {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(90deg,#ff7f50,#6a11cb,#2575fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease forwards;
}
.subtitle {
    font-size: 1.6rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 50px;
    animation: fadeInUp 1s 0.3s ease forwards;
}
.hero-buttons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}
.hero-buttons .btn {
    text-decoration: none;
    min-width: 180px;
    max-width: 220px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg,#ff7f50,#6a11cb);
    border-radius: 50px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    position: relative;
}
.hero-buttons .btn:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}
.hero-buttons .btn-outline {
    background: transparent;
    border: 2px solid #ff7f50;
}
.hero-buttons .btn-outline:hover {
    background: #ff7f50;
    color: #fff;
}

/* =====================
   FEATURE CARDS
===================== */
.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}
.feature-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.1));
    padding: 30px;
    border-radius: 25px;
    flex: 1 1 300px;
    min-width: 250px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}
.feature-card h3 {
    font-size: 1.5rem;
    background: linear-gradient(90deg,#ff7f50,#6a11cb,#2575fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}
.feature-card p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    line-height: 1.5;
}

/* =====================
   ANIMATIONS
===================== */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* =====================
   TABLES, FORMS & SHOP ELEMENTS
===================== */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}
table th, table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    text-align: left;
}
input, select, textarea, button {
    padding: 12px 20px;
    border-radius: 12px;
    border: none;
    font-size: 1rem;
    margin: 5px 0;
}
button {
    background: linear-gradient(135deg,#ff7f50,#6a11cb);
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
}
button:hover {
    transform: scale(1.05);
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
    position: relative;
    padding: 140px 24px;
    background: transparent;
    color: #fff;
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}

/* =========================
   INFO SIDE
========================= */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-card {
    background: rgba(255,255,255,0.035);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-radius: 28px;
    padding: 45px 35px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.6),
        inset 0 0 40px rgba(255,255,255,0.02);
    transition: all 0.45s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow:
        0 35px 80px rgba(0,0,0,0.8),
        0 0 40px rgba(120,80,255,0.15);
}

.info-card h3 {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.info-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
}

/* =========================
   FORM CONTAINER
========================= */

.contact-form {
    background: rgba(255,255,255,0.045);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
    border-radius: 34px;
    padding: 60px 50px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 30px 90px rgba(0,0,0,0.75),
        inset 0 0 60px rgba(255,255,255,0.03);
    display: flex;
    flex-direction: column;
    gap: 28px;
    transition: all 0.4s ease;
}

.contact-form h2 {
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 10px;
}

/* =========================
   INPUTS
========================= */

.form-group {
    position: relative;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 20px 22px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.35s ease;
}

.contact-form textarea {
    min-height: 160px;
    resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.45);
}

/* Hover micro lift */
.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover {
    transform: translateY(-3px);
    border: 1px solid rgba(255,255,255,0.18);
}

/* Focus state */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    transform: translateY(-4px);
    border: 1px solid #7f5af0;
    box-shadow:
        0 10px 30px rgba(0,0,0,0.6),
        0 0 0 3px rgba(127,90,240,0.25);
}

/* =========================
   SELECT FIXED PROPERLY
========================= */

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-image: none;
}

/* Dropdown readability fix */
.contact-form select option {
    background: #0f111a;
    color: #ffffff;
}

/* Custom arrow */
.form-group.select-group {
    position: relative;
}

.form-group.select-group::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.form-group.select-group:hover::after {
    transform: translateY(-50%) rotate(45deg) scale(1.2);
}

/* =========================
   SUBMIT BUTTON
========================= */

.submit-btn {
    padding: 22px 0;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    transition: all 0.4s ease;
    box-shadow:
        0 15px 40px rgba(0,0,0,0.7);
}

.submit-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 25px 60px rgba(0,0,0,0.85),
        0 0 30px rgba(120,80,255,0.4);
    background: linear-gradient(135deg, #8e2de2, #4a00e0);
}

/* =========================
   SUCCESS MESSAGE
========================= */

.form-success {
    display: none;
    text-align: center;
    padding: 18px;
    border-radius: 20px;
    background: rgba(50, 200, 100, 0.18);
    border: 1px solid rgba(50, 200, 100, 0.4);
    color: #cfffcb;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.form-success.active {
    display: block;
    opacity: 1;
}

/* =========================
   FADE IN
========================= */

.contact-section {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-form {
        padding: 50px 30px;
    }

    .info-card {
        padding: 35px 25px;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 100px 18px;
    }

    .contact-form h2 {
        font-size: 2.2rem;
    }
}

/* =====================
    FOOTER
===================== */
footer {
    position: relative;
    margin-top: 120px;
    padding: 80px 40px 40px 40px;
    background: linear-gradient(
        180deg,
        rgba(15,15,25,0.6) 0%,
        rgba(10,10,20,0.95) 100%
    );
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #fff;
}

/* Subtle glow effect */
footer::before {
    content: "";
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(106,17,203,0.25) 0%,
        transparent 70%
    );
    filter: blur(120px);
    z-index: 0;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-brand span {
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    text-shadow: 0 0 12px rgba(106,17,203,0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 25px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    text-align: center;
}

/* =====================
   RESPONSIVE
===================== */
@media screen and (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .subtitle { font-size: 1.3rem; }
    .features { flex-direction: column; align-items: center; }
    .navbar { padding: 15px 30px; }
    .nav-links { gap: 20px; flex-wrap: wrap; justify-content: center; margin-top: 10px; }
}
@media screen and (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .subtitle { font-size: 1.1rem; }
    .hero-buttons .btn { min-width: 150px; font-size: 1rem; height: 50px; }
}