/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-hero .lead {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Contact Methods Section */
.contact-methods {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.method-card {
    background-color: white;
    color: white;
    border-radius: 10px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.method-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.method-icon i {
    font-size: 1.75rem;
    color: white;
}

.method-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.method-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.method-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-bottom: 1rem;
}

.method-link:hover {
    background-color: var(--secondary-color);
}

.method-hours, .method-response {
    font-size: 0.9rem;
    color: #777;
}

/* Visit Us Section */
.visit-section {
    padding: 5rem 2rem;
    background-color: white;
}

.visit-content {
    max-width: 1200px;
    margin: 0 auto;
}

.visit-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.address-card {
    display: flex;
    align-items: flex-start;
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.address-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    margin-top: 0.5rem;
}

.address-details {
    flex: 1;
}

.address-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.address-details p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.directions-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.directions-link i {
    font-size: 1rem;
    margin-right: 0.5rem;
    color: inherit;
}

.directions-link:hover {
    color: var(--secondary-color);
}

.business-hours {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.business-hours h3 {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.business-hours h3 i {
    margin-right: 0.75rem;
    color: var(--primary-color);
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span {
    font-weight: 600;
    color: #555;
}

/* Map Section */
.map-section {
    padding: 0;
    background-color: #f8f9fa;
}

.map-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
    background-color: white;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* WhatsApp Confirmation Popup */
.confirm-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.confirm-popup.active {
    display: flex;
    opacity: 1;
}

.confirm-content {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 90%;
    width: 400px;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.confirm-popup.active .confirm-content {
    transform: scale(1);
}

.confirm-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.confirm-text {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.confirm-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.confirm-btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.confirm-yes {
    background-color: #25D366;
    color: white;
}

.confirm-no {
    background-color: var(--gray-200);
    color: var(--text-color);
}

.confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .visit-info h2, .faq-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 4rem 1.5rem;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero .lead {
        font-size: 1.1rem;
    }
    
    .contact-methods, .visit-section, .faq-section {
        padding: 3rem 1.5rem;
    }
    
    .method-card {
        padding: 2rem 1.5rem;
    }
    
    .address-card, .business-hours {
        padding: 1.5rem;
    }
    
    .map-container {
        height: 400px;
    }
    
    .whatsapp-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 3rem;
        height: 3rem;
    }

    .whatsapp-btn i {
        font-size: 1.25rem;
    }

    .confirm-content {
        width: 320px;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 1.75rem;
    }
    
    .method-icon {
        width: 60px;
        height: 60px;
    }
    
    .method-icon i {
        font-size: 1.5rem;
    }
    
    .address-card {
        flex-direction: column;
        text-align: center;
    }
    
    .address-card i {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .hours-list li {
        flex-direction: column;
        text-align: center;
    }
    
    .hours-list li span {
        margin-bottom: 0.25rem;
    }
    
    .map-container {
        height: 300px;
    }
} 