/* Contact Page Styles */

.contact-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    /* Reduced max-width for tighter layout */
    margin: 0 auto 60px;
    padding: 0 20px;
}

.contact-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    /* Prevent cards from getting too wide */
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    /* ... rest of styles handled by next rules ... */
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid #f0f0f0;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: #ff6b00;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #fff;
}

.contact-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-card a {
    color: #ff6b00;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: #ff8533;
}

.info-section {
    background: #f9f9f9;
    padding: 60px 20px;
    margin-top: 60px;
}

.info-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.info-item {
    text-align: center;
}

.info-item i {
    font-size: 40px;
    color: #ff6b00;
    margin-bottom: 15px;
}

.info-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.info-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #ff6b00;
    color: #ff6b00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.3s;
}

.social-btn:hover {
    background: #ff6b00;
    color: #fff;
    transform: scale(1.1);
}

.badge-premium {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 900px) {
    .contact-grid {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 50px 0;
    }

    .contact-hero h1 {
        font-size: 32px;
    }

    .contact-hero p {
        font-size: 16px;
        padding: 0 20px;
    }

    .contact-grid {
        gap: 20px;
        margin-bottom: 40px;
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        min-width: unset;
        width: 100%;
        max-width: 100%;
        margin: 0 10px;
    }

    .info-section {
        padding: 40px 15px;
        margin-top: 40px;
    }

    .info-grid {
        gap: 30px;
        grid-template-columns: 1fr;
    }
}