/* ===========================
   UPDATED CONTACT SECTION (No Form)
   =========================== */

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.contact-card-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    background: white;
    padding: 50px 30px;
    border-radius: 16px;
    border-top: 5px solid var(--primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(255, 94, 138, 0.2);
    border-top-color: var(--accent);
}

.contact-card-large i {
    font-size: 48px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.contact-card-large:hover i {
    color: var(--accent);
    transform: scale(1.1);
}

.contact-card-large h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    word-break: break-word;
}

.contact-link:hover {
    color: var(--accent);
    text-decoration: underline;
}

.contact-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-top: 10px;
}

/* Contact CTA Section */
.contact-cta {
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
    margin-top: 40px;
}

.cta-text {
    font-size: 18px;
    color: white;
    margin-bottom: 30px;
    font-weight: 500;
}

.cta-button-large {
    display: inline-block;
    padding: 20px 50px;
    background: white;
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: var(--accent);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-card-large {
        padding: 40px 25px;
    }
    
    .contact-card-large h3 {
        font-size: 24px;
    }
    
    .contact-link {
        font-size: 16px;
    }
    
    .contact-cta {
        padding: 40px 20px;
    }
    
    .cta-text {
        font-size: 16px;
    }
    
    .cta-button-large {
        padding: 18px 40px;
        font-size: 14px;
    }
}
