:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --accent-orange: #ff6b35;
    --light-orange: #ff8c42;
    --text-light: #e0e0e0;
    --text-gray: #b0b0b0;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--primary-black);
    color: var(--text-light);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navigation */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--accent-orange);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-orange) !important;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--accent-orange);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(45deg, var(--primary-black), var(--secondary-black));
    display: flex;
    align-items: center;
    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 100 100"><circle cx="20" cy="20" r="1" fill="%23ff6b35" opacity="0.3"/><circle cx="80" cy="40" r="0.5" fill="%23ff6b35" opacity="0.5"/><circle cx="40" cy="80" r="1.5" fill="%23ff6b35" opacity="0.2"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

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

.hero h1 {
    font-size: 4rem;
    color: var(--accent-orange);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    margin-bottom: 30px;
    animation: slideInUp 1s ease-out;
}

.hero p {
    font-size: 1.4rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    animation: slideInUp 1s ease-out 0.2s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-rock {
    background: linear-gradient(45deg, var(--accent-orange), var(--light-orange));
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-rock:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
    background: linear-gradient(45deg, var(--light-orange), var(--accent-orange));
}

/* Video Section */
.video-container {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 60px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Section Styling */
.section {
    padding: 100px 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--secondary-black);
}

.section-title {
    font-size: 3rem;
    color: var(--accent-orange);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, var(--accent-orange), var(--light-orange));
    margin: 20px auto;
    border-radius: 2px;
}

/* Testimonials */
.testimonial-card {
    background: var(--secondary-black);
    border: 2px solid var(--accent-orange);
    border-radius: 15px;
    padding: 30px;
    margin: 20px 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-orange), var(--light-orange));
    z-index: -1;
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
}

.testimonial-author {
    color: var(--accent-orange);
    font-weight: 600;
    text-transform: uppercase;
}

/* Pricing Cards */
.pricing-card {
    background: var(--secondary-black);
    border-radius: 20px;
    padding: 40px 30px;
    margin: 20px 0;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-orange);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.pricing-card h4 {
    color: var(--accent-orange);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.pricing-price {
    font-size: 2.5rem;
    color: var(--accent-orange);
    font-weight: 700;
    margin: 20px 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-features li {
    padding: 8px 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 25px;
}

.pricing-features li::before {
    content: '▶';
    color: var(--accent-orange);
    position: absolute;
    left: 0;
}

/* Contact Section */
.contact-info {
    text-align: center;
    padding: 40px 0;
}

.contact-email {
    font-size: 1.5rem;
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-email:hover {
    color: var(--light-orange);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.social-links {
    margin: 40px 0;
}

.social-links a {
    color: var(--text-light);
    font-size: 2rem;
    margin: 0 20px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-orange);
    transform: translateY(-5px) scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .video-container {
        height: 250px;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 60px 0;
    }
}

/* Smooth scrolling for older browsers */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-black);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--light-orange);
}