/* ============================= */
/* ===== CONTACT HERO BANNER === */
/* ============================= */

.contact-hero {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

/* Image */
.contact-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dark Gradient from Left Side */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Dark from left → transparent right */
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.45) 35%,
        rgba(0,0,0,0.2) 60%,
        rgba(0,0,0,0) 100%
    );

    z-index: 1;
}

/* Text Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 1px;
}

/* ============================= */
/* ===== MOBILE RESPONSIVE ===== */
/* ============================= */

@media (max-width: 768px) {

    .contact-hero {
        height: 240px;
    }

    .hero-content {
        left: 5%;
    }

    .hero-content h1 {
        font-size: 30px;
    }
}
/* ===== CONTACT SECTION ===== */

.contact-section {
    background: #f4f4f4;
    padding: 70px 0;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
}

/* LEFT SIDE */
.contact-form {
    flex: 1.2;
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
    color: #555;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #222;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #cbaa5c;
}

/* CAPTCHA FAKE BOX */
.captcha-box {
    margin: 30px 0;
}

.fake-captcha {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    width: 260px;
    font-size: 14px;
}

/* BUTTON */
.submit-btn {
    background: #cbaa5c;
    color: white;
    border: none;
    padding: 14px 40px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #b79a4a;
}

/* RIGHT SIDE */
.contact-info {
    flex: 1;
    display: flex;
    gap: 30px;
}

.info-card {
    background: #fff;
    padding: 35px;
    border-radius: 6px;
    flex: 1;
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 20px;
}

.info-card p {
    margin-bottom: 18px;
    line-height: 1.6;
    font-size: 14px;
    color: #333;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info {
        flex-direction: column;
    }

    .info-card {
        width: 100%;
    }

    .fake-captcha {
        width: 100%;
    }
}
/* ===== PAYMENT SECTION ===== */

.payment-section {
    background: #f4f4f4;
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

/* 3 Column Layout */
.payment-methods {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 80px;
}

.payment-box {
    flex: 1;
}

.payment-box h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.payment-box p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

/* Credit Section */
.credit-title {
    margin-bottom: 30px;
}

.credit-logos {
    display: flex;
    justify-content: center;
    gap: 25px;
    align-items: center;
}

.credit-logos img {
    height: 20px;
    object-fit: contain;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {

    .payment-methods {
        flex-direction: column;
        gap: 40px;
    }

    .section-title {
        font-size: 24px;
    }

    .credit-logos {
        flex-wrap: wrap;
        gap: 20px;
    }

    .credit-logos img {
        height: 20px;
    }
}

/* ===== MAP SECTION ===== */

.map-section {
    padding: 80px 0;
    background: #f4f4f4;
}

.map-wrapper {
    display: flex;
    gap: 40px;
}

.map-box {
    flex: 1;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.map-box iframe {
    display: block;
    width: 100%;
    height: 450px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
    .map-wrapper {
        flex-direction: column;
    }

    .map-box iframe {
        height: 350px;
    }
}

