/* Base Styles */
:root {
    --deep-ocean: #0B1F3A;
    --gold: #FFD700;
    --dark-navy: #0A0E27;
    --white: #FFFFFF;
    --light-gray: #E0E0E0;
    --card-bg: rgba(11, 31, 58, 0.6);
    --transition: all 0.3s ease;
    --red-accent: #DC143C;
    --orange-accent: #FF8C00;
    --cyan-accent: #00CED1;
    --dark-red: #8B0000;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Fredoka', sans-serif;
    background-color: var(--dark-navy);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(220, 20, 60, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 206, 209, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3, .logo {
    font-family: 'Pirata One', cursive;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #FFA500);
    color: var(--dark-navy);
    border: 3px solid var(--gold);
    font-weight: 800;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFA500, var(--gold));
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 3px solid var(--cyan-accent);
    font-weight: 700;
}

.btn-secondary:hover {
    background: var(--cyan-accent);
    color: var(--dark-navy);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 206, 209, 0.4);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('hero.jpg') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
}

/* Fallback for the specific URL if it doesn't load directly as an image */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(11, 31, 58, 0.8) 0%, rgba(8, 20, 32, 0.6) 100%);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(139, 0, 0, 0.3) 0%, transparent 50%, rgba(0, 206, 209, 0.2) 100%);
    z-index: 0;
    pointer-events: none;
    animation: heroGlow 6s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(8, 20, 32, 0.5), rgba(10, 14, 39, 0.7));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: heroTitleGlow 0.8s ease-out;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--light-gray);
    font-weight: 500;
}

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

/* Sections Common */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--orange-accent));
    margin: 20px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 140, 0, 0.3);
}

