/* Contact Page Styles */

/* Hero Section - Blue Theme (matching products page) */
.contact-hero {
    background: linear-gradient(135deg, #004BB8 0%, #003a91 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
                linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
}

.contact-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.contact-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-hero__badge svg {
    width: 20px;
    height: 20px;
}

.contact-hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
}

.contact-hero__description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-hero__meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-hero .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: white;
}

.contact-hero .meta-item svg {
    width: 16px;
    height: 16px;
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Contact Methods Section */
.contact-methods {
    padding: 6rem 0;
    background: #f8fafc;
}

.contact-methods .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-methods .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-methods .section-description {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.contact-methods__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-method {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.contact-method__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #004BB8, #003a91);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.contact-method__icon svg {
    width: 32px;
    height: 32px;
}

.contact-method__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-method__description {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-method__details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-link {
    color: #004BB8;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #003a91;
}

.contact-hours {
    font-size: 0.875rem;
    color: #64748b;
}

.contact-address {
    color: #64748b;
    line-height: 1.5;
}

/* Business Information Section */
.business-info {
    padding: 6rem 0;
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.info-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.info-card__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #004BB8, #003a91);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.info-card__icon svg {
    width: 24px;
    height: 24px;
}

.info-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.business-hours {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 500;
    color: #374151;
}

.hours-time {
    color: #64748b;
}

.popular-products {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-link {
    color: #004BB8;
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    transition: color 0.3s ease;
}

.product-link:hover {
    color: #003a91;
}

.product-link:last-child {
    border-bottom: none;
}

.info-text {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.quick-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #004BB8;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    box-shadow: 0 2px 4px rgba(0, 75, 184, 0.2);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.quick-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.quick-btn:hover {
    background: #003a91;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 75, 184, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
    color: white !important;
}

.quick-btn:hover::before {
    left: 100%;
}

.quick-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 75, 184, 0.25);
    color: white !important;
}

.quick-btn--whatsapp {
    background: #25d366;
    box-shadow: 0 2px 4px rgba(37, 211, 102, 0.2);
}

.quick-btn--whatsapp::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.quick-btn--whatsapp:hover {
    background: #20b858;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
    color: white !important;
}

.quick-btn--whatsapp:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.25);
    color: white !important;
}

.quick-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.quick-btn:hover svg {
    transform: scale(1.1);
}

/* CTA Section Override for Blue Theme */
.contact-page .cta {
    background: linear-gradient(135deg, #004BB8 0%, #003a91 100%);
}

.contact-page .cta .cta-title {
    color: white;
}

.contact-page .cta .cta-description {
    color: rgba(255, 255, 255, 0.9);
}

.contact-page .cta .btn--outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-page .cta .btn--outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0;
        min-height: 50vh;
    }
    
    .contact-hero__title {
        font-size: 2.5rem;
    }
    
    .contact-hero__subtitle {
        font-size: 1rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-section,
    .business-section {
        padding: 4rem 0;
    }
    
    .business-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .business-hours__grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .quick-actions {
        flex-direction: column;
    }
    
    .quick-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 60px 0;
    }
    
    .contact-hero__title {
        font-size: 2rem;
    }
    
    .contact-hero__badge {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0;
        min-height: 50vh;
    }
    
    .contact-hero__title {
        font-size: 2.5rem;
    }
    
    .contact-hero__description {
        font-size: 1.1rem;
    }
    
    .contact-hero__meta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .contact-methods {
        padding: 4rem 0;
    }
    
    .contact-methods__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .business-info {
        padding: 4rem 0;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quick-actions {
        flex-direction: column;
    }
    
    .quick-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 60px 0;
    }
    
    .contact-hero__title {
        font-size: 2rem;
    }
    
    .contact-hero__badge {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}
