/* ==========================================================================
   CONTACT PAGE — Body styles only (Hero is inline in contact.php)
   Gold: #D4A017 | Red: #B30012 | Dark: #1a1a1a | White: #fff
   ========================================================================== */

.contact-page {
    background: #fff;
    overflow-x: hidden;
    /* margin-top: 80px; */
}

/* ==========================================================================
   CONTACT BODY
   ========================================================================== */
.contact-body {
    background: #fff;
    padding: 50px 5% 60px;
}

.contact-body-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: stretch;
}

/* ==========================================================================
   FORM CARD
   ========================================================================== */
.contact-form-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f0e8d5;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    padding: 28px 26px;
    position: relative;
    overflow: hidden;
}
.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #D4A017, #B8860B, #D4A017);
    border-radius: 16px 16px 0 0;
}

.form-head-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D4A017;
    margin-bottom: 6px;
}
.form-head-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 18px;
}

/* Alerts */
.alert {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 14px; border-radius: 8px;
    font-size: 0.82rem; font-weight: 600; margin-bottom: 14px;
}
.alert-success { background: rgba(34,197,94,0.08); color: #166534; border: 1px solid rgba(34,197,94,0.2); }
.alert-error   { background: rgba(239,68,68,0.07);  color: #991b1b; border: 1px solid rgba(239,68,68,0.18); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 12px; }
.form-group label {
    display: block;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.8px; text-transform: uppercase;
    color: #555; margin-bottom: 5px;
}
.required { color: #B30012; }

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1.5px solid #e8dcc8;
    border-radius: 8px;
    font-size: 0.84rem;
    color: #1a1a1a;
    background: #fdfaf5;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    font-family: 'Inter', sans-serif;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #D4A017;
    box-shadow: 0 0 0 3px rgba(212,160,23,0.11);
    background: #fff;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; font-size: 0.82rem; }
.form-group textarea { resize: vertical; min-height: 90px; }

.btn-submit {
    width: 100%; padding: 12px 20px; margin-top: 2px;
    background: linear-gradient(135deg, #D4A017, #B8860B);
    color: #fff; border: none; border-radius: 50px;
    font-size: 0.9rem; font-weight: 700; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    box-shadow: 0 6px 20px rgba(212,160,23,0.25);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(212,160,23,0.38); }
.btn-submit i { transition: transform 0.3s ease; }
.btn-submit:hover i { transform: translateX(4px) rotate(-15deg); }

/* ==========================================================================
   RIGHT COLUMN — Map fills full height
   ========================================================================== */
.contact-right {
    display: flex;
    flex-direction: column;
}

.contact-map-card {
    flex: 1;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f0e8d5;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    overflow: hidden;
    position: relative;
}
.contact-map-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #D4A017, #B8860B, #D4A017);
    z-index: 2;
    border-radius: 16px 16px 0 0;
}

.map-wrap {
    width: 100%;
    height: 100%;
    min-height: 350px;
}
.map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: 0;
    display: block;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .contact-body-inner { grid-template-columns: 1fr; gap: 22px; }
    .map-wrap, .map-wrap iframe { min-height: 300px; height: 300px; }
}
@media (max-width: 768px) {
    .contact-body { padding: 36px 4% 44px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-form-card { padding: 20px 16px; }
    .map-wrap, .map-wrap iframe { min-height: 260px; height: 260px; }
}
@media (max-width: 480px) {
    .contact-body { padding: 28px 4% 36px; }
    .contact-form-card { padding: 18px 14px; }
    .map-wrap, .map-wrap iframe { min-height: 220px; height: 220px; }
}
