/* --- General & Typography --- */
@font-face {
    font-family: 'League Spartan';
    src: url('../fonts/league-spartan-master/webfonts/leaguespartan-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --neon-cyan: #ddf700;
    --dark-bg: #000000;
    --primary-text: #ffffff;
    --secondary-text: #a9a9a9;
    --card-bg: #1a1a1a;
    --border-color: #333333;
}

body {

    background-color: var(--dark-bg);

    color: var(--primary-text);

    font-family: 'League Spartan', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    margin: 0;

    padding: 0;

    overflow-x: hidden;

}



body.no-scroll {

    overflow: hidden;

}



h1, h2, h3 {

    font-family: 'League Spartan', sans-serif;

    font-weight: 700; /* Bolder headings */

}



p {

    color: var(--secondary-text);

    line-height: 1.6;

}



.visually-hidden {

    position: absolute !important;

    height: 1px;

    width: 1px;

    overflow: hidden;

    clip: rect(1px, 1px, 1px, 1px);

    white-space: nowrap;

}



.section-title {

    font-size: 2.5rem;

    text-align: center;

    margin-bottom: 50px;

    color: var(--primary-text);

}



/* --- Header & Navigation --- */

header {

    padding: 20px 50px;

    position: fixed;

    width: 100%; /* Use full width for accurate centering */

    top: 10px;

    left: 0;

    z-index: 1000;

    box-sizing: border-box; /* Ensure padding is included in the width */

}



nav {

    position: relative; /* Establish positioning context */

    display: flex;

    align-items: center;

    height: 100px; /* Match logo height to prevent collapse */

}



.logo img {

    height: 100px;

}



.burger-menu {

    display: none;

    position: relative;

    width: 48px;

    height: 48px;

    background: none;

    border: none;

    color: #000;

    cursor: pointer;

    margin-left: auto;

    z-index: 1001;

    align-items: center;

    justify-content: center;

}



.burger-menu span {

    position: absolute;

    left: 50%;

    width: 30px;

    height: 3px;

    background-color: currentColor;

    border-radius: 999px;

    transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;

    transform-origin: center;

    transform: translateX(-50%);

}



.burger-menu span:nth-child(1) {

    top: 16px;

}



.burger-menu span:nth-child(2) {

    top: 24px;

}



.burger-menu span:nth-child(3) {

    top: 32px;

}



.burger-menu[aria-expanded="true"] span:nth-child(2) {

    opacity: 0;

}



.burger-menu[aria-expanded="true"] span:nth-child(1) {

    top: 24px;

    transform: translateX(-50%) rotate(45deg);

}



.burger-menu[aria-expanded="true"] span:nth-child(3) {

    top: 24px;

    transform: translateX(-50%) rotate(-45deg);

}



body.no-scroll .burger-menu {

    color: #fff;

}



.nav-links {

    position: absolute;

    left: 50%;

    transform: translateX(-50%);



    background-color: rgba(255, 255, 255, 0.9);

    backdrop-filter: blur(10px);

    padding: 10px; /* Adjust outer padding */

    border-radius: 50px;

    display: flex;

    /* gap: 30px; */ /* Remove gap for more balanced padding */

    box-shadow: 0 5px 30px rgba(255, 255, 255, 0.4); /* Stronger glow effect */

}



.nav-links a {

    color: #000;

    text-decoration: none;

    font-size: 18px; /* Increased font size */

    font-weight: 500;

    padding: 10px 25px; /* Increased horizontal padding */

    border-radius: 40px;

    transition: background-color 0.3s, color 0.3s;

}



.nav-links a:hover {

    background-color: #f0f0f0;

}



.nav-links a.active {

    background-color: #e0e0e0;

}



/* --- General Layout --- */

main {

    padding-top: 100px;

}



section {

    padding: 100px 50px;

    max-width: 1200px;

    margin: 0 auto;

}



/* --- Scroll Reveal Animation --- */

.scroll-reveal {

    opacity: 0;

    transform: translateY(30px) scale(0.98);

    transition: opacity 0.6s ease-out, transform 0.6s ease-out;

}



.scroll-reveal.visible {

    opacity: 1;

    transform: translateY(0) scale(1);

}



/* --- REWORKED HERO SECTION --- */

.hero-section {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 90vh;

    padding: 140px 50px 120px;

    overflow: hidden;

    background-color: #050505;

}



.hero-video-wrapper {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    overflow: hidden;

}



.hero-background-video {

    width: 100%;

    height: 100%;

    object-fit: cover;

    filter: saturate(1.05);

}



.hero-gradient-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 10%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.65) 100%);

    pointer-events: none;

}



.hero-content-wrapper {

    position: relative;

    z-index: 2;

    display: grid;

    gap: 28px;

    width: min(960px, 100%);

    color: var(--primary-text);

    justify-items: start;

    text-align: left;

}



.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 10px 20px;

    border-radius: 999px;

    backdrop-filter: blur(8px);

    background: rgba(0, 0, 0, 0.35);

    border: 1px solid rgba(221, 247, 0, 0.2);

    width: fit-content;

}



.hero-badge-dot {

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background-color: var(--neon-cyan);

    box-shadow: 0 0 12px rgba(221, 247, 0, 0.8);

}



.hero-badge-text {

    font-size: 0.95rem;

    font-weight: 600;

    letter-spacing: 0.04em;

    color: var(--primary-text);

}



.hero-headline {

    font-family: 'League Spartan', sans-serif;

    font-size: clamp(2.8rem, 7vw, 5rem);

    font-weight: 700;

    line-height: 1.05;

    margin: 0;

    color: var(--primary-text);

    opacity: 0;

    transform: translateY(20px);

    transition: opacity 0.8s ease-out, transform 0.8s ease-out;

}



.hero-subheadline {

    font-size: clamp(1.1rem, 2.2vw, 1.4rem);

    color: rgba(255, 255, 255, 0.75);

    max-width: 580px;

    line-height: 1.6;

    margin: 0;

    opacity: 0;

    transform: translateY(20px);

    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;

}



.hero-cta {

    width: fit-content;

    padding: 18px 42px;

    font-size: 1.05rem;

    opacity: 0;

    transform: translateY(20px);

    transition: opacity 0.8s ease-out 0.35s, transform 0.8s ease-out 0.35s;

}



/* Animation visible state */

.hero-headline.is-visible,

.hero-subheadline.is-visible,

.hero-cta.is-visible {

    opacity: 1;

    transform: translateY(0);

}



/* --- General Section Styling --- */

.section-intro {

    text-align: center;

    max-width: 700px;

    margin: 0 auto 60px auto;

}



