/* ==========================================================================
   CONTACT US PAGE STYLES (MODULAR)
   ========================================================================== */

.contact-landing-main {
    background-color: var(--bg-color);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* 1. Hero Header */
.contact-hero-section {
    padding: 70px 20px 50px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    background: radial-gradient(circle at top, #10141c 0%, var(--bg-color) 100%); /* Slate/Grey-dark gradient */
}

.contact-badge {
    display: inline-block;
    background-color: rgba(34, 158, 217, 0.08);
    color: #229ed9;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid rgba(34, 158, 217, 0.15);
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.contact-main-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 12px 0;
    letter-spacing: -1px;
    color: var(--text-color);
    line-height: 1.2;
}

.contact-sub-title {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 2. Contact Cards Grid */
.contact-methods-section {
    padding: 60px 0;
}

.contact-methods-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    box-sizing: border-box;
    width: 100%;
}

.contact-card:hover {
    transform: translateY(-4px);
}

.email-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 25px rgba(255, 42, 116, 0.12);
}

.telegram-card:hover {
    border-color: #229ED9;
    box-shadow: 0 4px 25px rgba(34, 158, 217, 0.12);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.email-icon {
    background-color: rgba(255, 42, 116, 0.08);
    color: var(--accent-color);
}

.telegram-icon {
    background-color: rgba(34, 158, 217, 0.08);
    color: #229ed9;
}

.contact-icon svg {
    width: 18px;
    height: 18px;
}

.contact-card-header h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
    color: var(--text-color);
}

.contact-card-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0 0 20px 0;
    text-align: left;
}

.contact-address-text {
    display: block;
    font-family: monospace;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff; 
    margin-bottom: 25px;
    text-align: left;
}

/* Botones de acción */
.btn-contact-action {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 46px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    color: #ffffff !important;
    transition: all 0.2s ease !important;
}

.btn-contact-email {
    background-color: var(--accent-color) !important;
    box-shadow: 0 4px 15px rgba(255, 42, 116, 0.15) !important;
}

.btn-contact-email:hover {
    background-color: var(--accent-hover) !important;
    transform: translateY(-1px) !important;
}

.btn-contact-telegram {
    background-color: #229ED9 !important;
    box-shadow: 0 4px 15px rgba(34, 158, 217, 0.15) !important;
}

.btn-contact-telegram:hover {
    background-color: #1c88bd !important;
    transform: translateY(-1px) !important;
}

/* 3. Guidelines Box */
.contact-guidelines-section {
    padding: 60px 0 80px 0;
    border-top: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.003);
}

.guidelines-box {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.guidelines-box h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 0 0 25px 0;
    letter-spacing: -0.5px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.guideline-item {
    margin-bottom: 24px;
}

.guideline-item:last-child {
    margin-bottom: 0;
}

.guideline-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 10px 0;
}

.guideline-item p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* --- Adaptación Desktop (min-width: 768px) --- */
@media (min-width: 768px) {
    .contact-hero-section {
        padding: 90px 20px 60px 20px;
    }
    
    .contact-main-title {
        font-size: 3rem;
    }
    
    .contact-methods-grid {
        flex-direction: row;
        gap: 24px;
    }
    
    .contact-card {
        width: 50%;
        padding: 40px 30px;
    }

    .guidelines-box {
        padding: 40px 35px;
    }
}