/* =============== ROOT VARIABLES =============== */
:root {
    --stark-black: #0c0c0c;
    --bg-white: #FFFFFF;
    --arc-blue: #00D2FF;
    --hot-rod-red: #8B0000;
    --text-gray: #444444;
    --brand-green: #00cba9;
    --light-gray: #f5f5f5;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* Smoother transition */
    --box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Softer, deeper shadow */
    --card-hover-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* =============== RESET & BASE STYLES =============== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Video Background Utilities */
.video-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.video-background-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    /* Adjust opacity as needed */
    position: absolute;
    top: 0;
    left: 0;
}

/* Ensure sections with video bg are positioned relatively */
.hero-video-section,
.video-header-section {
    position: relative;
    background-color: var(--stark-black);
    /* Fallback color */
    overflow: hidden;
}

/* Ensure content sits above video */
.hero-video-section .container,
.hero-video-section .hero-text,
.video-header-section .container,
.video-header-section .section-headings,
.video-header-section .text-content {
    position: relative;
    z-index: 2;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Dark tint */
    z-index: 1;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* Base font size */
}

body {
    background-color: var(--stark-black);
    color: var(--text-gray);
    font-family: 'Inter', sans-serif;
    /* Modern font */
    line-height: 1.7;
    /* Increased line height */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    /* Smoother fonts */
}

h1,
h2,
h3,
h4 {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1320px;
    /* Wider container for modern feel */
    margin: 0 auto;
    padding: 0 20px;
}

/* =============== NAVBAR STYLES =============== */
.navbar {
    background-color: rgba(12, 12, 12, 0.95);
    /* Slightly transparent */
    height: 100px;
    /* Taller navbar */
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 9999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    /* Frosted glass effect */
}

.logo-container img {
    height: 55px;
    /* Slightly adjusted */
    width: auto;
    transition: var(--transition);
}

.logo-container img:hover {
    transform: scale(1.02);
}

.nav-pill-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    /* Subtler background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 5px 10px;
    backdrop-filter: blur(5px);
}

.nav-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    /* Slightly larger */
    font-weight: 500;
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    border-radius: 50px;
    /* Pill shape hover */
    transition: var(--transition);
}

.nav-item:hover {
    color: var(--stark-black);
    background: var(--arc-blue);
    text-shadow: none;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
}

/* =============== DROPDOWN STYLES =============== */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    /* Bridge the gap */
    left: 50%;
    transform: translateX(-50%);
    padding-top: 10px;
    /* Use padding for visual spacing but keep actionable area */
    display: none;
    z-index: 10000;
    animation: fadeIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-list {
    background: #1a1a1a;
    background: var(--stark-black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    /* Increased radius */
    min-width: 240px;
    /* Wider */
    padding: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    overflow: visible;
    /* CHANGED from hidden to allow nested flyout */
}

.dropdown-item {
    display: block;
    padding: 14px 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    border-radius: 8px;
    /* Rounded items */
    margin-bottom: 2px;
}

.dropdown-item:hover {
    background: rgba(0, 210, 255, 0.15);
    color: var(--arc-blue);
    padding-left: 20px;
    /* No indent change */
    transform: translateX(5px);
}

/* =========================================
   NESTED DROPDOWN STYLES (Desktop)
   ========================================= */
.nested-dropdown {
    position: relative;
    width: 100%;
}

.nested-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 14px 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    border-radius: 8px;
}

.nested-trigger:hover {
    background: rgba(0, 210, 255, 0.15);
    color: var(--arc-blue);
    transform: translateX(5px);
}

.nested-menu {
    display: none;
    position: absolute;
    left: 100%;
    /* Flyout to right */
    top: 0;
    width: 220px;
    background: var(--stark-black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 10005;
    margin-left: 10px;
}

.nested-dropdown:hover .nested-menu {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* =============== HAMBURGER MENU (Mobile) =============== */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10000;
    padding: 8px;
    transition: var(--transition);
}

.hamburger-menu i {
    color: var(--arc-blue);
    font-size: 1.5rem;
    transition: var(--transition);
}

.hamburger-menu:hover i {
    color: var(--brand-green);
    transform: scale(1.1);
}

/* =============== HERO SECTION =============== */
.hero-video-section {
    position: relative;
    height: 90vh;
    /* Taller hero */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
    /* More spacing */
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Lighter overlay */
    z-index: -1;
}

.hero-text {
    text-align: center;
    color: #FFFFFF;
    z-index: 1;
    padding: 40px;
    max-width: 1000px;
}

.hero-text h1 {
    font-size: 4.5rem;
    /* Larger title */
    margin-bottom: 20px;
    color: var(--hot-rod-red);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* =============== CTA BUTTON =============== */
.cta-btn {
    background-color: var(--hot-rod-red);
    color: #FFFFFF;
    padding: 18px 40px;
    /* Larger button */
    border-radius: 100px;
    /* Pill shape */
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    border: none;
    /* Removed border */
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.3);
    /* Soft shadow tint */
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0, 210, 255, 0.3);
    background-color: var(--arc-blue);
    color: var(--stark-black);
}

