/* ============================================================================
   CONTACT PAGE SPECIFIC STYLES
   ============================================================================ */

/* Contact Hero */
.contact-hero {
    padding: 120px 0 60px;
    text-align: center;
}

.contact-hero__content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.contact-hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto;
}

/* Contact Methods */
.contact-methods {
    padding: 60px 0 100px;
}

.contact-methods__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.method-card {
    padding: 40px 30px;
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
}

.method-card:hover {
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-8px);
}

.method-card--featured {
    border-color: rgba(0, 212, 255, 0.3);
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.05), rgba(17, 24, 39, 0.5));
}

.method-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.method-card:hover .method-card__icon {
    transform: scale(1.1);
}

.method-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.method-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.method-card__link {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.method-card__link:hover {
    color: var(--primary-light);
}

.method-card__note {
    font-size: 12px;
    color: var(--text-muted);
}

.method-card__address {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Form */
.contact-form-section {
    padding: 100px 0;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.contact-form-header p {
    color: var(--text-light);
}

/* Quick Actions */
.quick-actions {
    padding: 100px 0;
}

.quick-actions__header {
    text-align: center;
    margin-bottom: 50px;
}

.quick-actions__header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.quick-actions__header p {
    color: var(--text-light);
}

.quick-actions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.action-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.action-card:hover {
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateX(5px);
}

.action-card__icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
}

.action-card__icon--purple {
    background: rgba(139, 92, 246, 0.1);
    color: #a78bfa;
}

.action-card__icon--green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.action-card__content {
    flex: 1;
}

.action-card__content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 4px;
}

.action-card__content p {
    font-size: 13px;
    color: var(--text-muted);
}

.action-card > i {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.action-card:hover > i {
    transform: translateX(5px);
    color: var(--primary);
}

/* Social Section */
.social-section {
    padding: 100px 0;
}

.social-section__content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.social-section__content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.social-section__content p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-methods__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .quick-actions__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}
