:root {
    --primary-red: #f83600;
    --primary-yellow: #f9d423;
    --primary-dark: #d32f02;
    --secondary-orange: #ff8500;
    --accent-gold: #ffb700;
    --text-dark: #1a0e00;
    --text-light: #8b4513;
    --bg-light: #fffbf0;
    --white: #ffffff;
    --border-light: #ffe4b5;
    --gradient-main: linear-gradient(135deg, #f83600 0%, #f9d423 100%);
    --gradient-reverse: linear-gradient(135deg, #f9d423 0%, #f83600 100%);
}

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

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(248, 54, 0, 0.2);
    background: rgba(255, 255, 255, 0.98);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-red) !important;
    transform: translateY(-2px);
}

.btn-login {
    background: var(--gradient-main);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-login:hover {
    background: var(--gradient-reverse);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(248, 54, 0, 0.4);
}

/* Hero Section */
.hero {
    background: var(--gradient-main);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff" fill-opacity="0.05" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 1px,
        transparent 1px
    );
    background-size: 50px 50px;
    animation: float 20s infinite linear;
    opacity: 0.3;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(-50px, -50px) rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 400;
}

.btn-cta {
    background: white;
    color: var(--primary-red);
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: var(--primary-red);
    background: #fff;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(248, 54, 0, 0.15);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-main);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(248, 54, 0, 0.25);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-main);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 35px;
    color: white;
    box-shadow: 0 8px 25px rgba(248, 54, 0, 0.3);
}

.feature-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-red);
}

.service-item:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(248, 54, 0, 0.15);
    transform: translateX(10px);
    border-left-color: var(--primary-yellow);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-main);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 25px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(248, 54, 0, 0.3);
}

.service-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.service-content p {
    color: var(--text-light);
    margin: 0;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: var(--gradient-main);
    color: white;
    position: relative;
}

.stats::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23ffffff" fill-opacity="0.1"/></svg>');
    background-size: 30px 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-light);
}

.step-item {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(248, 54, 0, 0.4);
}

.step-item h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-item p {
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--text-dark);
    color: white;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--text-dark) 25%, transparent 25%),
        linear-gradient(-45deg, var(--text-dark) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--text-dark) 75%),
        linear-gradient(-45deg, transparent 75%, var(--text-dark) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.1;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.btn-cta-white {
    background: white;
    color: var(--primary-red);
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    margin: 0 10px;
    position: relative;
    z-index: 1;
}

.btn-cta-gradient {
    background: var(--gradient-main);
    color: white;
    border: 2px solid transparent;
    padding: 13px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin: 0 10px;
    position: relative;
    z-index: 1;
}

.btn-cta-white:hover,
.btn-cta-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(248, 54, 0, 0.3);
}

.btn-cta-gradient:hover {
    background: var(--gradient-reverse);
    color: white;
}

.btn-cta-white:hover {
    color: var(--primary-red);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a0e00 0%, #3d1a00 100%);
    color: white;
    padding: 50px 0 30px;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer p,
.footer a {
    color: #d4a574;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--primary-yellow);
    text-decoration: none;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--gradient-main);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
    color: white;
}

.social-links a:hover {
    background: var(--gradient-reverse);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(248, 54, 0, 0.4);
}

.footer-bottom {
    border-top: 1px solid #5a3d2a;
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(248, 54, 0, 0.1);
    z-index: 9999;
}

.scroll-progress {
    height: 100%;
    background: var(--gradient-main);
    width: 0%;
    transition: width 0.3s ease;
}

/* Additional animations and effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(248, 54, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(248, 54, 0, 0);
    }
}

.btn-cta {
    animation: pulse 2s infinite;
}

/* Enhanced scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f83600 0%, #f9d423 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(248, 54, 0, 0.4);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(248, 54, 0, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .feature-card {
        margin-bottom: 30px;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .service-icon {
        margin: 0 auto 15px;
    }

    .btn-cta-white,
    .btn-cta-gradient {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

/* Additional enhanced effects */
@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;
    }
}

@keyframes ripple {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

.btn {
    position: relative;
    overflow: hidden;
}

.clicked {
    transform: scale(0.98);
}

.service-icon,
.feature-icon {
    transition: transform 0.3s ease;
}

.notification {
    font-weight: 500;
    border-left: 4px solid rgba(255, 255, 255, 0.5);
}
