/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
body {
    background-color: #ffffff;
    color: #333333;
}

/* ========== HERO SECTION ========== */
.contact-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}



/* Navbar adjustments for overlapping hero */
.navbar {
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ========== STATS BAND ========== */
.stats-band {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0;
}

.stats-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 6vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 250px;
}

.stat-number {
    color: #f10000;
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #cccccc;
    margin: 0;
    line-height: 1.5;
    max-width: 200px;
}

/* ========== RESPONSIVENESS ========== */
@media (max-width: 1024px) {
    .stats-container {
        padding: 0 32px;
    }
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 24px;
        gap: 30px;
    }
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    background-color: #0d0d0d;
    padding: 80px 0 100px;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6vw;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: flex-start;
    position: relative;
}

/* Decorative icon top-right */
.contact-deco-icon {
    position: absolute;
    top: -30px;
    right: 6vw;
}

/* ---- LEFT COLUMN ---- */
.contact-page-label {
    font-size: 0.8rem;
    color: #888888;
    letter-spacing: 0.05em;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.contact-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 48px 0;
    line-height: 1.2;
}

.contact-heading em {
    font-style: normal;
    font-weight: 300;
}

.contact-info-group {
    margin-bottom: 36px;
}

.contact-group-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.contact-info-icon {
    color: #ffffff;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-info-text span {
    font-size: 0.85rem;
    color: #bbbbbb;
    line-height: 1.6;
}

/* Social links */
.contact-social-group {
    margin-top: 36px;
}

.contact-socials {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-top: 12px;
}

.social-link {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
    color: #f10000;
    transform: translateY(-2px);
}

/* ---- RIGHT COLUMN ---- */
.contact-right-desc {
    font-size: 0.9rem;
    color: #aaaaaa;
    line-height: 1.8;
    margin: 0 0 36px 0;
    text-align: justify;
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.78rem;
    color: #aaaaaa;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
    background-color: #1e1e1e;
    border: none;
    outline: none;
    padding: 14px 16px;
    color: #ffffff;
    font-size: 0.9rem;
    font-family: inherit;
    resize: vertical;
    width: 100%;
    box-sizing: border-box;
    transition: background-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    background-color: #2a2a2a;
}

.contact-submit-btn {
    background-color: #f10000;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.25s ease, transform 0.15s ease;
}

.contact-submit-btn:hover {
    background-color: #cc0000;
    transform: translateY(-1px);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

/* ========== RESPONSIVENESS ========== */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .contact-deco-icon {
        top: -20px;
        right: 6vw;
    }
}

@media (max-width: 480px) {
    .contact-heading {
        font-size: 1.8rem;
    }
    .contact-socials {
        gap: 14px;
    }
}

