:root {
    --primary: #EE3124;
    --accent: #FF9D00;
    --bg-color: #F8FAFF;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --neu-flat: 10px 10px 20px #e6e9f0, -10px -10px 20px #ffffff;
    --neu-convex: 10px 10px 30px #d1d9e6, -10px -10px 30px #ffffff;
    --neu-concave: inset 8px 8px 16px #d1d9e6, inset -8px -8px 16px #ffffff;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    height: 90px;
    background: rgba(248, 250, 255, 0.85);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 10px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}


/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 90vh;
    padding-top: 100px;
    gap: 4rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 800;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 500px;
    line-height: 1.6;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-slider-container {
    width: 100%;
    max-width: 450px;
    height: 450px;
    aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    background: #fff;
    box-shadow: var(--neu-convex);
    border: 8px solid #fff;
}

.hero-slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.4);
}

/* Utils */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--text-primary);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: #fff;
    color: var(--text-primary);
    box-shadow: var(--neu-flat);
}

/* Hook Stats */
.hook {
    padding: 8rem 0;
}

.hook-card {
    background: #fff;
    padding: 4rem;
    border-radius: 50px;
    box-shadow: var(--neu-convex);
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hook-stats {
    display: flex;
    gap: 3rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
}

/* 3D Interactive Container */
.three-d-interactive-container {
    margin-top: 6rem;
    text-align: center;
}

.three-d-header {
    margin-bottom: 3rem;
}

.three-d-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.canvas-wrapper {
    width: 100%;
    height: 450px;
    background: #fff;
    box-shadow: var(--neu-concave);
    border-radius: 40px;
    margin-bottom: 2rem;
    cursor: grab;
}

.canvas-wrapper:active {
    cursor: grabbing;
}

.color-controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.skin-btn {
    padding: 0.8rem 1.8rem;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.skin-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

.skin-btn.active {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
}

/* Mobile */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 75%;
        max-width: 350px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        gap: 2rem;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-cta {
        display: none;
    }

    .blur-content {
        filter: blur(5px);
        pointer-events: none;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 120px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hook-card {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
        gap: 2rem;
    }

    .hook-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .contact-grid,
    .grid-2 {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .cta-content {
        text-align: center;
        order: -1;
    }

    .cta-image {
        display: flex;
        justify-content: center;
    }

    .canvas-wrapper {
        height: 350px;
    }

    .section {
        padding: 5rem 0;
    }
}

@media (max-width: 480px) {
    .hero-slider-container {
        max-width: 320px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .canvas-wrapper {
        height: 300px;
    }

    .three-d-title {
        font-size: 1.8rem;
    }

    .color-controls {
        flex-direction: column;
        align-items: center;
    }

    .skin-btn {
        width: 100%;
        max-width: 250px;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Specific Section Fixes */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    font-size: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.text-center {
    text-align: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-image {
    perspective: 1000px;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.cactus-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    box-shadow: var(--neu-convex);
}

.bg-soft {
    background: #f0f4f8;
}

.section {
    padding: 8rem 0;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: var(--primary);
}

/* Modal form contact */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #888;
}

.close-modal:hover {
    color: #333;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
}

/* Upload button wrapper */
.upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.upload-btn-wrapper input[type=file] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
    height: 100%;
}

/* --- Restored Original Slider & Marquee Styles --- */
.slider-container {
    width: 100%;
    margin: 3rem auto;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.slider-container::before,
.slider-container::after,
.reviews::before,
.reviews::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.slider-container::before,
.reviews::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color) 0%, transparent 100%);
}

.slider-container::after,
.reviews::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color) 0%, transparent 100%);
}

.slider-track {
    display: flex;
    gap: 30px;
    width: max-content;
    will-change: transform;
}

.track-left {
    animation: scrollLeft 35s linear infinite;
}

.track-right {
    animation: scrollRight 35s linear infinite;
    margin-top: 30px;
}

.slide {
    width: 320px;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: var(--neu-convex);
    transition: var(--transition);
}

.slide:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(calc(-50% - 15px));
    }

    100% {
        transform: translateX(0);
    }
}

/* Restored Reviews Scrolling */
.reviews {
    overflow: hidden;
    position: relative;
    padding: 5rem 0;
}

.reviews-grid {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollRight 40s linear infinite;
    padding-top: 2rem;
}

.review-card {
    width: 380px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: var(--neu-convex);
    flex-shrink: 0;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #FFB800;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--text-secondary);
}

.review-author {
    font-weight: 700;
    color: var(--primary);
}