/* =============== WHITE SECTIONS =============== */
.white-section {
    background-color: var(--bg-white);
    padding: 120px 0;
    /* More vertical whitespace */
    margin-bottom: 0;
}

.white-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    /* More gap */
}

/* Removed margin-bottom logic to cleaner look */

.content-box {
    flex: 1;
    max-width: 50%;
}

.content-box-full {
    width: 100%;
}

.green-notch {
    width: 60px;
    height: 4px;
    background-color: var(--brand-green);
    margin-bottom: 30px;
}

.section-headings {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.section-headings h2 {
    font-size: 2.2rem;
    /* Larger headings */
    margin: 0;
    letter-spacing: -0.5px;
    cursor: default;
    color: var(--stark-black);
}

.title-active {
    color: var(--brand-green) !important;
}

.text-content p {
    font-size: 1.05rem;
    /* Larger text */
    color: #555;
    text-align: left;
    /* Improved readability */
    margin-bottom: 25px;
    line-height: 1.8;
}

/* =============== IMAGE BOX =============== */
.image-box {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.image-box img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    /* Softer corners */
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.image-box img:hover {
    transform: scale(1.02);
    box-shadow: var(--card-hover-shadow);
}

.white-section.reverse .container {
    flex-direction: row-reverse;
}

.white-section.reverse .image-box {
    justify-content: flex-start;
}

/* =============== WHY US GRID (MODERN CARD LAYOUT) =============== */
.why-us {
    background-color: #fafafa;
    /* Slightly off-white for contrast */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    /* Wider gap */
    margin-top: 60px;
}

.feature-item {
    background: #fff;
    padding: 40px 30px;
    /* More padding */
    border-radius: 20px;
    /* Modern curves */
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle border */
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    /* Vertical alignment for modern logic */
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    /* Minimal styling initially */
}

.feature-item:hover {
    border-color: transparent;
    transform: translateY(-10px);
    box-shadow: var(--card-hover-shadow);
}

.feature-item:hover .feature-icon {
    color: var(--arc-blue);
    background: rgba(0, 210, 255, 0.1);
    transform: scale(1);
    /* No scale, just color change */
}

.feature-item:hover .feature-text h3 {
    color: var(--arc-blue);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--brand-green);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 203, 169, 0.1);
    /* Subtle background */
    border-radius: 12px;
    transition: var(--transition);
    margin-bottom: 5px;
}

.feature-text h3 {
    font-size: 1.1rem;
    color: var(--stark-black);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.feature-text p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.7;
}

/* =============== VIDEO TESTIMONIALS SECTION =============== */
.testimonials-section {
    background-color: var(--bg-white);
    padding: 120px 0;
}

.testimonials-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
}

.testimonials-header h2 {
    font-size: 2.2rem;
    color: var(--stark-black);
    margin-bottom: 15px;
}

.testimonials-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Add More Button */
.add-more-btn {
    margin-top: 60px;
    text-align: center;
}

.add-more-btn button {
    background: var(--brand-green);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 100px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(0, 203, 169, 0.3);
}

.add-more-btn button:hover {
    background: var(--arc-blue);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 210, 255, 0.4);
}

.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
}

.video-testimonial-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: none;
}

.video-testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--card-hover-shadow);
}

.video-container {
    position: relative;
    width: 100%;
    height: 450px;
    /* Taller videos */
    overflow: hidden;
    background: #000;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.video-testimonial-card:hover video {
    transform: scale(1.05);
    /* Subtle zoom */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

/* Audio Control Buttons */
.video-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.control-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.control-btn:hover {
    background: var(--arc-blue);
    border-color: var(--arc-blue);
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.play-button:hover {
    background: var(--hot-rod-red);
    border-color: var(--hot-rod-red);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    color: white;
    font-size: 1.8rem;
    margin-left: 4px;
}

.client-info {
    color: white;
    z-index: 2;
}

.client-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 600;
}

.client-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
    color: var(--arc-blue);
}

.testimonial-content {
    padding: 30px;
}

