/* ========================================
   Intention.nl - New Menu Styles
   Scoped under .intention-nav to avoid
   conflicts with Bootstrap
   ======================================== */

/* Font smoothing and base reset to match website version */
.intention-nav {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Quicksand', Arial, Helvetica, sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

/* Top Bar */
.intention-nav .topbar {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 0;
}

.intention-nav .topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.intention-nav .topbar__logo img {
    height: 32px;
}

.intention-nav .topbar__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.intention-nav .topbar__link {
    font-size: 14px;
    font-weight: 600;
    color: #032c40;
    text-decoration: none;
    transition: color 0.2s;
}

.intention-nav .topbar__link:hover {
    color: #ff3c4a;
}

.intention-nav .btn--primary {
    display: inline-block;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    text-align: center;
    border-radius: 30px;
    background: #ff3c4a;
    color: #fff;
    text-decoration: none;
}

.intention-nav .btn--primary:hover {
    background: #e8323f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 60, 74, 0.3);
    color: #fff;
    text-decoration: none;
}

.intention-nav .btn--sm {
    padding: 8px 20px;
    font-size: 14px;
}

/* Main Navbar */
.intention-nav .navbar--new {
    background: #032c40;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.intention-nav .navbar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.intention-nav .navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.intention-nav .navbar__menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.intention-nav .navbar__menu > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 16px 22px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s;
    text-decoration: none;
}

.intention-nav .navbar__menu > li > a:hover {
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: #fff;
}

.intention-nav .navbar__menu > li > a svg {
    opacity: 0.7;
}

/* Dropdown */
.intention-nav .has-dropdown {
    position: relative;
}

.intention-nav .dropdown--new {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-radius: 0 0 12px 12px;
    padding: 12px 0;
    z-index: 200;
}

.intention-nav .has-dropdown:hover .dropdown--new {
    display: block;
}

.intention-nav .dropdown__section {
    padding: 4px 0;
}

.intention-nav .dropdown__label {
    display: block;
    padding: 6px 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #999;
}

.intention-nav .dropdown--new a {
    display: block;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #032c40;
    text-decoration: none;
}

.intention-nav .dropdown--new a:hover {
    background: #f5f7fa;
    color: #ff3c4a;
}

/* ========================================
   Hero Section
   ======================================== */
.hero--new {
    position: relative;
    background: url('/images/bg-home.jpg') center/cover no-repeat;
    padding: 80px 0 70px;
    text-align: center;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Quicksand', Arial, Helvetica, sans-serif;
}
.hero--domain {
    background: url('/images/bg-domain.jpg') center/cover no-repeat;
}
.hero--mail {
    background: url('/images/bg-mail.jpg') center/cover no-repeat;
}
.hero--shared {
    background: url('/images/bg-racks.jpg') center/cover no-repeat;
}
.hero--verhuis {
    background: url('/images/bg-verhuis.jpg') center/cover no-repeat;
}
.hero--support {
    background: url('/images/bg-support.jpg') center/cover no-repeat;
}
.hero--juridisch {
    background: url('/images/bg-juridisch.jpg') center/cover no-repeat;
}

.hero--new .hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #1c4153, #ff4c44);
    opacity: 0.9;
}

.hero--new .hero__content {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero--new h1 {
    color: #fff;
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 12px;
}

.hero--new .hero__search {
    display: flex;
    max-width: 560px;
    margin: 0 auto 24px;
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.hero--new .hero__input {
    flex: 1;
    border: none;
    padding: 16px 24px;
    font-size: 16px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    outline: none;
    background: transparent;
    color: #032c40;
}

.hero--new .hero__input::placeholder {
    color: #aaa;
}

.hero--new .hero__search .btn--hero {
    display: inline-block;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    text-align: center;
    border-radius: 30px;
    background: #ff3c4a;
    color: #fff;
    text-decoration: none;
    margin: 5px;
    padding: 12px 28px;
    white-space: nowrap;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.03em;
}

.hero--new .hero__search .btn--hero:hover {
    background: #e8323f;
}

.hero--new .hero__tlds {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero--new .tld {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 600;
}

.hero--new .tld em {
    font-style: normal;
    color: #fff;
    font-weight: 700;
}

/* ========================================
   Products Section
   ======================================== */
.products {
    padding: 70px 0;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Quicksand', Arial, Helvetica, sans-serif;
}

.products .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.products h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #032c40;
}

.products .products__divider {
    width: 40px;
    height: 3px;
    background: #ff3c4a;
    margin: 0 auto 20px;
    border-radius: 2px;
}

.products__intro {
    color: #555;
    font-size: 15px;
    max-width: 680px;
    margin: 0 auto 8px;
    font-weight: 500;
}

.products__intro:last-of-type {
    margin-bottom: 40px;
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.product-card {
    background: #032c40;
    border-radius: 20px;
    padding: 40px 28px 32px;
    text-align: center;
    color: #fff;
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(3, 44, 64, 0.25);
    text-decoration: none;
    color: #fff;
}

.product-card__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
}

.product-card__icon svg {
    width: 64px;
    height: 64px;
}

.product-card h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.product-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.product-card__cta {
    display: inline-block;
    background: #fff;
    color: #032c40;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-top: auto;
    transition: background 0.2s;
}

.product-card:hover .product-card__cta {
    background: #f5f5f5;
}

/* ========================================
   Why Intention Section
   ======================================== */
.why {
    background: #f8f9fc;
    padding: 70px 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Quicksand', Arial, Helvetica, sans-serif;
}

.why .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.why h2 {
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
    color: #032c40;
}

.why__intro {
    text-align: center;
    color: #555;
    font-size: 15px;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto 40px;
}

.why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.why__card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid #eef0f4;
    transition: transform 0.2s, box-shadow 0.2s;
}

.why__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.why__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: #f0f3f8;
    border-radius: 14px;
    color: #032c40;
}

