/* Appointment Page Styles */

/* 1. Hero Section */
.appointment-hero {
    position: relative;
    width: 100%;
    /* background-image is handled inline in the template */
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 max(4vmin, 20px);
}

.appointment-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

/* Consultation Card Unified (Copied from treatments.css) */
.consultation-card-unified {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 80px 60px;
    /* Unified padding */
    border-radius: 40px;
    max-width: 650px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.consultation-card-unified .badge {
    background: #000;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 30px;
}

.consultation-card-unified h1,
.consultation-card-unified h2 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
    margin-top: 0;
}

.consultation-card-unified p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 40px;
}

.consultation-card-unified .contact-info {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    line-height: 1.4;
}

.consultation-card-unified .contact-info a {
    font-size: 1.6rem;
    display: inline-block;
    margin-top: 5px;
    color: #000;
    text-decoration: none;
}

/* 2. Booking Section (Matched with Home.css) */
.booking.outer {
    padding: 100px 0;
    background: var(--spa-beige, #f9f9f9);
    /* Fallback to #f9f9f9 if var not found */
    text-align: center;
}

.booking .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.booking h2 {
    font-size: 3.6rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.booking p {
    font-size: 1.8rem;
    color: var(--spa-text-grey, #666);
    margin-bottom: 60px;
}

/* Form Styles */
.appointment-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.appointment-form input,
.appointment-form textarea {
    width: 100%;
    padding: 20px 30px;
    border: 1px solid #ddd;
    border-radius: 40px;
    font-size: 1.6rem;
}

.appointment-form textarea {
    border-radius: 20px;
    margin-bottom: 20px;
}

.btn-form {
    background: var(--spa-black, #000);
    color: var(--spa-white, #fff);
    padding: 15px 40px;
    border-radius: 40px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    font-size: 1.6rem;
    transition: background-color 0.3s ease;
}

.btn-form:hover {
    background-color: #333;
}

/* 4. Contact & Map Section */
.contact-map-section.outer {
    padding: 80px 0 100px;
    background-color: #fcfcfc;
}

.contact-map-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: stretch;
}

/* Left Column */
.contact-info-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-col h2 {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #000;
}

.info-cards-row {
    display: flex;
    gap: 20px;
}

.info-card {
    background-color: #f5f5f5;
    padding: 30px;
    flex: 1;
    border-radius: 4px;
    min-height: 200px;
}

.info-card h3 {
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: #333;
}

.info-card p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #000;
    margin: 0;
}

/* Right Column (Map) */
.map-col {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .contact-map-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .info-cards-row {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .appointment-hero {
        justify-content: center;
        background-position: 20% center;
        padding: 0 20px;
    }

    .consultation-card-unified {
        padding: 30px;
        backdrop-filter: blur(8px);
    }

    .consultation-card-unified h1,
    .consultation-card-unified h2 {
        font-size: 2.5rem;
    }

    .form-row {
        flex-direction: column;
    }

    .info-cards-row {
        flex-direction: column;
    }

    .contact-info-col h2 {
        font-size: 2.5rem;
    }
}