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

html {
    overflow: hidden;
    height: 100vh;
}

:root {
    /* Enhanced Color Palette - Vibrant & Modern */
    --bg-cream: #F5EFE6;
    --bg-light: #FAF6F0;
    --text-dark: #2C2416;
    --text-medium: #5C5346;
    --text-light: #8C8376;

    /* Product Colors - Enhanced Vibrancy */
    --orange-primary: #FF6B35;
    --orange-light: #FF8C42;
    --orange-dark: #FF4500;
    --orange-bg: rgba(255, 107, 53, 0.15);
    --orange-glow: rgba(255, 107, 53, 0.4);

    --lemon-primary: #FFD700;
    --lemon-light: #FFEB3B;
    --lemon-dark: #FFC107;
    --lemon-bg: rgba(255, 215, 0, 0.15);
    --lemon-glow: rgba(255, 215, 0, 0.4);

    --grape-primary: #8B5CF6;
    --grape-light: #A78BFA;
    --grape-dark: #7C3AED;
    --grape-bg: rgba(139, 92, 246, 0.15);
    --grape-glow: rgba(139, 92, 246, 0.4);

    /* Accent Colors */
    --accent-pink: #FF6B9D;
    --accent-cyan: #06B6D4;
    --accent-emerald: #10B981;

    /* UI Elements */
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-color: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px;

    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-elastic: 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
    font-family: var(--font-primary);
    background: linear-gradient(135deg, #F5EFE6 0%, #FAF6F0 50%, #FFE8D6 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: var(--text-dark);
    overflow: hidden;
    height: 100vh;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}


/* ===== SLIDER CONTAINER ===== */
.slider-container {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* ===== SLIDES ===== */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide[data-slide="1"] {
    background: linear-gradient(135deg, #D00000 0%, #E63900 30%, #ff3300 60%, #ff2600 100%);
    background-size: 400% 400%;
    animation: slideGradient 12s ease infinite;
}

.slide[data-slide="2"] {
    background: linear-gradient(135deg, #ffd000 0%, #fdc91e 30%, #ffcb22 60%, #ffd000 100%);
    background-size: 400% 400%;
    animation: slideGradient 12s ease infinite;
}

.slide[data-slide="3"] {
    background: linear-gradient(135deg, #9b003b 0%, #af0066 30%, #be0075 60%, #da00aa 100%);
    background-size: 400% 400%;
    animation: slideGradient 12s ease infinite;
}

@keyframes slideGradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== DECORATIVE ELEMENTS ===== */
.decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.emoji-orange,
.emoji-lemon,
.emoji-grape,
.emoji-leaf {
    position: absolute;
    width: 120px;
    height: 120px;
    opacity: 0.8;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
    transition: all var(--transition-base);
}

.emoji-orange:hover,
.emoji-lemon:hover,
.emoji-grape:hover {
    transform: scale(1.2) rotate(15deg);
    opacity: 1;
}

.emoji-1 {
    top: 15%;
    left: 10%;
    animation: floatBounce 6s ease-in-out infinite;
}

.emoji-2 {
    bottom: 20%;
    right: 15%;
    animation: floatBounce 8s ease-in-out infinite 1s;
}

.emoji-leaf {
    top: 10%;
    right: 20%;
    width: 80px;
    height: 80px;
    animation: rotateFloat 10s linear infinite;
}

@keyframes floatBounce {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    25% {
        transform: translateY(-30px) rotate(5deg) scale(1.05);
    }

    50% {
        transform: translateY(-20px) rotate(-5deg) scale(1.1);
    }

    75% {
        transform: translateY(-35px) rotate(3deg) scale(1.05);
    }
}

@keyframes rotateFloat {
    0% {
        transform: rotate(0deg) translateY(0);
    }

    50% {
        transform: rotate(180deg) translateY(-15px);
    }

    100% {
        transform: rotate(360deg) translateY(0);
    }
}

/* ===== SLIDE TITLE ===== */
.slide-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(8rem, 20vw, 16rem);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px rgba(0, 0, 0, 0.08);
    letter-spacing: -0.03em;
    user-select: none;
    pointer-events: none;
    z-index: 1;
}

.slide[data-slide="1"] .slide-title {
    color: var(--orange-bg);
}

.slide[data-slide="2"] .slide-title {
    color: var(--lemon-bg);
}

.slide[data-slide="3"] .slide-title {
    color: var(--grape-bg);
}

/* ===== TEXT CONTENT ===== */
.text-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: textEntrance 1s var(--transition-bounce);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
}

@keyframes textEntrance {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.step-number {
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--orange-primary), var(--grape-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.05em;
    line-height: 1;
    animation: numberPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.1));
}

@keyframes numberPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.slide[data-slide="1"] .step-number {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide[data-slide="2"] .step-number {
    background: linear-gradient(135deg, var(--lemon-dark), var(--lemon-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide[data-slide="3"] .step-number {
    background: linear-gradient(135deg, var(--grape-primary), var(--grape-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: white;
    letter-spacing: -0.03em;
    margin: 0;
    animation: titleSlideIn 0.8s var(--transition-base) 0.2s both;
}


.logo-text {
    width: clamp(540px, 95vw, 720px);
    height: auto;
    max-width: 90vw;
    display: block;
}

@media (max-width: 768px) {
    .logo-text {
        width: clamp(120px, 60vw, 260px);
    }
}

@media (max-width: 480px) {
    .logo-text {
        width: clamp(110px, 70vw, 220px);
    }
}

@media (max-width: 360px) {
    .logo-text {
        width: clamp(100px, 75vw, 200px);
    }
}


@keyframes titleSlideIn {
    0% {
        transform: translateX(-30px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.step-description {
    font-size: clamp(1.0rem, 1.5vw, 1.5rem);
    color: rgb(255, 255, 255);
    max-width: 600px;
    line-height: 1.0;
    margin: 0;
    animation: descriptionFadeIn 0.8s var(--transition-base) 0.4s both;
}

@keyframes descriptionFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* ===== SLIDE ACTION BUTTON ===== */
.slide-action-btn {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(139, 92, 246, 0.3));
    background-size: 200% 200%;
    animation: buttonGradient 3s ease infinite;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all var(--transition-base);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 20;
    position: relative;
    overflow: hidden;
}

@keyframes buttonGradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.slide-action-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.slide-action-btn:hover::before {
    transform: translateX(100%);
}

.slide-action-btn:hover {
    transform: translateX(-50%) scale(1.1);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.5), rgba(139, 92, 246, 0.5));
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.slide-action-btn:active {
    transform: translateX(-50%) scale(1.05);
}

.slide-action-btn svg {
    transition: transform var(--transition-base);
}

.slide-action-btn:hover svg {
    transform: translateX(6px) scale(1.2);
}

/* ===== TIMELINE NAVIGATION ===== */
.timeline-nav {
    position: fixed;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.timeline-track {
    position: relative;
    width: 3px;
    height: 300px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    overflow: hidden;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 33.33%;
    background: linear-gradient(180deg, var(--orange-primary), var(--grape-primary));
    border-radius: 10px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.timeline-items {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 3px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.timeline-item.active .timeline-dot {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--orange-primary), var(--grape-primary));
    border-color: white;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6), 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1);
    }

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

.timeline-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: transparent;
    backdrop-filter: blur(15px);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition-base);
    pointer-events: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255);
    min-width: 5px;
}

.timeline-item:hover .timeline-label,
.timeline-item.active .timeline-label {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.2);
    background: linear-gradient(135deg, var(--orange-light), var(--grape-light));
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

.timeline-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-medium);
    letter-spacing: 0.05em;
}

.timeline-item.active .timeline-number {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 0.25rem;
}


/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .slide-title {
        font-size: clamp(6rem, 18vw, 12rem);
    }

    .step-number {
        font-size: clamp(5rem, 14vw, 9rem);
    }

    .step-title {
        font-size: clamp(2.2rem, 5.5vw, 3.5rem);
    }

    .step-description {
        font-size: clamp(1.05rem, 2.3vw, 1.4rem);
        max-width: 500px;
    }

    .emoji-orange,
    .emoji-lemon,
    .emoji-grape {
        width: 100px;
        height: 100px;
    }

    .emoji-leaf {
        width: 70px;
        height: 70px;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .slider-container {
        width: 100%;
        overflow: hidden;
    }

    .slide-title {
        font-size: clamp(4rem, 15vw, 8rem);
        -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.08);
    }

    .text-content {
        padding: var(--spacing-md);
        gap: var(--spacing-md);
    }

    .step-number {
        font-size: clamp(4rem, 12vw, 7rem);
    }

    .step-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .step-description {
        font-size: clamp(1rem, 2.2vw, 1.2rem);
        max-width: 90%;
        padding: 0 var(--spacing-sm);
    }

    .emoji-orange,
    .emoji-lemon,
    .emoji-grape {
        width: 80px;
        height: 80px;
    }

    .emoji-leaf {
        width: 60px;
        height: 60px;
    }

    .emoji-1 {
        top: 10%;
        left: 5%;
    }

    .emoji-2 {
        bottom: 15%;
        right: 5%;
    }

    .emoji-leaf {
        top: 8%;
        right: 10%;
    }

    .slide-nav {
        bottom: var(--spacing-md);
        left: 50%;
        transform: translateX(-50%);
        padding: var(--spacing-xs) var(--spacing-md);
        right: auto;
    }

    .slide-action-btn {
        bottom: 15%;
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 0.9rem;
    }
}

/* Small Mobile Responsiveness */
@media (max-width: 480px) {
    .text-content {
        padding: var(--spacing-sm);
        gap: var(--spacing-sm);
    }

    .step-number {
        font-size: clamp(3rem, 11vw, 5.5rem);
    }

    .step-title {
        font-size: clamp(1.5rem, 4.5vw, 2.5rem);
    }

    .step-description {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
        max-width: 95%;
        line-height: 1.5;
    }

    .slide-action-btn {
        font-size: 0.85rem;
        padding: 0.75rem 1.5rem;
        bottom: 12%;
    }

    .emoji-orange,
    .emoji-lemon,
    .emoji-grape {
        width: 65px;
        height: 65px;
    }

    .emoji-leaf {
        width: 45px;
        height: 45px;
    }

    .emoji-1 {
        top: 8%;
        left: 3%;
    }

    .emoji-2 {
        bottom: 12%;
        right: 3%;
    }

    .slide-title {
        font-size: clamp(3rem, 13vw, 6rem);
        -webkit-text-stroke: 1px rgba(0, 0, 0, 0.08);
    }

    .slide-nav {
        bottom: var(--spacing-sm);
        padding: 0.4rem 0.8rem;
        gap: 0.6rem;
    }

    .nav-arrow {
        padding: 0.3rem;
    }

    .nav-arrow svg {
        width: 20px;
        height: 20px;
    }

    .slide-counter {
        font-size: 0.85rem;
        min-width: 50px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .step-number {
        font-size: clamp(2.5rem, 10vw, 4.5rem);
    }

    .step-title {
        font-size: clamp(1.3rem, 4vw, 2rem);
    }

    .step-description {
        font-size: clamp(0.85rem, 1.8vw, 1rem);
    }

    .slide-action-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        bottom: 10%;
    }

    .slide-title {
        font-size: clamp(2.5rem, 12vw, 5rem);
    }

    .emoji-orange,
    .emoji-lemon,
    .emoji-grape {
        width: 55px;
        height: 55px;
    }

    .emoji-leaf {
        width: 40px;
        height: 40px;
    }
}

/* Landscape Mobile Devices */
@media (max-width: 896px) and (orientation: landscape) {
    .step-number {
        font-size: clamp(3rem, 8vw, 5rem);
    }

    .step-title {
        font-size: clamp(1.5rem, 3vw, 2.5rem);
    }

    .step-description {
        font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    }

    .slide-action-btn {
        bottom: 8%;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .slide-nav {
        bottom: 0.5rem;
        padding: 0.4rem 0.8rem;
    }

    .text-content {
        gap: 0.8rem;
        padding: 0.5rem;
    }

    .emoji-orange,
    .emoji-lemon,
    .emoji-grape {
        width: 60px;
        height: 60px;
    }

    .emoji-leaf {
        width: 45px;
        height: 45px;
    }
}



/* LOGO */

.logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-image: url("/logo.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 40px;
    left: 40px;
}

@media (max-width: 480px) {
    .logo {
        width: 44px;
        height: 44px;
    }
}



/* features card */


.feature-head {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;

    padding: 0.6rem 1.1rem;
    margin: 0 auto 0.8rem;

    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    /* width: fit-content;*/
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}


.feature-head .feature-icon {
    font-size: 1.4rem;
    line-height: 1;
}

.feature-head h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    color: var(--text-dark);
}



/* Contact section */

.contact-section {

    display: flex;
    justify-content: center;
}


.contact-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.8rem, 3vw, 1.4rem);
}


.contact-icon {
    width: clamp(46px, 8vw, 60px);
    height: clamp(46px, 8vw, 60px);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #ffffff;
    opacity: 0.9;
    color: #333;

    font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    text-decoration: none;

    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}


@media (hover: hover) {
    .contact-icon:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
    }
}


.contact-icon:hover .fa-phone {
    color: #2E7D32;
}

.contact-icon:hover .fa-envelope {
    color: #1565C0;
}

.contact-icon:hover .fa-instagram {
    color: #C13584;
}

.contact-icon:hover .fa-facebook-f {
    color: #1877F2;
}

.contact-icon:hover .fa-whatsapp {
    color: #25D366;
}