/* Variables */
:root {
    --primary-color: #FF6B00;
    --secondary-color: #00BFB3;
    --dark-bg: #121212;
    --darker-bg: #0A0A0A;
    --light-text: #FFFFFF;
    --gray-text: #AAAAAA;
    --section-bg: #1A1A1A;
    --card-bg: #232323;
    --transition: all 0.3s ease;
    --radius: 6px;
    --shadow: 0 5px 15px rgba(0,0,0,0.2);
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 100%;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

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

ul {
    list-style: none;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo {
    width: 200px;
    height: 50px;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    font-weight: 600;
    position: relative;
    padding-bottom: 0.3rem;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background-color: var(--primary-color);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius);
    font-weight: bold;
}

.btn-nav:hover {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

/* Menu Toggle for Mobile */
.menu-toggle {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.hamburger, .hamburger::before, .hamburger::after {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--light-text);
    position: absolute;
    transition: var(--transition);
}

.hamburger {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger::before {
    content: '';
    top: -8px;
}

.hamburger::after {
    content: '';
    bottom: -8px;
}

.menu-toggle.active .hamburger {
    background-color: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Banner */
.banner {
    display: flex;
    min-height: 100vh;
    align-items: center;
    padding: 8rem 2rem 5rem;
    background-color: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 0, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 80% 80%, rgba(0, 191, 179, 0.1) 0%, transparent 25%);
}

.banner-text {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.banner h1 {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner p {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 2.5rem;
}

.highlight {
    color: var(--primary-color);
    position: relative;
    padding: 0 5px;
}

.highlight::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: var(--secondary-color);
    opacity: 0.3;
    z-index: -1;
}

.banner-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.banner-svg {
    width: 100%;
    max-width: 500px;
}

.banner-buttons {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: var(--radius);
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn-sm:hover {
    background-color: var(--secondary-color);
}

/* Features Section */
.features {
    padding: 5rem 2rem;
    background-color: var(--section-bg);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.feature-box {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.feature-box h3 {
    margin-bottom: 1rem;
}

/* Gallery */
.gallery {
    padding: 5rem 2rem;
    background-color: var(--darker-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.gallery-item svg {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover svg {
    transform: scale(1.05);
}

.gallery-cta {
    text-align: center;
    margin-top: 3rem;
}

/* How It Works */
.how-it-works {
    padding: 5rem 2rem;
    background-color: var(--section-bg);
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
    flex: 1;
    padding: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--light-text);
}

.step-arrow {
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.9) 0%, rgba(0, 191, 179, 0.9) 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    color: var(--light-text);
}

.cta-section h2::after {
    background: var(--light-text);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-section .btn {
    background-color: var(--dark-bg);
    color: var(--light-text);
    border: 2px solid var(--dark-bg);
}

.cta-section .btn:hover {
    background-color: transparent;
    color: var(--dark-bg);
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    padding: 4rem 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto 3rem;
    flex-wrap: wrap;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-col h4 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--gray-text);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-icon {
    margin-bottom: 1rem;
}

.footer-bottom p {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Media Queries */
@media (max-width: 991px) {
    h1 {
        font-size: 2.8rem;
    }
    
    .banner {
        flex-direction: column;
        padding-top: 6rem;
        text-align: center;
    }
    
    .banner-text {
        margin-bottom: 3rem;
    }
    
    .banner-buttons {
        justify-content: center;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        width: 100%;
        justify-content: space-between;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.3rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--darker-bg);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }
    
    .nav-menu.show {
        transform: translateY(0);
    }
    
    .footer-links {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .banner h1 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
    }
}