.testimonial-content h4 {
    color: var(--stark-black);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.testimonial-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.rating {
    color: #FFD700;
    font-size: 1rem;
}

.rating span {
    color: #888;
    font-size: 0.8rem;
    margin-left: 10px;
}

/* Audio indicator */
.audio-indicator {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.audio-indicator.muted {
    background: rgba(255, 0, 0, 0.6);
}

.hidden {
    display: none !important;
}

/* =============== FOOTER STYLES (MODERN) =============== */
.footer {
    background-color: #080808;
    /* Darker than stark-black */
    color: #fff;
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    /* Modern asymmetry */
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo img {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-about p {
    color: #888;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 350px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    /* Soft square */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-icon:hover {
    background: var(--hot-rod-red);
    transform: translateY(-5px);
    border-color: var(--hot-rod-red);
}

.social-icon i {
    font-size: 1.1rem;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    color: #999;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
}

.footer-links a:hover {
    color: var(--arc-blue);
    transform: translateX(5px);
}

.footer-links a i {
    display: none;
    /* Remove chevron for cleaner look */
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    color: #aaa;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--hot-rod-red);
    margin-top: 3px;
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-input {
    display: flex;
    gap: 10px;
}

.newsletter-input input {
    flex: 1;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.newsletter-input input::placeholder {
    color: #666;
}

.newsletter-btn {
    background: var(--hot-rod-red);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
}

.newsletter-btn:hover {
    background: var(--arc-blue);
    color: var(--stark-black);
}


/* =============== PRICING TABLE STYLES =============== */
.pricing-section {
    background-color: var(--stark-black);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 210, 255, 0.05), transparent 70%);
    z-index: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--arc-blue);
    background: rgba(0, 210, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 210, 255, 0.1);
}

.pricing-card.popular {
    background: linear-gradient(145deg, rgba(0, 210, 255, 0.1), rgba(0, 0, 0, 0.4));
    border-color: var(--arc-blue);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.15);
}

.pricing-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--arc-blue);
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
}

.price span {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    flex-grow: 1;
    text-align: left;
}

.pricing-features li {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.pricing-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--brand-green);
    position: absolute;
    left: 0;
    top: 2px;
}

.pricing-btn {
    width: 100%;
    background: transparent;
    border: 2px solid var(--arc-blue);
    color: white;
    padding: 15px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Orbitron', sans-serif;
}

.pricing-card:hover .pricing-btn,
.pricing-card.popular .pricing-btn {
    background: var(--arc-blue);
    color: var(--stark-black);
}

/* =========================================
   RESPONSIVE STYLES (CONSOLIDATED)
   ========================================= */

/* Hamburger Menu (Default Hidden) */
.hamburger-menu {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    z-index: 10001;
    transition: var(--transition);
}

.hamburger-menu:hover {
    color: var(--arc-blue);
}