.section-intro p {

    font-size: 1.2rem;

}



/* --- Reworked Services Section --- */

.services-section-reworked {

    padding: 100px 50px;

    background-color: #080808;

}



.services-grid-reworked {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

    gap: 30px;

    max-width: 1200px;

    margin: 0 auto;

    align-items: start; /* Align items to the top of the grid cell */

}



.service-card-reworked {



    background-color: var(--card-bg);



    padding: 40px;



    border-radius: 20px;



    border: 1px solid var(--border-color);



    transition: transform 0.3s, box-shadow 0.3s;



    display: flex;



    flex-direction: column;



    height: 100%; /* Ensure all cards in a row have the same height */



}



.service-card-reworked:hover {

    transform: translateY(-10px);

    box-shadow: 0 10px 40px rgba(221, 247, 0, 0.15);

}



.service-icon {

    font-size: 2.5rem;

    color: var(--neon-cyan);

    margin-bottom: 20px;

}



.service-card-reworked h3 {

    font-size: 1.5rem;

    margin-bottom: 15px;

    color: var(--primary-text);

}



/* --- Client Marquee Section --- */

.client-marquee-section {

    padding: 100px 0; /* Further increased vertical space */

    border-top: 1px solid var(--border-color);

    border-bottom: 1px solid var(--border-color);

    overflow: hidden;

    white-space: nowrap;

}



.marquee-content {

    display: inline-block;

}



.marquee-content img {

    height: 80px; /* Increased logo size */

    margin: 0 50px; /* Increased space between logos */

    filter: brightness(0.7) grayscale(1);

    opacity: 0.7;

    transition: filter 0.3s, opacity 0.3s;

}



.marquee-content:hover img {

    filter: brightness(1) grayscale(0);

    opacity: 1;

}



@keyframes scrollX {

    from { transform: translateX(0); }

    to { transform: translateX(-50%); }

}



.client-marquee-section .marquee-content {



    animation: scrollX 40s linear infinite;



}







/* --- Feature Parallax Section --- */



.feature-parallax-section {



    padding: 120px 50px;



}







.feature-parallax-text .section-title {



    text-align: left; /* Override the default centered alignment */



}



.feature-parallax-content {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

    max-width: 1200px;

    margin: 0 auto;

}



.feature-parallax-text p {

    font-size: 1.15rem; /* Increased font size */

}



.feature-parallax-text .cta-button {

    margin-top: 2rem; /* Added space above the button */

}



.feature-parallax-image {

    border-radius: 20px;

    overflow: hidden;

}



.feature-parallax-image img {

    width: 100%;

}



/* Force CTA button style in this specific section to fix override issue */

.cta-button {

    background-color: var(--neon-cyan);

    color: #000;

    padding: 18px 40px; /* Slightly adjusted padding */

    text-decoration: none;

    border-radius: 50px; /* Pill shape */

    font-weight: bold;

    display: inline-block;

    border: none;

    box-shadow: 0 4px 15px rgba(221, 247, 0, 0.2); /* Subtle glow shadow */

    transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.cta-button:hover {

    transform: translateY(-3px); /* Lift effect */

    box-shadow: 0 8px 25px rgba(221, 247, 0, 0.4); /* Enhanced glow on hover */

    background-color: var(--neon-cyan); /* Ensure color stays */

}





/* --- CTA Section --- */

.cta-section {

    text-align: center;

    background-color: var(--card-bg);

    padding: 80px 50px;

    border-radius: 15px;

    max-width: 1200px;

    margin: 50px auto;

}



.cta-section h2 {

    font-size: 2.5rem;

    margin-bottom: 20px;

}



/* --- Responsive for Reworked Homepage --- */

@media (max-width: 1024px) {

    header {

        padding: 18px 30px;

        top: 0;

    }

    nav {

        flex-wrap: wrap;

        gap: 16px;

        height: auto;

    }

    .logo img {

        height: 80px;

    }

    .nav-links {

        position: static;

        transform: none;

        width: 100%;

        justify-content: center;

        flex-wrap: wrap;

        padding: 12px 20px;

    }

    .nav-links a {

        font-size: 16px;

        padding: 10px 18px;

    }

    section {

        padding: 90px 30px;

    }

    .hero-section {

        padding: 120px 30px 100px;

        min-height: 80vh;

    }

    .hero-content-wrapper {

        width: min(720px, 100%);

        gap: 24px;

    }

    .hero-badge {

        padding: 10px 18px;

    }



    .hero-headline {

        font-size: clamp(2.6rem, 6.5vw, 4rem);

    }



    .hero-subheadline {

        max-width: 520px;

    }



    .hero-cta {

        padding: 16px 36px;

    }

    .section-title {

        font-size: 2.2rem;

    }

    .section-intro p {

        font-size: 1.05rem;

    }

    .feature-parallax-content {

        grid-template-columns: 1fr;

        gap: 48px;

    }

    .feature-parallax-text {

        text-align: center;

    }

    .feature-parallax-text .cta-button {

        margin: 0 auto;

    }

    .testimonial-section-reworked {

        padding: 90px 30px;

    }

    .testimonial-pill {

        padding: 48px 32px;

    }

    .testimonial-author {

        justify-content: center;

        gap: 16px;

    }

    .case-bundle__inner {

        gap: 48px;

    }

    .case-bundle__actions {

        justify-content: center;

    }

    .logo-slider-section .slider-item {

        margin: 0 52px;

        gap: 28px;

    }

    .slider-item img {

        height: 260px;

    }

    .slider-text {

        font-size: 150px;

        letter-spacing: -10px;

    }

}



@media (max-width: 768px) {

    header {

        position: relative;

        z-index: 1200;

        padding: 12px 20px;

        background: rgba(0, 0, 0, 0.85);

        backdrop-filter: blur(12px);

        border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    }

    nav {

        justify-content: space-between;

        align-items: center;

        gap: 12px;

        height: auto;

        min-height: 64px;

    }

    .logo img {

        height: 80px;

    }

    .burger-menu {

        display: inline-flex;

        align-items: center;

        justify-content: center;

        color: #fff;

    }

    .nav-links {

        position: absolute;

        top: calc(100% + 12px);

        right: 20px;

        left: auto;

        width: min(240px, calc(100vw - 32px));

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 12px;

        padding: 16px;

        background: rgba(0, 0, 0, 0.9);

        border: 1px solid rgba(255, 255, 255, 0.1);

        border-radius: 18px;

        box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);

        transform: translateY(-16px);

        opacity: 0;

        pointer-events: none;

        transition: transform 0.3s ease, opacity 0.3s ease;

        z-index: 1100;

        box-sizing: border-box;

    }

    .nav-links.is-open {

        transform: translateY(0);

        opacity: 1;

        pointer-events: auto;

    }

    .nav-links a {

        width: 100%;

        text-align: center;

        font-size: 1.05rem;

        color: #fff;

        padding: 12px;

        border-radius: 12px;

        display: flex;

        justify-content: center;

        align-items: center;

        min-height: 44px;

    }

    .nav-links a:hover {

        background-color: rgba(255, 255, 255, 0.1);

    }

    .contact-page-body .burger-menu {

        color: #fff;

    }

    .contact-page-body .nav-links {

        background: rgba(0, 0, 0, 0.95);

    }

    .contact-page-body header {

        background: rgba(0, 0, 0, 0.7);

        border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    }

    main.homepage-main {

        padding-top: 24px;

    }

    section {

        padding: 70px 20px;

    }

    .hero-section {

        padding: 100px 24px 70px;

        min-height: auto;

    }



    .hero-content-wrapper {

        width: min(640px, 100%);

        justify-items: center;

        text-align: center;

        gap: 24px;

    }



    .hero-badge {

        margin: 0 auto;

    }



    .hero-headline {

        font-size: 2.4rem;

    }



    .hero-subheadline {

        font-size: 1.05rem;

        max-width: 520px;

    }



    .hero-cta {

        width: 100%;

        justify-self: center;

    }

    .services-section-reworked {

        padding: 70px 20px;

    }

    .service-card-reworked {

        padding: 30px;

    }

    .client-marquee-section {

        padding: 50px 0;

    }

    .marquee-content img {

        height: 60px;

        margin: 0 24px;

    }

    .feature-parallax-text {

        text-align: center;

    }

    .feature-parallax-text p {

        margin-left: auto;

        margin-right: auto;

    }

    .testimonial-section-reworked {

        padding: 70px 20px;

    }

    .testimonial-pill {

        border-radius: 30px;

        padding: 40px 24px;

    }

    .testimonial-quote {

        font-size: 1.4rem;

    }

    .testimonial-author {

        flex-direction: column;

        align-items: center;

        text-align: center;

    }

    .animation-section .neon-block {

        padding: 1.5rem;

    }

    .cta-row-reworked {

        flex-direction: column;

        gap: 1.5rem;

    }

    .case-bundle {

        padding: 80px 20px;

    }

    .case-bundle__copy {

        text-align: center;

    }

    .case-bundle__notes {

        padding: 20px;

    }

    .faq-section {

        padding: 70px 20px;

        gap: 30px;

    }

    .faq-intro h2 {

        font-size: 2.1rem;

    }

    .cta-section {

        margin: 40px 20px;

        padding: 60px 24px;

    }

    footer {

        padding: 50px 20px 20px;

    }

    .footer-main {

        flex-direction: column;

        align-items: center;

        text-align: center;

    }

    .contact-footer .footer-main {

        flex-direction: column;

        align-items: center;

        text-align: center;

    }

    .footer-bottom {

        flex-direction: column;

        align-items: center;

        gap: 16px;

        text-align: center;

    }

    .footer-bottom-links {

        display: flex;

        flex-wrap: wrap;

        gap: 12px;

        justify-content: center;

    }

    .footer-bottom-links a {

        margin-left: 0;

    }

    .footer-column,

    .contact-footer .footer-column {

        text-align: center;

    }

    .footer-column.logo-column p {

        padding-left: 0;

    }

    .logo-slider-section {

        padding: 40px 0;

    }

    .logo-slider-section .logo-slider-track {

        animation: sliderAuto 24s linear infinite;

    }

    .logo-slider-section .slider-item {

        margin: 0 24px;

        gap: 20px;

        opacity: 0.9;

    }

    .logo-slider-section .slider-item img {

        height: 160px;

    }

    .logo-slider-section .slider-text {

        font-size: 96px;

        letter-spacing: -6px;

    }

}



