:root {
    --primary-color: #ff007f;
    /* Pink */
    --secondary-color: #ffb300;
    /* Yellow */
    --tertiary-color: #ff6600;
    /* Orange */
    --quaternary-color: #00d2ff;
    /* Blue */
    --bg-color: #0f0c29;
    --text-color: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.05);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

canvas#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 800;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--quaternary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-divider {
    height: 4px;
    width: 80px;
    background: linear-gradient(to right, var(--primary-color), var(--quaternary-color));
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    z-index: 10;
}

.headline {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.holi-text {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--quaternary-color), var(--tertiary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% auto;
    animation: shine 5s linear infinite;
    display: inline-block;
}

/* Animated Powder Explosion */
.powder-explosion {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.powder-explosion::before,
.powder-explosion::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    /* Create a multi-colored blurred radial gradient to simulate powder clouds */
    background: radial-gradient(circle, rgba(255, 0, 127, 0.8) 0%, rgba(255, 179, 0, 0.6) 30%, rgba(0, 210, 255, 0.4) 60%, transparent 80%);
    filter: blur(20px);
}

.powder-explosion::before {
    animation: explode 4s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
}

.powder-explosion::after {
    background: radial-gradient(circle, rgba(0, 210, 255, 0.8) 0%, rgba(0, 224, 68, 0.6) 30%, rgba(255, 0, 127, 0.4) 60%, transparent 80%);
    animation: explode 4s cubic-bezier(0.1, 0.8, 0.3, 1) infinite 2s;
    /* Delayed start */
    mix-blend-mode: screen;
}

@keyframes explode {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0.4;
    }

    100% {
        transform: translate(-50%, -50%) scale(3.5);
        opacity: 0;
    }
}

.subtext {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.dot {
    color: var(--primary-color);
    margin: 0 10px;
}

.event-details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.detail-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-item i {
    color: var(--secondary-color);
}

/* Countdown */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 90px;
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.countdown-item span:first-child {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--quaternary-color);
}

.countdown-item .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.cta-button.primary {
    background: linear-gradient(45deg, var(--primary-color), var(--tertiary-color));
    color: white;
    box-shadow: 0 10px 25px rgba(255, 0, 127, 0.5);
}

.cta-button.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 0, 127, 0.6);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--quaternary-color);
}

