/* Contact Us Page Styles */

/* Contact Header */
.contact-header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    padding: 80px 0 40px;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #d4af37;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Info Cards */
.contact-info-section {
    padding: 80px 0;
    background: #000000;
}

.contact-card {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid #333333;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #d4af37;
}

.contact-card .contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.contact-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #d4af37;
}

.contact-card p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 20px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: linear-gradient(45deg, #f4d03f, #d4af37);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Social Media & Quick Contact */
.social-contact-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.social-section h3,
.quick-contact h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #d4af37;
}

.social-section p,
.quick-contact p {
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    flex-direction: column;
    padding: 10px;
}

.social-contact-section .social-link i {
    font-size: 2rem;
    margin-right: 0;
    margin-bottom: 5px;
    width: auto;
}

.social-link span {
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #E4405F, #C13584);
    color: white;
}

.social-link.youtube {
    background: linear-gradient(45deg, #FF0000, #CC0000);
    color: white;
}

.social-link.whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
}

.social-link:hover {
    color: white;
    text-decoration: none;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-call {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover,
.btn-call:hover {
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp:hover {
    background: linear-gradient(45deg, #128C7E, #25D366);
}

.btn-call:hover {
    background: linear-gradient(45deg, #f4d03f, #d4af37);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #000000;
}

.map-section h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #d4af37;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-iframe {
    border-radius: 15px;
}

/* Business Hours */
.hours-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.hours-section h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #d4af37;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.hours-item {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.hours-item .day {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.hours-item .time {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-card {
        margin-bottom: 30px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .contact-buttons {
        gap: 10px;
    }
    
    .social-link {
        width: 70px;
        height: 70px;
        padding: 8px;
    }
    
    .social-contact-section .social-link i {
        font-size: 1.5rem;
        margin-bottom: 3px;
    }
    
    .social-link span {
        font-size: 0.75rem;
    }
    
    .btn-whatsapp,
    .btn-call {
        padding: 12px 20px;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .contact-header {
        padding: 60px 0 30px;
    }
    
    .contact-info-section,
    .social-contact-section,
    .map-section,
    .hours-section {
        padding: 40px 0;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 60px;
        height: 60px;
        padding: 5px;
    }
    
    .social-contact-section .social-link i {
        font-size: 1.3rem;
        margin-bottom: 2px;
    }
    
    .social-link span {
        font-size: 0.7rem;
    }
}