/* Availability Section Styling */
.avail-section {
    padding: 100px 0;
    background-color: #ffffff;
    color: #0f4281;
}

.avail-section__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.avail-section__eyebrow {
    display: block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #caab5e;
    margin-bottom: 15px;
    font-weight: 600;
}

.avail-section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: #0f4281;
}

.avail-section__subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #5a626f;
}

/* Multi-month Grid */
.avail-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.avail-section__footer {
    text-align: center;
}

/* Calendar Component Adjustments (Shared) */
.avail-cal {
    background: #fcfcfd;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(15, 66, 129, 0.05);
    border: 1px solid rgba(15, 66, 129, 0.08);
    transition: transform 0.3s ease;
}

.avail-cal:hover {
    transform: translateY(-5px);
}

/* Ensure 6 rows height */
.avail-cal__days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(6, 1fr); /* Force 6 rows */
    gap: 5px;
    min-height: 240px; /* Base height for 6 rows */
}

.avail-cal__day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    cursor: default;
    transition: all 0.2s ease;
}

.avail-cal__day--empty {
    cursor: default;
    background: transparent !important;
}

.avail-cal__day--available {
    background: rgba(46, 204, 113, 0.1);
    color: #27ae60;
}

.avail-cal__day--booked {
    background: rgba(231, 76, 60, 0.1);
    color: #c0392b;
    text-decoration: line-through;
    opacity: 0.7;
}

.avail-cal__day--past {
    opacity: 0.3;
}

.avail-cal__day--today {
    box-shadow: inset 0 0 0 2px #caab5e;
}

/* Responsive adjustments for 3-month grid */
@media (max-width: 1100px) {
    .avail-section__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .avail-section {
        padding: 60px 0;
    }
    .avail-section__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .avail-cal__days {
        min-height: auto;
    }
}
