/* Premium Landing Page Styles */
:root {
    --orange-primary: #FF7B00;
    --orange-dark: #cc6200;
    --black-deep: #0a0a0a;
    --black-primary: #111111;
    --black-card: #1a1a1a;
    --white-text: #ffffff;
    --gray-text: #e0e0e0;
}

/* Base Dark Theme */
body.dark-landing {
    background: linear-gradient(135deg, var(--black-deep) 0%, var(--black-primary) 100%);
    color: var(--white-text);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Header Styling */
.header {
    background: var(--black-deep) !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .navbar {
    background: var(--black-deep) !important;
}

.header .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
}

.header .nav-link:hover {
    color: #FF7B00 !important;
}

/* Hero Section */
.hero-gradient {
    background: var(--black-deep);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 123, 0, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 123, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 123, 0, 0.5);
    box-shadow: 0 10px 40px rgba(255, 123, 0, 0.2);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #FF7B00 0%, #FFB84D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Premium Buttons */
.btn-premium {
    background: linear-gradient(135deg, #FF7B00 0%, #cc6200 100%);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 123, 0, 0.3);
}

.btn-premium:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 123, 0, 0.4);
    color: white;
}

.btn-outline-premium {
    background: transparent;
    border: 2px solid #FF7B00;
    color: #FF7B00;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline-premium:hover {
    background: #FF7B00;
    color: white;
    transform: translateY(-2px);
}

/* Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF7B00 0%, #cc6200 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 123, 0, 0.3);
}

/* Step Cards */
.step-card {
    background: rgba(26, 26, 26, 0.8);
    border-left: 4px solid #FF7B00;
    padding: 2rem;
    border-radius: 15px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF7B00 0%, #cc6200 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Section Spacing */
.section-premium {
    padding: 6rem 0;
    position: relative;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-gradient {
        min-height: auto;
        padding: 4rem 0;
    }

    .btn-premium,
    .btn-outline-premium {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .glass-card {
        padding: 1.5rem;
    }
}

/* Mobile Menu Styles */
@media (max-width: 991px) {
    .offcanvas-collapse {
        position: fixed;
        top: 70px;
        bottom: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        padding: 2rem;
        background: var(--black-card);
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
    }

    .offcanvas-collapse.open {
        left: 0;
    }

    .navbar-toggler__bar {
        transition: all 0.3s ease;
    }

    .navbar-toggler__bar.active.navbar-toggler__bar--top {
        transform: rotate(45deg) translateY(8px);
    }

    .navbar-toggler__bar.active.navbar-toggler__bar--middle {
        opacity: 0;
    }

    .navbar-toggler__bar.active.navbar-toggler__bar--bottom {
        transform: rotate(-45deg) translateY(-8px);
    }
}


/* FAQ Section */
.faq-accordion .accordion-item {
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 123, 0, 0.2);
    border-radius: 15px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: transparent;
    color: var(--white-text);
    padding: 1.5rem;
    font-weight: 600;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(255, 123, 0, 0.1);
    color: var(--orange-primary);
    border-bottom: 1px solid rgba(255, 123, 0, 0.2);
}

.faq-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: none;
}

.faq-accordion .accordion-body {
    padding: 1.5rem;
    color: var(--gray-text);
    line-height: 1.6;
}