/* Combined CSS from all HTML files - Deduplicated */

/* ============================================
   TYPOGRAPHY & GLOBAL STYLES
   ============================================ */
* {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes highlightPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
    }
}

.hero-highlight {
    animation: highlightPulse 2s ease-in-out infinite;
}

/* ============================================
   GLASSMORPHISM & VISUAL EFFECTS
   ============================================ */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.float-card {
    animation: float 3s ease-in-out infinite;
}

/* ============================================
   GRADIENTS & BACKGROUNDS
   ============================================ */
.gradient-cta {
    background: linear-gradient(135deg, #0F4C81 0%, #4CB8C4 100%);
    transition: all 0.3s ease;
}

.gradient-cta:hover {
    box-shadow: 0 10px 30px rgba(15, 76, 129, 0.3);
    transform: translateY(-2px);
}

.gradient-text {
    background: linear-gradient(135deg, #0F4C81 0%, #4CB8C4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-gradient {
    background: linear-gradient(135deg, #F7FAFC 0%, #E0F2FE 100%);
}

.step-number {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #0F4C81 0%, #4CB8C4 100%);
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.progress-line {
    height: 3px;
    background: linear-gradient(90deg, #0F4C81 0%, #4CB8C4 100%);
    margin: 0 10px;
}

.timeline-item {
    position: relative;
    padding: 40px 0;
}

.timeline-item:last-of-type {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 100px;
    width: 2px;
    height: calc(100% - 100px);
    background: linear-gradient(180deg, #4CB8C4 0%, #0F4C81 100%);
    display: none;
}

.timeline-item:last-child::before {
    display: none;
}

@media (min-width: 768px) {
    .timeline-item::before {
        display: block;
    }
}

/* ============================================
   NAVBAR & STICKY ELEMENTS
   ============================================ */
.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: rgba(247, 250, 252, 0.8);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* ============================================
   COUNTERS & TYPOGRAPHY
   ============================================ */
.counter, .stat-counter {
    font-weight: 700;
    color: #0F4C81;
}

.counter {
    font-size: 2.5rem;
}

.stat-counter {
    font-size: 3rem;
}

/* ============================================
   BLOB SHAPES & DECORATIVE ELEMENTS
   ============================================ */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

.blob-primary {
    background: #0F4C81;
}

.blob-secondary {
    background: #4CB8C4;
}

/* ============================================
   FORM ELEMENTS & INPUTS
   ============================================ */
.form-input {
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #0F4C81;
    box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.1);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e7ff;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #f7fafc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    background-color: white;
    border-color: #0F4C81;
    box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.1);
}

select {
    height: 48px;
    line-height: 24px;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F4C81' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

textarea {
    resize: vertical;
    font-family: 'Inter', sans-serif;
    padding: 12px 16px !important;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    padding-right: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: scroll;
    overflow-x: hidden;
    position: relative;
    scrollbar-gutter: stable;
}

/* Custom scrollbar styling */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
    border: none;
    background: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.modal-close:hover {
    color: #0F4C81;
    transform: rotate(90deg);
}

.form-input {
    transition: all 0.3s ease;
    padding: 10px 14px;
}

.form-input:focus {
    outline: none;
    border-color: #0F4C81;
    box-shadow: 0 0 0 3px rgba(15, 76, 129, 0.1);
}

/* ============================================
   DEPOSIT BUTTONS
   ============================================ */
.deposit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    padding: 10px 20px;
    border: 2px solid #e0e7ff;
    border-radius: 9999px;
    background: #f7fafc;
    color: #374151;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.deposit-btn:hover {
    border-color: #4CB8C4;
    color: #0F4C81;
    background: #e0f2fe;
}

.deposit-btn-active {
    background: linear-gradient(135deg, #0F4C81 0%, #4CB8C4 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(15, 76, 129, 0.3);
    transform: scale(1.05);
}

.deposit-btn-active:hover {
    background: linear-gradient(135deg, #0F4C81 0%, #4CB8C4 100%);
    color: white;
    border-color: transparent;
}

#depositInfo {
    background: #eff6ff;
    border-left: 3px solid #3b82f6;
    padding: 10px 14px;
    border-radius: 0 8px 8px 0;
    animation: fadeIn 0.4s ease;
}

/* ============================================
   ACCORDION
   ============================================ */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    max-height: 500px;
}

/* ============================================
   DROPDOWN MENU
   ============================================ */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #374151;
    transition: all 0.3s ease;
}

.dropdown-button:hover {
    color: #2563eb;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    z-index: 10;
    margin-top: 0.5rem;
}

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-content a:hover {
    background-color: #f3f4f6;
    color: #2563eb;
    border-left-color: #2563eb;
}

.dropdown.active .dropdown-content {
    display: block;
}

.dropdown-icon {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
#scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #0F4C81 0%, #4CB8C4 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.3);
    transition: all 0.3s ease;
    z-index: 40;
}

#scrollToTopBtn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(15, 76, 129, 0.4);
}

#scrollToTopBtn:active {
    transform: translateY(-2px) scale(0.95);
}

#scrollToTopBtn.show {
    display: flex;
}

/* ============================================
   CONTENT BOXES
   ============================================ */
.bank-details-box {
    background: linear-gradient(135deg, #0F4C81 0%, #4CB8C4 100%);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}

.bank-details-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.bank-details-box .relative {
    position: relative;
    z-index: 1;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.highlight-box {
    background-color: #DBEAFE;
    border-left: 4px solid #0F4C81;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.highlight-box.warning {
    background-color: #FEF3C7;
    border-left-color: #F59E0B;
}

.contact-card {
    text-align: center;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0F4C81;
}

/* ============================================
   LEGAL & TEXT CONTENT
   ============================================ */
.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #0F4C81;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .counter {
        font-size: 1.875rem;
    }

    .stat-counter {
        font-size: 2rem;
    }

    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background: #f9fafb;
        min-width: auto;
    }

    .timeline-item {
        padding: 24px 0;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-button {
        width: 100%;
        padding: 8px 0;
    }

    #scrollToTopBtn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