@media (max-width: 600px) {

    .logo img {

        height: 80px;

    }

    .nav-links {

        padding: 14px;

    }

    .hero-section {

        padding: 90px 20px 60px;

    }

    .hero-content-wrapper {

        width: 100%;

        gap: 20px;

    }

    .hero-badge {

        padding: 8px 16px;

        gap: 10px;

    }

    .hero-badge-text {

        font-size: 0.85rem;

    }

    .hero-headline {

        font-size: 2.2rem;

    }

    .hero-subheadline {

        font-size: 1rem;

        max-width: 100%;

    }

    .hero-cta {

        width: 100%;

        text-align: center;

    }

    .services-grid-reworked {

        grid-template-columns: 1fr;

    }

    .client-marquee-section {

        padding: 40px 0;

    }

    .marquee-content img {

        height: 48px;

        margin: 0 18px;

    }

    .testimonial-pill {

        padding: 36px 22px;

    }

    .testimonial-quote {

        font-size: 1.3rem;

    }

    .animation-section .keywords-marquee li {

        font-size: 1.3rem;

    }

    .case-bundle__card {

        padding: 28px;

    }

    .logo-slider-section .slider-item {

        margin: 0 24px;

        gap: 24px;

    }

    .logo-slider-section .slider-item img {

        height: 140px;

    }

    .logo-slider-section .slider-text {

        font-size: 80px;

        letter-spacing: -4px;

    }

    .final-animation-section {

        padding: 70px 20px;

    }

    .animation-container {

        height: auto;

        padding: 40px 0;

    }

    .keyword-scroller li {

        font-size: 3.5rem;

    }

    .image-slideshow {

        position: relative;

        top: auto;

        left: auto;

        transform: none;

        width: min(320px, 80%);

        height: 360px;

        margin: 0 auto;

    }

    .animation-cta {

        position: relative;

        bottom: auto;

        right: auto;

        text-align: center;

    }

}



