* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* body */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8%;
    background: #000;
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Logo */
.logo {
    font-size: 28px;
    font-weight: 700;
    color: #d4af37;
    line-height: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 26px;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 10px 0;
}

.nav-menu a:hover {
    color: #d4af37;
}

/* Navbar button: Offerte Aanvragen */
.btn-main {
    background: #d4af37;
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}


.btn-main:hover {
    background: #e5b84b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 162, 55, 0.35);
}

.btn-main:active {
    transform: translateY(0);
}

.btn-main a {
    text-decoration: none;
    color: #222;

}

/* Hero Sectie */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    /* hero background image */
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        radial-gradient(circle at 20% 20%, rgba(212, 162, 55, 0.35), rgba(0, 0, 0, 0) 45%),
        url('../media/bannnerSabra.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.hero-content {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    text-align: left;
    padding: 26px 0;
}

.hero-content * {
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    max-width: 820px;
    line-height: 1.12;
    letter-spacing: -0.4px;
}

.hero p {
    margin-top: 14px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.92);
}

.hero span {
    color: #d4af37;
}

.hero-buttons {
    margin-top: 26px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

/* .btn-fill, */
.btn-outline {
    border-radius: 12px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

/* .btn-fill:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(212, 162, 55, 0.22);
} */

.btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(212, 162, 55, 0.14);
    border-color: #d4af37;
}



/* .btn-fill {
    background: #d4af37;
    color: black;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    font-weight: bold;
} */

.btn-outline {
    border: 1px solid #d4af37;
    /* color: #d4af37; */
    background: transparent;
    padding: 15px 30px;
    cursor: pointer;
    margin-left: 20px;
}
.btn-outline a
{
    color: #d4af37;
    text-decoration: none;

}

/* Services */

.services {
    padding: 100px 8%;
    background: #111;
    text-align: center;
}


.services-header {
    max-width: 700px;
    margin: auto;
}


.services-header span {
    color: #d4a237;
    letter-spacing: 4px;
    font-size: 14px;
    font-weight: 600;
}


.services h2 {
    color: white;
    font-size: 42px;
    margin: 15px 0 20px;
    text-transform: uppercase;
}


.services h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: #d4a237;
    margin: 20px auto;
}


.services-header p {
    color: #aaa;
    font-size: 17px;
    line-height: 1.8;
}



.grid {
    max-width: 1200px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}



.card {
    background: #181818;
    padding: 40px 30px;
    border-radius: 18px;
    border: 1px solid rgba(212, 162, 55, .15);
    transition: .4s;
    position: relative;
    overflow: hidden;
}


.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #d4a237;
    transform: scaleX(0);
    transition: .4s;
}


.card:hover::before {
    transform: scaleX(1);
}


.card:hover {
    transform: translateY(-10px);
    border-color: #d4a237;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .5);
}



.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}



.card h3 {
    color: white;
    font-size: 22px;
    margin-bottom: 15px;
}


.card p {
    color: #aaa;
    line-height: 1.7;
    font-size: 15px;
}

/* Gallery */
.gallery {
    width: 100%;
    padding: 60px 8%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    justify-items: stretch;
}


/* About us */
.overons {
    padding: 100px 20px;
    background: #222;
}


.over-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}


.over-image {
    position: relative;
}


.over-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 25px;
}


/* gouden lijn naast foto */

.over-image::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    border-right: 3px solid #d4a237;
    border-bottom: 3px solid #d4a237;
    right: -20px;
    bottom: -20px;
}


.over-content span {
    color: #d4a237;
    letter-spacing: 4px;
    font-size: 14px;
    font-weight: 600;
}


.over-content h2 {
    color: white;
    font-size: 45px;
    line-height: 1.2;
    margin: 20px 0;
}


.over-content p {
    color: #bbb;
    font-size: 17px;
    line-height: 1.8;
}


.over-info {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}


.over-info strong {
    color: #d4a237;
    font-size: 35px;
}


.over-info p {
    margin-top: 5px;
    font-size: 14px;
}

/* Why Sabra */

.waarom {
    padding: 100px 8%;
    background: #222;
}


