:root {
    --primary: #FFD700;
    --secondary: #D32F2F;
    --dark: #1A1A1A;
    --light: #F8F9FA;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Fluid Spacing & Sizing */
    --section-padding: clamp(3rem, 10vw, 6rem);
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

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

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;
    line-height: 1.2;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

section {
    padding: var(--section-padding) 0;
}

/* --- Navigation --- */
.header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    height: 70px;
}

.logo {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    font-weight: 900;
    z-index: 1001;
}

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

.nav-links {
    display: flex;
    gap: clamp(1rem, 3vw, 2.5rem);
}

.nav-links a {
    color: var(--dark);
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

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

/* --- 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;
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding-left: 10%;
}

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

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

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

.hero-content .tagline {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--dark);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2.5rem;
}

.hero-badges span {
    background: rgba(255, 255, 255, 0.4);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid rgba(255,255,255,0.5);
}

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

.btn {
    padding: clamp(12px, 2vw, 16px) clamp(24px, 4vw, 36px);
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.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 25px rgba(0,0,0,0.2);
}

.hero-image {
    display: flex;
    justify-content: center;
    padding-right: 5%;
}

.hero-image img {
    width: 90%;
    max-width: 600px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transition: var(--transition);
}



/* --- Cards & Content Sections --- */
.section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 8vw, 4rem);
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-top: 0.5rem;
}

.badge {
    background: var(--primary);
    color: var(--dark);
    padding: 4px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

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

.point {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 15px;
    margin-bottom: 12px;
    font-weight: 700;
    box-shadow: var(--shadow);
}

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

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

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

.product-card:hover {
    transform: scale(1.03);
}

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

.card-info {
    padding: 25px;
}

.card-info p {
    color: var(--secondary);
    font-weight: 900;
    font-size: 1.3rem;
}

/* Video Section */
.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: clamp(20px, 5vw, 40px);
    overflow: hidden;
    background: var(--dark);
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: center;
}

.main-video {
    width: 100%;
    max-height: 85vh;
    height: auto;
    object-fit: contain;
    display: block;
}

video {
    max-width: 100%;
    outline: none;
}

/* Agency Box */
.agency-box {
    background: var(--dark);
    color: var(--white);
    padding: clamp(40px, 8vw, 80px) clamp(20px, 5vw, 50px);
    border-radius: clamp(30px, 6vw, 50px);
    text-align: center;
}

.agency-box h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Map Section */
.map-container {
    border-radius: clamp(20px, 5vw, 40px);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid white;
}

/* --- Footer --- */
.footer {
    background: #0a0a0a;
    color: #999;
    padding: 80px 0 30px;
}

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

.footer h3 { color: var(--white); margin-bottom: 1.5rem; }
.footer h4 { color: var(--white); margin-bottom: 1.5rem; font-size: 1.1rem; }
.footer ul li { margin-bottom: 12px; }
.footer a { color: #999; }
.footer a:hover { color: var(--primary); }

.footer-wa-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

/* --- Utilities --- */
.wa-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.wa-float:hover {
    transform: scale(1.1) rotate(15deg);
}

[data-reveal] {
    opacity: 0;
    transition: 1s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal="up"] { transform: translateY(60px); }
[data-reveal="down"] { transform: translateY(-60px); }
[data-reveal="left"] { transform: translateX(-60px); }
[data-reveal="right"] { transform: translateX(60px); }
[data-reveal="zoom"] { transform: scale(0.85); }

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

/* --- MEDIA QUERIES (Enhanced Mobile Compatibility) --- */

@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; text-align: center; padding-top: 100px; }
    .hero-content { padding: 0 5%; }
    .hero-badges, .hero-cta { justify-content: center; }
    .hero-image { padding: 0; margin-top: 2rem; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image { order: -1; }
}

@media (max-width: 768px) {
    .navbar { padding: 0.5rem 5%; }
    
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 50px 0;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

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

    .nav-links a {
        font-size: 1.5rem;
    }

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

    .btn { width: 100%; }
    .hero-cta { flex-direction: column; width: 100%; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 480px) {
    .container { width: 88%; }
    
    .hero { min-height: auto; }
    .hero-image img { width: 95%; }
    
    .product-gallery {
        grid-template-columns: 1fr;
    }
    
    .feature-item { padding: 30px 20px; }
    
    .wa-float { width: 50px; height: 50px; font-size: 26px; bottom: 15px; right: 15px; }

    /* Fix for horizontal scroll issues on very small screens */
    [data-reveal="left"], [data-reveal="right"] {
        transform: translateY(30px);
    }
}

/* --- Promo Pop-up Modal --- */
.promo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: none; /* Hidden via JS initially */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.promo-modal-overlay.active-display {
    display: flex;
}

.promo-modal-overlay.show {
    opacity: 1;
}

.promo-modal-content {
    background: var(--white);
    width: 90%;
    max-width: 420px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    transform: translateY(40px);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

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

.promo-img-container {
    position: relative;
    height: 240px;
}

.promo-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-badge-pop {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.promo-body {
    padding: 25px 30px 30px;
    text-align: center;
}

.promo-body h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 900;
}

.promo-body p {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 25px;
    line-height: 1.4;
}

.close-promo {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    color: var(--dark);
}

.close-promo:hover {
    background: var(--secondary);
    color: white;
    transform: rotate(90deg);
}