@media (max-width: 480px) {

    header {

        padding: 14px 16px;

    }

    .logo img {

        height: 70px;

    }

    .hero-section {

        padding: 70px 16px 50px;

    }

    .hero-content-wrapper {

        gap: 18px;

        justify-items: center;

        text-align: center;

    }

    .hero-badge {

        padding: 8px 14px;

        gap: 8px;

        margin: 0 auto;

    }

    .hero-badge-text {

        font-size: 0.8rem;

    }

    .hero-headline {

        font-size: 2rem;

    }

    .hero-subheadline {

        font-size: 0.95rem;

    }

    .hero-cta {

        width: 100%;

        text-align: center;

    }

    .service-card-reworked {

        padding: 24px;

    }

    .testimonial-pill {

        padding: 32px 20px;

    }

    .case-bundle {

        padding: 70px 16px;

    }

    .faq-section {

        padding: 60px 16px;

        margin: 40px auto;

    }

    .cta-section {

        margin: 30px 16px;

        padding: 50px 20px;

    }

    footer {

        padding: 40px 16px 20px;

    }

    .footer-main {

        gap: 24px;

    }

    .footer-bottom-links {

        gap: 10px;

    }

    .logo-slider-section .slider-item img {

        height: 110px;

    }

    .logo-slider-section .slider-text {

        font-size: 60px;

        letter-spacing: -2px;

    }

    .keyword-scroller li {

        font-size: 2.6rem;

    }

    .image-slideshow {

        height: 300px;

    }

    .animation-cta p {

        font-size: 1.05rem;

    }

}






/* --- Footer --- */

footer {

    padding: 60px 50px 20px 50px;

    border-top: 1px solid var(--border-color);

}



.footer-main {

    display: flex;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 40px;

}



.footer-column {

    flex: 1;

}



.footer-column.logo-column {

    flex: 1.5; /* Give the logo column a bit more space */

}



.footer-logo {

    height: 100px;

    margin-bottom: 1rem; /* Add some space between logo and new slogan */

}



.footer-column.logo-column p {

    /* Visually align slogan with the logo above, which may have internal spacing */

    padding-left: 0.5rem;

    margin-left: 0;

}



.footer-column h4 {

    font-size: 1rem;

    font-weight: bold;

    color: var(--primary-text);

    margin-bottom: 20px;

    letter-spacing: 1px;

}



.footer-column a {

    display: block;

    color: var(--secondary-text);

    text-decoration: none;

    margin-bottom: 10px;

    transition: color 0.3s;

}



.footer-column a:hover {

    color: var(--primary-text);

}



.social-icons {

    display: flex;

    gap: 20px;

}



.social-icons a {

    font-size: 1.5rem; /* Placeholder styling */

}



.footer-bottom {

    border-top: 1px solid var(--border-color);

    padding-top: 20px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 0.9rem;

    color: var(--secondary-text);

}



.footer-bottom-links a {

    margin-left: 20px;

    color: var(--secondary-text);

    text-decoration: none;

}



.footer-bottom-links a:hover {

    color: var(--primary-text);

}



/* --- Responsive Design --- */

@media (max-width: 768px) {

    header {

        padding: 20px;

        width: calc(100% - 40px);

    }



    nav ul {

        display: none; /* Simple responsive solution, could be replaced with a burger menu */

    }



    section {

        padding: 80px 20px;

    }



    .hero-content h1 {

        font-size: 3rem;

    }



    .feature-content {

        flex-direction: column;

    }

}



/* --- Contact Page Specific Styles --- */

.contact-page-body {

    background: linear-gradient(90deg, #ffffff 50%, #000000 50%);

}



.contact-main {

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 100vh;

    padding: 120px 50px 50px 50px; /* Add padding top for header */

}



.contact-container {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    width: 100%;

    max-width: 1400px;

    align-items: center;

}



.contact-info {

    color: #000;

}



.contact-info h1 {

    font-size: 3.5rem;

    margin-bottom: 20px;

}



.contact-info p {

    color: #555;

    margin-bottom: 20px;

}



.contact-info h2 {

    font-size: 1.5rem;

    margin-top: 40px;

    margin-bottom: 20px;

}



.info-box {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 20px;

    border: 1px solid #e0e0e0;

    border-radius: 15px;

    margin-bottom: 15px;

    cursor: pointer;

    transition: border-color 0.3s, box-shadow 0.3s;

}



.info-box:hover {

    border-color: #000;

}



.info-box.clicked {

    border-color: #ddf700;

}



.info-box i {

    font-size: 1.5rem;

    color: #000;

}



.info-box div {

    display: flex;

    flex-direction: column;

}



.info-box span {

    color: #555;

}



.info-box strong {

    color: #000;

    font-weight: 500;

}



.contact-form-container {

    background-color: #fff;

    padding: 50px;

    border-radius: 25px;

    box-shadow: 0 10px 40px rgba(0,0,0,0.1);

}



.form-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

}



.form-group {

    display: flex;

    flex-direction: column;

}



.form-group.full-width {

    grid-column: 1 / -1;

}



.form-group label {

    color: #000;

    margin-bottom: 8px;

    font-size: 0.9rem;

}



.form-group input,

.form-group textarea {

    width: 100%;

    padding: 15px;

    border: 1px solid #e0e0e0;

    border-radius: 15px;

    font-size: 1rem;

    transition: border-color 0.3s, box-shadow 0.3s;

}



.form-group input:focus,

.form-group textarea:focus {

    outline: none;

    border-color: #ddf700;

    box-shadow: 0 0 0 3px rgba(221, 247, 0, 0.5);

}



.form-group textarea {



    min-height: 150px;



    resize: vertical;



}







/* Hide the honeypot field from users */



.form-group.honeypot {

    position: absolute;

    left: -9999px;

    opacity: 0;

    height: 0;

    width: 1px;

    pointer-events: none;

}









.submit-button {

    background-color: #000;

    color: #fff;

    padding: 18px 35px;

    border: none;

    border-radius: 50px;

    font-size: 1rem;

    font-weight: bold;

    cursor: pointer;

    margin-top: 20px;

    transition: background-color 0.3s;

    width: 100%;

}



.submit-button.is-loading {

    opacity: 0.6;

    cursor: wait;

}



.form-status {

    margin-top: 18px;

    font-size: 0.9rem;

    color: #000;

    font-weight: 500;

}



.form-status[data-status="success"] {

    color: #008f39;

}



.form-status[data-status="error"] {

    color: #c3002f;

}





.submit-button:hover {

    background-color: #ddf700; /* Corrected accent color */

    color: #000;

}



/* --- Contact Page Footer Specific Styles --- */

.contact-footer {

    background-color: #fff; /* Ensure footer bg is white */

}



.contact-footer .footer-column h4 {

    color: #000;

}



.contact-footer .footer-column a,

.contact-footer .social-icons a {

    color: #555;

}



.contact-footer .footer-column a:hover,

.contact-footer .social-icons a:hover {

    color: #000;

}



.contact-footer .footer-bottom {

    border-top-color: #e0e0e0;

    color: #555;

}



.contact-footer .footer-bottom-links a {

    color: #555;

}



.contact-footer .footer-bottom-links a:hover {

    color: #000;

}



/* --- Contact Page Header/Nav Fix --- */

