@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --bg-color: #020617;
    --surface-color: rgba(15, 23, 42, 0.7);
    --surface-light: rgba(255, 255, 255, 0.05);
    --primary-gradient: linear-gradient(135deg, #001d4a 0%, #003566 100%);
    --secondary-gradient: linear-gradient(135deg, #da2128 0%, #ff4d4d 100%);
    --accent-gradient: linear-gradient(135deg, #da2128 0%, #b31b21 100%);
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Effects */
    --glass-bg: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: url('../assets/icons/cursor.png'), auto;
}

a, button, .btn, input[type="submit"], input[type="button"], label, select {
    cursor: url('../assets/icons/cursor.png'), pointer;
}

/* Background Elements */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    width: 40vw;
    height: 40vw;
    background: var(--primary-gradient);
    filter: blur(120px);
    opacity: 0.15;
    border-radius: 50%;
}

.blob-1 { top: -10%; left: -10%; background: #001d4a; }
.blob-2 { bottom: -10%; right: -10%; background: #da2128; }
.blob-3 { top: 40%; left: 50%; background: #003566; }

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #da2128 0%, #b31b21 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(218, 33, 40, 0.5);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-outline:hover {
    background: var(--surface-light);
    border-color: var(--text-muted);
}

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

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

nav.scrolled {
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(15px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(218, 33, 40, 0.2);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo span {
    color: #da2128;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
    color: white;
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-color);
    padding: 24px;
    border-top: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* About Summary Section */
.about-summary {
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
}

.about-summary .why-grid {
    gap: 100px;
}

.about-summary .why-content h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.about-summary .why-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* Animations */
.animate-left { opacity: 0; transform: translateX(-50px); transition: var(--transition); }
.animate-right { opacity: 0; transform: translateX(50px); transition: var(--transition); }
.animate-up { opacity: 0; transform: translateY(50px); transition: var(--transition); }

.animate-in { opacity: 1; transform: translate(0); }

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
}

.badge-secure {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Sections Global */
section {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.service-card {
    padding: 32px;
    text-align: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.4);
}

.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.icon-box.purple { background: rgba(0, 29, 74, 0.4); color: #4d87ff; }
.icon-box.blue { background: rgba(218, 33, 40, 0.1); color: #da2128; }
.icon-box.cyan { background: rgba(0, 53, 102, 0.3); color: #5fb3f5; }
.icon-box.orange { background: rgba(218, 33, 40, 0.15); color: #ff6b6b; }

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.service-card a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

/* Categories Section */
.categories-section {
    margin: 100px 0;
}

.categories-header {
    padding: 80px 40px;
    text-align: center;
}

.categories-header h2 {
    margin-bottom: 60px;
    font-size: 2rem;
    font-weight: 700;
}

.categories-scroll {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 20px 0;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    min-width: 120px;
    color: var(--text-muted);
    transition: var(--transition);
    cursor: pointer;
}

.category-item i, .category-item svg {
    width: 60px !important;
    height: 60px !important;
    padding: 16px;
    background: rgba(218, 33, 40, 0.08);
    color: #da2128;
    border: 1px solid rgba(218, 33, 40, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.category-item span {
    font-weight: 500;
    font-size: 0.95rem;
}

.category-item:hover {
    color: white;
    transform: translateY(-8px);
}

.category-item:hover i {
    background: #da2128;
    color: white;
    box-shadow: 0 10px 20px -5px rgba(218, 33, 40, 0.5);
}

/* Why Choose Us */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.features-list {
    list-style: none;
    margin-top: 32px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    padding: 28px 32px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.features-list li:hover {
    transform: translateX(10px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(218, 33, 40, 0.3);
}

.features-list i {
    width: 48px;
    height: 48px;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.feature-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

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

.why-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.visual-card {
    padding: 40px;
    text-align: center;
    max-width: 300px;
    animation: floating 3s ease-in-out infinite;
}

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

.success-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
}

.visual-card .amount {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 16px;
    color: #10b981;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.testimonial-card {
    padding: 40px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Footer */
footer {
    padding: 100px 0 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-top: 1px solid var(--border-color);
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 24px 0;
    max-width: 320px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--surface-light);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-links a:hover {
    color: white;
    background: #da2128;
    border-color: #da2128;
    transform: translateY(-5px);
}

.footer-links h4 {
    margin-bottom: 32px;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

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

.footer-links ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 14px;
}

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

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-links ul li i,
.footer-links ul li svg {
    color: #da2128;
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #10b981;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero h1 { font-size: 2.8rem; }
    .hero-btns { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .testimonial-grid { grid-template-columns: 1fr; }
}
