@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;

}

/* Background Pattern */

body::after,
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

body::before {

    pointer-events: none;
    background-image: url(../assets/img/backgrounds/bg2.png);
    background-size: cover;
    background-repeat: repeat-x;
    background-position: 0px center;
    animation: bgloop 20000s infinite linear;
    background-attachment: fixed;
    /* position: relative; */
}

body::after {
    background: #44287CCC;
}

/* Main Layout */
.main {
    max-width: 1440px;
    height: 100svh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    overflow: clip;
    min-height: 100svh;
}

.main-container {
    padding-inline: 50px;
    display: flex;

    position: relative;
    z-index: 1;
    /* width: 1400px; */
    flex: 1;
}

.header {
    display: flex;
    position: relative;
    z-index: 1;
    height: 80px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.30);
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo-section img {
    height: 50px;
}

.left-section {
    width: 60%;
    /* padding: 60px 80px 60px 120px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.main-heading {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
    white-space: normal;
    word-wrap: break-word;
    /* word-break: break-all; */
}

.event-description {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 24px;
    color: #C0BDC6;
    font-weight: 400;
}

.event-description .highlight-white {
    color: white;
}

.contact-info {
    font-size: 16px;
    /* margin-bottom: 24px; */
    color: rgba(255, 255, 255, 0.95);
}

.contact-info strong {
    color: white;
    font-weight: 600;
}

/* App Downloads */
.app-downloads {
    display: flex;
    gap: 20px;
    /* margin-bottom: 54px; */
}


.app-store-btn img {
    height: 50px;
    width: auto;
}

/* Pricing Card */
.pricing-card {
    background: #ffffff1a;
    border-radius: 8px;
    padding: 28px;
    padding-top: 15px;
    width: 350px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.pricing-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.price-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 18px;
    position: relative;
    /* border-radius: 12px; */
    margin-bottom: 10px;
    color: white;
    font-weight: 600;
    font-size: 22px;
    /* border-inline: 2px dotted white; */
}

/* .price-option:after,
 .price-option::before {
     content: '';
     position: absolute;
     height: 10px;
     aspect-ratio: 1/1;
     background: white;
     border-radius: 50%;
     left: 70%;
 } */

.price-option:after {
    top: -5px;
}

.price-option::before {
    bottom: -5px;
}

.price-option:last-child {
    margin-bottom: 0;
}

.price-option div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.couple-option {
    background: #502FF2;
}

.female-option {
    background: #D0189E;
}

.children-option {
    background: #F79D14;
}

.car-option {
    background: #7c3aed;
}
.price-icon {
    display: flex;
    align-items: center;
}

/* Right Section */
.right-section {
    width: 50%;
    /* padding: 40px 40px 40px 20px; */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* margin-top: 110px; */
}

/* Registration Form */
.registration-form {
    background: white;
    border-radius: 25px;
    /* padding: 26px 28px; */
    padding: 15px 20px;
    width: 100%;
    max-width: 550px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    margin-left: auto;
}

.form-header {
    text-align: left;
    margin-bottom: 16px;
}

.form-title {
    font-size: 16px;
    font-weight: 700;
    color: #1F2937;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    min-width: 0;
    /* Prevents overflow */
}

.form-field.width-full {
    grid-column: 1 / -1;
    margin-bottom: 16px;
}

.field-label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    /* text-overflow: ellipsis; */
    text-wrap: wrap;
}

.field-input {
    padding: 10px;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 15px;
    color: #374151;
    background: white;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    outline: none !important;
}

.number-input {
    text-align: left;
}

.required {
    color: red;
}

/* Booking Summary */
.booking-summary {
    background: #F9FAFB;
    border-radius: 15px;
    padding: 20px;
    margin-block: 16px;
}

.summary-title {
    font-size: 14px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 10px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 12px;
}

.summary-label {
    color: #333333;
    font-weight: 500;
}

.summary-value {
    color: #333333;
    /* font-weight: 600; */
}

