body.booking-page {
    font-family: 'Poppins', sans-serif;
    background: #f3f6fb;
    color: #20304a;
    overflow-x: hidden;
}

body.booking-page .hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffaa02 0%, #7445c7 100%);
}

body.booking-page .hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 32%),
        linear-gradient(160deg, rgba(6, 28, 77, 0.14), rgba(11, 15, 52, 0.42));
    pointer-events: none;
}

body.booking-page .hero-section .container {
    position: relative;
    z-index: 1;
    padding-top: 1.5rem;
    padding-bottom: clamp(3rem, 6vw, 5rem);
}

body.booking-page .back-button {
    margin-bottom: 1.5rem;
}

body.booking-page .btn-back-page {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

body.booking-page .btn-back-page:hover,
body.booking-page .btn-back-page:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.24);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(18, 12, 62, 0.18);
}

body.booking-page .booking-hero-row {
    min-height: calc(100vh - 180px);
    row-gap: 2.25rem;
}

body.booking-page .hero-content {
    color: #fff;
    padding: 1rem 0;
}

body.booking-page .hero-title {
    font-size: clamp(2.2rem, 3vw, 3.35rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 10px 30px rgba(20, 12, 64, 0.18);
}

body.booking-page .hero-subtitle {
    max-width: 34rem;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
}

body.booking-page .hero-features {
    display: grid;
    gap: 0.95rem;
}

body.booking-page .feature-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    width: fit-content;
    padding: 0.9rem 1.15rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}

body.booking-page .feature-item i {
    color: #ffe07a;
}

body.booking-page .registration-card {
    position: relative;
    padding: clamp(1.25rem, 2vw, 2rem);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 60px rgba(22, 26, 75, 0.18);
    max-height: 88vh;
    overflow-y: auto;
}

body.booking-page .registration-card::-webkit-scrollbar {
    width: 6px;
}

body.booking-page .registration-card::-webkit-scrollbar-thumb {
    background: #5973ea;
    border-radius: 999px;
}

body.booking-page .card-header {
    margin-bottom: 1.75rem;
    text-align: center;
}

body.booking-page .card-header h2 {
    margin-bottom: 0.45rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #16213f;
}

body.booking-page .card-header p {
    margin: 0;
    color: #68748a;
}

body.booking-page .step-indicator {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 1.75rem;
}

body.booking-page .step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
}

body.booking-page .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 15px;
    left: calc(100% + 0.75rem);
    width: 2.5rem;
    height: 2px;
    background: #d7deee;
}

