/* ==========================================
   WORLD-CLASS PREMIUM CONTACT UI
   Primary: White | Secondary: Yellow
   Mobile-first, highly responsive
========================================== */

* {
    box-sizing: border-box;
}

.contact-page {
    width: 100%;
    background: #fff;
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    padding: clamp(22px, 5vw, 64px) clamp(14px, 4vw, 56px);
}

/* Container */
.contact-wrap {
    max-width: 1080px;
    margin: 0 auto;
}

/* Header */
.contact-hero {
    text-align: center;
    margin-bottom: clamp(18px, 4vw, 34px);
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #FFD700, #FFC107);
    color: #000;
    font-weight: 700;
    font-size: clamp(12px, 2.8vw, 14px);
}

.contact-title {
    margin: 14px 0 10px;
    font-size: clamp(26px, 6.8vw, 44px);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #0f0f0f;
}

.contact-subtitle {
    max-width: 720px;
    margin: 0 auto;
    font-size: clamp(14.5px, 3.8vw, 17px);
    line-height: 1.85;
    color: #525252;
}

/* Main layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(14px, 4vw, 22px);
    margin-top: clamp(18px, 4vw, 32px);
}

/* Card */
.contact-card {
    background: #ffffff;
    border: 1px solid #f1f1f1;
    border-radius: 22px;
    padding: clamp(18px, 4vw, 26px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
}

/* Card header */
.contact-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.contact-card-title {
    font-size: clamp(16px, 4vw, 18px);
    font-weight: 800;
    color: #121212;
    margin: 0;
}

.contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 215, 0, 0.45);
    background: rgba(255, 215, 0, 0.14);
    color: #1a1a1a;
    font-weight: 700;
    font-size: 12px;
    white-space: nowrap;
}

/* Rows */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 14px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
    background: #fafafa;
    border: 1px solid #f3f3f3;
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.contact-row:hover {
    background: #fff8e1;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #FFD700, #FFC107);
    color: #000;
    font-size: 18px;
}

.contact-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b6b6b;
    margin-bottom: 4px;
}

.contact-value {
    font-size: clamp(14.5px, 3.8vw, 16px);
    line-height: 1.6;
    color: #1e1e1e;
    font-weight: 700;
    word-break: break-word;
}

.contact-hint {
    font-size: 13px;
    color: #555;
    margin-top: 6px;
    line-height: 1.7;
}

/* Actions */
.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px 16px;
    border-radius: 14px;
    border: 1px solid #f0f0f0;
    background: #ffffff;
    color: #151515;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    user-select: none;
}

.contact-btn:hover {
    background: #fff8e1;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.contact-btn-primary {
    border: none;
    background: linear-gradient(135deg, #FFD700, #FFC107);
    color: #000;
}

.contact-btn-primary:hover {
    background: linear-gradient(135deg, #FFC107, #FFD700);
}

/* Right side info card */
.contact-info {
    border-radius: 22px;
    padding: clamp(18px, 4vw, 26px);
    background: linear-gradient(135deg, #fffde7, #fff8c4);
    border: 1px solid rgba(255, 215, 0, 0.35);
}

.contact-info h3 {
    margin: 0 0 8px;
    font-size: clamp(16px, 4vw, 18px);
    font-weight: 900;
    color: #101010;
}

.contact-info p {
    margin: 0;
    font-size: clamp(14.5px, 3.8vw, 16px);
    line-height: 1.8;
    color: #333;
}

.contact-mini {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
}

.contact-mini .mini {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 16px;
    padding: 14px;
}

.mini strong {
    display: block;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b6b6b;
    margin-bottom: 6px;
}

.mini span {
    font-weight: 800;
    color: #141414;
    word-break: break-word;
}

/* Ultra small phones */
@media (max-width: 360px) {
    .contact-card-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Tablets / Desktop layout */
@media (min-width: 860px) {
    .contact-grid {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: start;
    }

    .contact-actions {
        flex-direction: row;
    }

    .contact-btn {
        width: auto;
        flex: 1;
    }
}