@media (min-width: 901px) {

    .contact-page-body nav {

        position: relative; /* Establish positioning context for absolute centering */

        justify-content: flex-start; /* Keep logo on the left, remove space-between */

    }



    .contact-page-body .nav-links {

        position: absolute;

        left: 50%;

        transform: translateX(-50%);

        background-color: rgba(20, 20, 20, 0.7); /* Dark, semi-transparent background */

        backdrop-filter: blur(10px);

        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);

    }



    .contact-page-body .nav-links a {

        color: #fff; /* White text for readability */

    }



    .contact-page-body .nav-links a:hover {

        background-color: rgba(255, 255, 255, 0.2);

        color: #fff;

    }

}



/* --- About Us Page Specific Styles --- */

.about-section {

    padding-top: 90px; /* Reduced spacing under the nav */

}



.about-content {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    align-items: center;

}



.about-image {

    width: 100%;

    border-radius: 25px;

    overflow: hidden; /* Ensures the image respects the border-radius */

    transition: transform 0.4s, box-shadow 0.4s;

}



.about-image img {

    width: 100%;

    display: block;

}



.about-image:hover {

    transform: scale(1.03);

    box-shadow: 0 10px 40px rgba(221, 247, 0, 0.3); /* Neon glow */

}



.team-section {

    text-align: center;

}



.team-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}



.team-member-card {

    background-color: var(--card-bg);

    padding: 30px;

    border-radius: 15px;

    border: 1px solid var(--border-color);

    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;

}



.team-member-card img {

    width: 150px;

    height: 150px;

    border-radius: 50%;

    object-fit: cover;

    margin-bottom: 20px;

    border: 3px solid var(--border-color);

}



.team-member-card h3 {

    font-size: 1.5rem;

    margin-bottom: 10px;

    color: var(--primary-text);

}



.team-member-card p {

    color: var(--secondary-text);

}



.team-member-card:hover {

    transform: translateY(-10px);

    border-color: rgba(221, 247, 0, 0.5);

    box-shadow: 0 18px 50px rgba(221, 247, 0, 0.25);

}



@media (min-width: 1600px) {

    .about-text p {

        font-size: 1.18rem;

        line-height: 1.85;

    }

    .team-member-card h3 {

        font-size: 1.7rem;

    }

    .team-member-card p {

        font-size: 1.1rem;

    }

}



/* --- Responsive for About Us Page --- */

@media (max-width: 900px) {

    .about-content {

        grid-template-columns: 1fr; /* Stack on smaller screens */

    }

    .team-grid {

        grid-template-columns: 1fr; /* Stack team members */

    }

}



/* --- FAQ Section --- */

.faq-section {

    padding: 100px 50px;

    background-color: #fff;

    color: #000;

    border-radius: 30px;

    margin: 50px auto;

    max-width: 1200px;

    display: grid;

    grid-template-columns: 1fr 2fr;

    gap: 50px;

    align-items: flex-start;

    transition: transform 0.4s, box-shadow 0.4s;

}



.faq-section:hover {

    transform: scale(1.01);

    box-shadow: 0 10px 50px rgba(221, 247, 0, 0.4); /* Neon glow */

}



.faq-pill {

    display: inline-block;

    background-color: var(--neon-cyan);

    color: #000;

    padding: 10px 20px;

    border-radius: 50px;

    font-weight: bold;

    margin-bottom: 20px;

}



.faq-intro h2 {

    font-size: 2.5rem;

    margin-bottom: 20px;

}



.faq-intro p {

    color: #555;

}



.faq-intro a {

    color: #000;

    font-weight: bold;

}



.faq-accordion {

    display: flex;

    flex-direction: column;

    gap: 15px;

}



.faq-item {

    background-color: #000;

    color: #fff;

    border-radius: 20px;

    padding: 20px 30px;

}



.faq-question {

    display: flex;

    justify-content: space-between;

    align-items: center;

    cursor: pointer;

    font-size: 1.1rem;

    font-weight: 500;

    list-style: none; /* Remove default marker */

}



.faq-question::-webkit-details-marker {

    display: none; /* Hide default marker for Chrome/Safari */

}



.faq-answer {

    padding-top: 15px;

    margin-top: 15px;

    border-top: 1px solid var(--border-color);

    color: var(--secondary-text);

    overflow: hidden;

    max-height: 0;

    transition: max-height 0.4s ease-out; /* Smoother easing */

}



.faq-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 22px;

    height: 22px;

    border: 2px solid #fff;

    border-radius: 50%;

    position: relative;

    transition: transform 0.3s;

    flex-shrink: 0;

    box-sizing: border-box;

}



.faq-icon::before,

.faq-icon::after {

    content: '';

    position: absolute;

    top: 50%;

    left: 50%;

    background-color: #fff;

    transition: transform 0.3s;

}



.faq-icon::before {

    width: 10px;

    height: 2px;

    transform: translate(-50%, -50%);

}



.faq-icon::after {

    width: 2px;

    height: 10px;

    transform: translate(-50%, -50%);

}



details[open] .faq-icon {

    transform: rotate(45deg);

}



details[open] .faq-icon::after {

    transform: translate(-50%, -50%) rotate(90deg);

}



/* Responsive for FAQ */

@media (max-width: 900px) {

    .faq-section {

        grid-template-columns: 1fr;

    }

}



/* --- Reworked Testimonial Pill Design --- */

.testimonial-section-reworked {

    padding: 100px 50px;

    background-color: #000; /* Clean black background */

}



.testimonial-pill {

    max-width: 800px;

    margin: 0 auto;

    padding: 50px;

    border-radius: 50px; /* Rounded corners */

    border: 1px solid var(--neon-cyan);

    box-shadow: 0 0 20px rgba(221, 247, 0, 0.2), 0 0 40px rgba(221, 247, 0, 0.1); /* Neon glow */

    text-align: center;

}



.testimonial-quote {

    font-size: 1.8rem;

    font-weight: 500;

    color: var(--primary-text);

    margin-bottom: 40px;

    overflow-wrap: anywhere;

    word-break: break-word;

}



.testimonial-author {



    display: flex;



    justify-content: flex-start; /* Align to the left */



    align-items: center;



    gap: 20px;



    max-width: 100%; /* Allow it to take full width */



    margin: 0; /* Remove auto margin */



    text-align: left; /* Ensure text inside is left-aligned */



}







.animation-section .neon-block {



    box-shadow: 0 0 25px rgba(221, 247, 0, 0.35); /* Wider glow for the entire block */



}







.testimonial-author img {

    width: 70px;

    height: 70px;

    border-radius: 50%;

    object-fit: cover;

}



.author-details {

    text-align: left;

}



