/* ========================================
   FINTECH WEBSITE - MAIN CSS
   ========================================= */

/* CSS Variables */
:root {
    --primary-color: #6366F1;
    --primary-dark: #4F46E5;
    --primary-light: #818CF8;
    --secondary-color: #8B5CF6;
    --accent-color: #06B6D4;
    --accent-light: #22D3EE;
    
    --background-color: #0F172A;
    --background-light: #1E293B;
    --surface-color: #1E293B;
    --surface-light: #334155;
    --surface-lighter: #475569;
    
    --text-primary: #F1F5F9;
    --text-secondary: #CBD5E1;
    --text-muted: #94A3B8;
    
    --border-color: #334155;
    --border-light: #475569;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 30px 60px rgba(0, 0, 0, 0.6);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease-in-out;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Light Mode */
body.light-mode {
    --background-color: #F8FAFC;
    --background-light: #F1F5F9;
    --surface-color: #FFFFFF;
    --surface-light: #F1F5F9;
    --surface-lighter: #E2E8F0;
    
    --text-primary: #0F172A;
    --text-secondary: #334155;
    --text-muted: #64748B;
    
    --border-color: #E2E8F0;
    --border-light: #CBD5E1;
}

/* ========================================
   RESET & TYPOGRAPHY
   ========================================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--background-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: var(--transition);
}

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

h1 {
    font-size: clamp(2rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 2rem);
}

p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-light);
}

button {
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

/* ========================================
   CONTAINERS & LAYOUTS
   ========================================= */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

section:nth-child(even) {
    background-color: var(--background-light);
}

/* ========================================
   HEADER & NAVIGATION
   ========================================= */

.header {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    color: #818CF8;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: block;
    flex-shrink: 0;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.3));
}

body.light-mode .logo-icon {
    filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.4));
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: #818CF8;
}

body.light-mode .logo-text {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #F1F5F9;
    font-weight: 700;
    position: relative;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--surface-light);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    position: relative;
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    position: absolute;
    transition: var(--transition);
    opacity: 1;
}

.theme-toggle .moon-icon {
    opacity: 0;
    transform: rotate(-180deg);
}

body.light-mode .theme-toggle .sun-icon {
    opacity: 0;
    transform: rotate(180deg);
}

body.light-mode .theme-toggle .moon-icon {
    opacity: 1;
    transform: rotate(0);
}

.hamburger {
    display: none;
    flex-direction: column;
    width: 30px;
    height: 24px;
    background: transparent;
    cursor: pointer;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

/* ========================================
   BUTTONS
   ========================================= */

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    z-index: 0;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

/* ========================================
   HERO SECTION
   ========================================= */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
    background: var(--background-color);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    bottom: -50px;
    right: -50px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, 30px);
    }
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    z-index: 2;
}

.hero-title {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    background-clip: text;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.card-3d {
    width: 300px;
    height: 200px;
    perspective: 1000px;
}

.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.card-3d:hover .card-inner {
    transform: rotateY(8deg) rotateX(-5deg);
}

.card-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border-bottom: 3px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.card-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-color), transparent);
    opacity: 0.1;
    animation: float 4s ease-in-out infinite;
}

.card-icon {
    font-size: 4rem;
    z-index: 1;
}

.card-text {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    z-index: 1;
}

