:root {
    --primary: #FFE600; /* High voltage yellow */
    --bg-color: #09090b; /* Almost pure black */
    --text-main: #ffffff;
    --text-muted: #888899;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.5;
}

/* Typography Selection */
::selection {
    background-color: var(--primary);
    color: #000;
}

/* Background Marquee */
.marquee-bg {
    position: fixed;
    top: 20%;
    left: -10vw;
    width: 120vw;
    white-space: nowrap;
    overflow: hidden;
    z-index: -1;
    opacity: 0.03;
    pointer-events: none;
    transform: rotate(-5deg);
}

.marquee-bg.reverse {
    top: 60%;
    transform: rotate(5deg);
}

.marquee-track {
    display: inline-block;
    font-size: 15vw;
    font-weight: 900;
    color: #fff;
    animation: scrollText 40s linear infinite;
}

.marquee-bg.reverse .marquee-track {
    animation: scrollTextReverse 40s linear infinite;
}

@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollTextReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Main Layout */
.content-wrapper {
    position: relative;
    z-index: 10;
    padding: 0 4vw;
}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    position: relative;
    z-index: 2000;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-phone {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    border: 2px solid var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-phone:hover {
    background-color: var(--primary);
    color: #000;
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 2100;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    transition: 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

/* Fullscreen Navigation */
.fullscreen-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(9, 9, 11, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.fullscreen-nav.active {
    opacity: 1;
    pointer-events: all;
}

.nav-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.nav-links a {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s;
    display: block;
}

.nav-links a:hover {
    color: var(--primary);
    -webkit-text-stroke: 1px var(--primary);
    transform: scale(1.05);
}

/* Sub-page Specific Styles */
.page-header {
    padding: 15vh 0 5vh;
    text-align: center;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5vh 0 15vh;
}

.page-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin: 40px 0 20px;
    font-weight: 800;
}

.page-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.page-content li {
    margin-bottom: 10px;
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-bottom: 10vh;
}

.hero-text-container {
    max-width: 1200px;
}

.kinetic-text {
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.kinetic-text .line {
    display: block;
    overflow: hidden; /* For reveal animation */
}

.kinetic-text .word {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s;
}

.kinetic-text.animate .word {
    transform: translateY(0);
    opacity: 1;
}

/* Stagger word animations */
.kinetic-text .line:nth-child(1) .word { transition-delay: 0.1s; }
.kinetic-text .line:nth-child(2) .word { transition-delay: 0.2s; }
.kinetic-text .line:nth-child(3) .word { transition-delay: 0.3s; }

.kinetic-text .highlight {
    color: var(--primary);
}

.h1-desc {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 300;
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: 60px;
    line-height: 1.4;
}

.huge-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: var(--primary);
    color: #000;
    text-decoration: none;
    padding: 20px 50px;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 100px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.huge-btn:hover {
    transform: scale(1.05);
}

.huge-btn .arrow {
    transition: transform 0.4s;
}

.huge-btn:hover .arrow {
    transform: translateX(10px);
}

/* Features */
.features-section {
    padding: 15vh 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.section-heading {
    margin-bottom: 100px;
}

.outline-text {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.2);
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    margin-top: -10px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feature-row {
    display: flex;
    gap: 4vw;
    align-items: flex-start;
}

.feature-num {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px var(--primary);
    line-height: 1;
}

.feature-content h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
}

.feature-content > p {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.sub-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.sub-details h4, 
.sub-details h5, 
.sub-details h6 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.sub-details p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Bottom CTA */
.bottom-cta {
    padding: 15vh 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.kinetic-heading {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 40px;
}

.massive-number {
    display: inline-block;
    font-size: clamp(3rem, 9vw, 8rem);
    font-weight: 900;
    color: var(--primary);
    text-decoration: none;
    position: relative;
    transition: transform 0.3s;
}

.massive-number:hover {
    transform: scale(1.02);
}

/* Scroll Reveals */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

.site-footer {
    padding: 40px 0;
    text-align: center;
    font-weight: 700;
    color: var(--text-muted);
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .feature-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .feature-num {
        font-size: 4rem;
    }
}

/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.15) translateY(-5px);
}

/* WhatsApp Button (Yellow on Black) */
.wa-btn {
    background-color: var(--primary);
    color: var(--bg-color);
    border: 2px solid var(--primary);
}

.wa-btn:hover {
    box-shadow: 0 15px 30px rgba(255, 230, 0, 0.3);
}

/* Phone Button (Black with Yellow Outline) */
.phone-btn {
    background-color: var(--bg-color);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.phone-btn:hover {
    background-color: var(--primary);
    color: var(--bg-color);
    box-shadow: 0 15px 30px rgba(255, 230, 0, 0.3);
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
    }
}

