:root {
    --color-brand-orange: #F26522;
    --color-brand-black: #000000;
    --color-neon-green: #FFA500;

    --color-bg-dark: #0f0f0f;
    --color-bg-card: rgba(30, 30, 30, 0.6);
    --color-text-main: #ffffff;
    --color-text-muted: #b0b0b0;

    --font-primary: 'Montserrat', sans-serif;
    --transition-speed: 0.3s;
}

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

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    font-family: var(--font-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Glassmorphism */
.glass-nav,
.glass-card {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    background: rgba(255, 255, 255, 0.95);
    /* White background for dark logo */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hamburger {
    display: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    /* Black text */
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--color-brand-orange);
}

.glass-card {
    background: var(--color-bg-card);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(242, 101, 34, 0.15);
    border-color: var(--color-brand-orange);
}

/* Typography & Titles */
h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.highlight-text {
    color: var(--color-brand-orange);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, var(--color-brand-orange), #d94e10);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(242, 101, 34, 0.4);
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: scale(1.05);
}

.cta-small {
    background: var(--color-brand-orange);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
}

/* Updated Hero for Video/Logo Layout */
.b2b-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center everything */
    padding: 0;
    /* Removing padding to let BG take over, content centered */
    position: relative;
    overflow: hidden;
    text-align: center;
}

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

.bg-video-sim {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: panZoom 20s infinite alternate;
}

@keyframes panZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-bg-overlay {
    background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    padding: 2rem;
}

.hero-main-logo {
    width: 400px;
    max-width: 90vw;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.8));
    /* White glow */
}

.hero-content h1 {
    font-size: 2.5rem;
    /* Smaller than before because Logo is main */
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--color-text-main);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-outline-hero {
    background: transparent;
    border: 2px solid white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-outline-hero:hover {
    background: white;
    color: black;
}

/* Navbar Logo Adjustment */
.glass-nav .logo img {
    height: 50px;
    /* Slightly larger in nav too */
    transition: transform 0.3s;
}

.glass-nav .logo:hover img {
    transform: scale(1.1);
}

/* Benefits Grid */
.benefits-section {
    padding: 5rem 10%;
    background: #141414;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.icon-gradient {
    font-size: 2.5rem;
    color: var(--color-brand-orange);
    margin-bottom: 1rem;
}

/* Process Steps */
.process-section {
    padding: 5rem 10%;
    text-align: center;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: var(--color-brand-orange);
    color: black;
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.step-connector {
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    flex: 1;
    margin-top: 25px;
    display: none;
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 10%;
    background: #141414;
    text-align: center;
}

.testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.testimonial-card p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
}

/* Vision & Footer */
.vision-section {
    padding: 5rem 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    overflow: hidden;
}

.vision-visual {
    position: relative;
    z-index: 1;
}

.floating-balloon-small {
    width: 300px;
    border-radius: 20px;
    animation: float 6s infinite ease-in-out;
}

.glow-effect {
    box-shadow: 0 0 40px rgba(242, 101, 34, 0.4), 0 0 80px rgba(242, 101, 34, 0.2);
    border: 2px solid rgba(242, 101, 34, 0.5);
    transition: all 0.5s ease;
}

.glow-effect:hover {
    box-shadow: 0 0 60px rgba(242, 101, 34, 0.6), 0 0 100px rgba(242, 101, 34, 0.4);
    transform: scale(1.05) translateY(-10px);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

footer {
    padding: 3rem 10%;
    background: black;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-logo {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.social-links {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.social-links a {
    color: gray;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--color-brand-orange);
}

/* Responsive */
@media(max-width: 768px) {
    .b2b-hero {
        flex-direction: column;
        padding-top: 100px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 3rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    /* Fixed Overlap logic - Strict Separation */
    .hero-main-logo {
        width: 180px;
    }

    .hero-static-content {
        /* Hide logo completely on mobile as requested */
        display: none;
    }

    .slide-title {
        font-size: 2.5rem;
        /* Larger now that logo is gone */
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }

    .slide-desc {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .slide-content {
        /* Center text content */
        bottom: 25%;
        width: 90%;
        left: 5%;
        padding: 0;
        z-index: 20;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-outline-hero {
        width: 100%;
    }

    /* Mobile Menu Logic */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        /* Directly below nav */
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger span {
        display: block;
        width: 30px;
        height: 4px;
        /* Thicker for visibility */
        margin: 6px;
        background-color: var(--color-brand-orange);
        /* Orange for high visibility */
        border-radius: 2px;
        transition: 0.3s;
    }
}

/* Improved Nav Logo */
.nav-logo-img {
    height: 85px;
    /* Larger as requested */
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s, filter 0.3s;
}

.nav-logo-img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(242, 101, 34, 0.8));
}

/* Floating WhatsApp Button */
.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.float-whatsapp:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.my-float {
    margin-top: 2px;
    /* slight adjustment for icon optical centering */
}

/* Slider Styles */
.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

/* Static Content (Logo) */
.hero-static-content {
    position: relative;
    z-index: 10;
    margin-bottom: 25vh;
    /* Push logo up slightly */
    pointer-events: none;
    /* Let clicks pass through to slider if needed, though buttons are in slider now */
}

/* Slide Overlay for Contrast */
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

/* Slide Inner Content */
.slide-content {
    position: absolute;
    bottom: 20%;
    /* Position content in lower half */
    left: 0;
    width: 100%;
    text-align: center;
    padding: 0 1rem;
    z-index: 10;
    /* Above overlay */
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.slide-desc {
    font-size: 1.5rem;
    color: #f0f0f0;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}

.slide-btn {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease 0.6s, transform 1s ease 0.6s;
    display: inline-block;
}

/* Active Slide Animations */
.slide.active .slide-title,
.slide.active .slide-desc,
.slide.active .slide-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Embedded Registration Form */
.registration-section {
    padding: 5rem 10%;
    background: url('hero-kitchen-bg.png') no-repeat center center/cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Dark overlay for form section bg */
.registration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.registration-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid var(--color-brand-orange);
    box-shadow: 0 0 50px rgba(242, 101, 34, 0.2);
}

.form-subtitle {
    margin-bottom: 2rem;
    color: var(--color-text-muted);
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-bottom: 1.5rem;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--color-brand-orange);
    font-weight: 600;
}

.form-group input {
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #333;
    background: rgba(15, 15, 15, 0.8);
    color: white;
    font-family: var(--font-primary);
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: var(--color-brand-orange);
    box-shadow: 0 0 10px rgba(242, 101, 34, 0.2);
}

/* Responsive adjustment for form row */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #1a1a1a;
    border: 1px solid var(--color-brand-orange);
    padding: 3rem;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 0 50px rgba(242, 101, 34, 0.2);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--color-brand-orange);
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--color-brand-orange);
    font-weight: 600;
}

.form-group input {
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #333;
    background: #0f0f0f;
    color: white;
    font-family: var(--font-primary);
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: var(--color-brand-orange);
    box-shadow: 0 0 10px rgba(242, 101, 34, 0.2);
}