/* =============================================
   BELLA SICILIA - Contact Page Styles
   ============================================= */

/* Contact Hero */
.contact-hero {
    position: relative;
    padding: calc(100px + var(--space-xl)) 0 var(--space-xl);
    text-align: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(218, 165, 32, 0.2) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.contact-hero .section-label {
    color: var(--color-accent);
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--space-xs);
}

.contact-hero .hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Contact Info Section */
.contact-info-section {
    padding: var(--space-xl) 0;
    background-color: var(--color-cream);
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.contact-card {
    background-color: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    color: var(--color-white);
}

.card-icon svg {
    width: 32px;
    height: 32px;
}

.contact-card h3 {
    font-size: 1.25rem;
    color: var(--color-espresso);
    margin-bottom: var(--space-sm);
}

.card-detail {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-espresso);
    margin-bottom: var(--space-xs);
}

.card-note {
    font-size: 0.875rem;
    color: var(--color-espresso-light);
}

.hours-list {
    text-align: left;
}

.hours-list p {
    display: flex;
    justify-content: space-between;
    padding: var(--space-xs) 0;
    border-bottom: 1px dashed rgba(60, 20, 20, 0.1);
    font-size: 0.9rem;
}

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

.hours-list span {
    color: var(--color-espresso-light);
}

.hours-list strong {
    color: var(--color-espresso);
}

/* Order Section */
.order-section {
    position: relative;
    padding: var(--space-2xl) 0;
    background-color: var(--color-secondary);
    overflow: hidden;
}

.order-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.order-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.order-info {
    color: var(--color-white);
}

.order-info .section-label {
    color: var(--color-accent);
}

.order-info h2 {
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.order-description {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: var(--space-lg);
    max-width: 480px;
}

.order-steps {
    margin-bottom: var(--space-lg);
}

.step {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent);
    color: var(--color-espresso);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
}

.step-content h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 2px;
}

.step-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.order-info .btn-primary {
    background-color: var(--color-accent);
    color: var(--color-espresso);
    border-color: var(--color-accent);
}

.order-info .btn-primary:hover {
    background-color: var(--color-accent-light);
    border-color: var(--color-accent-light);
}

/* Order Visual Card */
.order-visual {
    display: flex;
    justify-content: center;
}

.order-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    width: 100%;
    max-width: 320px;
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
    transition: transform var(--transition-normal);
}

.order-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.order-card-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    padding: var(--space-md);
    text-align: center;
}

.pizza-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: var(--space-xs);
}

.order-card-header h3 {
    color: var(--color-white);
    font-size: 1.5rem;
}

.order-card-body {
    padding: var(--space-lg);
    text-align: center;
}

.ready-time {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-espresso-light);
    margin-bottom: var(--space-xs);
}

.time-display {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.time-display span {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-espresso-light);
    margin-top: var(--space-xs);
}

.order-card-body .divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-cream-dark), transparent);
    margin: var(--space-md) 0;
}

.order-note {
    font-size: 0.9rem;
    color: var(--color-espresso-light);
    margin-bottom: var(--space-xs);
}

.order-card-footer {
    background-color: var(--color-cream);
    padding: var(--space-sm) var(--space-md);
    text-align: center;
}

.order-card-footer p {
    font-size: 0.9rem;
    color: var(--color-espresso);
    font-weight: 500;
}

/* Map Section */
.map-section {
    padding: var(--space-xl) 0;
    background-color: var(--color-white);
}

.map-placeholder {
    position: relative;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-cream-dark) 0%, var(--color-cream) 100%);
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(60, 20, 20, 0.03) 40px,
            rgba(60, 20, 20, 0.03) 41px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 40px,
            rgba(60, 20, 20, 0.03) 40px,
            rgba(60, 20, 20, 0.03) 41px
        );
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(253, 245, 230, 0.9) 0%, rgba(253, 245, 230, 0.7) 100%);
    z-index: 1;
}

.map-content {
    text-align: center;
    padding: var(--space-lg);
}

.map-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: var(--space-sm);
    animation: bounce 2s ease-in-out infinite;
}

.map-content h3 {
    font-size: 1.5rem;
    color: var(--color-espresso);
    margin-bottom: var(--space-xs);
}

.map-content p {
    color: var(--color-espresso-light);
    max-width: 400px;
}

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

/* FAQ Section */
.faq-section {
    padding: var(--space-xl) 0;
    background-color: var(--color-cream);
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.faq-item {
    background-color: var(--color-white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-primary);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.faq-item h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-espresso);
    margin-bottom: var(--space-sm);
}

.faq-item p {
    font-size: 0.9rem;
    color: var(--color-espresso-light);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .order-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .order-description {
        margin: 0 auto var(--space-lg);
    }
    
    .order-steps {
        max-width: 400px;
        margin: 0 auto var(--space-lg);
        text-align: left;
    }
    
    .order-visual {
        order: -1;
    }
    
    .order-card {
        transform: rotate(0deg);
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .map-placeholder {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: calc(80px + var(--space-lg)) 0 var(--space-lg);
    }
    
    .contact-info-section {
        margin-top: -2rem;
    }
    
    .contact-card {
        padding: var(--space-md);
    }
}
