/* css/style.css */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.wrapper {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #181A1C;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

.header {
    background: #181A1C;
    padding: 25px 40px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
}

.logo {
    max-width: 200px;
    display: block;
    margin: 0 auto 20px;
}

.nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    justify-content: center;
    padding: 12px 0;
}

.nav-link {
    color: #00FF0D;
    text-decoration: none;
    font-size: 20px;
    padding: 10px 20px;
    border-radius: 6px;
    background: #333;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
    text-align: center;
    font-weight: bold;
}

.nav-link:hover {
    background: #00FF0D;
    color: #181A1C;
    transform: scale(1.05);
    box-shadow: 0 0 8px #00FF0D;
}

.pri-section {
    background: #181A1C;
    color: #fff;
    padding: 5rem 3rem;
    box-shadow: 0 10px 25px rgba(24, 26, 28, 0.8), 0 0 30px rgba(24, 26, 28, 0.6);
    border-radius: 12px;
    margin: 30px auto;
    max-width: 1200px;
}

.pri-section .main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.pri-section .cta-button {
    margin: 0;
    width: 400px;
}

.pri-section h1,
.pri-section h2,
.pri-section h3,
.pri-section p {
    color: #00FF0D;
}

.sec-section {
    background: #00FF0D;
    color: #181A1C;
    padding: 5rem 3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    margin: 30px auto;
    max-width: 1200px;
}

.sec-section h1,
.sec-section h2,
.sec-section h3,
.sec-section p {
    color: #181A1C;
}

.main {
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.title {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: bold;
    text-align: center;
}

.description {
    font-size: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.cta-button,
.form-button,
.index-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #00FF0D;
    color: #181A1C;
    text-decoration: none;
    border-radius: 30px;
    margin: 12px 10px;
    font-size: 18px;
    font-weight: bold;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    max-width: 100%;
}

.cta-button:hover,
.form-button:hover,
.index-btn:hover {
    background: #333;
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 0 8px #00FF0D;
}

.index-btn {
    min-width: 250px;
}

.index-btn i {
    margin-right: 12px;
    font-size: 22px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background: #22262C;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 12px #00FF0D;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-icon {
    font-size: 40px;
    color: #00FF0D;
    margin-bottom: 20px;
}

.service-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #00FF0D;
    font-weight: bold;
}

.service-description {
    font-size: 16px;
    margin-bottom: 25px;
    color: #fff;
}

.service-description div {
    margin-bottom: 12px;
    font-size: 15px;
    text-align: left;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.form-field {
    margin-bottom: 20px;
}

.form-label {
    font-weight: bold;
    color: #00FF0D;
    font-size: 18px;
    display: block;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    padding: 15px;
    background: #141516;
    color: #00FF0D;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.8), inset -4px -4px 8px rgba(255, 255, 255, 0.05);
    transition: box-shadow 0.3s ease;
    width: 100%;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    box-shadow: 0 0 8px #00FF0D;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #747C89;
}

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

.form-button {
    cursor: pointer;
}

.footer {
    background: #181A1C;
    color: #fff;
    text-align: center;
    padding: 25px 40px;
    margin-top: 50px;
    border-top: 3px solid #00FF0D;
}

.footer-text {
    margin: 0;
    font-size: 16px;
    color: #00FF0D;
}

.footer-link {
    font-size: 16px;
    color: #00FF0D;
    transition: color 0.3s ease, background 0.3s ease;
}
.footer-link:hover {
    color: #181A1C;
    background: #00FF0D;
    padding: 2px 6px;
    border-radius: 4px;
}

.cookie-consent {
    position: fixed;
    bottom: 40px;
    left: 40px;
    background: #22262C;
    color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
    display: none;
    max-width: 350px;
}

.cookie-consent p {
    margin-bottom: 15px;
    font-size: 15px;
    color: #fff;
}

.cookie-consent-button {
    margin-top: 15px;
    padding: 10px 20px;
    background: #00FF0D;
    color: #181A1C;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cookie-consent-button:hover {
    background: #333;
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 0 8px #00FF0D;
}

.back-to-top,
.back-to-bottom {
    position: fixed;
    right: 2.5rem;
    background: #00FF0D;
    color: #181A1C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    font-size: 1.5rem;
    line-height: 1;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 0 5px #000;
}

.back-to-top i, .back-to-bottom i {
    margin: 0;
}

.back-to-top {
    bottom: 2.5rem;
}

.back-to-bottom {
    top: 2.5rem;
}

.back-to-top:hover,
.back-to-bottom:hover {
    background: #333;
    color: #fff;
    box-shadow: 2px 2px 8px #000;
}

/* The Dutch Flag */
#flag-nl {
    aspect-ratio: 3 / 2;
    background: linear-gradient(to bottom,
        #AD1D25 calc(100% / 3),
        #fff calc(100% / 3) calc(100% / 1.5),
        #1E4785 calc(100% / 1.5));
    width: 100%;
    max-width: 40px;
    height: auto;
    position: relative;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

/* The United Kingdom Flag */
#flag-gb {
    width: 100%;
    max-width: 40px;
    aspect-ratio: 2 / 1;
    position: relative;
    background-color: #012169;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    height: auto;
}

#flag-gb .rect1,
#flag-gb .rect2 {
    height: 20%;
    width: 125%;
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #fff;
}

#flag-gb .rect1 {
    transform: translate(-50%, -50%) rotate(26.565deg);
}

#flag-gb .rect2 {
    transform: translate(-50%, -50%) rotate(-26.565deg);
}

#flag-gb .rect1::before,
#flag-gb .rect2::before {
    content: '';
    height: calc(100% / 3);
    width: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    background-color: #C8102E;
    z-index: 1;
}

#flag-gb .rect1::after,
#flag-gb .rect2::after {
    content: '';
    height: calc(100% / 3);
    width: 50%;
    position: absolute;
    left: 50%;
    bottom: 50%;
    background-color: #C8102E;
    z-index: 1;
}

#flag-gb .rect3 {
    height: calc(100% / 3);
    position: relative;
    top: 50%;
    background-color: #fff;
    transform: translate(0, -50%);
    z-index: 1;
    left: -100%;
    width: 200%;
}

#flag-gb .rect3::after {
    content: '';
    height: 60%;
    width: 100%;
    position: absolute;
    top: 20%;
    background-color: #C8102E;
}

#flag-gb .rect4 {
    width: calc(100% / 6);
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    background-color: #fff;
    transform: translate(-50%);
}

#flag-gb .rect5 {
    width: 10%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    background-color: #C8102E;
    transform: translate(-50%);
    z-index: 1;
}

#flag-gb.flag-big, #flag-nl.flag-big {     width: 32px;     height: 21.33px;   margin-right: 1rem; }


/* Responsive adjustments */
@media (max-width: 600px) {
    .nav {
        grid-template-columns: 1fr;
    }
    .index-btn {
        min-width: 100%;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .main {
        padding: 20px;
    }
    .pri-section .main {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .cookie-consent {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
        max-width: 95%;
    }
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    .back-to-bottom {
        top: 1.5rem;
        right: 1.5rem;
    }
}