/* ========================================
   SECTIONS GENERAL
   ========================================= */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* ========================================
   SERVICES SECTION
   ========================================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 0.1;
    top: -30%;
    right: -30%;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
    background: var(--surface-light);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-title {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   DASHBOARD PREVIEW
   ========================================= */

.dashboard-preview {
    background: var(--background-light);
}

.dashboard-container {
    max-width: 900px;
    margin: 0 auto;
}

.dashboard-mockup {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.dashboard-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.dashboard-title {
    font-weight: 700;
    font-size: 1.2rem;
}

.dashboard-controls {
    display: flex;
    gap: 1rem;
}

.dash-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

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

.dashboard-content {
    padding: 2rem;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dash-card {
    background: var(--surface-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.dash-card-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dash-card-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
}

.dashboard-chart {
    background: var(--surface-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.chart-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.chart-svg {
    width: 100%;
    height: 150px;
}

.dashboard-transactions {
    background: var(--surface-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.trans-header {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.trans-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.trans-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.trans-type {
    font-weight: 500;
    color: var(--text-primary);
}

.trans-time {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trans-amount {
    font-weight: 700;
    color: var(--accent-color);
}

/* ========================================
   ABOUT SECTION
   ========================================= */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.about-point {
    display: flex;
    gap: 1rem;
}

.point-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.point-text h4 {
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.point-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-container {
    width: 100%;
    aspect-ratio: 1;
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--surface-light) 0%, var(--surface-lighter) 100%);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: linear-gradient(45deg, transparent 30%, var(--primary-color), transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%);
    }
    100% {
        transform: translateX(100%) translateY(100%);
    }
}

.placeholder-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.placeholder-content .icon {
    font-size: 4rem;
}

.placeholder-content .text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ========================================
   EARNINGS SECTION
   ========================================= */

.earnings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.earning-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.earning-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    background: var(--surface-light);
    box-shadow: var(--shadow-lg);
}

.earning-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.earning-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.earning-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.earning-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 3rem;
    background: var(--surface-color);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-xl);
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.flow-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.flow-label {
    font-weight: 600;
    color: var(--text-primary);
}

.flow-arrow {
    font-size: 1.5rem;
    color: var(--text-muted);
}

/* ========================================
   TESTIMONIALS SECTION
   ========================================= */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.testimonial-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-name {
    font-weight: 700;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stars {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ========================================
   CONTACT SECTION
   ========================================= */

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    background: var(--surface-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--surface-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    display: flex;
    gap: 1.5rem;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-card h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   MODAL
   ========================================= */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

.modal.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    width: 90%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease-out;
    position: relative;
}

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

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background: var(--surface-light);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: var(--border-color);
}

.auth-container {
    padding: 3rem 2rem;
}

.auth-toggle {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.auth-toggle-btn {
    background: transparent;
    color: var(--text-muted);
    border: none;
    padding: 0.75rem 0;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    position: relative;
    top: 2px;
}

.auth-toggle-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

.auth-form h2 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.forgot-link {
    color: var(--accent-color);
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-footer a {
    color: var(--primary-color);
    font-weight: 600;
}

.auth-switch {
    cursor: pointer;
}

/* ========================================
   LOADER
   ========================================= */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    animation: fadeOut 0.5s ease-in-out 2s forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        pointer-events: auto;
    }
    to {
        opacity: 0;
        pointer-events: none;
    }
}

.loader-spinner {
    display: flex;
    gap: 0.5rem;
}

.spinner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    animation: bounce 1.4s infinite ease-in-out;
}

.spinner-dot:nth-child(1) {
    animation-delay: 0s;
}

.spinner-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.spinner-dot:nth-child(3) {
    animation-delay: 0.4s;
}

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

/* ========================================
   FOOTER
   ========================================= */

.footer {
    background: var(--background-light);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-section p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--surface-light);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========================================
   ACCESSIBILITY & MISC
   ========================================= */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--background-color);
}

::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

::placeholder {
    color: var(--text-muted);
}

/* ========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */

[data-aos] {
    opacity: 0;
    transition: var(--transition-slow);
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(30px);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

/* ========================================
   SERVICE CARD ENHANCEMENTS - PROFESSIONAL LUXURY DESIGN
   ========================================= */

.service-card-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    padding: 1px;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.card-hover-glow {
    position: relative;
}

.card-hover-glow:hover .service-card-border {
    opacity: 1;
}

.card-hover-glow:hover {
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.12), 0 6px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   TIMING SECTION (WORKING HOURS)
   ========================================= */

.timing-section {
    padding: 4rem 0;
    background: var(--background-color);
}

.timing-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.timing-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(6, 182, 212, 0.2);
    transform: translateY(-4px);
}

.timing-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.timing-text {
    flex: 1;
}

.timing-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.timing-hours {
    font-size: 1.25rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.timing-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.timing-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    animation: pulse-background 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse-background {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

/* ========================================
   CONTACT EMAIL SECTION
   ========================================= */

.contact-email-section {
    padding: 4rem 0;
    background: var(--background-light);
}

.email-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.email-card-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4) 0%, rgba(6, 182, 212, 0.4) 100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.email-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(99, 102, 241, 0.2);
    transform: translateY(-4px);
}

.email-card:hover .email-card-border {
    opacity: 1;
}

.email-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    position: relative;
    z-index: 1;
    width: 100%;
}

.email-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.email-text {
    flex: 1;
}

.email-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.email-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
    word-break: break-all;
}

.email-link:hover {
    color: var(--accent-color);
}

.copy-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    color: white;
    box-shadow: var(--shadow-md);
}

.copy-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.copy-btn:active {
    transform: scale(0.95);
}

/* ========================================
   PARTNERS SECTION
   ========================================= */

.partners-section {
    padding: 6rem 0;
    background: var(--background-color);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

.partner-card {
    background: var(--surface-color);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    padding: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-card-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.5) 0%, rgba(139, 92, 246, 0.5) 50%, rgba(6, 182, 212, 0.5) 100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.partner-card:hover {
    transform: translateY(-12px);
    border-color: transparent;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3), 0 0 40px rgba(6, 182, 212, 0.2);
}

.partner-card:hover .partner-card-border {
    opacity: 1;
    animation: gradientBorderFlow 3s ease infinite;
}

@keyframes gradientBorderFlow {
    0% {
        filter: drop-shadow(0 0 12px rgba(99, 102, 241, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.8));
    }
    100% {
        filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.6));
    }
}

