/* =====================================================
   4RABETPRO - PURE CSS STYLES
   ===================================================== */

/* CSS Variables */
:root {
    --bg-deep: #080a0f;
    --card-bg: rgba(17, 24, 39, 0.7);
    --accent-primary: #3b82f6;
    --accent-secondary: #8b5cf6;
    --text-white: #f1f5f9;
    --text-slate-300: #cbd5e1;
    --text-slate-400: #94a3b8;
    --text-slate-500: #64748b;
    --text-slate-600: #475569;
    --green-500: #22c55e;
    --yellow-400: #facc15;
    --purple-500: #a855f7;
    --pink-500: #ec4899;
    --emerald-500: #10b981;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

ul {
    list-style: none;
}

/* Typography */
.heading-font {
    font-family: 'Orbitron', sans-serif;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Flex utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-1 {
    flex: 1;
}

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

/* Grid */
.grid {
    display: grid;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* Text utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-4xl { font-size: 2.25rem; }

.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.leading-none { line-height: 1; }

.tracking-tight { letter-spacing: -0.025em; }
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-widest { letter-spacing: 0.1em; }

/* Colors */
.text-white { color: #ffffff; }
.text-blue-400 { color: #60a5fa; }
.text-blue-500 { color: #3b82f6; }
.text-purple-500 { color: #a855f7; }
.text-green-500 { color: #22c55e; }
.text-yellow-400 { color: #facc15; }
.text-slate-300 { color: #cbd5e1; }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }

/* Backgrounds */
.bg-black { background-color: #000000; }

/* Spacing */
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }

.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }

.pt-12 { padding-top: 3rem; }
.pt-24 { padding-top: 6rem; }
.pb-12 { padding-bottom: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.mt-3 { margin-top: 0.75rem; }
.mt-8 { margin-top: 2rem; }
.mt-16 { margin-top: 4rem; }

/* Width/Height */
.w-full { width: 100%; }
.min-w-full { min-width: 100%; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }

.w-2 { width: 0.5rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-72 { width: 18rem; }

.h-2 { height: 0.5rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }

/* Border radius */
.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }

/* Positioning */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }

.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-90 { z-index: 90; }
.z-100 { z-index: 100; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Display */
.hidden { display: none; }
.inline-block { display: inline-block; }
.block { display: block; }

/* Opacity */
.opacity-40 { opacity: 0.4; }
.opacity-50 { opacity: 0.5; }

/* Transitions */
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease; }
.transition-transform { transition: transform 0.3s ease; }

/* Transform */
.rotate-6 { transform: rotate(6deg); }
.rotate-180 { transform: rotate(180deg); }

/* Filters */
.grayscale { filter: grayscale(100%); }
.invert { filter: invert(1); }

/* =====================================================
   CUSTOM COMPONENTS
   ===================================================== */

/* Neon Border Effect */
.neon-border {
    position: relative;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.neon-border:hover {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
}

/* Image Container */
.img-container {
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 1.5rem;
    position: relative;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.img-container:hover img {
    transform: scale(1.08);
}

/* Glass Card */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Main Button */
.btn-main {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    transition: all 0.3s ease;
}

.btn-main:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Navigation */
.nav-fixed {
    background: rgba(8, 10, 15, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#main-nav {
    transition: all 0.3s ease;
    padding: 1rem 0;
}

/* FAQ Accordion */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    opacity: 0;
}

.faq-item.active .faq-content {
    max-height: 400px;
    opacity: 1;
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent-primary);
}

.faq-icon {
    transition: transform 0.3s ease;
}

/* Testimonial Slider */
.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* SEO Rich Text */
.seo-rich-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
}

.seo-rich-text p {
    margin-bottom: 1.25rem;
    color: var(--text-slate-400);
}

.seo-rich-text b {
    color: var(--accent-primary);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(to right, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    overflow: hidden;
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(8, 10, 15, 0.8), #080a0f);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1;
}

/* Section backgrounds */
.bg-section-alt {
    background-color: #0a0d14;
}

.bg-blue-overlay {
    background-color: rgba(30, 58, 138, 0.05);
}

/* Card borders */
.border-l-blue {
    border-left: 4px solid var(--accent-primary);
}

.border-l-purple {
    border-left: 4px solid var(--accent-secondary);
}

.border-t-blue {
    border-top: 2px solid rgba(59, 130, 246, 0.5);
}

.border-t-purple {
    border-top: 2px solid rgba(168, 85, 247, 0.5);
}

.border-blue-glow {
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Footer */
.footer {
    padding-top: 6rem;
    padding-bottom: 3rem;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Number steps */
.step-number {
    position: absolute;
    top: -1rem;
    right: -1rem;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

/* Bonus badge */
.bonus-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 9999px;
}

/* Icon circles */
.icon-circle {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.icon-circle-purple {
    background: linear-gradient(to bottom right, #a855f7, #ec4899);
}

.icon-circle-green {
    background: linear-gradient(to bottom right, #22c55e, #10b981);
}

/* Bonus step circles */
.bonus-step {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.2);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
}

/* Slider controls */
.slider-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.slider-btn:hover {
    background-color: var(--accent-primary);
}

/* Drop shadow for app mockup */
.app-shadow {
    filter: drop-shadow(0 0 80px rgba(59, 130, 246, 0.3));
}

/* Hover effects */
.hover-bg-white-5:hover {
    background: rgba(255, 255, 255, 0.05);
}

.hover-bg-blue:hover {
    background-color: var(--accent-primary);
}

.hover-bg-purple:hover {
    background-color: var(--accent-secondary);
}

.hover-bg-green:hover {
    background-color: var(--green-500);
}

.hover-text-white:hover {
    color: #ffffff;
}

.hover-text-blue:hover {
    color: var(--accent-primary);
}

/* =====================================================
   RESPONSIVE STYLES
   ===================================================== */

/* Small screens and above */
@media (min-width: 640px) {
    .sm-flex-row {
        flex-direction: row;
    }
    
    .sm-grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sm-block {
        display: block;
    }
}

/* Medium screens and above */
@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .md-grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .md-grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .md-grid-cols-6 {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .md-text-xl {
        font-size: 1.25rem;
    }
    
    .md-text-6xl {
        font-size: 3.75rem;
    }
    
    .md-p-20 {
        padding: 5rem;
    }
    
    .md-w-80 {
        width: 20rem;
    }
    
    .md-min-w-half {
        min-width: 50%;
    }
    
    .md-gap-6 {
        gap: 1.5rem;
    }
    
    .md-p-3 {
        padding: 0.75rem;
    }
}

/* Large screens and above */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
    
    #main-nav {
        padding: 1.5rem 0;
    }
    
    .lg-grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lg-grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .lg-flex-row {
        flex-direction: row;
    }
}

/* Utility classes for specific elements */
.nav-link {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-slate-400);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.quick-link {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    text-align: center;
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: background-color 0.3s ease;
}

.quick-link:hover {
    background: rgba(59, 130, 246, 0.2);
}

/* Trust badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all 0.7s ease;
}

.trust-badges:hover {
    filter: grayscale(0);
}

.trust-badges img {
    height: 1.5rem;
}

.trust-badges .visa {
    height: 1.25rem;
    filter: invert(1);
}

.trust-badges .upi {
    height: 1.5rem;
    filter: invert(1);
}

.trust-badges .mastercard {
    height: 2rem;
}

/* Banking rows */
.banking-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
}

/* Space utilities */
.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.space-y-8 > * + * {
    margin-top: 2rem;
}

/* Border utilities */
.border-t {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Special rounded corners */
.rounded-hero-card {
    border-radius: 3rem;
}

.rounded-huge {
    border-radius: 4rem;
}

.rounded-card {
    border-radius: 2.5rem;
}

/* Image heights */
.img-tall {
    height: 450px;
}