.total-row {
    border-top: 1px solid #E5E7EB;
    padding-top: 12px;
    /* margin-top: 15px; */
    margin-bottom: 0;
}

.total-row .summary-label,
.total-row .summary-value {
    color: #1F2937;
    font-weight: 600;
    font-size: 12px;
}

/* Payment Section */
/* .payment-section {
     margin: 16px 0;
 } */

.payment-label {
    font-size: 14px;
    font-weight: 700;
    color: #374151;
    /* margin-bottom: 12px; */
    display: block;
}

.payment-options {
    display: flex;
    gap: 25px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 8px;
    /* margin-top: 10px; */
}

.payment-radio {
    width: 18px;
    height: 18px;
    accent-color: #7C3AED;
}

.payment-text {
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

/* Terms Section */
.terms-section {
    /* margin: 16px 0; */
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.terms-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #7C3AED;
    margin-top: 2px;
    flex-shrink: 0;
}

.terms-text {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.5;
}

.terms-link {
    color: #7C3AED;
    text-decoration: none;
    font-weight: 600;
}

/* Book Button */
.book-button {
    width: 100%;
    background: #3A226A;
    color: white;
    border: none;
    padding: 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.book-button:hover {
    background: #6D28D9;
    transform: translateY(-2px);
}

.book-button:active {
    transform: translateY(0);
}


/* popup  */
.popup-container {
    flex: 1;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 1;
}

.popup {
    max-width: 90vw;
    /* max-height: 90svh; */
    width: 600px;
    min-height: 500px;
    background: white;
    border-radius: 16px;
    padding: 40px;
    color: #333333;
    position: relative;
}

.popup .confetti {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.popup-heading {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #3A226A;
    margin-bottom: 16px;
}

.popup-text,
.popup-footer {
    text-align: center;
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 8px;
    font-family: "Inter", sans-serif;
    font-weight: normal;
}

.popup-text {
    padding-inline: 25px;
}

.popup-text .popup-highlight {
    font-weight: 600px;
    color: black;
}

.popup .detail-container {
    background: #FBF9FF;
    padding: 20px 40px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.popup .detail-heading {
    font-weight: 700;
    color: #3A226A;
    margin-bottom: 8px;

}

.popup .detail-container .detail {
    display: flex;
    width: 100%;
    font-size: 14px;
}

.popup .detail-container .detail .detail-label {
    font-size: 500;
}

.popup .detail-container .detail:not(:last-child) {
    margin-bottom: 8px;
}

.popup .detail-container .detail>* {
    flex: 1;
}

.popup-footer {
    text-align: start;
}

.popup-close {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer
}

.popup .offline-note .note-svg {
    display: flex;
    align-items: center;
}

.popup .offline-note .note-heading {
    display: flex;
    gap: 5px;
    font-size: 16px;
    font-weight: 600;
    align-items: center;
}

.popup .offline-note .note-text {
    font-size: 14px;
    line-height: 16px;
}

/* footer */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    height: 60px;
    gap: 10px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    border-top: 2px solid rgba(255, 255, 255, .30);
}

.footer .developed {
    color: white;
}


/* Responsive Design */

/* Large Desktop */
@media (max-width: 1440px) {
    .main-container {
        padding-inline: 100px;
    }

    .footer,
    .header {
        padding-inline: 40px;
    }

    /* .left-section {
         padding: 60px 60px 60px 100px;
     } */

    .logo-section {
        left: 100px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .main-container {
        padding-inline: 50px;
        /* padding-bottom: 40px; */
    }

    /* .left-section {
         padding: 50px;
     } */

    .logo-section {
        left: 80px;
    }

    .main-heading {
        font-size: 42px;
    }

    .pricing-card {
        width: 320px;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    body::before {
        animation: bgloop 80000s infinite linear;
    }

    .main {
        height: auto;
    }

    /* .header{
        padding-top: 30px;
    } */
    .main-container {
        flex-direction: column;
        height: auto;
        padding-inline: 10px;
    }

    .logo-section {
        position: relative;
        left: 0;
        top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 0;
        /* margin-bottom: 10px; */
    }

    /* .logo-section img {
         height: 60px;
         width: auto;
     } */

    .left-section {
        width: 100%;
        padding: 30px 40px;
        text-align: center;
    }

    .right-section {
        width: 100%;
        margin-top: 0;
        padding: 20px 40px 40px 40px;
        justify-content: center;
    }

    .main-heading {
        font-size: 38px;
        margin-bottom: 30px;
    }

    .event-description {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .contact-info {
        font-size: 18px;
        /* margin-bottom: 40px; */
    }

    .pricing-card {
        margin: 0 auto;
        width: 100%;
        max-width: 400px;
    }

    .app-downloads {
        justify-content: center;
        /* margin-bottom: 40px; */
    }

    .registration-form {
        max-width: 500px;
        margin: 0 auto;
        padding: 35px 30px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .left-section {
        padding: 20px 30px;
    }

    .right-section {
        padding: 0 30px 30px 30px;
    }

    .registration-form {
        padding: 30px 25px;
        margin: 0;
        border-radius: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .main-heading {
        font-size: 32px;
        white-space: normal;
        line-height: 1.2;
    }

    .event-description {
        font-size: 16px;
    }

    .contact-info {
        font-size: 16px;
    }

    .pricing-card {
        padding: 25px;
        width: 100%;
        max-width: none;
    }

    .price-option {
        padding: 25px 20px;
        font-size: 18px;
    }

    .payment-options {
        flex-direction: column;
        gap: 5px;
    }

    .payment-option {
        margin-top: 0;
    }

    .form-title {
        font-size: 16px;
    }

    .booking-summary {
        padding: 25px;
    }
}

/* Mobile Large */
@media (max-width: 576px) {

    .header {
        height: auto;
        padding-block: 10px;
        gap: 5px;
    }

    .header {
        height: auto;
        padding: 10px 0px;
    }

    .app-downloads {
        display: flex;
        flex-direction: column;
    }

    .popup .confetti {
        margin: 0px;
    }

    .popup .confetti svg {
        display: none;
    }

    .popup-text {
        padding: 0px;
    }

    .popup-heading {
        font-size: 20px;
    }

    .footer {
        height: auto;
        text-align: center;
    }

    .popup {
        width: 100%;
        padding: 20px;
    }

    .main-container {
        padding-block: 15px !important;
    }

    .header .logo-section img {
        height: 40px;
    }

    .header,
    .footer {
        padding-inline: 15px
    }

    .left-section {
        padding: 15px 20px;
    }

    .right-section {
        padding: 0 20px 20px 20px;
    }

    /* .logo-section {
         padding: 20px 0 15px 0;
     } */

    .logo-section img {
        height: 50px;
    }

    .main-heading {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .event-description {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .contact-info {
        font-size: 15px;
        /* margin-bottom: 30px; */
    }

    .app-downloads {
        /* flex-direction: column; */
        align-items: center;
        gap: 5px;
        /* margin-bottom: 30px; */
    }

    .app-store-btn img {
        height: 35px !important;
    }

    .pricing-card {
        padding: 20px;
        border-radius: 15px;
    }

    .pricing-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .price-option {
        padding: 10px 15px;
        font-size: 16px;
        margin-bottom: 12px;
    }

    .price-option div {
        gap: 10px;
    }

    .registration-form {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .form-title {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .form-grid {
        gap: 15px;
        margin-bottom: 15px;
    }

    .field-label {
        font-size: 12px;
        /* margin-bottom: 6px; */
    }

    .field-input {
        padding: 10px 14px;
        font-size: 14px;
    }

    .booking-summary {
        padding: 20px;
        margin: 20px 0;
        border-radius: 12px;
    }

    .summary-title {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .summary-label {
        font-size: 12px;
    }

    .summary-row {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .total-row .summary-label,
    .total-row .summary-value {
        font-size: 12px;
    }

    .payment-label {
        font-size: 14px;
    }

    .payment-text {
        font-size: 14px;
    }

    .terms-text {
        font-size: 13px;
    }

    .book-button {
        padding: 14px;
        font-size: 15px;
        border-radius: 10px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .left-section {
        padding: 10px 15px;
    }

    .right-section {
        padding: 0 15px 15px 15px;
    }

    .main-heading {
        font-size: 24px;
    }

    .event-description {
        font-size: 14px;
    }

    .contact-info {
        font-size: 14px;
    }

    .registration-form {
        padding: 20px 15px;
    }

    .price-option {
        font-size: 15px;
    }

    .footer {
        flex-direction: column;
        gap: 8px;
        justify-content: center;

    }
}

/* Mobile Extra Small */
@media (max-width: 360px) {
    .main-heading {
        font-size: 22px;
    }

    .pricing-card {
        padding: 15px;
    }

    .registration-form {
        padding: 15px 12px;
    }

    .booking-summary {
        padding: 15px;
    }

    .book-button {
        padding: 14px;
        font-size: 15px;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    .left-section {
        padding: 20px 30px;
    }

    .main-heading {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .event-description {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .contact-info {
        margin-bottom: 20px;
    }

    .app-downloads {
        margin-bottom: 20px;
    }

    .pricing-card {
        padding: 20px;
    }
}

/* Touch-friendly improvements */
.field-input,
.book-button,
.payment-radio,
.terms-checkbox {
    -webkit-tap-highlight-color: rgba(124, 58, 237, 0.3);
}

.book-button {
    min-height: 44px;
    /* iOS touch target minimum */
}

.payment-option,
.terms-section {
    min-height: 44px;
    display: flex;
    align-items: center;
}

/* Better focus states for accessibility */
.field-input:focus,
.book-button:focus,
.payment-radio:focus,
.terms-checkbox:focus {
    /* outline: 2px solid #7C3AED;
     outline-offset: 2px; */
    border: 2px solid #7C3AED !important;
}

/* Improved button states */
.book-button:disabled {
    background: #9CA3AF;
    cursor: not-allowed;
    transform: none;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    .field-input,
    .book-button {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}




/* background animation */

@keyframes bgloop {
    from {
        background-position-x: 0;
    }

    to {
        background-position-x: 60000%;
    }
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

@media screen and (max-height: 1024px) {
    .main {
        height: auto;
    }

    .main-container {
        padding-block: 50px;
    }
}

.required-asterisk {
    color: red;
}

input:disabled {
    background-color: #ebeaed;
    /* Light grey background */
    color: black;
    /* Grey text */
    border: 1px solid #ccc;
    /* Optional: softer border */
    cursor: not-allowed;
    /* Show not-allowed cursor */
}

.blink-icon {
    animation: smooth-blink 1.5s infinite ease-in-out;
}

@keyframes smooth-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* //====CUSTOME TOASTER=======// */
#custom-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.custom-toast {
    background-color: #333;
    color: #fff;
    padding: 12px 20px;
    margin-top: 10px;
    border-radius: 6px;
    min-width: 250px;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: sans-serif;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideIn 0.4s ease;
}

.custom-toast.success {
    background-color: #28a745;
}

.custom-toast.error {
    background-color: #dc3545;
}

.custom-toast.info {
    background-color: #17a2b8;
}

.custom-toast .close-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    margin-left: 10px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

.field-input::placeholder {
    color: #999;
    /* Change this to any color you like */
    opacity: 1;
    /* Optional: makes sure color isn't too light in some browsers */
}

.form-control::placeholder {
    color: #999;
    /* Change this to any color you like */
    opacity: 1;
}

.discount_banner {
    font-size: 12px;
    background: #502ff2 !important;
    padding: 8px;
    border-radius: 12px;
    color: #fff !important;
    margin-bottom: 15px;
}

.popup-vip {
    max-width: 90vw;
    width: 600px;
    background: white;
    border-radius: 16px;
    padding: 40px;
    color: #333333;
    position: relative;
}