/* --- Google Fonts --- */
/* font-family: 'Montserrat', sans-serif; (For Headings) */
/* font-family: 'Open Sans', sans-serif; (For Body) */

/* --- CSS Variables --- */
:root {
    --color-black: #0C0C0C;
    --color-dark-grey: #1a1a1a;
    --color-white: #FFFFFF;
    --color-red: #FF0000;
    --glow-red: rgba(255, 0, 0, 0.4);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* --- Global Styles --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
h2 { font-size: 2.8rem; text-align: center; margin-bottom: 50px; font-weight: 700; }
h3 { font-size: 1.5rem; margin-bottom: 10px; font-family: var(--font-heading); color: var(--color-white); }
p { color: #ccc; margin-bottom: 1rem; }
.content-section { padding: 80px 0; }
.bg-dark { background-color: var(--color-dark-grey); }
.section-subtitle { text-align: center; max-width: 600px; margin: -30px auto 50px auto; color: #aaa; font-size: 1.1rem; }

/* --- Header --- */
.main-header {
    background: transparent; padding: 20px 0; position: fixed;
    width: 100%; top: 0; z-index: 100; transition: background-color 0.4s ease, padding 0.4s ease;
}
.main-header.scrolled {
    background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(10px);
    padding: 15px 0; border-bottom: 1px solid #222;
}
.main-header .container { display: flex; justify-content: space-between; align-items: center; }
.main-header .logo img { height: 35px; transition: height 0.4s ease; }
.main-header.scrolled .logo img { height: 30px; }
.main-nav ul { display: flex; list-style: none; }
.main-nav ul li { margin-left: 30px; }
.main-nav ul li a {
    color: var(--color-white); font-weight: 600; transition: color 0.3s;
    font-size: 0.9rem; position: relative; padding: 5px 0; text-decoration: none;
}
.main-nav ul li a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background-color: var(--color-red); transition: width 0.3s ease-out;
}
.main-nav ul li a:hover::after { width: 100%; }
.header-cta {
    background-color: var(--color-red); color: var(--color-white); padding: 8px 16px;
    border-radius: 5px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
    opacity: 0; transform: translateY(-10px); transition: opacity 0.4s, transform 0.4s; text-decoration: none;
}
.main-header.scrolled .header-cta { opacity: 1; transform: translateY(0); }
.header-cta:hover { background-color: #fff; color: var(--color-red); }

/* --- Hero Section with Parallax --- */
.parallax-hero {
    min-height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center;
    background-image: url('../images/hero-desktop.jpg'); 
    background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; position: relative;
}
.parallax-hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
}
#hero .container { position: relative; z-index: 2; }
#hero .hero-title { font-size: 4rem; font-weight: 900; font-family: var(--font-heading); line-height: 1.1; color: var(--color-white); }
#hero .hero-subtitle { font-size: 1.1rem; max-width: 600px; margin: 20px auto 30px auto; color: #eee; }
.cta-button {
    display: inline-block; padding: 15px 35px; font-family: var(--font-heading);
    font-weight: 700; border-radius: 5px; transition: all 0.3s ease; text-decoration: none;
    text-transform: uppercase; background-color: var(--color-red); color: var(--color-white); font-size: 1rem;
}
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 5px 15px var(--glow-red); }

/* --- Platform Logos, About, Journey, Stats --- */
.platform-section { padding: 40px 0; background: var(--color-black); border-top: 1px solid #222; border-bottom: 1px solid #222; }
.section-subheading { text-align: center; margin-bottom: 25px; font-weight: 600; color: #aaa; letter-spacing: 2px; font-size: 0.9rem; }
.logo-carousel .swiper-slide { height: auto; }
.platform-logo-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.platform-logo-item img { max-height: 30px; width: auto; filter: grayscale(100%) brightness(1.2); opacity: 0.7; transition: all 0.3s ease; }
.platform-name { font-size: 0.8rem; color: #aaa; opacity: 0; transition: opacity 0.3s ease; }
.platform-logo-item:hover img { transform: scale(1.1); filter: none; opacity: 1; }
.platform-logo-item:hover .platform-name { opacity: 1; }
.about-section { text-align: center; padding: 100px 0; }
.about-section h2 { font-size: 3rem; margin-bottom: 20px; }
.about-section p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px auto; line-height: 1.8; color: #eee; }
.journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.journey-card { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; padding: 30px; text-align: center; transition: all 0.3s; }
.journey-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.journey-card-icon { width: 50px; height: 50px; margin: 0 auto 20px auto; border-radius: 50%; background-color: var(--color-red); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-family: var(--font-heading); }
.stats-section { text-align: center; }
.stats-section h2 { margin-bottom: 20px; }
.stats-section p { max-width: 700px; margin: 0 auto 50px auto; font-size: 1.1rem; }
.stats-wrapper { display: flex; justify-content: space-around; gap: 30px; }
.stat-item { text-align: center; }
.stat-value { font-size: 4rem; font-weight: 900; color: var(--color-white); }
.stat-label { font-size: 1rem; color: #aaa; text-transform: uppercase; letter-spacing: 1px; }

/* --- Services, Spotlight, Testimonials, FAQ, Footer... --- */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.service-card { background: var(--color-black); border: 1px solid #333; padding: 30px; border-radius: 8px; transition: all 0.3s; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 0 25px var(--glow-red); }
.service-icon { font-size: 2.5rem; margin-bottom: 15px; }
.spotlight-player-wrapper { max-width: 700px; margin: 0 auto; box-shadow: 0 10px 40px rgba(0,0,0,0.5); border-radius: 12px; }
#testimonials h2, #faq h2 { margin-bottom: 50px; }
.testimonial-slider { padding-bottom: 50px; }
.testimonial-card { text-align: center; max-width: 650px; margin: 0 auto; }
.testimonial-img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin: 0 auto 20px auto; border: 3px solid var(--color-red); }
.testimonial-card p { font-style: italic; font-size: 1.2rem; margin-bottom: 20px; color: white; line-height: 1.6; }
.testimonial-card h4 { margin-bottom: 5px; color: white; }
.testimonial-card span { color: #aaa; }
.swiper-pagination-bullet-active { background: var(--color-red); }
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #333; }
.faq-question { width: 100%; background: none; border: none; padding: 20px; text-align: left; font-size: 1.1rem; font-weight: 600; color: var(--color-white); cursor: pointer; position: relative; }
.faq-question::after { content: '+'; position: absolute; right: 20px; font-size: 1.5rem; transition: transform 0.3s; }
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-answer p { padding: 0 20px 20px 20px; margin: 0; font-size: 1rem; }
.main-footer { background-color: #000; padding: 30px 0; border-top: 1px solid #222; }
.footer-bottom { text-align: center; color: #777; font-size: 0.9rem; }
.footer-links a { color: #aaa; margin: 0 10px; text-decoration: none; }

/* --- NEW CONTACT PAGE STYLES --- */
.contact-page-wrapper {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-image: url('../images/contact-bg.jpg');
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}
.contact-page-wrapper::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
}
.contact-form-container {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
}
.contact-form-container h2 { color: var(--color-white); }
.contact-form-container p { color: #ccc; margin-bottom: 30px; }
.contact-form .form-group { margin-bottom: 20px; text-align: left; }
.contact-form label { display: block; margin-bottom: 8px; font-weight: 600; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 12px; border-radius: 5px; border: 1px solid #444;
    background-color: #222; color: var(--color-white); font-size: 1rem;
}
.feedback-message { text-align: center; padding: 15px; margin-bottom: 20px; border-radius: 5px; color: white; }
.feedback-message.success { background-color: #28a745; }
.feedback-message.error { background-color: #dc3545; }


/* --- ON-SCROLL ANIMATION --- */
.animate-on-scroll { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
.journey-card:nth-child(2), .service-card:nth-child(2), .service-card:nth-child(4) { transition-delay: 0.2s; }
.journey-card:nth-child(3), .service-card:nth-child(3) { transition-delay: 0.4s; }
.stat-item:nth-child(2) { transition-delay: 0.2s; }
.stat-item:nth-child(3) { transition-delay: 0.4s; }

/* --- Responsive Styles --- */
@media (max-width: 900px) {
    .journey-grid, .services-grid, .spotlight-wrapper { grid-template-columns: 1fr; }
    .spotlight-wrapper { text-align: center; }
    .spotlight-image { max-width: 300px; margin: 0 auto 30px auto; }
}
@media (max-width: 768px) {
    .parallax-hero {
        background-attachment: scroll;
        background-image: url('../images/hero-mobile.jpg');
    }
    h2 { font-size: 2.2rem; }
    #hero .hero-title { font-size: 2.8rem; }
    .main-nav, .header-cta { display: none; } 
    .stats-wrapper { flex-direction: column; gap: 40px; }
    .contact-page-wrapper { padding: 80px 0; }
}