/* Features */
.features {
    background: linear-gradient(135deg, rgba(10, 14, 39, 1) 0%, rgba(11, 31, 58, 0.8) 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(180deg, rgba(220, 20, 60, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(11, 31, 58, 0.8) 0%, rgba(8, 20, 32, 0.6) 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    transition: all 0.5s ease;
    z-index: 0;
}

.feature-card:hover::before {
    top: -25%;
    left: -25%;
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2), inset 0 0 20px rgba(255, 215, 0, 0.05);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 50px rgba(255, 140, 0, 0.4);
    transform: scale(1.1) rotate(10deg);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.feature-card p {
    position: relative;
    z-index: 1;
    color: var(--light-gray);
}

/* Categories */
.categories {
    background: var(--deep-ocean) url('https://png.pngtree.com/background/20230528/original/pngtree-old-map-of-the-world-with-vintage-textures-picture-image_2773177.jpg') no-repeat center center/cover;
    background-blend-mode: overlay;
    position: relative;
}

.categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 0% 0%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(0, 206, 209, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 1;
}

.category-card {
    position: relative;
    height: 320px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 20px rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(11, 31, 58, 0.3);
    z-index: 1;
    transition: var(--transition);
}

.category-card:hover::before {
    background: rgba(11, 31, 58, 0.1);
}

.category-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 0;
}

.category-card:hover::after {
    opacity: 1;
    top: -25%;
    left: -25%;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-info {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.5), transparent);
    transition: var(--transition);
    z-index: 2;
}

.category-card:hover img {
    transform: scale(1.15);
}

.category-card:hover .category-info {
    padding-bottom: 50px;
    background: linear-gradient(to top, var(--deep-ocean), rgba(0,0,0,0.7), transparent);
}

.category-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.category-info p {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 8px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-info p {
    opacity: 0.9;
}

/* Vendor Section */
.vendor {
    background: linear-gradient(135deg, rgba(10, 14, 39, 1) 0%, rgba(11, 31, 58, 0.8) 100%);
    position: relative;
}

.vendor::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.vendor-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.vendor-text {
    flex: 1;
}

.vendor-text .section-title {
    text-align: left;
}

.vendor-features {
    margin: 40px 0;
}

.vendor-features li {
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    border-left: 4px solid var(--gold);
    background: rgba(255, 215, 0, 0.05);
    border-radius: 5px;
    transition: var(--transition);
    font-weight: 500;
}

.vendor-features li:hover {
    background: rgba(255, 215, 0, 0.1);
    padding-left: 25px;
}

.vendor-features i {
    color: var(--gold);
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.vendor-mockup {
    flex: 1;
}

.mockup-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-radius: 15px;
    overflow: hidden;
    height: 380px;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.7),
        0 0 40px rgba(255, 215, 0, 0.2),
        inset 0 0 30px rgba(255, 215, 0, 0.05);
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: var(--transition);
}

.mockup-container:hover {
    box-shadow:
        0 30px 80px rgba(0,0,0,0.8),
        0 0 60px rgba(255, 215, 0, 0.3),
        inset 0 0 30px rgba(255, 215, 0, 0.1);
    transform: translateY(-10px);
}

.mockup-header {
    height: 50px;
    background: linear-gradient(90deg, #333 0%, #2a2a2a 100%);
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px;
    box-shadow: inset 0 -2px 5px rgba(255, 215, 0, 0.1);
}

.mockup-header::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #FF6B6B;
    border-radius: 50%;
    margin-right: 10px;
}

.mockup-header::before {
    content: '';
    width: 12px;
    height: 12px;
    background: #FFD93D;
    border-radius: 50%;
    margin-right: 10px;
}

.mockup-body {
    display: flex;
    flex: 1;
}

.mockup-sidebar {
    width: 70px;
    background: #222;
    border-right: 1px solid rgba(255, 215, 0, 0.1);
}

.mockup-main {
    flex: 1;
    padding: 25px;
}

.mockup-chart {
    height: 100px;
    background: linear-gradient(135deg, #2a2a2a 0%, #333 100%);
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: inset 0 0 15px rgba(255, 215, 0, 0.05);
}

.mockup-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mockup-item {
    height: 25px;
    background: linear-gradient(90deg, #2a2a2a 0%, #333 100%);
    border-radius: 5px;
    width: 90%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.mockup-item:hover {
    width: 100%;
    background: linear-gradient(90deg, #333 0%, #3a3a3a 100%);
}

/* FAQ Section */
.faq {
    background: var(--dark-navy);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 206, 209, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.accordion {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.accordion-item {
    margin-bottom: 15px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    background: linear-gradient(135deg, rgba(11, 31, 58, 0.5) 0%, rgba(8, 20, 32, 0.3) 100%);
}

.accordion-item:hover {
    border-color: var(--gold);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.15);
}

.accordion-item.active {
    box-shadow:
        0 5px 25px rgba(255, 215, 0, 0.25),
        inset 0 0 20px rgba(255, 215, 0, 0.05);
    border-color: var(--gold);
}

.accordion-header {
    width: 100%;
    padding: 22px 28px;
    background: linear-gradient(90deg, rgba(11, 31, 58, 0.6) 0%, rgba(11, 31, 58, 0.3) 100%);
    border: none;
    color: var(--white);
    text-align: left;
    font-size: 1.15rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.accordion-header:hover {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
}

.accordion-item.active .accordion-header {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
    color: var(--gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.accordion-header i {
    transition: var(--transition);
    color: var(--gold);
}

.accordion-content {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-out;
    background: rgba(0,0,0,0.3);
}

.accordion-item.active .accordion-content {
    padding: 25px 28px;
    max-height: 250px;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.accordion-content p {
    color: var(--light-gray);
    line-height: 1.8;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--deep-ocean), var(--dark-navy)), url('https://png.pngtree.com/background/20230528/original/pngtree-old-map-of-the-world-with-vintage-textures-picture-image_2773177.jpg');
    background-blend-mode: overlay;
    background-size: cover;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta > * {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    animation: ctaPulse 2s ease-in-out infinite;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: var(--light-gray);
    font-weight: 500;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

@keyframes heroTitleGlow {
    0% {
        opacity: 0;
        transform: translateY(-20px);
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 4px 20px rgba(0, 0, 0, 0.7);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    }
}

@keyframes heroGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes ctaPulse {
    0%, 100% {
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), 0 0 10px rgba(255, 215, 0, 0.2);
    }
    50% {
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 215, 0, 0.5);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes ripple {
    0% {
        opacity: 1;
        transform: scale(0);
    }
    100% {
        opacity: 0;
        transform: scale(4);
    }
}

/* Ripple effect for buttons */
.btn span {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

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

    .hero p {
        font-size: 1.1rem;
    }
    
    .vendor-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .section-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

    .cta h2 {
        font-size: 2rem;
    }

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

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

    .accordion {
        max-width: 100%;
    }

    .mockup-container {
        height: 280px;
    }
}