.waarom-header {
    max-width: 750px;
    margin: auto;
    text-align: center;
}


.waarom-header span {
    color: #d4a237;
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 600;
}


.waarom h2 {
    color: white;
    font-size: 42px;
    margin: 15px 0 20px;
}


.waarom-header p {
    color: #aaa;
    font-size: 17px;
    line-height: 1.8;
}



.waarom-grid {
    max-width: 1100px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}



.waarom-card {
    position: relative;
    background: #171717;
    padding: 45px 35px;
    border-radius: 20px;
    border: 1px solid rgba(212, 162, 55, .15);
    overflow: hidden;
    transition: .4s;
}


.waarom-card:hover {
    transform: translateY(-10px);
    border-color: #d4a237;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .5);
}



.waarom-number {
    font-size: 55px;
    font-weight: 700;
    color: rgba(212, 162, 55, .18);
    position: absolute;
    top: 15px;
    right: 25px;
}



.waarom-card h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
    position: relative;
}


.waarom-card p {
    color: #aaa;
    line-height: 1.8;
    position: relative;
}


/* Gallery */

.gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

/* Show more button */
.gallery-actions {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
}

.btn-show-more {
    background: #d4af37;
    color: #000;
    border: none;
    padding: 14px 28px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 8px;
}

.btn-show-more:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.gallery-item {
    margin: 0;
    border: 0;
    width: auto;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border: 1px solid #111;
    border-radius: 10px;
    transition: border-color 0.2s ease;
}

.gallery-item img:hover {
    border-color: #d4af37;
}

/* Review */

.reviews {
    padding: 100px 8%;
    background: #222;
}


.reviews-header {
    text-align: center;
    max-width: 750px;
    margin: auto;
}


.reviews-header span {
    color: #d4a237;
    letter-spacing: 4px;
    font-size: 14px;
    font-weight: 600;
}


.reviews h2 {
    color: white;
    font-size: 42px;
    margin: 15px 0 20px;
}


.reviews-header p {
    color: #aaa;
    line-height: 1.8;
}



.reviews-grid {
    max-width: 1200px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}



.review-card {
    background: #181818;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(212, 162, 55, .15);
    transition: .3s;
}


.review-card:hover {
    transform: translateY(-8px);
    border-color: #d4a237;
}



.stars {
    color: #d4a237;
    font-size: 22px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}



.review-card p {
    color: #ccc;
    line-height: 1.8;
    font-size: 16px;
    font-style: italic;
}



.review-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}



.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #d4a237;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}



.review-user h3 {
    color: white;
    font-size: 17px;
    margin: 0;
}


.review-user span {
    color: #888;
    font-size: 14px;
}


.review-button {
    text-align: center;
    margin-top: 60px;
}


.review-button p {
    color: white;
    font-size: 17px;
    margin-bottom: 20px;
}


.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    background: #d4a237;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: .3s;
}


.google-review-btn:hover {
    transform: translateY(-4px);
    background: #e5b84b;
    box-shadow: 0 15px 35px rgba(212, 162, 55, .35);
}

/* Contact Form*/

.contact-form {

    max-width: 650px;
    margin: 50px auto 0;

    background: linear-gradient(145deg,
            #1b1b1b,
            #101010);

    padding: 45px;

    border-radius: 25px;

    border: 1px solid rgba(212, 162, 55, .25);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .45);

}


/* Input */

.contact-form input,
.contact-form textarea {

    width: 100%;

    background: #0c0c0c;

    color: white;

    border: 1px solid #333;

    padding: 17px 20px;

    border-radius: 14px;

    font-size: 15px;

    margin-bottom: 20px;

    outline: none;

    transition: .3s;

    box-sizing: border-box;

}



/* Hover */

.contact-form input:hover,
.contact-form textarea:hover {

    border-color: #555;

}



/* Focus */

.contact-form input:focus,
.contact-form textarea:focus {

    border-color: #d4a237;

    box-shadow:
        0 0 0 4px rgba(212, 162, 55, .12);

}


.contact-form textarea {

    height: 160px;

    resize: none;

}

.contact-form input::placeholder,
.contact-form textarea::placeholder {

    color: #777;

}

