/* RESET & BASIS STYLING */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Red Hat Display', sans-serif;
    line-height: 1.6;
    color: #F5F5F5;
    background: #0B0B0B;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* LUXURY BUTTON STYLING */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.luxury-btn {
    background: linear-gradient(135deg, #C9A646, #D4AF37, #E5C158);
    color: #0B0B0B;
    box-shadow: 0 4px 15px rgba(201, 166, 70, 0.3);
}

.luxury-btn:hover {
    background: linear-gradient(135deg, #D4AF37, #E5C158, #F0D16B);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 166, 70, 0.4);
}

.luxury-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.luxury-btn:hover::before {
    left: 100%;
}

.btn-green {
    background: #00cc00;
    color: white;
}

.btn-green:hover {
    background: #00b300;
}

.btn-blue {
    background: #007bff;
    color: white;
}

.btn-blue:hover {
    background: #0056b3;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #F5F5F5;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #E0E0E0;
}

/* HEADER STYLING MET AANGEPASTE LOGO GROOTTE (126px - 30% kleiner) */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0B0B0B;
    color: #F5F5F5;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    border-bottom: 1px solid #1A1A1A;
    height: 150px !important; /* Verlaagd van 180px naar 150px */
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    width: 100%;
}

/* AANGEPASTE LOGO STYLING - 126px (30% kleiner) */
.logo-img,
header .logo img,
.header-container .logo img,
.logo a img,
header .logo a img,
.header-container .logo a img {
    height: 126px !important; /* Verlaagd van 180px naar 126px - 30% kleiner */
    width: auto !important;
    max-height: 126px !important;
    min-height: 126px !important;
    transition: all 0.3s ease;
}

.logo-img:hover,
header .logo img:hover,
.header-container .logo img:hover {
    transform: scale(1.05);
}

/* Specifieke targeting voor logo container */
.logo,
header .logo,
.header-container .logo {
    height: 126px !important;
    display: flex;
    align-items: center;
}

/* NAVIGATIE MET VERBETERDE PIJLTJES */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
}

.nav-list li {
    position: relative;
    margin: 0 15px;
}

.nav-list a {
    padding: 10px 0;
    font-weight: 500;
    transition: color 0.3s ease;
    color: #F5F5F5;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-list a:hover {
    color: #C9A646;
}

/* VERBETERDE DROPDOWN PIJLTJES MET LUXE STIJL */
.dropdown-arrow {
    display: inline-block;
    font-size: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 6px;
    line-height: 1;
    background: linear-gradient(135deg, #C9A646, #D4AF37, #E5C158);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    position: relative;
    top: -1px;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    background: linear-gradient(135deg, #D4AF37, #E5C158, #F0D16B);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dropdown:hover .submenu {
    display: block;
}

/* VERBETERDE SUBMENU'S */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1A1A1A;
    color: #F5F5F5;
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-radius: 8px;
    z-index: 1001;
    border: 1px solid #2A2A2A;
    padding: 8px 0;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.3s ease-out;
}

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

.submenu li {
    margin: 0;
}

.submenu a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid #2A2A2A;
    color: #E0E0E0;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submenu a:hover {
    background: linear-gradient(135deg, rgba(201, 166, 70, 0.1), rgba(212, 175, 55, 0.05));
    color: #C9A646;
    padding-left: 25px;
}

.submenu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: left 0.5s;
}

.submenu a:hover::before {
    left: 100%;
}

.submenu li:last-child a {
    border-bottom: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #F5F5F5;
    margin: 3px 0;
    transition: 0.3s;
}

/* HERO SECTIE - aangepast voor kleinere logo */
.hero {
    background: linear-gradient(rgba(11, 11, 11, 0.8), rgba(11, 11, 11, 0.8)), url('../images/home-hero.webp');
    background-size: cover;
    background-position: center;
    color: #F5F5F5;
    text-align: center;
    padding: 190px 0 100px !important; /* Verlaagd van 220px naar 190px */
    margin-top: 150px !important; /* Verlaagd van 180px naar 150px */
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #F5F5F5;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

.hero-luxe-tagline {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    background: linear-gradient(90deg, #F7E7A1, #D9B35D, #C9A646, #F5D992);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-align: center;
    margin: 0 auto 2.5rem;
    display: inline-block;
    text-shadow: 0 0 12px rgba(249, 222, 142, 0.45), 0 0 24px rgba(201, 166, 70, 0.35);
    animation: heroTaglineGlow 6s linear infinite;
    position: relative;
    overflow: hidden;
}

.hero-luxe-tagline::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -40%;
    width: 35%;
    height: 140%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0));
    opacity: 0.85;
    transform: skewX(-20deg);
    filter: blur(1px);
    animation: heroTaglineSweep 4.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    pointer-events: none;
}

