/* ColorTriox Contact Page Stylesheet - Premium & Minimal */

.contact-page-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px 80px 24px;
}

/* Hero Header */
.contact-hero {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-main);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.purple-divider {
    width: 60px;
    height: 4px;
    background-color: #7E22CE;
    margin: 0 auto 24px auto;
    border-radius: 2px;
}

.contact-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
    font-family: var(--font-body);
}

/* Contact Cards Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-card {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(126, 34, 206, 0.02);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(126, 34, 206, 0.05);
    border-color: #7E22CE;
}

.card-icon-wrapper {
    width: 64px;
    height: 64px;
    background-color: rgba(126, 34, 206, 0.07);
    color: #7E22CE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

.contact-info-card:hover .card-icon-wrapper {
    background-color: #7E22CE;
    color: #FFFFFF;
}

.card-title {
    font-size: 22px;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--text-main);
    margin-bottom: 12px;
}

.card-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.card-link {
    font-size: 16px;
    color: #7E22CE;
    text-decoration: none;
    font-weight: 500;
    transition: opacity var(--transition-speed) ease;
}

.card-link:hover {
    text-decoration: underline;
    opacity: 0.85;
}

/* Hours specific details */
.hours-details, .location-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 15px;
    color: var(--text-muted);
}

.hours-days {
    font-weight: 600;
    color: var(--text-main);
}

.hours-time {
    color: #7E22CE;
    font-weight: 600;
}

.hours-closed {
    font-size: 14px;
}

/* Social Section */
.contact-social-section {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(126, 34, 206, 0.02);
    margin-bottom: 40px;
}

.social-title {
    font-size: 28px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-main);
    margin-bottom: 10px;
}

.social-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.social-icons-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-muted);
    transition: color var(--transition-speed) ease;
}

.social-icon-circle {
    width: 56px;
    height: 56px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-color);
    transition: border-color var(--transition-speed) ease, background-color var(--transition-speed) ease, color var(--transition-speed) ease, transform 0.2s ease;
}

.social-icon-link:hover .social-icon-circle {
    border-color: #7E22CE;
    background-color: rgba(126, 34, 206, 0.05);
    color: #7E22CE;
    transform: scale(1.1);
}

.social-icon-link:hover {
    color: #7E22CE;
}

.social-icon-label {
    font-size: 14px;
    font-weight: 500;
}

/* Help Banner */
.contact-help-banner {
    background-color: rgba(126, 34, 206, 0.03);
    border: 1px solid rgba(126, 34, 206, 0.1);
    border-radius: 24px;
    padding: 30px 40px;
}

.help-banner-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

.help-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(126, 34, 206, 0.1);
    color: #7E22CE;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.help-banner-content {
    flex-grow: 1;
}

.help-title {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--text-main);
    margin-bottom: 6px;
}

.help-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Dark Mode Overrides */
[data-theme="dark"] .card-icon-wrapper {
    background-color: rgba(167, 139, 250, 0.1);
    color: #A78BFA;
}

[data-theme="dark"] .contact-info-card:hover .card-icon-wrapper {
    background-color: #A78BFA;
    color: #0F172A;
}

[data-theme="dark"] .contact-info-card:hover {
    border-color: #A78BFA;
}

[data-theme="dark"] .card-link, [data-theme="dark"] .hours-time {
    color: #A78BFA;
}

[data-theme="dark"] .purple-divider {
    background-color: #A78BFA;
}

[data-theme="dark"] .social-icon-link:hover .social-icon-circle {
    border-color: #A78BFA;
    background-color: rgba(167, 139, 250, 0.08);
    color: #A78BFA;
}

[data-theme="dark"] .social-icon-link:hover {
    color: #A78BFA;
}

[data-theme="dark"] .contact-help-banner {
    background-color: rgba(167, 139, 250, 0.04);
    border-color: rgba(167, 139, 250, 0.15);
}

[data-theme="dark"] .help-icon-wrapper {
    background-color: rgba(167, 139, 250, 0.1);
    color: #A78BFA;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-page-container {
        padding: 40px 16px 60px 16px;
    }
    
    .contact-title {
        font-size: 38px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .social-icons-row {
        gap: 30px;
    }
    
    .help-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}