/* 1. Large Screens & Laptops (1024px - 1366px) */
@media (max-width: 1366px) {
    .container {
        max-width: 95%;
        padding: 0 20px;
    }

    .navbar {
        height: 90px;
        padding: 0 30px;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* 2. Tablets (Max 1024px) */
@media (max-width: 1024px) {

    .pricing-grid,
    .features-grid,
    .video-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* 3. Mobile Devices (Max 768px) */
@media (max-width: 768px) {

    /* Show Hamburger, Hide Desktop CTA */
    .hamburger-menu {
        display: block !important;
        order: 3;
    }

    .navbar {
        height: 70px;
        padding: 0 20px;
        background: rgba(12, 12, 12, 0.98);
        justify-content: space-between;
    }

    .logo-container {
        order: 1;
    }

    .logo-container img {
        height: 35px;
    }

    .cta-btn {
        display: none;
    }

    /* Mobile Menu Slide-in */
    .nav-pill-box {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(12, 12, 12, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 20px 15px;
        gap: 0;
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 9998;
        overflow-y: auto;
    }

    .nav-pill-box.active {
        transform: translateX(0);
    }

    .nav-item {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 0;
    }

    /* Mobile Dropdown Styles - Aggressive Resets */
    .dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        width: 100% !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        display: none;
        margin: 10px 0 0 0;
        transform: none !important;
        left: auto !important;
    }

    .dropdown.active .dropdown-menu {
        display: block !important;
    }

    /* Reset the internal list container */
    .dropdown-list {
        width: 100% !important;
        min-width: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .dropdown-item {
        padding: 10px 0 !important;
        /* Vertical padding only */
        margin: 0 auto !important;
        color: #aaa !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        display: block !important;
        text-align: center !important;
        width: 100% !important;
        font-size: 0.85rem !important;
        background: transparent !important;
    }

    .dropdown-item:hover {
        color: var(--arc-blue) !important;
        background: rgba(255, 255, 255, 0.02) !important;
        padding-left: 0 !important;
        /* Prevent desktop hover shift */
        transform: none !important;
    }

    /* Typography */
    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    /* Nested Dropdown Mobile */
    .nested-dropdown {
        width: 100% !important;
    }

    .nested-menu {
        position: static !important;
        width: 100% !important;
        display: none;
        padding-left: 0 !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        transform: none !important;
    }

    .nested-dropdown.active .nested-menu {
        display: block !important;
    }

    .nested-dropdown:hover .nested-menu {
        display: none;
        /* Disable hover on mobile */
    }

    .nested-dropdown.active:hover .nested-menu {
        display: block !important;
    }

    .nested-trigger i {
        transition: transform 0.3s;
    }

    .nested-dropdown.active .nested-trigger i {
        transform: rotate(90deg);
    }

    .hero-text p {
        font-size: 1rem;
    }

    /* Stack All Grids */
    .pricing-grid,
    .features-grid,
    .video-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        /* Reduced gap */
    }

    .pricing-card {
        padding: 25px 20px;
        /* Reduced padding */
        width: 100%;
        max-width: 320px;
        /* Prevent too wide on larger mobiles */
        margin: 0 auto;
        /* Center it */
    }

    /* White Sections - Mobile Adjustments */
    .white-section {
        padding: 60px 0 !important;
        /* Reduced from 120px */
    }

    .white-section .container {
        flex-direction: column;
        gap: 30px !important;
        /* Reduced from 80px */
    }

    .white-section.reverse .container {
        flex-direction: column-reverse;
    }

    /* Content Box - Remove Desktop Width Constraints */
    .content-box {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 10px;
    }

    .content-box-full {
        width: 100%;
        padding: 0 10px;
    }

    /* Image Box - Center and Constrain */
    .image-box {
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }

    .image-box img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    /* Section Headings - Reduce Size */
    .section-headings {
        margin-bottom: 25px !important;
    }

    .section-headings h2 {
        font-size: 1.8rem !important;
        text-align: left;
    }

    /* Text Content - Better Mobile Typography */
    .text-content p {
        font-size: 0.95rem !important;
        line-height: 1.7;
        text-align: left;
        margin-bottom: 20px;
    }

    .text-content ul {
        padding-left: 0;
    }

    .text-content ul li {
        font-size: 0.9rem;
        padding-left: 0;
        margin-bottom: 12px;
    }

    /* Green Notch - Smaller on Mobile */
    .green-notch {
        width: 50px;
        height: 3px;
        margin-bottom: 20px;
    }

    /* Footer */
    .footer {
        padding: 40px 0;
        text-align: center;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .footer-logo img {
        margin: 0 auto 20px;
    }

    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Modal */
    .modal-content {
        width: 90%;
        max-width: 400px;
        max-height: 85vh;
        overflow-y: auto;
        padding: 30px 20px;
        margin: auto;
        display: flex;
        flex-direction: column;
    }

    .modal-body {
        overflow-y: auto;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .contact-option {
        padding: 15px;
        gap: 15px;
    }

    .contact-option i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .contact-option a {
        font-size: 0.95rem;
    }
}

/* 4. Small Mobile (Max 480px) */
@media (max-width: 480px) {
    .navbar {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .section-headings h2 {
        font-size: 1.5rem;
    }
}

/* =========================================
   CONTACT MODAL STYLES
   ========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--stark-black);
    width: 90%;
    max-width: 500px;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.15);
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: #666;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--hot-rod-red);
    transform: rotate(90deg);
}

.modal-header h2 {
    color: var(--arc-blue);
    font-size: 1.8rem;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.modal-header p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-option {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    text-align: left;
    cursor: pointer;
}

.contact-option:hover {
    background: rgba(0, 210, 255, 0.05);
    border-color: var(--arc-blue);
    transform: translateX(5px);
}

.contact-option i {
    font-size: 1.5rem;
    color: var(--brand-green);
    background: rgba(0, 203, 169, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-option h3 {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 2px;
}

.contact-option a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
    font-family: 'Orbitron', sans-serif;
}

.contact-option:hover a {
    color: var(--arc-blue);
}

.modal-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer p {
    color: #666;
    font-size: 0.8rem;
}

@media (max-width: 1366px) {
    .container {
        max-width: 95%;
        padding: 0 20px;

        .navbar {
            height: 90px;
            padding: 0 30px;
        }

        .hero-text h1 {
            font-size: 3.5rem;
        }

        .pricing-grid {
            grid-template-columns: repeat(3, 1fr);
            /* Keep 3 if they fit, or 2 */
            gap: 20px;
        }
    }

    /* 2. Tablet & Small Laptop (Max 1024px) */
    @media (max-width: 1024px) {

        .pricing-grid,
        .features-grid,
        .video-testimonials-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .pricing-card.popular {
            transform: scale(1);
            /* Reset scale */
        }

        .footer-content {
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
    }

    /* 3. Mobile (Max 768px) */
    @media (max-width: 768px) {

        /* Navbar Mobile */
        .navbar {
            height: 70px;
            padding: 0 20px;
            background: rgba(12, 12, 12, 0.98);
            justify-content: space-between;
        }

        .hamburger-menu {
            display: block;
            /* Show hamburger */
            order: 3;
        }

        .logo-container {
            order: 1;
        }

        .logo-container img {
            height: 35px;
        }

        .cta-btn {
            display: none;
            /* Hide CTA */
        }

        /* Mobile Menu Overlay */
        .nav-pill-box {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            height: calc(100vh - 70px);
            background: rgba(12, 12, 12, 0.98);
            backdrop-filter: blur(10px);
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            padding: 20px 15px;
            gap: 0;
            border: none;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            transform: translateX(100%);
            transition: transform 0.3s ease;
            z-index: 9998;
            overflow-y: auto;
        }

        .nav-pill-box.active {
            transform: translateX(0);
        }

        .nav-item {
            width: 100%;
            text-align: center;
            padding: 12px 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 0;
        }

        /* Dropdowns in Mobile Menu */
        .dropdown,
        .dropdown-menu,
        .dropdown-list {
            width: 100%;
            position: static;
            background: transparent;
            box-shadow: none;
            border: none;
            transform: none;
            padding: 0;
            text-align: center;
        }

        .dropdown-menu {
            display: none;
            margin-top: 10px;
        }

        /* Show on click (via JS toggling .active on parent) */
        .dropdown.active .dropdown-menu {
            display: block;
        }

        /* Disable hover for mobile */
        .dropdown:hover .dropdown-menu {
            display: none;
        }

        .dropdown.active:hover .dropdown-menu {
            display: block;
        }

        .dropdown-item {
            padding: 10px 15px;
            color: #aaa;
            font-size: 0.85rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.02);
            display: block;
            /* Ensure block for clickability */
        }

        /* Hero Text */
        .hero-text h1 {
            font-size: 2.2rem;
            line-height: 1.2;
        }

        .hero-text p {
            font-size: 1rem;
        }

        /* Grids to Stack - FORCE VERTICAL */
        .pricing-grid,
        .features-grid,
        .video-testimonials-grid {
            display: grid !important;
            grid-template-columns: 1fr !important;
            gap: 30px !important;
            width: 100% !important;
            justify-items: center;
        }

        /* Sections */
        .white-section .container,
        .white-section.reverse .container {
            flex-direction: column;
        }

        .white-section.reverse .container {
            /* Keep column for stacking, order controlled by HTML or just standard flow */
            flex-direction: column-reverse;
            /* Image on top? or text on top? usually image top or text top. Standard column puts text top if text is first. */
        }

        .image-box {
            justify-content: center;
        }

        /* Footer Stacking */
        .footer {
            padding: 40px 0;
            text-align: center;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .footer-logo img {
            margin: 0 auto 20px;
        }

        .footer-links ul {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Modal Responsive Fixed */
        .modal-content {
            width: 90%;
            max-width: 400px;
            max-height: 85vh;
            /* Limit height */
            overflow-y: auto;
            /* Scrollable */
            padding: 30px 20px;
            margin: auto;
            /* Center */
            display: flex;
            flex-direction: column;
        }

        .modal-body {
            overflow-y: auto;
        }

        .modal-header h2 {
            font-size: 1.5rem;
        }

        .contact-option {
            padding: 15px;
            gap: 15px;
        }

        .contact-option i {
            width: 40px;
            height: 40px;
            font-size: 1.2rem;
        }

        .contact-option a {
            font-size: 0.9rem;
        }
    }

    /* 4. Small Mobile (Max 480px) */
    @media (max-width: 480px) {
        .hero-text h1 {
            font-size: 1.8rem;
        }

        .section-headings h2 {
            font-size: 1.5rem;
        }

        .navbar {
            padding: 0 15px;
        }
    }
}