* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
/* ================= BANNER ================= */

/* SECTION */
.contact-banner {
    min-height: 600px; /* better than fixed height */
    background: url('../assets/images/contact-banner.jpeg') center/cover no-repeat;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 80px;
    position: relative;
    overflow: hidden;
}

/* DARK OVERLAY */
.contact-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.75), rgba(0,0,0,0.25));
    z-index: 1;
}

/* GLOW EFFECT */
.contact-banner::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(212,175,55,0.25), transparent 70%);
    top: 20%;
    right: 10%;
    animation: floatGlow 6s ease-in-out infinite;
    z-index: 1;
}

/* CONTENT */
.banner-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
    text-align: right;
    animation: fadeUp 1s ease;
}

/* HEADING */
.banner-content h1 {
    font-size: 52px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 0 12px rgba(212,175,55,0.5);
}

/* SUBTEXT */
.banner-content p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* BUTTON */
.hero-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #d4af37;
    color: #000;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* ANIMATIONS */
@keyframes floatGlow {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {

    .contact-banner {
        min-height: 300px;
        padding: 20px;
        justify-content: center;
        text-align: center;
    }

    .banner-content {
        text-align: center;
        max-width: 100%;
                margin-top: 94px;
    }

    .banner-content h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .banner-content p {
        font-size: 14px;
        margin-bottom: 20px;
        margin-top: -19px;
    }

    .hero-btn {
        padding: 10px 22px;
        font-size: 13px;
    }

    /* reduce glow */
    .contact-banner::before {
        width: 180px;
        height: 180px;
        top: 10%;
        right: 50%;
        transform: translateX(50%);
    }
}

/* ================= TABLET ================= */
@media (min-width: 577px) and (max-width: 991px) {

    .contact-banner {
        min-height: 500px;
        padding: 0 40px;
    }

    .banner-content h1 {
        font-size: 36px;
    }

    .banner-content p {
        font-size: 16px;
    }
}
/* ================= SECTION ================= */
.contact-section {
    display: flex;
    justify-content: center;
    padding: 70px 8%;
    background: #f9f7f3;
}

/* ================= SINGLE CARD ================= */
.contact-box {
    display: flex;
    align-items: center;   /* main fix */
    gap: 40px;
    width: 100%;
    max-width: 1100px;
    padding: 50px;
    border-radius: 20px;

    background: linear-gradient(135deg, #d4af37, #f5e6a5);

    box-shadow: 
        0 20px 40px rgba(0,0,0,0.25),
        inset 0 3px 8px rgba(255,255,255,0.4);
}

/* ================= LEFT ================= */
.contact-info {
    flex: 1;
    color: #000;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 14px;
}

/* ================= INFO FIX ================= */
.info {
    margin-top: 20px;
}

.info p {
    display: flex;
    align-items: center;   /* PERFECT ALIGN */
    gap: 10px;
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.4;
}

/* ICON */
.info i {
    width: 18px;           /* equal width */
    min-width: 18px;
    text-align: center;
    font-size: 14px;
}
.info p {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

/* ================= FORM ================= */
.contact-form {
    flex: 1;
    background: #000;
    padding: 35px 30px;
    border-radius: 15px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

/* FOCUS */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #d4af37;
    box-shadow: 0 0 5px rgba(212,175,55,0.4);
}

/* BUTTON */
.contact-form button {
    padding: 10px 25px;
    border: none;
    background: #d4af37;
    cursor: pointer;
    font-size: 13px;
    border-radius: 30px;
    transition: 0.3s;
    color: #000;
    font-weight: 500;
}

/* BUTTON HOVER */
.contact-form button:hover {
    transform: scale(1.08);
    background: #fff;
    color: #000;
  box-shadow: 0 0 20px rgba(212,175,55,0.6);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

    .contact-box {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }

    .contact-info h2 {
        font-size: 26px;
        text-align: center;
    }

    .contact-info p {
        text-align: center;
    }

    .info p {
        justify-content: center;  /* center align mobile */
    }

    .contact-form {
        width: 100%;
    }

    .contact-form button {
        margin: auto;  /* center button */
    }
}
/* ================= MAP FIX ================= */
.map {
    width: 100%;
    margin-top: 20px;
}

.map iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
    border-radius: 12px;
}

/* ================= MOBILE ================= */
@media(max-width: 768px) {

    /* NAVBAR */
    .header {
        display: block;
    }

    /* SMALL BANNER */
    .contact-banner {
        height: 140px;
        padding: 15px;
    }

    .contact-banner h1 {
        font-size: 20px;
    }

    .contact-banner p {
        font-size: 12px;
    }

    /* HIDE LEFT */
    .contact-info {
        display: none;
    }

    /* SECTION */
    .contact-section {
        padding: 10px;
    }

    /* CARD */
    .contact-box {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-radius: 12px;
    }

    /* FORM */
    .contact-form {
        width: 100%;
        padding: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
        padding: 10px;
    }

    .contact-form button {
        display: block;
        margin: auto;
        font-size: 13px;
    }

    /* MAP FULL FIX */
    .map iframe {
        height: 250px;
    }
}