.author-details strong {

    font-size: 1.1rem;

    color: var(--primary-text);

    display: block; /* Puts name on its own line */

}



.author-details span {



    color: var(--secondary-text);



}







/* --- Animation Element Section Below Testimonial --- */



.animation-section .neon-inner {



    border: 2px solid rgba(221, 247, 0, 0.3); /* Thicker, slightly more visible border */



    border-radius: 15px;



    padding: 2rem;



}







.animation-section .keywords-marquee ul {



    list-style: none; /* Remove bullet points */



    padding: 0;



    margin: 0;



}







.animation-section .keywords-marquee li {







    color: var(--neon-cyan) !important; /* Ensure neon color is applied */







    font-size: 1.5rem;







    font-weight: 400; /* Slimmer font weight */







    padding: 0.5rem 0;







    text-transform: uppercase; /* ALL CAPS */







    letter-spacing: 0.05em; /* Add some letter spacing for caps */







    text-shadow: 0 0 8px rgba(221, 247, 0, 0.7); /* Added glow effect */







}







.cta-row-reworked {



    display: flex;



    justify-content: center;



    align-items: center;



    gap: 2rem;



    margin-top: 2rem;



    padding: 1rem 0;



    text-align: center;



}







.cta-prompt {



    font-size: 1.2rem;



    font-weight: 500;



    color: var(--primary-text);



}







.btn-primary.neon-button {



    background-color: var(--neon-cyan);



    color: #000;



    font-weight: bold;



    padding: 1rem 2rem;



    border-radius: 50px;



    text-decoration: none;



    transition: transform 0.3s, box-shadow 0.3s;



}







.btn-primary.neon-button:hover {



    transform: scale(1.05);



    box-shadow: 0 0 20px var(--neon-cyan);



}











/* --- Final Keyword & Image Animation (Corrected) --- */



.final-animation-section {



    padding: 100px 50px;



    background-color: #080808;



}



.animation-container {

    position: relative;

    width: 100%;

    max-width: 1100px; /* Adjusted width */

    height: 600px; /* Adjusted height */

    margin: 0 auto;

    border-radius: 20px;

    overflow: hidden;

    background-color: #000;

}



.keyword-scroller {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    overflow: hidden;

}



.keyword-scroller ul {

    position: absolute;

    top: 0;

    left: 0;

    margin: 0;

    padding: 0;

    list-style: none;

    width: 100%;

}



.keyword-scroller li {

    font-family: 'League Spartan', sans-serif;

    font-size: 8rem; /* Drastically increased font size */

    font-weight: 700;

    color: rgba(255, 255, 255, 0.15);

    padding: 0;

    line-height: 1.2; /* Tighter line spacing */

    text-align: center;

}



.image-slideshow {

    position: absolute;

    top: 50%;

    left: 60px; /* Positioned to the left */

    transform: translateY(-50%);

    width: 350px; /* Adjusted size */

    height: 450px; /* Adjusted size */

    border-radius: 15px;

    overflow: hidden;

    z-index: 2;

    box-shadow: 0 10px 40px rgba(0,0,0,0.5);

}



.image-slideshow img {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    opacity: 0;

    transition: opacity 1s ease-in-out;

}



.image-slideshow img.active {

    opacity: 1;

}



.animation-cta {

    position: absolute;

    bottom: 40px;

    right: 60px;

    z-index: 2;

    text-align: right;

}



.animation-cta p {

    font-size: 1.2rem;

    margin-bottom: 20px;

    color: #fff;

}



/* --- Chat Widget --- */

.chat-widget {

    position: fixed;

    bottom: 24px;

    right: 24px;

    z-index: 1200;

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 16px;

    pointer-events: none;

}



.chat-launcher {

    pointer-events: auto;

    width: 64px;

    height: 64px;

    border-radius: 50%;

    background: linear-gradient(135deg, #202020, #090909);

    color: var(--neon-cyan);

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(221, 247, 0, 0.25);

    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 18px rgba(221, 247, 0, 0.25);

    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;

    cursor: pointer;

}



.chat-launcher:focus-visible {

    outline: 2px solid var(--neon-cyan);

    outline-offset: 4px;

}



.chat-launcher:hover {

    transform: translateY(-3px);

    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 24px rgba(221, 247, 0, 0.35);

}



.chat-nudge {

    pointer-events: auto;

    padding: 14px 16px;

    border-radius: 16px;

    background: rgba(10, 10, 10, 0.94);

    border: 1px solid rgba(221, 247, 0, 0.25);

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);

    color: rgba(255, 255, 255, 0.9);

    font-size: 0.9rem;

    max-width: 220px;

    transform: translateY(12px);

    opacity: 0;

    visibility: hidden;

    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;

    display: flex;

    gap: 10px;

    align-items: center;

}



.chat-nudge::before {

    content: '💬';

    font-size: 1.1rem;

}



.chat-nudge.is-visible {

    opacity: 1;

    transform: translateY(0);

    visibility: visible;

}


.chat-launcher svg {

    width: 28px;

    height: 28px;

    fill: currentColor;

}



.chat-window {

    pointer-events: auto;

    width: min(360px, calc(100vw - 32px));

    max-height: min(580px, 80vh);

    background: rgba(10, 10, 10, 0.92);

    border: 1px solid rgba(221, 247, 0, 0.15);

    border-radius: 20px;

    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);

    display: flex;

    flex-direction: column;

    overflow: hidden;

    opacity: 0;

    transform: translateY(12px) scale(0.98);

    transition: opacity 0.3s ease, transform 0.3s ease;

    backdrop-filter: blur(18px);

    visibility: hidden;

}



.chat-window[hidden] {

    display: none !important;

}



.chat-window.is-open {

    opacity: 1;

    transform: translateY(0) scale(1);

    visibility: visible;

}



.chat-header {

    padding: 18px 20px;

    background: linear-gradient(135deg, rgba(221, 247, 0, 0.08), rgba(221, 247, 0, 0.02));

    border-bottom: 1px solid rgba(221, 247, 0, 0.14);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 16px;

}



.chat-header-info {

    display: flex;

    flex-direction: column;

    gap: 4px;

}



.chat-header-title {

    margin: 0;

    font-size: 1rem;

    letter-spacing: 0.04em;

    text-transform: uppercase;

    color: var(--neon-cyan);

    font-weight: 600;

}



.chat-header-subtitle {

    margin: 0;

    font-size: 0.82rem;

    color: rgba(255, 255, 255, 0.72);

    font-weight: 400;

}