.partner-image {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.partner-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: var(--shadow-lg), 0 0 30px rgba(99, 102, 241, 0.4);
    transition: var(--transition);
}

.partner-card:hover .partner-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(6, 182, 212, 0.5);
}

.partner-content {
    position: relative;
    z-index: 1;
}

.partner-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.partner-role {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.partner-points {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}

.partner-points li {
    font-size: 0.95rem;
    color: var(--text-muted);
    padding: 0.75rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.partner-points li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.partner-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.social-icon:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}
/* ========================================
   FINTECH WEBSITE - COMPONENTS CSS
   ========================================= */

/* ========================================
   GLASSMORPHISM EFFECTS
   ========================================= */

.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-thick {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ========================================
   GRADIENT BACKGROUNDS
   ========================================= */

.gradient-primary {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #06B6D4 100%);
}

.gradient-secondary {
    background: linear-gradient(135deg, #06B6D4 0%, #22D3EE 50%, #6366F1 100%);
}

.gradient-tertiary {
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 50%, #06B6D4 100%);
}

/* ========================================
   SHADOW EFFECTS
   ========================================= */

.shadow-glow {
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.shadow-glow-cyan {
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.shadow-glow-purple {
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ========================================
   HOVER LIFT EFFECT
   ========================================= */

.lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
}

/* ========================================
   BLUR BACKGROUNDS
   ========================================= */

.blur-bg {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(10px);
}

.blur-bg-heavy {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
}

/* ========================================
   GRADIENT TEXT
   ========================================= */

.gradient-text-primary {
    background: linear-gradient(135deg, #6366F1 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-secondary {
    background: linear-gradient(135deg, #8B5CF6 0%, #22D3EE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   CUSTOM ANIMATIONS
   ========================================= */

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate(-50px, -50px);
    }
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translate(0, 0);
    }
    to {
        opacity: 0;
        transform: translate(50px, 50px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes scale-in {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes wave {
    0% {
        clip-path: polygon(0% 45%, 0% 60%, 5% 55%, 10% 50%, 15% 55%, 20% 60%, 25% 58%, 30% 60%, 35% 58%, 40% 60%, 45% 55%, 50% 60%, 55% 60%, 60% 58%, 65% 60%, 70% 55%, 75% 60%, 80% 58%, 85% 60%, 90% 55%, 95% 60%, 100% 60%, 100% 100%, 0% 100%);
    }
    100% {
        clip-path: polygon(0% 45%, 0% 60%, 5% 55%, 10% 50%, 15% 55%, 20% 60%, 25% 58%, 30% 60%, 35% 58%, 40% 60%, 45% 55%, 50% 60%, 55% 60%, 60% 58%, 65% 60%, 70% 55%, 75% 60%, 80% 58%, 85% 60%, 90% 55%, 95% 60%, 100% 60%, 100% 0%, 0% 0%);
    }
}

@keyframes blink {
    0%, 49%, 100% {
        opacity: 1;
    }
    50%, 99% {
        opacity: 0;
    }
}

/* ========================================
   GLASS CARD STYLES
   ========================================= */

.card-glass {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.card-glass-lg {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 20px;
    padding: 2rem;
}

.card-glass:hover {
    border-color: rgba(148, 163, 184, 0.2);
    background: rgba(30, 41, 59, 0.6);
}

/* ========================================
   BADGE STYLES
   ========================================= */

.badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.badge-primary {
    background: rgba(99, 102, 241, 0.2);
    color: #6366F1;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.badge-accent {
    background: rgba(6, 182, 212, 0.2);
    color: #06B6D4;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.badge-success {
    background: rgba(34, 197, 94, 0.2);
    color: #22C55E;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

/* ========================================
   BORDER STYLES
   ========================================= */

.border-bottom-gradient {
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, #6366F1, #06B6D4) 1;
}

.border-top-gradient {
    border-top: 3px solid;
    border-image: linear-gradient(90deg, #6366F1, #06B6D4) 1;
}

/* ========================================
   PROGRESS BAR
   ========================================= */

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--surface-light);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366F1, #06B6D4);
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* ========================================
   TOOLTIP
   ========================================= */

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    white-space: nowrap;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    font-size: 0.85rem;
    z-index: 100;
}

.tooltip:hover::after {
    opacity: 1;
}

/* ========================================
   DIVIDER
   ========================================= */

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
    margin: 2rem 0;
}

.divider-vertical {
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--border-light), transparent);
}

/* ========================================
   TEXT EFFECTS
   ========================================= */

.text-gradient {
    background: linear-gradient(135deg, #6366F1, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-shadow-glow {
    text-shadow: 0 2px 8px rgba(30, 58, 138, 0.15);
}

.text-underline-animated {
    position: relative;
    display: inline-block;
}

.text-underline-animated::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366F1, #06B6D4);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.text-underline-animated:hover::after {
    width: 100%;
}

/* ========================================
   ICON STYLES
   ========================================= */

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-box-primary {
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    color: white;
}

.icon-box-accent {
    background: linear-gradient(135deg, #06B6D4, #22D3EE);
    color: white;
}

.icon-box:hover {
    transform: scale(1.1) rotate(5deg);
}

/* ========================================
   SHADOW LAYERS
   ========================================= */

.shadow-layer-1 {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.shadow-layer-2 {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.shadow-layer-3 {
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 35px rgba(99, 102, 241, 0.15);
}

/* ========================================
   FLOATING ANIMATION
   ========================================= */

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

.float-delay-1 {
    animation-delay: 0s;
}

.float-delay-2 {
    animation-delay: 0.2s;
}

.float-delay-3 {
    animation-delay: 0.4s;
}

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

/* ========================================
   GRADIENT ANIMATION
   ========================================= */

.gradient-animation {
    background-size: 200% 200%;
    animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* ========================================
   CODE BLOCK STYLES
   ========================================= */

.code-block {
    background: var(--surface-lighter);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: #06B6D4;
    line-height: 1.5;
}

.code-block code {
    color: inherit;
}

/* ========================================
   BOX SHADOW ANIMATIONS
   ========================================= */

.shadow-pulse {
    animation: shadow-pulse-animation 2s ease-in-out infinite;
}

@keyframes shadow-pulse-animation {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(30, 58, 138, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    50% {
        box-shadow: 0 12px 32px rgba(30, 58, 138, 0.2), 0 6px 16px rgba(0, 0, 0, 0.1);
    }
}

/* ========================================
   FLIP ANIMATION
   ========================================= */

.flip {
    perspective: 1000px;
}

.flip-inner {
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip:hover .flip-inner {
    transform: rotateY(180deg);
}

.flip-front,
.flip-back {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.flip-back {
    transform: rotateY(180deg);
}

/* ========================================
   PROFESSIONAL TEXT EFFECTS (Removed Neon)
   ========================================= */

.neon {
    text-shadow: 0 2px 8px rgba(30, 58, 138, 0.15);
    font-weight: 600;
}

/* ========================================
   CONTAINER ANIMATIONS
   ========================================= */

.container-shift {
    animation: container-shift-animation 0.3s ease-out;
}

@keyframes container-shift-animation {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ========================================
   STAGGER ANIMATIONS
   ========================================= */

.stagger-item {
    animation: stagger-animation 0.5s ease-out forwards;
    opacity: 0;
}

.stagger-item:nth-child(1) { animation-delay: 0s; }
.stagger-item:nth-child(2) { animation-delay: 0.1s; }
.stagger-item:nth-child(3) { animation-delay: 0.2s; }
.stagger-item:nth-child(4) { animation-delay: 0.3s; }
.stagger-item:nth-child(5) { animation-delay: 0.4s; }
.stagger-item:nth-child(6) { animation-delay: 0.5s; }

@keyframes stagger-animation {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   LOADING SKELETON
   ========================================= */

.skeleton {
    background: linear-gradient(
        90deg,
        var(--surface-light),
        var(--surface-lighter),
        var(--surface-light)
    );
    background-size: 200% 100%;
    animation: skeleton-loading 2s infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ========================================
   BLEND MODES
   ========================================= */

.blend-multiply {
    mix-blend-mode: multiply;
}

.blend-screen {
    mix-blend-mode: screen;
}

.blend-overlay {
    mix-blend-mode: overlay;
}

.blend-color-dodge {
    mix-blend-mode: color-dodge;
}

/* ========================================
   TRANSFORM UTILITIES
   ========================================= */

.translate-x-full {
    transform: translateX(100%);
}

.translate-y-full {
    transform: translateY(100%);
}

.rotate-45 {
    transform: rotate(45deg);
}

.scale-110 {
    transform: scale(1.1);
}

.skew-x {
    transform: skewX(-10deg);
}

/* ========================================
   NOTIFICATION ANIMATIONS
   ========================================= */

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.notification {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
}

.notification-success {
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
}

.notification-error {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

.notification-info {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}
/* ========================================
   FINTECH WEBSITE - RESPONSIVE CSS
   ========================================= */

/* ========================================
   TABLET DEVICES (768px - 1024px)
   ========================================= */

@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    section {
        padding: 5rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: fit-content;
    }

    .btn-lg {
        width: 100%;
    }

    .section-subtitle {
        max-width: 100%;
    }
}

/* ========================================
   MOBILE DEVICES (480px - 768px)
   ========================================= */

@media (max-width: 768px) {
    /* Root */
    :root {
        font-size: 14px;
    }

    body {
        font-size: 0.95rem;
    }

    /* Typography */
    h1 {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }

    h2 {
        font-size: clamp(1.25rem, 3vw, 2rem);
    }

    h3 {
        font-size: clamp(1rem, 2.5vw, 1.5rem);
    }

    p {
        font-size: 0.9rem;
    }

    /* Container */
    .container {
        padding: 0 1rem;
    }

    section {
        padding: 3rem 0;
    }

    section:nth-child(even) {
        background-color: var(--background-light);
    }

    /* Header & Navigation */
    .header {
        padding: 1rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--background-color);
        border-bottom: 1px solid var(--border-color);
        list-style: none;
        padding: 1rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        display: block;
        padding: 0.75rem 1.5rem;
        color: var(--text-secondary);
    }

    .nav-link::after {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-7px, -7px);
    }

    /* Hero Section */
    .hero {
        min-height: auto;
        padding: 4rem 0;
    }

    .hero-text {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .card-3d {
        display: none;
    }

    .stat {
        gap: 0.25rem;
    }

    .stat-value {
        font-size: 1.25rem;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    /* Dashboard */
    .dashboard-mockup {
        overflow-x: auto;
    }

    .dashboard-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .dashboard-header {
        padding: 1rem;
    }

    .dashboard-controls {
        gap: 0.5rem;
    }

    .dash-btn {
        width: 32px;
        height: 32px;
    }

    .dashboard-content {
        padding: 1.5rem 1rem;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image-container {
        display: none;
    }

    /* Earnings Section */
    .earnings-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .earning-card {
        padding: 2rem 1.5rem;
    }

    .earning-flow {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem 1rem;
    }

    .flow-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem 1rem;
    }

    .contact-info {
        gap: 1.5rem;
    }

    .info-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .info-icon {
        font-size: 1.5rem;
    }

    .info-card h4 {
        font-size: 1rem;
    }

    /* Modal */
    .modal-content {
        width: 95%;
        max-height: 85vh;
    }

    .auth-container {
        padding: 2rem 1.5rem;
    }

    .auth-form h2 {
        font-size: 1.5rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Buttons */
    .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
    }

    /* Section Header */
    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

/* ========================================
   SMALL MOBILE DEVICES (320px - 480px)
   ========================================= */

@media (max-width: 480px) {
    :root {
        font-size: 13px;
    }

    /* Hero */
    .hero {
        padding: 2rem 0;
        min-height: auto;
    }

    .hero-description {
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        gap: 1rem;
    }

    .hero-title {
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-stats {
        gap: 1.5rem;
        font-size: 0.85rem;
    }

    .stat-value {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Cards */
    .service-card {
        padding: 1.5rem 1rem;
    }

    .earning-card {
        padding: 1.5rem 1rem;
    }

    .testimonial-card {
        padding: 1.5rem 1rem;
    }

    /* Icons */
    .service-icon {
        font-size: 2rem;
    }

    .earning-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .avatar {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .point-icon {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }

    /* Typography */
    .service-title {
        font-size: 1.1rem;
    }

    .earning-card h3 {
        font-size: 1.1rem;
    }

    .testimonial-name {
        font-size: 0.95rem;
    }

    .testimonial-role {
        font-size: 0.8rem;
    }

    /* Dashboard */
    .dashboard-cards {
        gap: 0.75rem;
    }

    .dash-card {
        padding: 1rem;
    }

    .dash-card-label {
        font-size: 0.75rem;
    }

    .dash-card-value {
        font-size: 1.5rem;
    }

    .dashboard-chart {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .chart-title {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    /* Forms */
    .form-group {
        gap: 0.4rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.65rem 0.75rem;
        font-size: 0.9rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0.75rem;
    }

    .form-footer {
        font-size: 0.85rem;
        margin-top: 1rem;
    }

    /* Modal */
    .modal-content {
        width: 98%;
        max-height: 90vh;
    }

    .auth-container {
        padding: 1.5rem 1rem;
    }

    .auth-form h2 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .auth-toggle-btn {
        padding: 0.5rem 0;
    }

    .modal-close {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }

    /* Footer */
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-links a {
        width: 36px;
        height: 36px;
    }

    .footer-bottom {
        font-size: 0.85rem;
        padding-top: 1.5rem;
    }

    /* Buttons */
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Section */
    section {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    /* Horizontal Scroll Prevention */
    html {
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
    }

    /* Flex for stacking */
    .hero-buttons {
        width: 100%;
    }

    .btn-block {
        width: 100%;
    }

    /* Gradient Blobs */
    .blob-1 {
        width: 300px;
        height: 300px;
    }

    .blob-2 {
        width: 200px;
        height: 200px;
    }

    /* Code Block */
    .code-block {
        font-size: 0.75rem;
        padding: 1rem;
    }

    /* Dividers */
    .divider {
        margin: 1.5rem 0;
    }

    /* Badge */
    .badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.7rem;
    }

    /* Info Cards */
    .info-card h4 {
        font-size: 0.95rem;
    }

    .info-card p {
        font-size: 0.85rem;
    }

    .info-icon {
        font-size: 1.25rem;
    }
}

/* ========================================
   EXTRA SMALL (< 320px)
   ========================================= */

@media (max-width: 320px) {
    :root {
        font-size: 12px;
    }

    h1 {
        font-size: 1.25rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .service-card,
    .earning-card {
        padding: 1rem;
    }

    .contact-form-wrapper {
        padding: 1rem;
    }

    .hero-stats {
        gap: 0.75rem;
    }

    .stat-value {
        font-size: 0.85rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }
}

/* ========================================
   LANDSCAPE MODE (Mobile)
   ========================================= */

@media (max-height: 500px) and (orientation: landscape) {
    section {
        padding: 2rem 0;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-title {
        margin-bottom: 0.75rem;
    }

    .hero-description {
        margin-bottom: 1rem;
    }

    .hero-stats {
        margin-top: 1rem;
    }

    .nav-menu {
        position: relative;
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        background: transparent;
        border: none;
        padding: 0;
    }

    .nav-link {
        padding: 0;
        font-size: 0.85rem;
    }
}

/* ========================================
   PRINT STYLES
   ========================================= */

@media print {
    .header,
    .footer,
    .modal,
    .hamburger,
    .theme-toggle {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    section {
        page-break-inside: avoid;
    }

    a {
        color: inherit;
    }

    .btn {
        border: 1px solid black;
    }
}

/* ========================================
   RETINA SCREENS (High DPI)
   ========================================= */

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .service-card {
        border: 1px solid var(--border-color);
    }

    .card-3d {
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    }

    /* Timing Section */
    .timing-card {
        padding: 2rem 1rem;
        gap: 1rem;
    }

    .timing-icon {
        font-size: 2rem;
    }

    .timing-title {
        font-size: 1.25rem;
    }

    .timing-hours {
        font-size: 1rem;
    }

    /* Contact Email Section */
    .email-card {
        padding: 2rem 1rem;
        gap: 1rem;
    }

    .email-content {
        flex-direction: column;
        gap: 1rem;
    }

    .email-icon {
        font-size: 2rem;
    }

    .email-link {
        font-size: 1rem;
    }

    .copy-btn {
        padding: 0.65rem 0.85rem;
        font-size: 0.9rem;
    }

    /* Partners Section */
    .partners-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .partner-card {
        padding: 2rem 1.5rem;
    }

    .partner-avatar {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .partner-name {
        font-size: 1.2rem;
    }

    .partner-role {
        font-size: 0.85rem;
    }

    .partner-points li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* ========================================
   EXTRA SMALL DEVICES - NEW SECTIONS
   ========================================= */

@media (max-width: 480px) {
    /* Timing Card */
    .timing-card {
        padding: 1.5rem 1rem;
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .timing-icon {
        font-size: 1.75rem;
    }

    .timing-title {
        font-size: 1.15rem;
    }

    .timing-hours {
        font-size: 0.95rem;
    }

    .timing-subtitle {
        font-size: 0.85rem;
    }

    /* Email Card */
    .email-card {
        padding: 1.5rem 1rem;
    }

    .email-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .email-icon {
        font-size: 1.75rem;
    }

    .email-link {
        font-size: 0.95rem;
        word-break: break-all;
    }

    .copy-btn {
        padding: 0.6rem 0.75rem;
        font-size: 1rem;
    }

    /* Partners Cards */
    .partners-grid {
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }

    .partner-card {
        padding: 1.5rem 1rem;
    }

    .partner-avatar {
        width: 90px;
        height: 90px;
        font-size: 2rem;
    }

    .partner-name {
        font-size: 1.1rem;
    }

    .partner-role {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .partner-points {
        text-align: center;
        margin-bottom: 1rem;
    }

    .partner-points li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }

    .partner-social {
        gap: 0.75rem;
    }

    .social-icon {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }

    .partner-social {
        gap: 0.75rem;
    }

    .social-icon {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }
}



@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ========================================
   DARK MODE PREFERENCE
   ========================================= */

@media (prefers-color-scheme: dark) {
    :root {
        --background-color: #0F172A;
        --background-light: #1E293B;
        --text-primary: #F1F5F9;
    }
}

@media (prefers-color-scheme: light) {
    :root {
        --background-color: #F8FAFC;
        --background-light: #F1F5F9;
        --text-primary: #0F172A;
    }
}

/* ========================================
   CONTAINER QUERIES (Future)
   ========================================= */

@supports (container-type: inline-size) {
    .grid-container {
        container-type: inline-size;
    }

    @container (max-width: 600px) {
        .grid-adaptive {
            grid-template-columns: 1fr;
        }
    }
}
