/* ================================
   Contact Section - Professional Design
   ================================ */

.contact {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.contact-header h2 {
    font-size: 3rem;
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   Contact Wrapper - Split Layout
   ================================ */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 20px;
    overflow: hidden;
}

/* ================================
   Map Section
   ================================ */

.map-section {
    position: relative;
    min-height: 600px;
}

.map-section iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ================================
   Info Section
   ================================ */

.info-section {
    padding: 3rem;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* ================================
   Info Cards
   ================================ */

.info-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37 0%, #f0c952 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.3rem;
    color: white;
}

.info-content {
    flex: 1;
}

.info-content h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
}

.info-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* ================================
   Hours List
   ================================ */

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

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

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

.time {
    color: #1a1a1a;
    font-weight: 600;
}

/* ================================
   Contact Links
   ================================ */

.get-directions-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: all 0.3s;
}

.get-directions-link:hover {
    color: #8b4513;
    transform: translateX(3px);
}

.phone-number {
    display: block;
    font-size: 1.5rem;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.phone-number:hover {
    color: #d4af37;
}

.contact-note {
    font-size: 0.95rem;
    color: #888;
}

/* ================================
   CTA Card
   ================================ */

.cta-card {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    padding: 2rem;
    border-radius: 12px;
    color: white;
    text-align: center;
}

.cta-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.cta-card p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.cta-buttons-contact {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-call, .btn-menu {
    padding: 0.75rem 1.4rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-call {
    background: white;
    color: #8b4513;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    background: #f8f5f0;
}

.btn-menu {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.8);
}

.btn-menu:hover {
    background: rgba(255,255,255,0.1);
    color: white;
    transform: translateY(-2px);
    border-color: white;
}

/* ================================
   Design Credit
   ================================ */

.design-credit {
    text-align: center;
    padding: 1.5rem;
    font-size: 0.85rem;
    color: #888;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-top: 1rem;
}

.design-credit span {
    color: #666;
    font-weight: 500;
}

.design-credit a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.design-credit a:hover {
    color: #8b4513;
    text-decoration: underline;
}

/* ================================
   Footer
   ================================ */

footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 2rem;
    position: relative;
}

footer p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.5px;
}

footer .divider {
    display: inline-block;
    margin: 0 1rem;
    color: #d4af37;
}

footer .attribution {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

footer .attribution a {
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

footer .attribution a:hover {
    color: #f0c952;
    text-decoration: underline;
}

/* ================================
   Responsive Design
   ================================ */

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .map-section {
        min-height: 350px;
    }

    .info-section {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-header h2 {
        font-size: 2.5rem;
    }

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

    .btn-call, .btn-menu {
        width: 100%;
        justify-content: center;
    }

    .phone-number {
        font-size: 1.3rem;
    }

    .hours-row {
        flex-direction: column;
        gap: 0.3rem;
        align-items: flex-start;
    }

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

    .info-icon {
        margin: 0 auto;
    }
}