.chat-close {

    width: 32px;

    height: 32px;

    aspect-ratio: 1 / 1;

    border-radius: 50%;

    border: 1px solid rgba(221, 247, 0, 0.18);

    background: transparent;

    color: rgba(255, 255, 255, 0.8);

    display: inline-flex;

    align-items: center;

    justify-content: center;

    flex: 0 0 auto;

    cursor: pointer;

    transition: background 0.25s ease, color 0.25s ease;

    box-sizing: border-box;

}



.chat-close:hover {

    background: rgba(221, 247, 0, 0.12);

    color: #000;

}



.chat-messages {

    flex: 1;

    overflow-y: auto;

    padding: 20px;

    display: flex;

    flex-direction: column;

    gap: 12px;

    scrollbar-width: thin;

    scrollbar-color: rgba(221, 247, 0, 0.35) rgba(255, 255, 255, 0.05);

}



.chat-messages::-webkit-scrollbar {

    width: 6px;

}



.chat-messages::-webkit-scrollbar-thumb {

    background: rgba(221, 247, 0, 0.35);

    border-radius: 999px;

}



.chat-message {

    padding: 12px 14px;

    border-radius: 14px;

    max-width: 85%;

    line-height: 1.5;

    font-size: 0.95rem;

    background: rgba(255, 255, 255, 0.08);

    color: rgba(255, 255, 255, 0.92);

    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);

    animation: chat-pop 0.25s ease both;

}



.chat-message p {

    margin: 0;

    font-weight: 400;

}



.chat-message.is-user {

    margin-left: auto;

    background: rgba(221, 247, 0, 0.2);

    color: #dfe900;

}



.chat-message.is-system {

    font-size: 0.82rem;

    align-self: center;

    background: rgba(221, 247, 0, 0.12);

    border: 1px solid rgba(221, 247, 0, 0.24);

    color: rgba(221, 247, 0, 0.88);

    box-shadow: 0 6px 16px rgba(221, 247, 0, 0.15);

}



.chat-typing-bubble {

    align-self: flex-start;

    background: rgba(255, 255, 255, 0.08);

}



.chat-typing {

    display: inline-flex;

    align-items: center;

    gap: 6px;

}



.chat-typing span {

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: rgba(221, 247, 0, 0.7);

    animation: chat-bounce 1.2s infinite ease-in-out;

}



.chat-typing span:nth-child(2) {

    animation-delay: 0.2s;

}



.chat-typing span:nth-child(3) {

    animation-delay: 0.4s;

}



.chat-footer {

    padding: 16px 18px;

    border-top: 1px solid rgba(221, 247, 0, 0.14);

    display: flex;

    flex-direction: column;

    gap: 10px;

    background: rgba(0, 0, 0, 0.75);

}



.chat-footer form {

    display: flex;

    gap: 10px;

    align-items: flex-end;

    flex-wrap: nowrap;

}



.chat-input {

    flex: 1 1 auto;

    min-height: 48px;

    max-height: 120px;

    padding: 12px 14px;

    border-radius: 12px;

    border: 1px solid rgba(221, 247, 0, 0.24);

    background: rgba(10, 10, 10, 0.85);

    color: #fff;

    resize: none;

    font-family: inherit;

    font-weight: 400;

}



.chat-input::placeholder {

    color: rgba(255, 255, 255, 0.45);

}



.chat-send {

    border: none;

    background: var(--neon-cyan);

    color: #000;

    border-radius: 12px;

    padding: 12px 16px;

    flex: 0 0 auto;

    min-width: 96px;

    font-weight: 500;

    cursor: pointer;

    transition: transform 0.25s ease, box-shadow 0.25s ease;

}



.chat-send:disabled {

    opacity: 0.5;

    cursor: not-allowed;

    box-shadow: none;

}



.chat-send:hover:not(:disabled) {

    transform: translateY(-2px);

    box-shadow: 0 8px 16px rgba(221, 247, 0, 0.25);

}



.chat-status {

    font-size: 0.78rem;

    color: rgba(255, 255, 255, 0.55);

}



@keyframes chat-pop {

    from {

        opacity: 0;

        transform: translateY(8px) scale(0.98);

    }

    to {

        opacity: 1;

        transform: translateY(0) scale(1);

    }

}



@keyframes chat-bounce {

    0%, 80%, 100% { transform: scale(0); opacity: 0.6; }

    40% { transform: scale(1); opacity: 1; }

}



@media (max-width: 600px) {

    .chat-widget {

        bottom: 16px;

        right: 16px;

        gap: 12px;

    }

    .chat-launcher {

        width: 56px;

        height: 56px;

    }

    .chat-window {

        right: 0;

        left: 0;

        margin: 0 auto;

        width: min(420px, calc(100vw - 24px));

    }

    .chat-footer form {

        flex-direction: column;

        align-items: stretch;

        gap: 8px;

    }

    .chat-send {

        width: 100%;

    }

}





/* --- Full Width Section Helper --- */

.full-width-section {

    max-width: none; /* Override default section constraint */

    padding-left: 0;

    padding-right: 0;

}



/* --- Logo Slider Section --- */

.logo-slider-section {

    padding: 0; /* Remove vertical space */

    overflow: hidden;

    background-color: #000;

}



.logo-slider-track {

    display: flex;

    width: fit-content;

}



.slider-item {

    display: flex;

    align-items: center;

    gap: 36px;

    margin: 0 72px;

    opacity: 0.85;

}



.slider-item img {

    height: 320px;

}



.slider-text {

    font-family: 'League Spartan', sans-serif;

    font-size: 190px;

    font-weight: 700;

    color: #fff;

    white-space: nowrap;

    letter-spacing: -12px;

    text-shadow: none; /* Glow is off by default */

    transition: text-shadow 0.3s;

}



.slider-text.is-scrolling {

    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.8); /* White glow */

}



@keyframes sliderAuto {

    from { transform: translateX(0); }

    to { transform: translateX(-50%); }

}



@media (prefers-reduced-motion: reduce) {

    .logo-slider-section .logo-slider-track {

        animation: none !important;

    }

}









/* --- Responsive Styles for Contact Page --- */

@media (max-width: 1100px) {

    .contact-page-body {

        background: #000000; /* Switch to solid black background */

    }



    .contact-container {

        grid-template-columns: 1fr; /* Stack columns vertically */

        gap: 50px;

    }



    .contact-info {

        color: var(--primary-text); /* Change text to white */

        text-align: center;

    }



    .info-box div {

        text-align: left; /* Fix for text alignment */

    }



    .contact-info p {

        color: var(--secondary-text); /* Change paragraph text to light grey */

    }



    .contact-info h2 {

        text-align: left;

    }



    .info-box {

        background-color: var(--card-bg);

        border-color: var(--border-color);

    }



    .info-box:hover {

        border-color: var(--neon-cyan);

    }



    .info-box i,

    .info-box strong {

        color: var(--primary-text);

    }



    .info-box span {

        color: var(--secondary-text);

    }

}



