:root {
    --primary: #FFD700; /* Yellow */
    --secondary: #D32F2F; /* Red */
    --dark: #1A1A1A;
    --light: #F8F9FA;
    --white: #FFFFFF;
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Header & Navigation --- */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
}

.logo-red { color: var(--secondary); }
.logo-text { color: var(--dark); }

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

.nav-links a {
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
}

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

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

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 5px;
    transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
    padding-top: 120px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #FFCC00 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 90vh;
    gap: 2rem;
    overflow: hidden;
    padding-left: 5%;
    padding-right: 5%;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-content .highlight {
    color: var(--secondary);
    text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}

.hero-content .est {
    display: inline-block;
    background: var(--dark);
    color: var(--white);
    padding: 2px 10px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.hero-content .tagline {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.hero-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 2rem;
}

.hero-badges span {
    background: rgba(255, 255, 255, 0.4);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--dark);
    color: var(--white);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-yellow {
    background: var(--primary);
    color: var(--dark);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero-image img {
    width: 80%;
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.3);
    margin: 0 auto;
}

/* --- Features Section --- */
.features {
    padding: 80px 0;
    background: var(--white);
    margin-top: -40px;
    border-radius: 40px 40px 0 0;
    position: relative;
    z-index: 10;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--light);
    border-radius: 20px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: scale(1.05);
}

.feature-item .icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

/* --- About Section --- */
.about {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sub-title {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 1rem;
    display: block;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-points {
    margin-top: 2rem;
}

.point {
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.point i { color: var(--secondary); }

.about-image img {
    border-radius: 30px;
    box-shadow: var(--shadow);
}

/* --- Products Section --- */
.products {
    padding: 100px 0;
    background: #f0f0f0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: 15px auto;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.card-info {
    padding: 20px;
}

.card-info h3 { margin-bottom: 5px; }
.card-info p { color: var(--secondary); font-weight: 800; font-size: 1.2rem; }

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
}

/* --- Video Section --- */
.video-showcase {
    padding: 100px 0;
    background: var(--white);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    background: var(--dark);
}

.main-video {
    width: 100%;
    display: block;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-wrapper {
    position: relative;
    cursor: pointer;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(211, 47, 47, 0.8); /* Red background */
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    transition: var(--transition);
    pointer-events: none; /* Make sure clicks pass through to the video */
    z-index: 5;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.video-wrapper:hover .video-overlay {
    background: var(--secondary);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Hide overlay when video is playing */
.video-wrapper.playing .video-overlay {
    display: none;
}

/* --- Agency Section --- */
.agency {
    padding: 100px 0;
}

.agency-box {
    background: var(--dark);
    color: var(--white);
    padding: 60px 40px;
    border-radius: 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.agency-box h2 { font-size: 2.5rem; margin-bottom: 1rem; color: var(--primary); }
.agency-box p { margin-bottom: 2rem; font-size: 1.1rem; opacity: 0.9; }

/* --- Footer --- */
.footer {
    background: #111;
    color: #888;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-info h3 { color: var(--white); margin-bottom: 1rem; }
.footer h4 { color: var(--white); margin-bottom: 1.5rem; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: #888; }
.footer ul li a:hover { color: var(--primary); }

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* --- Floating Button --- */
.wa-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
}

/* --- Reveal Animations --- */
[data-reveal] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

[data-reveal="bottom"] { transform: translateY(50px); }
[data-reveal="left"] { transform: translateX(-50px); }
[data-reveal="right"] { transform: translateX(50px); }
[data-reveal="zoom"] { transform: scale(0.9); }
[data-reveal="fade"] { transform: none; }

[data-reveal].active {
    opacity: 1;
    transform: none;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        padding: 40px 0;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
    }

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

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 140px;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 0;
    }

    .hero-badges, .hero-cta {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-text h2 {
        font-size: 2.2rem;
    }

    .hero-image img {
        width: 70%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content .tagline {
        font-size: 1.1rem;
    }
    .hero-cta {
        flex-direction: column;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
    .agency-box {
        padding: 40px 20px;
    }
    .agency-box h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 320px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .logo {
        font-size: 1.4rem;
    }
}
