/* ===== PAGE HERO ===== */
.page-hero {
    background: #f8f9fb;
    border-bottom: 1px solid #efefef;
    padding: 70px 60px 60px;
    text-align: center;
}
.page-hero-inner { max-width: 640px; margin: 0 auto; }

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 30px;
    padding: 6px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 20px;
}
.contact-pill span {
    width: 8px; height: 8px;
    background: #f5c518;
    border-radius: 50%;
    display: inline-block;
}
.page-hero h1 {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 14px;
    line-height: 1.2;
}
.page-hero h1 em { font-style: normal; color: #d4a800; }
.page-hero p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}

/* ===== CONTACT PAGE SECTION ===== */
.contact-page-section {
    background: #f8f9fb;
    padding: 60px 60px 90px;
}
.contact-body {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

/* ===== INFO CARDS ===== */
.contact-info-card {
    background: #fff;
    border: 1.5px solid #efefef;
    border-radius: 14px;
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 16px;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.contact-info-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
    border-color: #f5c518;
}
.contact-info-icon {
    width: 46px; height: 46px; flex-shrink: 0;
    background: #eef2ff;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { width: 22px; height: 22px; fill: #4f6ef7; }
.contact-info-icon--green { background: #e8faf0; }
.contact-info-icon--green svg { fill: #22c55e; }
.contact-info-icon--purple { background: #f3eeff; }
.contact-info-icon--purple svg { fill: #8b5cf6; }
.contact-info-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 5px;
}
.contact-info-value {
    font-size: 0.92rem;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.6;
}

/* ===== FULL WIDTH MAP ===== */
.contact-map-full {
    width: 100%;
    line-height: 0;
}

/* ===== PROMO CARD ===== */
.contact-promo {
    background: #1a1a2e;
    border-radius: 14px;
    padding: 28px;
}
.contact-promo h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.contact-promo p {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    margin-bottom: 20px;
}
.contact-promo-btn {
    display: inline-block;
    background: #f5c518;
    color: #1a1a2e;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
}
.contact-promo-btn:hover { background: #e0b000; color: #1a1a2e; }

/* ===== FORM CARD ===== */
.contact-right {
    background: #fff;
    border: 1.5px solid #efefef;
    border-radius: 16px;
    padding: 44px 44px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.05);
}
.contact-right h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 6px;
}
.contact-form-sub {
    font-size: 0.87rem;
    color: #888;
    margin-bottom: 30px;
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e8e8e8;
    border-radius: 8px;
    font-size: 0.88rem;
    font-family: inherit;
    color: #1a1a2e;
    background: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #f5c518;
    box-shadow: 0 0 0 3px rgba(245,197,24,0.12);
}
.form-group textarea { resize: vertical; }
.form-group select { cursor: pointer; }

.form-submit {
    width: 100%;
    background: #1a1a2e;
    color: #fff;
    border: none;
    padding: 15px 24px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
    margin-top: 4px;
}
.form-submit svg { width: 18px; height: 18px; fill: #f5c518; transition: fill 0.2s; }
.form-submit:hover { background: #f5c518; color: #1a1a2e; }
.form-submit:hover svg { fill: #1a1a2e; }
.form-submit:active { transform: scale(0.98); }

.form-success {
    display: none;
    margin-top: 16px;
    background: #e8faf0;
    border: 1.5px solid #22c55e;
    color: #166534;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
}

/* Active nav link */
.nav-links a.active { color: #f5c518; font-weight: 700; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .contact-body { grid-template-columns: 1fr; }
    .contact-page-section { padding: 40px 40px 60px; }
}
@media (max-width: 768px) {
    .page-hero { padding: 44px 20px 36px; }
    .contact-page-section { padding: 32px 20px 50px; }
    .contact-right { padding: 24px 18px; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .contact-map-full iframe { height: 260px; }
}

.form-error {
    display: none;
    margin-top: 16px;
    background: #fef2f2;
    border: 1.5px solid #ef4444;
    color: #991b1b;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
}