@media (max-width: 768px) {

    .contact-main {

        padding: 90px 30px 30px 30px;

    }

    .form-grid {

        grid-template-columns: 1fr; /* Stack form fields for clean spacing */

    }

}



@media (max-width: 480px) {



    .contact-main {

        padding: 70px 20px 20px 20px;

    }







    .contact-info h1 {



        font-size: 2.5rem;



    }







    .contact-form-container {



        padding: 30px;



    }







    .form-grid {



        grid-template-columns: 1fr; /* Stack form fields on very small screens */



    }



}







/* --- Cookie Consent Modal --- */







.cookie-overlay {







    position: fixed;







    top: 0;







    left: 0;







    width: 100%;







    height: 100%;







    background-color: rgba(0, 0, 0, 0.7);







    backdrop-filter: blur(8px);







    z-index: 2000;







    display: flex;







    align-items: center;







    justify-content: center;







    opacity: 0;







    visibility: hidden;







    transition: opacity 0.4s ease, visibility 0.4s ease;







}















.cookie-overlay.is-visible {







    opacity: 1;







    visibility: visible;







}















.cookie-modal {







    background-color: var(--card-bg);







    color: var(--primary-text);







    border-radius: 20px;







    border: 1px solid var(--border-color);







    box-shadow: 0 10px 50px rgba(0,0,0,0.5);







    width: 90%;







    max-width: 480px; /* Optimal width for a vertical modal */







    display: flex;







    flex-direction: column;







    max-height: 90vh;







    transform: scale(0.95);







    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);







}















.cookie-overlay.is-visible .cookie-modal {







    transform: scale(1);







}















.cookie-modal-header {







    padding: 20px 25px;







    border-bottom: 1px solid var(--border-color);







    display: flex;







    align-items: center;







    gap: 15px;







}















.cookie-modal-header i {







    font-size: 1.8rem;







    color: var(--neon-cyan);







}















.cookie-modal-header h3 {







    margin: 0;







    font-size: 1.2rem;







}















.cookie-modal-body {







    padding: 25px;







    overflow-y: auto;







}















.cookie-modal-body p {







    margin-top: 0;







    line-height: 1.6;







}















.cookie-modal-footer {







    padding: 20px 25px;







    border-top: 1px solid var(--border-color);







    display: flex;







    flex-direction: column;







    gap: 10px;







}















.cookie-modal-footer button {















    padding: 12px 20px;















    border-radius: 10px;















    border: none;















    cursor: pointer;















    font-weight: bold;















    width: 100%;















    display: flex; /* Use flexbox for robust centering */















    align-items: center;















    justify-content: center;















}















.cookie-modal .btn-primary { background-color: var(--neon-cyan); color: #000; }







.cookie-modal .btn-secondary { background-color: #333; color: #fff; }







.cookie-modal .btn-tertiary { background-color: transparent; color: var(--secondary-text); border: 1px solid var(--border-color); }















.cookie-options {







    display: flex;







    flex-direction: column;







    gap: 10px;







}















.cookie-option {







    display: flex;







    align-items: flex-start;







    gap: 15px;







    padding: 15px;







    border-radius: 10px;







    background-color: #080808;







}















.cookie-option input[type="checkbox"] {







    width: 18px;







    height: 18px;







    margin-top: 5px;







    flex-shrink: 0;







}















.cookie-option label {







    font-size: 0.9rem;







    color: var(--secondary-text);







}















.cookie-option label strong {







    display: block;







    color: var(--primary-text);







    margin-bottom: 4px;







}















.hidden {







    display: none !important;







}















/* --- Cookie Settings Trigger --- */







.cookie-settings-trigger {







    position: fixed;







    bottom: 20px;







    left: 20px;







    width: 50px;







    height: 50px;







    background-color: var(--card-bg);







    color: var(--neon-cyan);







    border: 1px solid var(--border-color);







    border-radius: 50%;







    display: flex;







    align-items: center;







    justify-content: center;







    font-size: 1.5rem;







    cursor: pointer;







    z-index: 1999;







    box-shadow: 0 5px 20px rgba(0,0,0,0.4);







    transition: transform 0.3s, box-shadow 0.3s;







}















.cookie-settings-trigger:hover {







    transform: scale(1.1);







    box-shadow: 0 0 20px var(--neon-cyan);







}













/* --- Case Bundle Section --- */
.case-bundle {
    max-width: none;
    width: 100%;
    padding: clamp(120px, 18vh, 160px) clamp(24px, 6vw, 80px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.65));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.case-bundle__inner {
    width: min(1200px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

@media (max-width: 900px) {
    .case-bundle__inner {
        grid-template-columns: 1fr;
    }
}

.case-bundle__copy {
    display: grid;
    gap: 24px;
}

.case-bundle__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(221, 247, 0, 0.12);
    color: var(--neon-cyan);
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-inline: auto;
}

.case-bundle__notes {
    display: grid;
    gap: 16px;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(221, 247, 0, 0.14);
    background: rgba(10, 10, 10, 0.7);
}

.case-bundle__notes p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.case-bundle__notes strong {
    color: var(--primary-text);
    font-weight: 600;
}

.case-bundle__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.case-bundle__panel {
    display: grid;
    gap: 24px;
    justify-items: start;
}

.case-bundle__card {
    width: 100%;
    padding: clamp(28px, 5vw, 40px);
    border-radius: 26px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 36px 120px -80px rgba(221, 247, 0, 0.5);
    backdrop-filter: blur(18px);
}

.case-bundle__card h3 {
    margin: 0 0 18px;
    font-size: 1.4rem;
    color: var(--primary-text);
}

.case-bundle__card ul {
    list-style: none;
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.72);
}

.case-bundle__card li::before {
    content: '•';
    margin-right: 8px;
    color: var(--neon-cyan);
}

.case-bundle__tag {
    display: grid;
    gap: 4px;
    padding: 18px 24px;
    border-radius: 20px;
    background: rgba(221, 247, 0, 0.16);
    border: 1px solid rgba(221, 247, 0, 0.35);
    color: var(--primary-text);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.case-bundle__tag span {
    font-size: 0.85rem;
    font-weight: 600;
}

.case-bundle__tag small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 900px) {
    .case-bundle__panel {
        justify-items: stretch;
    }

    .case-bundle__tag {
        justify-items: center;
        text-align: center;
    }
}