body.booking-page .step.active:not(:last-child)::after,
body.booking-page .step.completed:not(:last-child)::after {
    background: linear-gradient(90deg, #4f71f4, #ffaa02);
}

body.booking-page .step-number {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #dfe6f5;
    color: #62718c;
    font-weight: 700;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

body.booking-page .step.active .step-number,
body.booking-page .step.completed .step-number {
    color: #fff;
    transform: scale(1.05);
}

body.booking-page .step.active .step-number {
    background: linear-gradient(135deg, #4f71f4, #6d48c8);
}

body.booking-page .step.completed .step-number {
    background: linear-gradient(135deg, #1cad70, #2ecf8c);
}

body.booking-page .step-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: #68748a;
}

body.booking-page .step.active .step-title,
body.booking-page .step.completed .step-title {
    color: #1f2d48;
}

body.booking-page .form-step {
    display: none;
}

body.booking-page .form-step.active {
    display: block;
}

body.booking-page .form-group,
body.booking-page .destination-type-group,
body.booking-page .honeymoon-type-group {
    margin-bottom: 1.4rem;
}

body.booking-page .form-group label,
body.booking-page .destination-type-group > label,
body.booking-page .honeymoon-type-group > label {
    display: block;
    margin-bottom: 0.55rem;
    color: #1f2d48;
    font-weight: 600;
    font-size: 0.95rem;
}

body.booking-page .form-group label i,
body.booking-page .destination-type-group > label i,
body.booking-page .honeymoon-type-group > label i {
    margin-right: 0.45rem;
    color: #4f71f4;
}

body.booking-page .form-group input,
body.booking-page .form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #d6ddec;
    border-radius: 14px;
    background: #fff;
    color: #1f2d48;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

body.booking-page .form-group input:focus,
body.booking-page .form-group select:focus {
    outline: none;
    border-color: #4f71f4;
    box-shadow: 0 0 0 4px rgba(79, 113, 244, 0.12);
}

body.booking-page .form-group input.error,
body.booking-page .form-group select.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

body.booking-page .phone-input {
    display: flex;
    gap: 0.8rem;
}

body.booking-page .phone-input select {
    flex: 0 0 145px;
}

body.booking-page .destination-type-options,
body.booking-page .honeymoon-type-options {
    display: grid;
    gap: 0.9rem;
}

body.booking-page .destination-type-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.booking-page .honeymoon-type-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.booking-page .destination-type-option,
body.booking-page .honeymoon-type-option {
    padding: 1rem;
    border: 1px solid #d6ddec;
    border-radius: 18px;
    background: #fff;
    text-align: center;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

body.booking-page .destination-type-option:hover,
body.booking-page .honeymoon-type-option:hover {
    transform: translateY(-2px);
    border-color: #8ca1ff;
    box-shadow: 0 12px 28px rgba(79, 113, 244, 0.12);
}

body.booking-page .destination-type-option.selected,
body.booking-page .honeymoon-type-option.selected {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #4f71f4, #6d48c8);
}

body.booking-page .honeymoon-type-option.selected {
    background: linear-gradient(135deg, #ff7a59, #ff4fa1);
}

body.booking-page .destination-type-option i,
body.booking-page .honeymoon-type-option i {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

body.booking-page .destination-type-option .option-label,
body.booking-page .honeymoon-type-option .option-label {
    font-weight: 700;
}

body.booking-page .destination-type-option small,
body.booking-page .honeymoon-type-option small {
    display: block;
    margin-top: 0.3rem;
    opacity: 0.85;
}

body.booking-page .destination-select-group,
body.booking-page .honeymoon-type-group {
    display: none;
}

body.booking-page .destination-select-group.active,
body.booking-page .honeymoon-type-group.active {
    display: block;
    animation: bookingFadeUp 0.35s ease;
}

body.booking-page .select-hint {
    margin-top: 0.55rem;
    color: #68748a;
    font-size: 0.82rem;
}

body.booking-page .error-message {
    min-height: 1rem;
    margin-top: 0.3rem;
    color: #dc3545;
    font-size: 0.8rem;
}

body.booking-page .btn-next,
body.booking-page .btn-new-booking {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 1.4rem;
    border: 0;
    border-radius: 16px;
    color: #fff;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

body.booking-page .btn-next {
    background: linear-gradient(135deg, #4f71f4, #6d48c8);
}

body.booking-page .btn-new-booking {
    background: linear-gradient(135deg, #17a870, #1fcf8b);
}

body.booking-page .btn-next:hover,
body.booking-page .btn-new-booking:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
}

body.booking-page .btn-next:hover {
    box-shadow: 0 14px 30px rgba(79, 113, 244, 0.24);
}

body.booking-page .btn-new-booking:hover {
    box-shadow: 0 14px 30px rgba(31, 207, 139, 0.24);
}

body.booking-page .alert {
    margin-bottom: 1rem;
    border-radius: 14px;
}

body.booking-page .success-section {
    text-align: center;
}

body.booking-page .success-icon {
    width: 92px;
    height: 92px;
    margin: 0 auto 1.25rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #17a870, #1fcf8b);
    box-shadow: 0 16px 34px rgba(31, 207, 139, 0.24);
}

body.booking-page .success-icon i {
    font-size: 2.8rem;
    color: #fff;
}

body.booking-page .success-section h3 {
    margin-bottom: 0.75rem;
    color: #1a2743;
    font-weight: 700;
}

body.booking-page .success-section > p {
    color: #68748a;
}

body.booking-page .email-status,
body.booking-page .booking-summary,
body.booking-page .contact-info {
    margin-top: 1.4rem;
    border-radius: 18px;
    padding: 1.25rem;
}

body.booking-page .email-status {
    background: #eef4ff;
    border: 1px solid #d7e4ff;
    text-align: left;
}

body.booking-page .email-status.success {
    background: #eaf9f0;
    border-color: #caeecf;
}

body.booking-page .email-status.warning {
    background: #fff8e6;
    border-color: #ffe4a5;
}

body.booking-page .email-status.error {
    background: #fff0f2;
    border-color: #f5c8d0;
}

body.booking-page .email-status h4,
body.booking-page .booking-summary h4,
body.booking-page .contact-info h4 {
    margin-bottom: 0.9rem;
    font-weight: 700;
}

body.booking-page .email-status-item,
body.booking-page .contact-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

body.booking-page .email-status-item + .email-status-item,
body.booking-page .contact-item + .contact-item {
    margin-top: 0.7rem;
}

body.booking-page .email-status-icon {
    width: 20px;
    text-align: center;
}

body.booking-page .booking-summary {
    background: #f7f9fd;
    border: 1px solid #e1e8f4;
    text-align: left;
}

body.booking-page .summary-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #dde5f2;
}

body.booking-page .summary-item:last-child {
    border-bottom: 0;
}

body.booking-page .summary-item span:first-child {
    font-weight: 700;
    color: #42506b;
}

body.booking-page .summary-item span:last-child {
    text-align: right;
}

body.booking-page .contact-info {
    background: linear-gradient(135deg, #17336c, #2158c4);
    color: #fff;
    text-align: left;
}

body.booking-page .contact-info p {
    color: rgba(255, 255, 255, 0.84);
}

body.booking-page .contact-item i {
    color: #ffe07a;
}

body.booking-page .particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

body.booking-page .particle {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    animation: bookingFloat 8s infinite ease-in-out;
}

body.booking-page .particle:nth-child(1) { left: 10%; animation-delay: 0s; }
body.booking-page .particle:nth-child(2) { left: 22%; animation-delay: 1.2s; }
body.booking-page .particle:nth-child(3) { left: 34%; animation-delay: 2.4s; }
body.booking-page .particle:nth-child(4) { left: 68%; animation-delay: 3.6s; }
body.booking-page .particle:nth-child(5) { left: 80%; animation-delay: 4.8s; }
body.booking-page .particle:nth-child(6) { left: 92%; animation-delay: 6s; }

@keyframes bookingFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bookingFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-90px) rotate(180deg);
        opacity: 0.9;
    }
}

@media (max-width: 991.98px) {
    body.booking-page .booking-hero-row {
        min-height: auto;
    }

    body.booking-page .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    body.booking-page .hero-subtitle {
        max-width: 100%;
    }

    body.booking-page .feature-item {
        width: 100%;
        justify-content: center;
    }

    body.booking-page .registration-card {
        max-height: none;
    }
}

@media (max-width: 767.98px) {
    body.booking-page .destination-type-options,
    body.booking-page .honeymoon-type-options {
        grid-template-columns: 1fr;
    }

    body.booking-page .step-indicator {
        gap: 2.5rem;
    }

    body.booking-page .step:not(:last-child)::after {
        width: 1.5rem;
    }

    body.booking-page .summary-item {
        flex-direction: column;
        align-items: flex-start;
    }

    body.booking-page .summary-item span:last-child {
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    body.booking-page .hero-section .container {
        padding-top: 1rem;
    }

    body.booking-page .hero-title {
        font-size: 1.95rem;
    }

    body.booking-page .phone-input {
        flex-direction: column;
    }

    body.booking-page .phone-input select {
        flex-basis: auto;
    }

    body.booking-page .registration-card {
        border-radius: 22px;
        padding: 1rem;
    }

    body.booking-page .btn-back-page {
        width: 100%;
        justify-content: center;
    }
}
