/* ============================================
   CONTACT US SECTION CSS
   Matching existing website theme
   ============================================ */

.contact-us {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
}

/* Contact Layout - Two Column */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-top: 60px;
}

/* ============================================
   LEFT SIDE: CONTACT INFORMATION
   ============================================ */

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Contact Cards */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--cream-bg);
    border-radius: 10px;
    border-left: 4px solid var(--primary-maroon);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(139, 38, 53, 0.15);
    border-left-color: var(--accent-gold);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-maroon), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-maroon));
    transform: rotate(360deg) scale(1.1);
}

.contact-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.contact-details h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--primary-maroon);
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-details p {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

.contact-details a {
    color: var(--primary-maroon);
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

.contact-details strong {
    color: var(--black);
    font-weight: 600;
}

/* Follow & Order Section */
.follow-order-section {
    background: linear-gradient(135deg, var(--cream-bg) 0%, var(--white) 100%);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid var(--light-gray);
}

.follow-order-section h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--primary-maroon);
    margin-bottom: 25px;
    text-align: center;
}

.follow-order-section h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 600;
}

/* Social Media Links */
.social-media-links {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--light-gray);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.social-icon.facebook {
    background: #1877F2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
}

.social-icon.linkedin {
    background: #0A66C2;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Order Online Links */
.order-online-links {
    margin-top: 25px;
}

.order-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: var(--white);
    border-radius: 8px;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.order-btn img {
    height: 25px;
    width: auto;
}

.order-btn:hover {
    transform: translateY(-3px);
    border-color: var(--primary-maroon);
    box-shadow: 0 5px 20px rgba(139, 38, 53, 0.15);
}

/* ============================================
   RIGHT SIDE: MAP & CTA
   ============================================ */

.contact-map-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Map Header */
.map-header {
    background: linear-gradient(135deg, var(--primary-maroon), var(--primary-dark));
    padding: 30px;
    border-radius: 10px;
    color: var(--white);
    box-shadow: 0 8px 30px rgba(139, 38, 53, 0.25);
}

.map-header h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--white);
}

.map-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

.map-location-badge i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.map-location-badge span {
    font-weight: 600;
    font-size: 0.95rem;
}

.map-address {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.95;
}

.map-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.rating-score {
    background: var(--accent-gold);
    color: var(--black);
    padding: 5px 12px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
}

.stars {
    /* display: flex; */
    gap: 3px;
}

.stars i {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.reviews-link {
    color: var(--accent-gold);
    text-decoration: underline;
    font-size: 0.9rem;
    transition: var(--transition);
}

.reviews-link:hover {
    color: var(--white);
}

.view-larger-map {
    color: var(--accent-gold);
    font-size: 0.9rem;
    text-decoration: underline;
    transition: var(--transition);
    display: inline-block;
}

.view-larger-map:hover {
    color: var(--white);
}

/* Map Container */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    height: 450px;
}

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

/* CTA Box */
.location-cta-box {
    background: linear-gradient(135deg, var(--primary-maroon), var(--primary-dark));;
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.location-cta-box h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.location-cta-box p {
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn.directions {
    background: var(--white);
    color: var(--primary-maroon);
    border: 2px solid var(--primary-maroon);
}

.cta-btn.directions:hover {
    background: #D4AF37;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 38, 53, 0.25);
}

.cta-btn.call {
    background: var(--accent-gold);
    color: var(--black);
    border: 2px solid var(--accent-gold);
}

.cta-btn.call:hover {
    background: var(--primary-maroon);
    color: var(--white);
    border-color: var(--primary-maroon);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 38, 53, 0.25);
}

.cta-btn i {
    font-size: 1.1rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-map-section {
        order: 2;
    }

    .contact-info-section {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-us {
        padding: 60px 0;
    }

    .contact-layout {
        gap: 40px;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-icon {
        margin-bottom: 10px;
    }

    .map-header {
        padding: 25px;
    }

    .map-header h3 {
        font-size: 1.5rem;
    }

    .map-container {
        height: 350px;
    }

    .location-cta-box {
        padding: 25px;
    }

    .location-cta-box h3 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

    .social-icons {
        justify-content: center;
    }

    .order-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 20px;
    }

    .contact-details h3 {
        font-size: 1.1rem;
    }

    .contact-details p {
        font-size: 0.9rem;
    }

    .follow-order-section {
        padding: 20px;
    }

    .follow-order-section h3 {
        font-size: 1.5rem;
    }

    .map-header {
        padding: 20px;
    }

    .map-container {
        height: 300px;
    }

    .location-cta-box {
        padding: 20px;
    }

    .cta-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

/* Pulse animation for contact icons */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(139, 38, 53, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(139, 38, 53, 0);
    }
}

.contact-icon {
    animation: pulse 2s infinite;
}

.contact-card:hover .contact-icon {
    animation: none;
}

/* Smooth hover transitions */
.contact-card,
.social-icon,
.order-btn,
.cta-btn {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
