/* ===== FINAL ADJUSTMENTS ===== */

/* ===== ENHANCED FORM STYLING ===== */
/* Fix for form inputs - make text dark and readable with consistent styling */

/* Labels styling - consistent gold color */
.form-group label {
    color: var(--gold-light) !important;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Reset all input, select, textarea borders to consistent style */
.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid rgba(212, 175, 55, 0.3) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #2C2C2C !important;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

/* Remove validation colors */
.form-group input[required],
.form-group select[required] {
    border-color: rgba(212, 175, 55, 0.3) !important;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(44, 44, 44, 0.5) !important;
}

/* Consistent focus state for all inputs */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none !important;
    border-color: var(--gold) !important;
    background: rgba(255, 255, 255, 1) !important;
    color: #2C2C2C !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15) !important;
}

/* Override any validation styling from JavaScript */
.form-group input[style*="border-color"] {
    border-color: rgba(212, 175, 55, 0.3) !important;
}

.form-group input:focus[style*="border-color"] {
    border-color: var(--gold) !important;
}

/* Select dropdown options */
.form-group select option {
    background: white;
    color: #2C2C2C;
    padding: 10px;
}

/* Textarea specific */
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Form button */
.booking-form .cta-primary {
    width: 100%;
    margin-top: 16px;
    animation: none;
}

/*  Month Spots Indicator */
.month-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90px;
}

.spots-indicator {
    font-size: 0.7rem;
    color: var(--gold-dark);
    font-weight: 600;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    text-align: center;
}

.month-card:hover .spots-indicator {
    color: var(--gold);
}

.month-card.selected .spots-indicator {
    color: var(--white);
}

/* Payment Plan Info Styling */
.payment-plan-info {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(212, 175, 55, 0.1);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    margin-bottom: 24px;
}

.payment-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.payment-text strong {
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.payment-text p {
    color: var(--gold-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Hero Overlay Enhancement */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(44, 36, 22, 0.5) 100%);
    z-index: 1;
}

/* Video Placeholder Enhancement */
.video-placeholder {
    background: linear-gradient(135deg, #2c2416 0%, #1a1a1a 100%);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
    transition: var(--transition);
}

.video-placeholder:hover .play-button {
    background: var(--gold-dark);
    transform: scale(1.1);
}

.video-placeholder p {
    color: var(--gold-light);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.video-placeholder small {
    color: #999;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .payment-plan-info {
        flex-direction: column;
        text-align: center;
    }

    .video-placeholder {
        min-height: 300px;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ===== REVIEWS SLIDER ENHANCEMENTS ===== */
/* Modern and clean reviews design */

.reviews-slider-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.reviews-slider-wrapper {
    overflow: hidden;
    position: relative;
    border-radius: 16px;
}

.reviews-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-slide {
    min-width: 100%;
    padding: 40px;
    background: white;
    border-radius: 16px;
    margin: 0 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.review-slide:hover {
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
    transform: translateY(-4px);
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f5f5f5;
}

.review-avatar {
    font-size: 1.8rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    flex-shrink: 0;
}

.review-meta {
    flex: 1;
}

.review-author {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.review-location {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-location::before {
    content: "\1f4cc"; /* Round Pushpin emoji */
    font-size: 0.85rem;
}

.review-date {
    font-size: 0.85rem;
    color: #999;
    margin-left: auto;
    white-space: nowrap;
}

.review-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.verified-badge::before {
    content: "\2713"; /* Checkmark symbol */
    font-weight: bold;
    font-size: 1rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    margin: 0;
    position: relative;
    padding-left: 20px;
}

.review-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.3;
    font-family: Georgia, serif;
}

/* Slider Controls - Modern Design */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    background: white;
    color: var(--gold);
    border: 2px solid var(--gold);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--gold);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

.slider-dot:hover {
    background: #bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .review-slide {
        padding: 28px 24px;
    }

    .review-avatar {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    .review-text {
        font-size: 0.95rem;
        padding-left: 16px;
    }

    .slider-btn {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
}