.hero-luxe-tagline::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, rgba(247, 231, 161, 0), rgba(247, 231, 161, 0.9), rgba(247, 231, 161, 0));
    filter: blur(1px);
    opacity: 0.85;
}

@keyframes heroTaglineGlow {
    0% {
        background-position: 0% 50%;
        text-shadow: 0 0 12px rgba(249, 222, 142, 0.4), 0 0 24px rgba(201, 166, 70, 0.3);
    }
    50% {
        background-position: 100% 50%;
        text-shadow: 0 0 18px rgba(255, 239, 182, 0.6), 0 0 32px rgba(201, 166, 70, 0.45);
    }
    100% {
        background-position: 0% 50%;
        text-shadow: 0 0 12px rgba(249, 222, 142, 0.4), 0 0 24px rgba(201, 166, 70, 0.3);
    }
}

@keyframes heroTaglineSweep {
    0% {
        left: -45%;
        opacity: 0;
    }
    10% {
        opacity: 0.9;
    }
    55% {
        left: 110%;
        opacity: 0.75;
    }
    70% {
        opacity: 0;
    }
    100% {
        left: 110%;
        opacity: 0;
    }
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* DIENSTEN SECTIE */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #1A1A1A;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #2A2A2A;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    border-color: #C9A646;
}

.service-img {
    height: 150px;
    background: #2A2A2A;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.service-icon {
    width: 60px;
    height: 60px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #F5F5F5;
}

.service-content p {
    color: #E0E0E0;
    margin-bottom: 20px;
}

.service-btn {
    margin-top: auto;
    display: inline-block;
    width: 100%;
    text-align: center;
}

/* WAAROM KIEZEN VOOR ONS */
.why-us-section {
    background: #0F0F0F;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.why-us-card {
    background: #1A1A1A;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #2A2A2A;
}

.why-us-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    border-color: #C9A646;
}

.why-us-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.why-us-icon svg {
    width: 100%;
    height: 100%;
}

.why-us-content h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #F5F5F5;
}

.why-us-content p {
    color: #E0E0E0;
    line-height: 1.6;
}

/* KENNISMAKING SECTIE */
.meeting-section {
    background: linear-gradient(135deg, #1A1A1A, #0F0F0F);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.meeting-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><defs><pattern id="smallGrid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(201,166,70,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23smallGrid)"/></svg>');
    opacity: 0.3;
}

.meeting-content {
    position: relative;
    z-index: 1;
}

.meeting-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #C9A646, #D4AF37, #E5C158);
    box-shadow: 0 6px 20px rgba(201, 166, 70, 0.4);
}

.meeting-btn:hover {
    background: linear-gradient(135deg, #D4AF37, #E5C158, #F0D16B);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 166, 70, 0.5);
}

/* FOOTER */
footer {
    background: #0B0B0B;
    color: #E0E0E0;
    padding: 60px 0 30px;
    border-top: 1px solid #1A1A1A;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #F5F5F5;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #E0E0E0;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #C9A646;
}

.footer-bottom {
    border-top: 1px solid #1A1A1A;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

/* CHAT WIDGET */
.chat-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
}

.chat-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C9A646, #D4AF37);
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    position: relative;
}

.chat-button:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #D4AF37, #E5C158);
    box-shadow: 0 6px 10px rgba(201, 166, 70, 0.4);
}

.chat-button svg {
    width: 28px;
    height: 28px;
    fill: #0B0B0B;
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #C9A646;
    color: #0B0B0B;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.chat-window {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 350px;
    background: #1A1A1A;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    display: none;
    flex-direction: column;
    animation: fadeIn 0.5s ease-in-out;
    z-index: 1001;
    border: 1px solid #2A2A2A;
}

