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

body {
    font-family: 'Lato', Helvetica, Arial, 'Lucida Grande', sans-serif;
    font-size: 16px;
    line-height: 1.7em;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Rubik', Helvetica, Arial, 'Lucida Grande', sans-serif;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 70px;
    line-height: 1em;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

h2 {
    font-size: 44px;
    line-height: 1em;
    margin-bottom: 30px;
    text-align: center;
}

h3 {
    font-size: 26px;
    line-height: 1em;
    margin-bottom: 20px;
}

p {
    margin-bottom: 1em;
    font-size: 16px;
    line-height: 1.7em;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #2c2f33 0%, rgba(0,0,0,0) 100%);
    opacity: 0.8;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 0;
}

.hero-section h1 {
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    margin-bottom: 10px;
}

.hero-section h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-description {
    font-size: 18px;
    line-height: 1.7em;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    margin: 10px;
    text-decoration: none;
    border-radius: 100px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: #eb5244;
    color: #fff;
    box-shadow: 0px 12px 28px -6px rgba(20, 241, 217, 0.24);
}

.btn-primary:hover {
    letter-spacing: 2px;
    transform: translateY(-2px);
    box-shadow: 0px 15px 35px -8px rgba(20, 241, 217, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #14f1d9;
    border: 2px solid #14f1d9;
}

.btn-secondary:hover {
    background-color: #14f1d9;
    color: #2c2f33;
    letter-spacing: 2px;
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 45px;
    font-size: 16px;
}

.cta-buttons {
    margin-top: 40px;
}

/* About Section */
.about-section {
    background: linear-gradient(210deg, #f26e23 0%, #e33e5a 100%);
    background-color: #eb5244;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.about-section h2 {
    color: #fff;
    margin-bottom: 40px;
}

.about-section p {
    font-size: 18px;
    line-height: 1.7em;
    max-width: 800px;
    margin: 0 auto 20px;
    color: rgba(255,255,255,0.95);
}

/* About Section Styling */
.about-section h3 {
    color: #fff;
    font-size: 32px;
    margin-top: 60px;
    margin-bottom: 30px;
    text-align: center;
}

.about-section .cta-buttons {
    text-align: center;
    margin: 40px 0;
}

.about-section .btn-primary {
    background-color: #fff;
    color: #eb5244;
    box-shadow: 0px 12px 28px -6px rgba(255, 255, 255, 0.3);
}

.about-section .btn-primary:hover {
    background-color: #f8f8f8;
    color: #eb5244;
    letter-spacing: 2px;
    transform: translateY(-2px);
    box-shadow: 0px 15px 35px -8px rgba(255, 255, 255, 0.4);
}

/* Stats Section */
.stats-section {
    margin-top: 60px;
    text-align: center;
}

.stats-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.stats-intro {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
}

.stats-outro {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin: 10px 0 0 0;
    font-style: italic;
}

.counter-number {
    font-family: 'Rubik', sans-serif;
    font-size: 80px;
    font-weight: 700;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    margin: 0;
    line-height: 0.8;
}

.counter-text {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    text-transform: none;
    letter-spacing: normal;
    text-shadow: none;
}

/* Services Section */
.services-section {
    background-color: #2c2f33;
    color: #fff;
    padding: 100px 0;
}

.services-section h2 {
    color: #fff;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    background-color: rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.service-card:hover {
    background-color: rgba(235,82,68,0.1);
    border-color: rgba(235,82,68,0.3);
    transform: translateY(-5px);
}

.service-card h3 {
    color: #14f1d9;
    margin-bottom: 20px;
    font-size: 22px;
}

.service-card p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    line-height: 1.6em;
}

/* FAQ Section */
.faq-section {
    background-image: url('../assets/shadowlands-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 100px 0;
    color: #fff;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(247, 247, 247, 0.1);
    z-index: 1;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

.faq-section h2 {
    color: #fff;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.faq-item {
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.faq-item h3 {
    color: #14f1d9;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.faq-item p {
    font-size: 17px;
    line-height: 1.7em;
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.faq-item ul {
    margin-left: 30px;
    margin-top: 10px;
}

.faq-item li {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.7em;
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.faq-item ol {
    margin-left: 30px;
    margin-top: 10px;
}

.faq-item ol li {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.7em;
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

/* Booster Section */
.booster-section {
    background-color: #2c2f33;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.booster-section h2 {
    color: #fff;
    margin-bottom: 40px;
}

.booster-section p {
    font-size: 18px;
    line-height: 1.7em;
    max-width: 800px;
    margin: 0 auto 20px;
    color: rgba(255,255,255,0.95);
}

.booster-section .cta-buttons {
    margin-top: 40px;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(180deg, #2c2f33 0%, rgba(9,23,68,0) 100%);
    background-color: #091744;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.final-cta-section h2 {
    color: #fff;
    margin-bottom: 20px;
}

.final-cta-section p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: #2c2f33;
    color: #999;
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

footer p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #999;
}

/* Responsive Design */
@media (max-width: 980px) {
    .container {
        padding: 0 8%;
    }
    
    h1 {
        font-size: 50px;
    }
    
    h2 {
        font-size: 36px;
    }
    
    .hero-section h2 {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .btn {
        display: block;
        margin: 10px auto;
        max-width: 280px;
    }
    
    .about-section,
    .services-section,
    .faq-section,
    .final-cta-section {
        padding: 80px 0;
    }
    
    .service-card {
        padding: 30px 25px;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 40px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .hero-section h2 {
        font-size: 20px;
    }
    
    .hero-content {
        padding: 60px 0;
    }
    
    .about-section p,
    .final-cta-section p {
        font-size: 16px;
    }
    
    .faq-item h3 {
        font-size: 20px;
    }
    
    .about-section,
    .services-section,
    .faq-section,
    .final-cta-section {
        padding: 60px 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.service-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }