/* ============================================
   RESERVATION PAGE STYLES
   ============================================ */

/* Hero Section */
.reservation-hero {
    background: linear-gradient(135deg, #000000 0%, #1AA45A 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.reservation-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: rotateGradient 20s linear infinite;
}

@keyframes rotateGradient {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

/* Form Section */
.reservation-form-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.reservation-form {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid #e9ecef;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 30px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    font-size: 28px;
    color: #1AA45A;
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.required {
    color: #dc3545;
}

.form-control,
.form-select {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #000000;
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Stand Options */
.stand-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.stand-option {
    position: relative;
}

.stand-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.stand-option label {
    display: block;
    padding: 25px 20px;
    border: 2px solid #ddd;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background: white;
    height: 100%;
}

.stand-option label:hover {
    border-color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stand-option input[type="radio"]:checked + label {
    border-color: #1AA45A;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(26, 164, 90, 0.05) 100%);
    box-shadow: 0 5px 20px rgba(26, 164, 90, 0.2);
}

.stand-badge {
    display: inline-block;
    background: #000000;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.stand-badge.popular {
    background: #1AA45A;
}

.stand-badge.vip {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #333;
}

.stand-name {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
}

.stand-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: #666;
}

.stand-features span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.stand-features i {
    color: #1AA45A;
    font-size: 12px;
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.option-item {
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.option-item:hover {
    background: #f8f9fa;
    border-color: #000000;
}

.option-item .form-check-input {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border-color: #000000;
}

.option-item .form-check-input:checked {
    background-color: #1AA45A;
    border-color: #1AA45A;
}

.option-item .form-check-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
}

.option-item .form-check-label i {
    color: #000000;
    font-size: 18px;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, #000000 0%, #1AA45A 100%);
    border: none;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: #6c757d;
    border: none;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-outline-primary {
    border: 2px solid #000000;
    color: #000000;
    background: transparent;
}

.btn-outline-primary:hover {
    background: #000000;
    color: white;
}

/* Success Page */
.success-section {
    padding: 100px 20px;
    background: #f8f9fa;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.success-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.success-icon {
    font-size: 80px;
    color: #1AA45A;
    margin-bottom: 30px;
}

.success-title {
    font-size: 32px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 20px;
}

.success-message {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.success-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(26, 164, 90, 0.05) 100%);
    border-radius: 12px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.info-item i {
    font-size: 24px;
    color: #1AA45A;
    flex-shrink: 0;
}

.info-item p {
    margin: 0;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Messages */
.messages-container {
    max-width: 1000px;
    margin: 0 auto 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .reservation-form {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 20px;
    }

    .stand-options {
        grid-template-columns: 1fr;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }

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

    .form-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .success-card {
        padding: 40px 25px;
    }

    .success-title {
        font-size: 24px;
    }

    .success-message {
        font-size: 16px;
    }

    .success-actions {
        flex-direction: column;
    }

    .success-actions .btn {
        width: 100%;
    }
}