.why__card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #032c40;
}

.why__card p {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0;
}

.why__cta {
    text-align: center;
}

.why__cta .btn--primary {
    display: inline-block;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    text-align: center;
    border-radius: 30px;
    background: #ff3c4a;
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    font-size: 15px;
}

.why__cta .btn--primary:hover {
    background: #e8323f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 60, 74, 0.3);
    color: #fff;
    text-decoration: none;
}

/* ========================================
   Reviews Section
   ======================================== */
.reviews {
    padding: 70px 0;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Quicksand', Arial, Helvetica, sans-serif;
}

.reviews .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.reviews h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #032c40;
}

.reviews .products__divider {
    width: 40px;
    height: 3px;
    background: #ff3c4a;
    margin: 0 auto 20px;
    border-radius: 2px;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 36px 0;
}

.review-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: left;
    transition: box-shadow 0.2s;
}

.review-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.review-card__stars {
    color: #ff3c4a;
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-card__text {
    font-size: 14px;
    color: #555;
    font-weight: 500;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 16px;
    border: none;
    padding: 0;
}

.review-card__author {
    font-size: 14px;
    font-weight: 700;
    color: #032c40;
}

.reviews__summary {
    margin-top: 16px;
}

.reviews__score {
    color: #ff3c4a;
    font-size: 24px;
    letter-spacing: 3px;
}

.reviews__summary p {
    font-size: 14px;
    color: #555;
    font-weight: 600;
    margin-top: 4px;
}

.reviews__summary small {
    font-weight: 500;
    color: #888;
}

/* ========================================
   Footer Social
   ======================================== */
.footer__social {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #e0e5ec;
    border-radius: 50%;
    color: #032c40;
    transition: background 0.2s;
}

.footer__social a:hover {
    background: #ff3c4a;
    color: #fff;
}

/* ========================================
   Footer Bottom
   ======================================== */
.footer__bottom {
    background: #032c40;
    padding: 16px 0;
}

.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
    margin: 0;
}

.footer__bottom .footert {
    color: rgba(255, 255, 255, 0.6);
}

.footer__links {
    display: flex;
    gap: 20px;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.footer__links a:hover {
    color: #fff;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 480px) {
    .hero--new {
        padding: 50px 0 40px;
    }

    .hero--new h1 {
        font-size: 28px;
    }

    .products, .why, .reviews {
        padding: 50px 0;
    }
}

@media (max-width: 768px) {
    .intention-nav .topbar__inner {
        padding: 0 8px;
    }

    .intention-nav .navbar__toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 12px;
    }

    .intention-nav .navbar__inner {
        justify-content: flex-start;
        position: relative;
        min-height: 48px;
    }

    .intention-nav .navbar__menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #032c40;
        position: absolute;
        top: 48px;
        left: 0;
        z-index: 100;
    }

    .intention-nav .navbar__menu.active {
        display: flex;
    }

    .intention-nav .navbar__menu > li > a {
        padding: 14px 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .intention-nav .dropdown--new {
        position: static;
        box-shadow: none;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.05);
    }

    .intention-nav .dropdown--new a {
        color: rgba(255, 255, 255, 0.8);
        padding: 10px 32px;
    }

    .intention-nav .dropdown__label {
        color: rgba(255, 255, 255, 0.4);
        padding: 6px 32px;
    }

    .intention-nav .has-dropdown .dropdown--new {
        display: none;
    }

    .intention-nav .has-dropdown.open .dropdown--new {
        display: block;
    }

    .hero--new h1 {
        font-size: 32px;
    }

    .hero--new .hero__search {
        flex-direction: column;
        border-radius: 16px;
    }

    .hero--new .hero__search .btn--hero {
        border-radius: 12px;
        margin: 0 8px 8px;
    }

    .hero--new .hero__tlds {
        gap: 12px;
    }

    .hero--new .tld {
        font-size: 12px;
    }

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

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

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

    .footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer__links {
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .products__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

