/* -----------------------------------
   RESERVATION SECTION - Dark & Gold Theme
----------------------------------- */
.reservation-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0 !important;
}

/* Decorative Background Elements */
.reservation-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.reservation-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 208, 63, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.reservation-header {
    position: relative;
    z-index: 2;
    margin-bottom: 50px !important;
}

.reservation-icon {
    color: #f4d03f;
    filter: drop-shadow(0 4px 8px rgba(244, 208, 63, 0.3));
}

.reservation-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.reservation-subtitle {
    font-size: 1.1rem;
    color: #d4d4d4;
    margin-bottom: 0.5rem;
}

.reservation-note {
    font-size: 0.95rem;
    color: #b8b8b8;
    margin-top: 0.5rem;
}

.reservation-note strong {
    color: #f4d03f;
}

.phone-link {
    color: #f4d03f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #d4af37;
    text-decoration: underline;
}

/* Reservation Card - Dark with Gold Accents */
.reservation-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.reservation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    border-radius: 20px 20px 0 0;
}

.reservation-form .form-group {
    margin-bottom: 0;
}

.reservation-form .form-label {
    font-weight: 600;
    color: #f4d03f;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reservation-form .form-label .icon {
    font-size: 1.2rem;
}

.reservation-input {
    height: 52px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 0 18px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.reservation-input:focus {
    border-color: #f4d03f;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(244, 208, 63, 0.15);
    outline: none;
}

.reservation-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

textarea.reservation-input {
    height: auto;
    padding: 15px 18px;
    resize: vertical;
}

select.reservation-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23f4d03f' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

/* Submit Button - Gold Gradient */
.reservation-submit-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border: none;
    padding: 16px 45px;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 6px 25px rgba(244, 208, 63, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.reservation-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.reservation-submit-btn:hover::before {
    left: 100%;
}

.reservation-submit-btn:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(244, 208, 63, 0.6);
}

.reservation-submit-btn:active {
    transform: translateY(-1px);
}

.reservation-submit-btn .btn-icon {
    font-size: 1.3rem;
}

/* -----------------------------------
   THANK YOU MODAL - Dark & Gold Theme
----------------------------------- */
.thank-you-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thank-you-modal.show {
    display: flex;
    opacity: 1;
}

.thank-you-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.thank-you-content {
    position: relative;
    background: #1a1a1a;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 45px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    animation: modalSlideIn 0.5s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 22px;
    color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.modal-close-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    color: #f4d03f;
    transform: rotate(90deg);
}

/* Success Animation - Gold */
.success-animation {
    margin-bottom: 25px;
}

.checkmark-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    position: relative;
}

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: #d4af37;
    stroke-miterlimit: 10;
    box-shadow: inset 0 0 0 #d4af37;
    animation: fillCheckmark 0.4s ease-in-out 0.4s forwards, scaleCheckmark 0.3s ease-in-out 0.9s both;
}

.checkmark-circle-path {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: #d4af37;
    animation: strokeCheckmark 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: #fff;
    stroke-width: 3;
    animation: strokeCheck 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes strokeCheckmark {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes strokeCheck {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes fillCheckmark {
    100% {
        box-shadow: inset 0 0 0 50px #d4af37;
    }
}

@keyframes scaleCheckmark {

    0%,
    100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

/* Modal Content */
.thank-you-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f4d03f;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.thank-you-message {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 25px;
}

/* Reservation Details */
.reservation-details {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-item:first-child {
    padding-top: 0;
}

.detail-icon {
    font-size: 1.3rem;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.3);
    color: #f4d03f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.detail-info {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 0.8rem;
    color: #aaa;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
}

.confirmation-note {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 25px;
}

.confirmation-note strong {
    color: #f4d03f;
}

/* Thank You Button - Gold Gradient */
.thank-you-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.thank-you-btn:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
    color: #000;
}

.thank-you-btn:active {
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .reservation-section {
        padding: 40px 0 !important;
    }

    .reservation-card {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .reservation-title {
        font-size: 1.6rem;
    }

    .reservation-submit-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .thank-you-content {
        padding: 35px 25px;
        border-radius: 15px;
    }

    .thank-you-title {
        font-size: 1.5rem;
    }

    .detail-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

.reservation-input {
    height: 52px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 0 18px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.reservation-input:focus {
    border-color: #f4d03f;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(244, 208, 63, 0.15);
    outline: none;
    color: #fff;
}

.reservation-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Ensure text is visible in all states */
.reservation-input:-webkit-autofill,
.reservation-input:-webkit-autofill:hover,
.reservation-input:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.08) inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .reservation-section {
        padding: 40px 0 !important;
    }

    .reservation-card {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .reservation-title {
        font-size: 1.6rem;
    }

    .reservation-submit-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .thank-you-content {
        padding: 35px 25px;
        border-radius: 15px;
    }

    .thank-you-title {
        font-size: 1.5rem;
    }

    .detail-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    /* Enhanced input visibility on mobile */
    .reservation-input {
        background: rgba(255, 255, 255, 0.15);
        color: #fff;
        font-size: 16px;
        -webkit-appearance: none;
    }

    .reservation-input:focus {
        background: rgba(255, 255, 255, 0.2);
    }

    select.reservation-input {
        color: #fff;
    }

    select.reservation-input option {
        background: #1a1a1a;
        color: #fff;
    }
}