.cta-button.secondary:hover {
    background: rgba(0, 210, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
}

/* Highlights Section */
.highlights {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.icon-wrapper.color-1 {
    background: linear-gradient(135deg, #ff007f, #ff0044);
}

.icon-wrapper.color-2 {
    background: linear-gradient(135deg, #00d2ff, #0088ff);
}

.icon-wrapper.color-3 {
    background: linear-gradient(135deg, #00e044, #00aa00);
}

.icon-wrapper.color-4 {
    background: linear-gradient(135deg, #ffb300, #ff8800);
}

.icon-wrapper.color-5 {
    background: linear-gradient(135deg, #9d00ff, #5500ff);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-card p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Pricing Section */
.pricing {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
    /* helps center differently sized cards */
}

.pricing-card {
    background: rgba(20, 15, 35, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem 2rem;
    position: relative;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular {
    transform: scale(1.05);
    background: linear-gradient(145deg, rgba(30, 15, 50, 0.8), rgba(60, 20, 80, 0.8));
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 0, 127, 0.3);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 0, 127, 0.5), 0 0 20px rgba(255, 0, 127, 0.4) inset;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--primary-color), var(--tertiary-color));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 0, 127, 0.4);
    white-space: nowrap;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(to bottom, #fff, #b3b3b3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-card.popular .price {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list i {
    color: var(--quaternary-color);
}

.pricing-card.popular .features-list i {
    color: var(--secondary-color);
}

.urgency-text {
    text-align: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    animation: pulse 2s infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.dynamic-counter {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: none;
    /* override pulse from parent */
}

.seat-badge {
    background: var(--primary-color);
    color: white;
    padding: 2px 10px;
    border-radius: 10px;
    font-weight: 800;
    margin: 0 5px;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.seat-badge.update {
    transform: scale(1.5);
    background: var(--secondary-color);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

/* FAQ Section */
.faq {
    padding: 5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: white;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
    /* Adjust as needed */
}

.faq-answer p {
    opacity: 0.8;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    opacity: 0.7;
}

.footer-contact h4,
.footer-social h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-contact p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Floating Elements */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Pulse ring for WhatsApp */
.floating-whatsapp::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
    animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.mobile-sticky-btn {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--tertiary-color));
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .headline {
        font-size: 2.5rem;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    .event-details {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .countdown-container {
        flex-wrap: wrap;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .glass-form {
        padding: 2rem 1.5rem;
    }

    /* Reveal sticky button on mobile, hide floating WA partly so they don't overlap badly */
    .mobile-sticky-btn {
        display: block;
    }

    .floating-whatsapp {
        bottom: 80px;
        /* Above the sticky footer */
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 30px;
    }

    /* Add bottom padding to body so content isn't hidden under sticky btn */
    body {
        padding-bottom: 60px;
    }
}

/* Registration Form Section */
.registration {
    padding: 5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.form-container {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-form {
    background: rgba(255, 255, 255, 0.05);
    /* Glassmorphism main */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.payment-verification {
    animation: fadeInScale 0.4s ease-out forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Dedicated Google Pay UI Styles */
.gpay-section {
    position: relative;
    overflow: hidden;
}

.gpay-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, #4285F4, #34A853, #FBBC05, #EA4335);
}

.gpay-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.gpay-logo {
    height: 40px;
    margin-bottom: 10px;
    background: white;
    padding: 5px 15px;
    border-radius: 8px;
}

.amount-display-gpay {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.amount-display-gpay p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.amount-display-gpay strong {
    font-size: 3rem;
    color: var(--secondary-color);
    line-height: 1;
}

.payment-instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-bottom: 2.5rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.step-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.step-text {
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.4;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: start;
}

.direct-pay-method,
.qr-pay-method {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.direct-pay-method h4,
.qr-pay-method h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--tertiary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.gpay-btn {
    background: white !important;
    color: #3c4043 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    font-weight: 600 !important;
    border: 1px solid #dadce0 !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.gpay-btn:hover {
    background: #f8f9fa !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
}

.gpay-btn i {
    color: #4285F4;
    font-size: 1.5rem !important;
}

.upi-id-box {
    margin-top: auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
}

.upi-id-box p {
    font-size: 0.85rem;
    margin-bottom: 8px;
    opacity: 0.8;
}

.copy-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    gap: 10px;
}

.copy-box span {
    font-family: monospace;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    word-break: break-all;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--secondary-color);
    cursor: pointer;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.copy-btn:hover {
    color: white;
}

.gpay-upload-theme {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    margin-top: 0 !important;
    text-align: left;
    margin-bottom: 2rem;
}

.gpay-submit {
    width: 100%;
    font-size: 1.2rem !important;
    padding: 1.2rem !important;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color)) !important;
}

/* Override QR Wrapper for GPAY */
.qr-pay-method .qr-code-wrapper {
    background: white;
    padding: 15px;
    border-radius: 15px;
    display: inline-block;
    margin: 0 auto auto auto;
}

@media (max-width: 768px) {
    .payment-methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.file-input {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px dashed rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    color: white;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

.file-input:hover {
    border-color: var(--primary-color);
}

.qr-code-wrapper img {
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-row .form-group {
    flex: 1;
}

.glass-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.glass-form input[type="text"],
.glass-form input[type="tel"],
.glass-form input[type="email"],
.glass-form input[type="number"],
.glass-form select {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.2);
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.glass-form input:focus,
.glass-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.3);
    background: rgba(0, 0, 0, 0.4);
}

.glass-form select option {
    background-color: var(--bg-color);
    color: white;
}

.total-amount-box {
    background: linear-gradient(to right, rgba(255, 0, 127, 0.1), rgba(0, 210, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

#totalAmount {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 0.9rem;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
}