/**
 * Luxury Contact Page Styles - Hồ Chí Minh Property
 * Gold & Deep Navy Theme
 */

.contact-page-wrapper {
    background-color: #080f1e;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* ==========================================================================
   1. HERO BANNER
   ========================================================================== */
.contact-hero {
    position: relative;
    padding: clamp(130px, 15vw, 170px) 20px clamp(50px, 7vw, 70px);
    background: radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.12) 0%, rgba(8, 15, 30, 0.95) 75%),
                linear-gradient(180deg, #050a14 0%, #080f1e 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    text-align: center;
}

.contact-hero__inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-hero__breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-hero__breadcrumbs a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-hero__breadcrumbs a:hover {
    color: #fceda2;
}

.contact-hero__breadcrumbs .sep {
    color: #d4af37;
    opacity: 0.6;
}

.contact-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 9999px;
    color: #fceda2;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-hero__title {
    font-size: clamp(28px, 4.5vw, 46px);
    font-weight: 900;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.contact-hero__title span {
    background: linear-gradient(90deg, #aa8040, #fceda2, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.contact-hero__desc {
    font-size: clamp(15px, 1.35vw, 17px);
    line-height: 1.65;
    color: #cbd5e1;
    margin: 0 auto;
    max-width: 720px;
}

/* ==========================================================================
   2. MAIN CONTENT (INFO & FORM)
   ========================================================================== */
.contact-content {
    max-width: 1240px;
    margin: 0 auto;
    padding: clamp(60px, 8vw, 100px) 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(35px, 5vw, 60px);
    align-items: start;
}

/* Info Column */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: #0b1426;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 16px;
    padding: 24px 22px;
    display: flex;
    gap: 18px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background: #0e1932;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #d4af37;
    margin: 0 0 6px;
}

.contact-info-text p {
    font-size: 15px;
    color: #e2e8f0;
    margin: 0;
    line-height: 1.55;
    font-weight: 500;
}

.contact-info-text a {
    color: #fceda2;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: color 0.2s ease;
}

.contact-info-text a:hover {
    color: #ffffff;
}

/* Quick Connect Actions */
.contact-quick-actions {
    display: flex;
    gap: 14px;
    margin-top: 10px;
}

.contact-quick-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.25s ease;
}

.contact-quick-btn--hotline {
    background: linear-gradient(135deg, #d4af37 0%, #aa8040 100%);
    color: #080f1e;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
}

.contact-quick-btn--hotline:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.5);
    color: #080f1e;
}

.contact-quick-btn--zalo {
    background: rgba(0, 104, 255, 0.2);
    border: 1px solid rgba(0, 104, 255, 0.5);
    color: #60a5fa;
}

.contact-quick-btn--zalo:hover {
    background: #0068ff;
    color: #ffffff;
    border-color: #0068ff;
    transform: translateY(-2px);
}

/* ==========================================================================
   FORM CONTAINER
   ========================================================================== */
.contact-form-box {
    background: #0b1426;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 20px;
    padding: clamp(28px, 4vw, 40px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
}

.contact-form-header {
    margin-bottom: 24px;
}

.contact-form-header h3 {
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 8px;
    letter-spacing: 0.02em;
}

.contact-form-header p {
    font-size: 13.5px;
    color: #94a3b8;
    margin: 0;
    line-height: 1.5;
}

.contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.contact-form-group {
    margin-bottom: 16px;
}

.contact-form-group label {
    display: block;
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #cbd5e1;
    margin-bottom: 6px;
}

.contact-form-group label span {
    color: #d4af37;
}

.contact-input,
.contact-select,
.contact-textarea {
    width: 100%;
    background: #060c18 !important;
    border: 1px solid rgba(212, 175, 55, 0.25) !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    color: #ffffff !important;
    outline: none !important;
    box-sizing: border-box !important;
    transition: all 0.25s ease !important;
    font-family: inherit !important;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
    border-color: #d4af37 !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2) !important;
    background: #080f1e !important;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: #64748b;
}

.contact-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    padding-right: 40px !important;
}

.contact-select option {
    background: #080f1e;
    color: #ffffff;
}

.contact-textarea {
    min-height: 100px;
    resize: vertical;
}

.contact-form-submit {
    width: 100% !important;
    background: linear-gradient(135deg, #d4af37 0%, #aa8040 100%) !important;
    color: #080f1e !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 15px 24px !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35) !important;
    transition: all 0.25s ease !important;
    margin-top: 8px !important;
}

.contact-form-submit:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 28px rgba(212, 175, 55, 0.5) !important;
    background: linear-gradient(135deg, #fceda2 0%, #d4af37 100%) !important;
    color: #080f1e !important;
}

.contact-form-note {
    font-size: 12px;
    color: #64748b;
    text-align: center;
    margin-top: 12px;
    margin-bottom: 0;
}

/* ==========================================================================
   3. MAP SECTION
   ========================================================================== */
.contact-map-section {
    max-width: 1240px;
    margin: 0 auto clamp(60px, 8vw, 100px);
    padding: 0 20px;
}

.contact-map-wrap {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    height: 420px;
    position: relative;
}

.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media(max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 600px) {
    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-quick-actions {
        flex-direction: column;
    }
    .contact-map-wrap {
        height: 320px;
    }
}
