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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid #f3f4f6;
    z-index: 1000;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #f59e0b, #10b981, #6366f1);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.navbar:hover::before {
    opacity: 1;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 800;
    font-size: 1.3rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.03em;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo:hover .logo-icon {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.4rem;
    letter-spacing: -0.03em;
}

.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-dropdown {
    position: relative;
}

.nav-link {
    color: #4b5563;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 20px;
    border-radius: 50px;
    position: relative;
    letter-spacing: -0.01em;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, #e74c3c, #f59e0b);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #1a1a1a;
    background: rgba(239, 68, 68, 0.05);
}

.nav-link:hover::before {
    transform: translateX(-50%) scaleX(1);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown .dropdown-menu:hover,
.nav-dropdown:hover .dropdown-submenu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #4b5563;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(245, 158, 11, 0.05));
    color: #1a1a1a;
    padding-left: 25px;
}

/* Nested Dropdown Support */
.dropdown-item.has-submenu {
    position: relative;
    padding-right: 30px;
    cursor: pointer;
}

.dropdown-item.has-submenu::after {
    content: '▸';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown-item.has-submenu:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(245, 158, 11, 0.05));
    color: #1a1a1a;
}

.dropdown-item.has-submenu:hover::after {
    transform: translateY(-50%) translateX(3px);
}

/* Desktop Nested Dropdown */
.dropdown-submenu {
    position: absolute;
    left: 100%;
    top: 0;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    pointer-events: none;
    margin-left: 5px;
}

/* Desktop hover effect - only on screens wider than 768px */
@media (min-width: 769px) {
    .dropdown-item.has-submenu:hover .dropdown-submenu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        pointer-events: auto;
    }
    
    /* Keep submenu visible when hovering over it */
    .dropdown-submenu:hover {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        pointer-events: auto;
    }
    
    /* Ensure parent dropdown stays open when hovering submenu */
    .dropdown-item.has-submenu:hover {
        background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(245, 158, 11, 0.05));
    }
    
    /* Keep parent dropdown open when hovering over submenu */
    .nav-dropdown:hover .dropdown-menu,
    .dropdown-submenu:hover ~ .dropdown-menu,
    .dropdown-item.has-submenu:hover ~ .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.dropdown-submenu .dropdown-item {
    border-bottom: 1px solid #f3f4f6;
    white-space: nowrap;
}

.dropdown-submenu .dropdown-item:last-child {
    border-bottom: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 2px solid #e5e7eb;
    font-size: 1.3rem;
    color: #1a1a1a;
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    font-weight: 300;
}

.mobile-menu-btn:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    transform: scale(1.05);
}

.mobile-menu-btn.mobile-menu-active {
    background: #ef4444;
    color: white;
    border-color: #ef4444;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-container {
        padding: 0 20px;
        height: 70px;
    }

    .logo-icon {
        height: 40px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 100px 25px 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 8px;
        border-left: 2px solid #f3f4f6;
    }
    
    .nav-links.mobile-menu-open {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        text-align: left;
        padding: 16px 20px;
        font-size: 1.05rem;
        border-radius: 12px;
        margin: 0;
        font-weight: 600;
    }

    .nav-link::before {
        display: none;
    }
    
    .nav-link:hover {
        background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(245, 158, 11, 0.1));
        transform: translateX(5px);
    }

    /* Mobile Dropdown */
    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        border: none;
        background: rgba(239, 68, 68, 0.03);
        border-radius: 8px;
        margin-top: 8px;
        display: none;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-item {
        padding: 12px 20px;
        border-radius: 8px;
        margin: 4px 0;
    }

    .dropdown-item:hover {
        padding-left: 25px;
    }

    .dropdown-toggle::after {
        content: ' ▾';
        transition: transform 0.3s ease;
        display: inline-block;
    }

    .nav-dropdown.active .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    /* Mobile Nested Dropdown */
    .dropdown-submenu {
        position: static !important;
        left: auto !important;
        top: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(0) !important;
        border: none;
        background: rgba(239, 68, 68, 0.05);
        border-radius: 8px;
        margin-top: 8px;
        margin-left: 20px;
        display: none;
        box-shadow: none !important;
        pointer-events: auto !important;
    }

    .dropdown-item.has-submenu.active .dropdown-submenu {
        display: block;
    }

    .dropdown-item.has-submenu::after {
        content: ' ▾';
        transform: translateY(-50%) rotate(0deg);
    }

    .dropdown-item.has-submenu.active::after {
        transform: translateY(-50%) rotate(180deg);
    }
}

/* Main Slide Container */
.slide-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 20px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

