/* ================= PREMIUM CONTACT US STYLING ================= */

:root {
    --premium-gold: #000000;
    --premium-dark: #0a0a0a;
    --premium-accent: #1a1a1a;
    --text-muted: #2c2e30;
    --light-bg: #f8f9fa;
    --overlay-gradient: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── HERO ──────────────────────────────────────── */
.contact-hero {
    position: relative;
    height: 100vh;
    background: url("/assets/images/frontend/contact/contact-banner-1.webp") center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(0,0,0,0.72) 0%,rgba(0,0,0,0.25) 100%);
    z-index: 1;
}
.contact-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 0 20px;
    width: 100%;
}
.hero-heading {
    font-size: clamp(40px,6vw,80px);
    font-weight: 500;
    letter-spacing: -2px;
    font-family: var(--fh);
    line-height: 1;
    margin-bottom: 24px;
    opacity: 0;
}
.hero-sub {
    font-size: 1.15rem;
    opacity: 0;
    font-family: var(--fu);
    line-height: 1.75;
    color: rgba(255,255,255,0.88);
}

/* ── Breadcrumb ── */
.breadcrumb-section {
    background: #fff;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    overflow: hidden;
}
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    font-family: "GeneralSans-Medium";
}
.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888;
    white-space: nowrap;
}
.breadcrumb-item a { color: #111; text-decoration: none; transition: 0.3s; }
.breadcrumb-item a:hover { opacity: 0.8; }
.breadcrumb-item.active { color: #111; font-weight: 600; }
.breadcrumb-separator { opacity: 0.5; font-size: 12px; color: #888; }

/* ── Form Section ── */
.contact-main-section {
    background: #fff;
    padding: 60px 0 80px;
}

.section-header h2 {
    font-size: 30px;
    font-weight: 500;
}

/* ── GRID — equal columns ── */
.contact-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    border-radius: 0;
    gap: 0;
}

/* ══ FORM CARD — styled to match info card feel ══ */
.contact-form-wrapper {
    background-color: #c8d8ea;
    padding: 50px;
    border: 1px solid #ececec;
    border-right: none;
}

.contact-form-wrapper h2 {
    font-family: "GeneralSans-Medium", sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000000;
    margin-bottom: 32px;
}

.form-group-premium {
    position: relative;
    margin-bottom: 28px;
}

.form-group-premium label {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111;
    font-family: "GeneralSans-Medium", sans-serif;
    transition: color 0.3s;
}
.form-group-premium:focus-within label {
    color: #111;
}

.form-input-premium {
    width: 100%;
    padding: 10px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #666;
    font-family: "GeneralSans-Medium", sans-serif;
    font-size: 14px;
    color: var(--premium-dark);
    transition: var(--transition-smooth);
}
.form-input-premium::placeholder {
    color: #666;
    font-weight: 400;
}
.form-input-premium:focus {
    outline: none;
    border-bottom-color: transparent;
}

.form-input-premium + .input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #111;
    transition: var(--transition-smooth);
}
.form-input-premium:focus + .input-border {
    width: 100%;
}

textarea.form-input-premium {
    resize: none;
    min-height: 90px;
    line-height: 1.65;
}

/* button — original, untouched */
.btn-premium-send {
    background: transparent;
    color: #0c0101;
    padding: 13px 36px;
    border-radius: 40px;
    border: 1px solid black;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: transform .3s ease, color .3s ease;
    margin-top: 8px;
    font-family: "GeneralSans-Medium", 'sans-serif';
}
.btn-premium-send::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 0%;
    background: #000;
    transition: width .45s ease;
    z-index: -1;
}
.btn-premium-send:hover::before { width: 100%; }
.btn-premium-send:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* ══ INFO CARD — original, untouched ══ */
.contact-info-card {
    background: var(--premium-dark);
    padding: 50px;
    color: #fff;
}

.info-item {
    margin-bottom: 40px;
}
.info-item:last-child {
    margin-bottom: 0;
}

.info-item h3 {
    font-size: 12px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.info-item p,
.info-item a {
    font-size: 18px;
    color: #eee;
    text-decoration: none;
    line-height: 1.6;
}

.info-item i {
    margin-right: 15px;
    color: white;
}

/* ── Map Section ── */
.map-full-section {
    width: 100%;
    height: 500px;
    background: #eee;
}
.map-full-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) invert(0.1);
}

/* ── Animations ── */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .contact-grid-container {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        border-right: 1px solid #ececec;
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper,
    .contact-info-card {
        padding: 30px 20px;
    }
    .contact-hero{
        height:60vh;
    }
}