/* ==================== CONTACT PAGE STYLES ==================== */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 50%, #1a1a1a 100%);
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(239, 68, 68, 0.1) 0%, transparent 50%);
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.contact-hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.contact-hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Info Section */
.contact-info-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #000 0%, #0a0a0a 100%);
}

/* Quick Contact Cards */
.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.quick-contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(30,30,30,0.9) 0%, rgba(0,0,0,0.9) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.quick-contact-card:hover {
    border-color: rgba(220, 38, 38, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.quick-contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    border-radius: 1rem;
    flex-shrink: 0;
}

.quick-contact-icon-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.quick-contact-icon svg {
    color: white;
}

.quick-contact-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.contact-detail {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f87171;
    margin: 0.25rem 0;
}

/* Shops Section */
.shops-section {
    margin-top: 4rem;
}

.section-title-center {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.shops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.shop-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(30,30,30,0.9) 0%, rgba(0,0,0,0.9) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.shop-card:hover {
    border-color: rgba(220, 38, 38, 0.5);
    transform: translateY(-4px);
}

.shop-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.shop-icon svg {
    color: white;
}

.shop-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.shop-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.shop-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.shop-detail-item svg {
    flex-shrink: 0;
    color: #f87171;
    margin-top: 0.125rem;
}

.shop-detail-item a {
    color: #f87171;
    transition: color 0.2s ease;
}

.shop-detail-item a:hover {
    color: #dc2626;
}

.shop-hours div {
    margin: 0.25rem 0;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #0a0a0a 0%, #000 100%);
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.contact-form {
    background: linear-gradient(135deg, rgba(30,30,30,0.9) 0%, rgba(0,0,0,0.9) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 3rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    background-color: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background-color: #1a1a1a;
    color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Messages */
.form-message {
    display: none;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

.form-success {
    background-color: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.5);
    color: #4ade80;
}

.form-success svg {
    color: #4ade80;
    flex-shrink: 0;
}

.form-error {
    background-color: rgba(220, 38, 38, 0.1);
    border: 2px solid rgba(220, 38, 38, 0.5);
    color: #f87171;
}

.form-error svg {
    color: #f87171;
    flex-shrink: 0;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: #000;
}

.maps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.map-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
}

.map-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quick-contact-card {
        padding: 1.5rem;
    }
    
    .shops-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-card {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .maps-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title-center {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .quick-contact-card {
        flex-direction: column;
        text-align: center;
    }
    
    .shop-card {
        padding: 1.5rem;
    }
    
    .shop-icon {
        width: 60px;
        height: 60px;
    }
    
    .shop-icon svg {
        width: 32px;
        height: 32px;
    }
}