/* Main Title */
.main-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Logo Section */
.logo-section {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image {
    /* max-height: 120px; */
    max-width:500px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Description Text */
.description-text {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 500;
    color: #34495e;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    line-height: 1.5;
}

/* Buy Tickets Button */
.buy-tickets-btn {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.buy-tickets-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
}

.buy-tickets-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.buy-tickets-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.buy-tickets-btn:hover::before {
    left: 100%;
}

/* Form Section */
.form-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
}

.form-section.show {
    opacity: 1;
    visibility: visible;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideInUp 0.3s ease;
    margin: auto;
    transform: translateY(0);
}

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

/* Ensure modal is perfectly centered */
.form-section.show .form-container {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
}

/* Form Inputs */
.whatsapp-input-group {
    margin-bottom: 25px;
}

.whatsapp-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.whatsapp-input:focus {
    outline: none;
    border-color: #25D366;
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.time-input-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.time-input {
    width: 80px;
    padding: 15px 10px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.time-input:focus {
    outline: none;
    border-color: #3498db;
    background: white;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.time-separator {
    font-size: 1.5rem;
    font-weight: 700;
    color: #34495e;
}

/* Checkbox */
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.terms-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #3498db;
}

.terms-label {
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border: none;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.submit-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    margin-top: 20px;
    display: none;
    animation: slideInUp 0.3s ease;
}

.success-message.show {
    display: block;
}

/* Close Button */
.close-form {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-form:hover {
    color: #e74c3c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .slide-container {
        padding: 100px 15px 30px;
    }
    
    .main-title {
        margin-bottom: 40px;
    }
    
    .logo-section {
        margin-bottom: 30px;
    }
    
    .logo-image {
        /* max-height: 80px; */
        max-width: 400px;
    }
    
    .description-text {
        margin-bottom: 40px;
        font-size: 1rem;
    }
    
    .buy-tickets-btn {
        padding: 15px 40px;
        font-size: 1.1rem;
    }
    
    .form-container {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .time-input {
        width: 70px;
        padding: 12px 8px;
        font-size: 1rem;
    }
    
    .time-separator {
        font-size: 1.2rem;
    }
}

/* Terms Page Styles */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 120px 20px 40px;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 16px;
    color: white;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.2);
}

.page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
    margin: 0;
}

.terms-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    line-height: 1.7;
}

.terms-intro {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: center;
}

.terms-intro h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.terms-intro p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.terms-section {
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.terms-section:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.terms-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.terms-section h4::before {
    content: "📋";
    margin-right: 10px;
    font-size: 1rem;
}

.terms-section p {
    color: #34495e;
    margin-bottom: 15px;
    font-size: 1rem;
}

.terms-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.terms-section li {
    color: #34495e;
    margin-bottom: 8px;
    font-size: 1rem;
}

.terms-section li::marker {
    color: #3498db;
    font-weight: bold;
}

.highlight {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.highlight p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #e74c3c;
    margin-top: 20px;
}

.back-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    border-color: #c0392b;
}

/* Terms Page Responsive */
@media (max-width: 768px) {
    .container {
        padding: 100px 15px 30px;
    }
    
    .page-header {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .terms-content {
        padding: 25px 20px;
    }
    
    .terms-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .terms-intro {
        padding: 20px;
    }
    
    .highlight {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 90px 10px 20px;
    }
    
    .page-header {
        padding: 25px 15px;
    }
    
    .terms-content {
        padding: 20px 15px;
    }
    
    .terms-section {
        padding: 15px;
    }
    
    .back-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Partners/Sponsors Carousel */
.partners-section {
    margin: 60px 0 40px;
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
}

.partners-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 40px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.carousel-slide {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide:hover {
    border-color: #e74c3c;
    background: #fff5f5;
    transform: scale(1.05);
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.carousel-slide:hover .partner-logo {
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .partners-section {
        margin: 40px 0 30px;
    }

    .partners-title {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    .carousel-track {
        gap: 25px;
    }

    .carousel-slide {
        width: 140px;
        height: 80px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .slide-container {
        padding: 90px 10px 20px;
    }
    
    .main-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .logo-image {
        /* max-height: 60px; */
        max-width: 300px;
    }
    
    .description-text {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .buy-tickets-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .form-container {
        padding: 25px 15px;
    }
    
    .time-input {
        width: 60px;
        padding: 10px 6px;
    }

    .carousel-slide {
        width: 120px;
        height: 70px;
        padding: 12px;
    }

    .carousel-track {
        gap: 20px;
    }
}

/* Bank Transfer Modal */
.bank-transfer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bank-transfer-modal.show {
    opacity: 1;
}

.bank-modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(30px);
    transition: transform 0.3s ease;
    text-align: center;
}

.bank-transfer-modal.show .bank-modal-content {
    transform: translateY(0);
}

.bank-modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bank-modal-text {
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 30px;
}

.bank-modal-text strong {
    color: #e74c3c;
    font-weight: 600;
}

.bank-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.bank-modal-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.bank-modal-btn.proceed-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.bank-modal-btn.proceed-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.bank-modal-btn.cancel-btn {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.3);
}

.bank-modal-btn.cancel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 114, 128, 0.4);
}

/* Mobile Responsive for Bank Transfer Modal */
@media (max-width: 768px) {
    .bank-modal-content {
        padding: 30px 20px;
    }
    
    .bank-modal-title {
        font-size: 1.5rem;
    }
    
    .bank-modal-text {
        font-size: 1rem;
    }
    
    .bank-modal-buttons {
        flex-direction: column;
    }
    
    .bank-modal-btn {
        width: 100%;
        min-width: auto;
    }
}