.chat-header {
    background: #1A1A1A;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #2A2A2A;
}

.chat-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #C9A646;
}

.chat-header-info {
    display: flex;
    flex-direction: column;
}

.chat-header-info strong {
    font-size: 16px;
    color: #F5F5F5;
}

.chat-header-info span {
    font-size: 14px;
    color: #E0E0E0;
}

.chat-body {
    padding: 15px;
    color: #F5F5F5;
    font-size: 14px;
}

.chat-body p {
    margin: 20px 0 10px;
    font-weight: bold;
    color: #F5F5F5;
}

.chat-body ul {
    margin-bottom: 20px;
    padding-left: 20px;
    color: #E0E0E0;
}

.chat-body li {
    margin-bottom: 5px;
}

.chat-body button {
    background: linear-gradient(135deg, #C9A646, #D4AF37);
    color: #0B0B0B;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
    transition: background 0.3s ease-in-out;
    width: 100%;
}

.chat-body button:hover {
    background: linear-gradient(135deg, #D4AF37, #E5C158);
}

.chat-body button.green {
    background: #00cc00;
    color: #ffffff;
}

.chat-body button.green:hover {
    background: #00b300;
}

.chat-body button.blue {
    background: #007bff;
    color: #ffffff;
}

.chat-body button.blue:hover {
    background: #0056b3;
}

.hidden {
    display: none;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #C9A646, #D4AF37);
    color: #0B0B0B;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.close-button:hover {
    background: linear-gradient(135deg, #D4AF37, #E5C158);
}

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

/* RESPONSIVE STYLING */
@media (max-width: 1200px) {
    .services-grid,
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .nav-list {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu.active .nav-list {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0B0B0B;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.3);
        border-top: 1px solid #1A1A1A;
    }
    
    .nav-menu.active .nav-list li {
        margin: 10px 0;
    }
    
    .submenu {
        position: static;
        display: none;
        background: transparent;
        box-shadow: none;
        margin-top: 10px;
        padding-left: 20px;
        border: none;
        backdrop-filter: none;
        animation: none;
    }
    
    .dropdown:hover .submenu,
    .dropdown.active .submenu {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }

    /* MOBILE DROPDOWN PIJLTJES */
    .dropdown-arrow {
        font-size: 10px;
    }
    
    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
}

@media (max-width: 768px) {
    /* HEADER AANPASSINGEN VOOR MOBIEL */
    header {
        height: 110px !important; /* Verlaagd van 140px naar 110px */
    }
    
    .hero {
        padding: 150px 0 80px !important; /* Verlaagd van 180px naar 150px */
        margin-top: 110px !important; /* Verlaagd van 140px naar 110px */
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .chat-window {
        width: 300px;
        right: 10px;
    }
    
    /* AANGEPASTE LOGO VOOR MOBIEL - 30% kleiner */
    .logo-img,
    header .logo img,
    .header-container .logo img,
    .logo a img,
    header .logo a img,
    .header-container .logo a img {
        height: 84px !important; /* Verlaagd van 120px naar 84px - 30% kleiner */
        width: auto !important;
        max-height: 84px !important;
        min-height: 84px !important;
    }
    
    /* Specifieke targeting voor logo container op mobiel */
    .logo,
    header .logo,
    .header-container .logo {
        height: 84px !important;
    }
}

@media (max-width: 480px) {
    header {
        height: 95px !important; /* Verlaagd van 120px naar 95px */
    }
    
    .hero {
        margin-top: 95px !important; /* Verlaagd van 120px naar 95px */
        padding: 140px 0 80px !important; /* Verlaagd van 160px naar 140px */
    }
    
    /* AANGEPASTE LOGO VOOR KLEINE MOBIEL - 30% kleiner */
    .logo-img,
    header .logo img,
    .header-container .logo img,
    .logo a img,
    header .logo a img,
    .header-container .logo a img {
        height: 70px !important; /* Verlaagd van 100px naar 70px - 30% kleiner */
        width: auto !important;
        max-height: 70px !important;
        min-height: 70px !important;
    }
    
    /* Specifieke targeting voor logo container op kleine mobiel */
    .logo,
    header .logo,
    .header-container .logo {
        height: 70px !important;
    }
}