/* ============================================
   THE NAE BAR - CONTACT/BOOKING PAGE STYLES
   ============================================ */

/* Contact Hero */
.contact-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: calc(var(--space-2xl) + 60px) var(--space-lg) var(--space-lg);
    text-align: center;
    overflow: hidden;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s var(--ease-out) 0.2s both;
}

.champagne-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    color: var(--gold);
}

.champagne-icon svg {
    width: 100%;
    height: 100%;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: var(--space-xs);
}

.contact-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray);
    letter-spacing: 0.1em;
}

/* Booking Section */
.booking-section {
    padding: var(--space-xl) var(--space-lg) var(--space-2xl);
    background: var(--black);
}

.booking-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-xl);
    align-items: start;
}

/* Booking Info (Left Column) */
.booking-info {
    animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.booking-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 400;
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.booking-description {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

/* Steps */
.booking-steps {
    margin-bottom: var(--space-lg);
}

.step {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.step-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.6;
    line-height: 1;
}

.step-content h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.step-content p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gray);
}

/* Contact Details */
.contact-details {
    padding-top: var(--space-md);
}

.contact-divider {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.contact-divider .divider-line {
    max-width: 60px;
}

.contact-details-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: var(--space-md);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--gray);
    transition: all 0.3s var(--ease-out);
}

.contact-method svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-method:hover {
    color: var(--gold);
}

/* Calendly Container (Right Column) */
.calendly-container {
    animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.calendly-wrapper {
    background: var(--black-lighter);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 2px;
    overflow: hidden;
    min-height: 700px;
}

/* Calendly Placeholder */
.calendly-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 700px;
    padding: var(--space-xl);
    text-align: center;
    background: 
        radial-gradient(ellipse at center, rgba(201, 162, 39, 0.05) 0%, transparent 70%),
        var(--black-lighter);
}

.placeholder-icon {
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-md);
    color: var(--gold);
    opacity: 0.5;
}

.placeholder-icon svg {
    width: 100%;
    height: 100%;
}

.calendly-placeholder h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: var(--space-xs);
}

.calendly-placeholder p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray);
    margin-bottom: var(--space-md);
}

.placeholder-note {
    font-size: 0.8rem;
    color: var(--gray-dark);
    font-style: italic;
}

/* Calendly Inline Widget Styling Override */
.calendly-inline-widget {
    min-height: 700px;
    width: 100%;
}

/* Calendly Button Style (if using popup) */
.btn-calendly {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: var(--space-2xl) var(--space-lg);
    background: var(--black-light);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.faq-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    margin-bottom: var(--space-xl);
}

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

.faq-item {
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.02);
    border-left: 2px solid var(--gold);
    transition: all 0.3s var(--ease-out);
}

.faq-item:hover {
    background: rgba(201, 162, 39, 0.05);
}

.faq-item h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: var(--space-xs);
}

.faq-item p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.7;
}

/* Active Nav for Contact */
.nav-cta.active {
    background: var(--gold) !important;
    color: var(--black) !important;
}

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

@media (max-width: 1024px) {
    .booking-container {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .calendly-wrapper {
        min-height: 600px;
    }
    
    .calendly-placeholder {
        min-height: 600px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 35vh;
        padding-top: calc(var(--space-xl) + 60px);
    }
    
    .booking-section {
        padding: var(--space-lg) var(--space-md) var(--space-xl);
    }
    
    .faq-section {
        padding: var(--space-xl) var(--space-md);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

@media (max-width: 480px) {
    .step {
        flex-direction: column;
        gap: var(--space-xs);
    }
    
    .step-number {
        font-size: 1.5rem;
    }
    
    .calendly-wrapper,
    .calendly-placeholder {
        min-height: 500px;
    }
}