.contact-form button {

    width: 100%;

    padding: 18px;

    background: #d4a237;

    color: #111;

    border: none;

    border-radius: 50px;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    transition: .35s;

}

.contact-form button:hover {

    background: #edc05a;

    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(212, 162, 55, .35);

}


.contact-form button:active {

    transform: translateY(0);

}

.contact-header {

    max-width: 750px;

    margin: 0 auto;

    text-align: center;

}


.contact-header span {

    color: #d4a237;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 4px;

}



.contact-header h2 {

    color: white;

    font-size: 42px;

    margin: 15px 0 20px;

}



.contact-header h2::after {

    content: "";

    display: block;

    width: 80px;

    height: 3px;

    background: #d4a237;

    margin: 20px auto;

    border-radius: 5px;

}



.contact-header p {

    color: #aaa;

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 50px;

}

/* footer */

.footer {
    background: #0b0b0b;
    border-top: 1px solid rgba(212, 162, 55, .2);
    margin-top: 100px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 70px 25px;
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr 1fr;
    gap: 50px;
}

.footer-logo h2 {
    color: #d4a237;
    font-size: 32px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: #999;
    line-height: 1.8;
}

.footer-column h3 {
    color: #fff;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h3::after {
    content: "";
    display: block;
    width: 45px;
    height: 3px;
    background: #d4a237;
    margin-top: 8px;
    border-radius: 10px;
}

.footer-column p {
    color: #999;
    margin-bottom: 15px;
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    color: #999;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.footer-column a {
    color: #cfcfcf;
    text-decoration: none;
    transition: .3s;
}

.footer-column a:hover {
    color: #d4a237;
}

.footer-bottom {
    text-align: center;
    padding: 25px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: #777;
    font-size: 14px;
}


/* RESPONSIVE — TABLET */
@media (max-width: 1024px) {
    .navbar {
        padding: 18px 5%;
        flex-wrap: wrap;
    }

    .hero {
        padding: 0 5%;
    }

    .hero h1 {
        font-size: 40px;
        max-width: 100%;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .waarom-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .over-container {
        gap: 40px;
    }

    .over-image img {
        height: 450px;
    }

    .over-content h2 {
        font-size: 36px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 35px;
    }
}

/*RESPONSIVE — MOBILE*/
@media (max-width: 768px) {
    .navbar {
        padding: 14px 4%;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #000;
        padding: 20px 0;
        gap: 0;
        border-top: 1px solid #222;
        margin-top: 14px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 14px 0;
        font-size: 16px;
        border-bottom: 1px solid #1a1a1a;
    }

    .btn-main {
        display: none;
    }

    /* Hamburger */
    /* .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 5px;
    }

    .hamburger span {
        display: block;
        width: 26px;
        height: 2.5px;
        background: #d4af37;
        border-radius: 3px;
        transition: 0.3s;
    } */

    .hero {
        padding: 0 4%;
        min-height: 55vh;
    }

    .hero-content {
        text-align: center;
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 30px;
        max-width: 100%;
        letter-spacing: 0;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    /* .btn-fill, */
    .btn-outline {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 14px 20px;
        font-size: 15px;
    }

    .btn-outline {
        margin-left: 0;
    }

    .services {
        padding: 60px 4%;
    }

    .services h2 {
        font-size: 28px;
    }

    .services h2::after {
        bottom: -10px;
    }

    .services-header p {
        font-size: 15px;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .card {
        padding: 30px 20px;
    }

    .card h3 {
        font-size: 20px;
    }

    .overons {
        padding: 60px 20px;
    }

    .over-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .over-image img {
        height: 300px;
    }

    .over-image::after {
        width: 50px;
        height: 50px;
        right: -10px;
        bottom: -10px;
    }

    .over-content {
        text-align: center;
    }

    .over-content h2 {
        font-size: 28px;
    }

    .over-content p {
        font-size: 15px;
    }

    .over-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }

    .over-info strong {
        font-size: 28px;
    }

    .waarom {
        padding: 60px 4%;
    }

    .waarom h2 {
        font-size: 28px;
    }

    .waarom-header p {
        font-size: 15px;
    }

    .waarom-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .waarom-card {
        padding: 35px 25px;
    }

    .waarom-card h3 {
        font-size: 20px;
    }

    .gallery {
        padding: 40px 4%;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery img,
    .gallery-item img {
        height: 160px;
    }

    .reviews {
        padding: 60px 4%;
    }

    .reviews h2 {
        font-size: 28px;
    }

    .reviews-header p {
        font-size: 15px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .review-card {
        padding: 25px 20px;
    }

    .review-button {
        margin-top: 40px;
    }

    .google-review-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .contact-header h2 {
        font-size: 28px;
    }

    .contact-header p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .contact-form {
        padding: 25px;
        margin-top: 30px;
        margin-left: 4%;
        margin-right: 4%;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
        padding: 14px 16px;
    }

    .contact-form textarea {
        height: 130px;
    }

    .contact-form button {
        padding: 15px;
        font-size: 15px;
    }

    .footer {
        margin-top: 60px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 50px 25px;
        gap: 35px;
    }

    .footer-column ul li {
        justify-content: center;
    }

    .footer-column h3::after {
        margin: 10px auto 0;
    }

    .footer-logo p {
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 13px;
        padding: 20px;
    }
}

/*RESPONSIVE — SMALL PHONE*/
@media (max-width: 480px) {
    .navbar {
        padding: 12px 4%;
    }

    .logo img {
        width: 70px;
        height: auto;
    }

    .hero {
        min-height: 50vh;
    }

    .hero h1 {
        font-size: 24px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-buttons {
        gap: 10px;
    }

    /* .btn-fill, */
    .btn-outline {
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 8px;
    }

    .services {
        padding: 40px 4%;
    }

    .services h2 {
        font-size: 24px;
    }

    .services-header span {
        font-size: 12px;
    }

    .card {
        padding: 25px 18px;
    }

    .card h3 {
        font-size: 18px;
    }

    .card p {
        font-size: 14px;
    }

    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 26px;
        margin-bottom: 18px;
    }

    .overons {
        padding: 40px 15px;
    }

    .over-image img {
        height: 220px;
    }

    .over-content h2 {
        font-size: 24px;
    }

    .over-content span {
        font-size: 12px;
    }

    .over-info {
        gap: 15px;
    }

    .over-info strong {
        font-size: 24px;
    }

    .over-info div {
        flex: 1;
        min-width: 80px;
    }

    .waarom {
        padding: 40px 4%;
    }

    .waarom h2 {
        font-size: 24px;
    }

    .waarom-header span {
        font-size: 12px;
    }

    .waarom-card {
        padding: 28px 20px;
    }

    .waarom-number {
        font-size: 42px;
        top: 10px;
        right: 18px;
    }

    .gallery {
        padding: 30px 4%;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery img,
    .gallery-item img {
        height: 120px;
    }

    .gallery-actions {
        padding-bottom: 30px;
    }

    .btn-show-more {
        padding: 12px 22px;
        font-size: 14px;
    }

    .reviews {
        padding: 40px 4%;
    }

    .reviews h2 {
        font-size: 24px;
    }

    .reviews-header span {
        font-size: 12px;
    }

    .review-card {
        padding: 20px 16px;
    }

    .stars {
        font-size: 18px;
    }

    .review-card p {
        font-size: 14px;
    }

    .avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .review-user h3 {
        font-size: 15px;
    }

    .contact-header h2 {
        font-size: 24px;
    }

    .contact-header span {
        font-size: 12px;
    }

    .contact-form {
        padding: 20px 16px;
        margin-left: 4%;
        margin-right: 4%;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px 14px;
        font-size: 13px;
        margin-bottom: 14px;
    }

    .contact-form button {
        padding: 14px;
        font-size: 14px;
    }

    .footer {
        margin-top: 40px;
    }

    .footer-container {
        padding: 35px 20px;
        gap: 30px;
    }

    .footer-logo h2 {
        font-size: 26px;
    }

    .footer-column h3 {
        font-size: 16px;
    }

    .footer-column p,
    .footer-column ul li {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 12px;
        padding: 15px;
    }
}