:root {
    --yellow-primary: #fbbf24;
    --yellow-dark: #d97706;
    --yellow-light: #fef3c7;
    --gray-dark: #1f2937;
    --gray-medium: #6b7280;
    --gray-light: #e5e7eb;
    --white: #ffffff;
}

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

body {
    font-family: 'Poppins', 'Inter', sans-serif;
    background: linear-gradient(135deg, #fef3c7 0%, #ffffff 50%, #e5e7eb 100%);
    color: var(--gray-dark);
    overflow-x: hidden;
    position: relative;
}

html {
    scroll-behavior: smooth;
}

/* Animated Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(107, 114, 128, 0.1) 0%, transparent 50%);
    z-index: -1;
    animation: morphBackground 20s ease-in-out infinite;
}

@keyframes morphBackground {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

/* ===== Navbar - Cozy Modern Design ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(254, 243, 199, 0.95));
    backdrop-filter: blur(15px);
    border-bottom: 3px solid var(--yellow-primary);
    padding: 1rem 2rem;
    box-shadow: 0 8px 32px rgba(251, 191, 36, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar:hover {
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.25);
    border-bottom-width: 4px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.nav-logo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 3px solid var(--yellow-primary);
    box-shadow: 0 5px 20px rgba(251, 191, 36, 0.5);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(5deg); }
}

.nav-logo:hover {
    transform: rotate(360deg) scale(1.15);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.7);
}

.nav-title {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--yellow-dark), var(--yellow-primary), var(--gray-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { filter: brightness(1); }
    to { filter: brightness(1.2); }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.navlink {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0;
}

.navlink::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow-primary), var(--yellow-dark));
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateX(-50%);
}

.navlink::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--yellow-primary);
    border-radius: 50%;
    opacity: 0;
    transform: translateX(-50%) scale(0);
    transition: all 0.3s ease;
}

.navlink:hover,
.navlink.active {
    color: var(--yellow-dark);
    transform: translateY(-2px);
}

.navlink:hover::before,
.navlink.active::before {
    width: 100%;
}

.navlink:hover::after,
.navlink.active::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.whatsapp-btn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--yellow-primary), var(--yellow-dark));
    color: white;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(251, 191, 36, 0.4);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.login-btn:hover::before {
    width: 300px;
    height: 300px;
}

.login-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.6);
}

.mobile-menu-btn {
    display: none;
    background: var(--yellow-primary);
    border: none;
    border-radius: 12px;
    padding: 0.6rem 0.9rem;
    font-size: 1.3rem;
    color: white;
    cursor: pointer;
}

.mobile-only {
    display: none;
}

/* ===== Hero Section - Creative Layout ===== */
.hero {
    padding: 12rem 2rem 6rem;
    position: relative;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-content {
    animation: slideInLeft 0.8s ease;
    flex: 1;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
    position: relative;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 120px;
    height: 6px;
    background: var(--yellow-primary);
    border-radius: 3px;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-image {
    position: relative;
    animation: slideInRight 0.8s ease;
    flex: 1;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(251, 191, 36, 0.3);
    border: 5px solid white;
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: scale(1.05) rotate(-2deg);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid var(--yellow-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--yellow-dark);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slider-arrow:hover {
    background: var(--yellow-primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow-left { left: 2rem; }
.slider-arrow-right { right: 2rem; }

/* ===== About Section - Card Style ===== */
.about {
    padding: 8rem 2rem;
    background: white;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 5px solid var(--yellow-light);
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: scale(1.03) rotate(2deg);
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 5px;
    background: var(--yellow-primary);
    border-radius: 3px;
}

.about-content p {
    font-size: 1rem;
    color: var(--gray-medium);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* ===== Products Section - Modern Cards ===== */
.products {
    padding: 8rem 2rem;
    background: var(--yellow-light);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gray-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--yellow-primary);
    border-radius: 3px;
}

.section-header p {
    font-size: 1rem;
    color: var(--gray-medium);
    margin-top: 2rem;
}

.products-slider-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
}

.products-slider {
    display: flex;
    gap: 2rem;
    overflow: hidden;
    scroll-behavior: smooth;
    transition: transform 0.5s ease;
}

.product-box {
    min-width: calc(33.333% - 1.35rem);
    background: white;
    border: 3px solid var(--yellow-primary);
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-box:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.3);
    border-color: var(--yellow-dark);
}

.product-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.product-box:hover img {
    transform: scale(1.08);
}

.product-box h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.product-box p {
    color: var(--gray-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.order-btn {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: linear-gradient(135deg, var(--yellow-primary), var(--yellow-dark));
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

.order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.5);
}

.product-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid var(--yellow-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--yellow-dark);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.product-arrow:hover {
    background: var(--yellow-primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.product-arrow-left { left: 0; }
.product-arrow-right { right: 0; }

/* ===== Gallery Section ===== */
.gallery {
    padding: 8rem 2rem;
    background: white;
}

.gallery .products-slider-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
    overflow: hidden;
}

.gallery .products-slider {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    overflow: visible;
}

.gallery .gallery-item {
    min-width: 300px;
    width: 300px;
    flex-shrink: 0;
}

.gallery-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    border: 3px solid var(--yellow-light);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--yellow-primary);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===== Processing Section ===== */
.processing {
    padding: 8rem 2rem;
    background: var(--gray-light);
}

.processing-steps {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.step-card {
    background: white;
    border: 3px solid var(--yellow-primary);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.step-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.3);
    border-color: var(--yellow-dark);
}

.step-number {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--yellow-primary), var(--yellow-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
}

.step-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--gray-medium);
    line-height: 1.8;
}

/* ===== Footer ===== */
.footer {
    background: var(--gray-dark);
    color: white;
    padding: 5rem 2rem 2rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--yellow-primary);
}

.footer-section p,
.footer-section a {
    color: var(--gray-light);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--yellow-primary);
    transform: translateX(5px);
}

.footer-logo img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--yellow-primary);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--yellow-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
}

.social-links a:hover {
    background: var(--yellow-dark);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-medium);
}

.footer-bottom p {
    color: var(--gray-light);
}

/* ===== Mobile Buttons ===== */
.whatsapp-btn-mobile,
.login-btn-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    width: 100%;
    transition: all 0.3s ease;
}

.whatsapp-btn-mobile {
    background: #25d366;
    color: white;
}

.login-btn-mobile {
    background: linear-gradient(135deg, var(--yellow-primary), var(--yellow-dark));
    color: white;
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .navbar {
        padding: 0.8rem 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        gap: 1rem;
        border-radius: 20px;
        margin: 0 10px;
        border: 2px solid var(--yellow-primary);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-actions {
        display: none;
    }

    .mobile-only {
        display: block;
        width: 100%;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 12rem 1.5rem 4rem;
    }

    .hero-container,
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .about-content h2,
    .section-header h2 {
        font-size: 2.5rem;
    }

    .products-slider-container {
        padding: 0 60px;
    }

    .product-box {
        min-width: 100%;
    }
    
    .gallery .products-slider-container {
        padding: 0 60px;
    }
    
    .gallery .gallery-item {
        min-width: calc(100% - 4rem);
        max-width: calc(100% - 4rem);
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-image {
        height: 350px;
    }

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

    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* ========== SCROLL ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ========== FLOATING PARTICLES ========== */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--yellow-primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* ========== TYPING ANIMATION ========== */
.typing-text {
    overflow: hidden;
    border-right: 3px solid var(--yellow-primary);
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--yellow-primary); }
}

/* ========== PULSE ANIMATION ========== */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ========== BOUNCE ANIMATION ========== */
.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ========== ROTATE ANIMATION ========== */
.rotate {
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========== SHAKE ANIMATION ========== */
.shake:hover {
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* ========== GLOW ANIMATION ========== */
.glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 10px var(--yellow-primary); }
    to { box-shadow: 0 0 20px var(--yellow-primary), 0 0 30px var(--yellow-primary); }
}

/* ========== WAVE ANIMATION ========== */
.wave {
    position: relative;
    overflow: hidden;
}

.wave::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: wave 2s infinite;
}

@keyframes wave {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ========== COUNTER ANIMATION ========== */
.counter {
    font-size: 3rem;
    font-weight: 900;
    color: var(--yellow-primary);
}

/* ========== LOADING SPINNER ========== */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--yellow-light);
    border-top: 4px solid var(--yellow-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* ========== GOLDEN MOVING STRINGS ========== */
.golden-strings {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.golden-string {
    position: absolute;
    width: 2px;
    background: linear-gradient(45deg, #fbbf24, #d97706, #fbbf24);
    opacity: 0.6;
    animation: moveString 8s linear infinite;
}

.golden-string:nth-child(1) {
    height: 200px;
    left: 10%;
    animation-delay: 0s;
}

.golden-string:nth-child(2) {
    height: 150px;
    left: 30%;
    animation-delay: -2s;
}

.golden-string:nth-child(3) {
    height: 180px;
    left: 50%;
    animation-delay: -4s;
}

.golden-string:nth-child(4) {
    height: 160px;
    left: 70%;
    animation-delay: -6s;
}

.golden-string:nth-child(5) {
    height: 140px;
    left: 90%;
    animation-delay: -1s;
}

@keyframes moveString {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* ========== SCROLL REVEAL ANIMATIONS ========== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ========== TYPEWRITER EFFECT ========== */
.typewriter {
    overflow: hidden;
    border-right: 3px solid #fbbf24;
    white-space: nowrap;
    margin: 0 auto;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #fbbf24; }
}

/* ========== LOGO GLOW ANIMATION ========== */
.nav-logo {
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    from {
        box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
    }
    to {
        box-shadow: 0 5px 25px rgba(251, 191, 36, 0.8), 0 0 30px rgba(251, 191, 36, 0.6);
    }
}

/* ========== FLOATING GOLDEN PARTICLES ========== */
.golden-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.golden-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #fbbf24, #d97706);
    border-radius: 50%;
    opacity: 0.7;
    animation: floatParticle 12s infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* ========== SECTION STAGGER ANIMATION ========== */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.stagger-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item:nth-child(1) { transition-delay: 0.1s; }
.stagger-item:nth-child(2) { transition-delay: 0.2s; }
.stagger-item:nth-child(3) { transition-delay: 0.3s; }
.stagger-item:nth-child(4) { transition-delay: 0.4s; }
.stagger-item:nth-child(5) { transition-delay: 0.5s; }
.stagger-item:nth-child(6) { transition-delay: 0.6s; }

/* ========== GOLDEN BORDER ANIMATION ========== */
.golden-border {
    position: relative;
    overflow: hidden;
}

.golden-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.4), transparent);
    animation: goldenSweep 3s infinite;
}

@keyframes goldenSweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ========== PULSE GLOW EFFECT ========== */
.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(251, 191, 36, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.8), 0 0 30px rgba(251, 191, 36, 0.6);
    }
}

/* ========== PHARMACEUTICAL FLOATING ELEMENTS ========== */
.pharma-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.pharma-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.7;
    animation: floatPharma 15s infinite linear;
}

@keyframes floatPharma {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* ========== REALISTIC PHARMACEUTICAL PRODUCTS ========== */
.pharma-capsule {
    position: absolute;
    width: 30px;
    height: 15px;
    background: linear-gradient(90deg, #ff6b6b 50%, #4ecdc4 50%);
    border-radius: 15px;
    animation: floatCapsule 12s infinite linear;
}

.pharma-tablet {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fbbf24;
    border-radius: 50%;
    border: 2px solid #d97706;
    animation: floatTablet 10s infinite linear;
}

.pharma-syringe {
    position: absolute;
    width: 40px;
    height: 8px;
    background: linear-gradient(90deg, #e5e7eb 70%, #fbbf24 30%);
    border-radius: 4px;
    animation: floatSyringe 14s infinite linear;
}

@keyframes floatCapsule {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% {
        transform: translateY(-50px) translateX(50px) rotate(180deg);
        opacity: 0;
    }
}

@keyframes floatTablet {
    0% {
        transform: translateY(100vh) translateX(0) scale(1);
        opacity: 0;
    }
    10% { opacity: 0.9; }
    50% { transform: translateY(50vh) translateX(25px) scale(1.2); }
    90% { opacity: 0.9; }
    100% {
        transform: translateY(-50px) translateX(-25px) scale(1);
        opacity: 0;
    }
}

@keyframes floatSyringe {
    0% {
        transform: translateY(100vh) rotate(45deg);
        opacity: 0;
    }
    10% { opacity: 0.7; }
    90% { opacity: 0.7; }
    100% {
        transform: translateY(-50px) rotate(405deg);
        opacity: 0;
    }
}

/* ========== ENHANCED PRODUCT ANIMATIONS ========== */
.product-box {
    position: relative;
    overflow: hidden;
}

.product-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(251, 191, 36, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.product-box:hover::before {
    animation: shimmer 1.5s ease-in-out;
    opacity: 1;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* ========== MEDICAL CROSS ANIMATION ========== */
.medical-cross {
    position: absolute;
    width: 20px;
    height: 20px;
    animation: floatCross 16s infinite linear;
}

.medical-cross::before,
.medical-cross::after {
    content: '';
    position: absolute;
    background: #ff6b6b;
}

.medical-cross::before {
    width: 20px;
    height: 6px;
    top: 7px;
    left: 0;
}

.medical-cross::after {
    width: 6px;
    height: 20px;
    top: 0;
    left: 7px;
}

@keyframes floatCross {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% {
        transform: translateY(-50px) rotate(360deg);
        opacity: 0;
    }
}

/* ========== DNA HELIX ANIMATION ========== */
.dna-helix {
    position: absolute;
    width: 30px;
    height: 60px;
    animation: floatDNA 18s infinite linear;
}

.dna-strand {
    position: absolute;
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #4ecdc4, #45b7aa);
    border-radius: 1px;
}

.dna-strand:first-child {
    left: 5px;
    transform: rotate(15deg);
}

.dna-strand:last-child {
    right: 5px;
    transform: rotate(-15deg);
}

@keyframes floatDNA {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% {
        transform: translateY(-50px) rotate(720deg);
        opacity: 0;
    }
}

/* ========== ENHANCED SCROLL REVEAL ========== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ========== STAGGER ANIMATION FIX ========== */
.stagger-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item:nth-child(1).revealed { transition-delay: 0.1s; }
.stagger-item:nth-child(2).revealed { transition-delay: 0.2s; }
.stagger-item:nth-child(3).revealed { transition-delay: 0.3s; }
.stagger-item:nth-child(4).revealed { transition-delay: 0.4s; }
.stagger-item:nth-child(5).revealed { transition-delay: 0.5s; }
.stagger-item:nth-child(6).revealed { transition-delay: 0.6s; }

/* ========== PHARMACEUTICAL BACKGROUND PATTERN ========== */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(251, 191, 36, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 85% 75%, rgba(107, 114, 128, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 45% 60%, rgba(255, 107, 107, 0.03) 0%, transparent 20%);
    z-index: -2;
    animation: backgroundShift 30s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { 
        background-position: 0% 0%, 100% 100%, 50% 50%; 
    }
    50% { 
        background-position: 100% 100%, 0% 0%, 25% 75%; 
    }
}

/* ========== FLIP CARD ANIMATION ========== */
.flip-card {
    perspective: 1000px;
    height: 350px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.flip-card-front {
    background: white;
}

.flip-card-back {
    background: linear-gradient(135deg, #fbbf24, #d97706);
    color: white;
    transform: rotateY(180deg);
}

.flip-card-back h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: white;
}

.flip-card-back ul {
    list-style: none;
    text-align: left;
    margin: 1rem 0 1.5rem 0;
}

.flip-card-back ul li {
    padding: 0.5rem 0;
    font-size: 1rem;
}

.flip-card-back ul li i {
    margin-right: 0.5rem;
    color: #fff;
}

.flip-card-back .price {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 1rem 0;
    color: white;
}

.flip-card-back .order-btn {
    background: white;
    color: #d97706;
    margin-top: 1rem;
}

.flip-card-back .order-btn:hover {
    background: #f3f4f6;
    transform: translateY(-3px);
}

/* ========== HERO FULLWIDTH CENTERED ========== */
.hero-fullwidth {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.hero-content-center {
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-icon-wrapper {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.hero-icon {
    font-size: 2.5rem;
    color: var(--yellow-primary);
    filter: drop-shadow(0 5px 15px rgba(251, 191, 36, 0.4));
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin: 2rem auto;
    max-width: 700px;
    line-height: 1.8;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.stat-box {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    border: 3px solid var(--yellow-primary);
    transition: all 0.4s ease;
    animation: scaleIn 0.6s ease backwards;
}

.stat-box:nth-child(1) { animation-delay: 0.2s; }
.stat-box:nth-child(2) { animation-delay: 0.4s; }
.stat-box:nth-child(3) { animation-delay: 0.6s; }
.stat-box:nth-child(4) { animation-delay: 0.8s; }

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.stat-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
}

.stat-box i {
    font-size: 2rem;
    color: var(--yellow-primary);
    margin-bottom: 1rem;
}

.stat-box h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gray-dark);
    margin: 0.5rem 0;
}

.stat-box p {
    font-size: 0.9rem;
    color: var(--gray-medium);
    margin: 0;
}

/* ========== GALLERY FLIP CARDS ========== */
.gallery-item.flip-card {
    perspective: 1000px;
    height: 280px;
}

.gallery-item .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.gallery-item.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.gallery-item .flip-card-front,
.gallery-item .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 25px;
}

.gallery-item .flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.gallery-back {
    background: linear-gradient(135deg, var(--yellow-primary), var(--yellow-dark));
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.gallery-back h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.gallery-back p {
    font-size: 1rem;
    line-height: 1.6;
    color: white;
}

/* ========== RESPONSIVE HERO ========== */
@media (max-width: 968px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-icon {
        font-size: 3rem;
    }
    
    .hero-icon-wrapper {
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-icon {
        font-size: 2.5rem;
    }
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
    padding: 8rem 2rem;
    background: white;
}

.testimonials-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--yellow-light);
    padding: 2.5rem;
    border-radius: 25px;
    border: 3px solid var(--yellow-primary);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.3);
}

.stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.stars i {
    color: #fbbf24;
    font-size: 1.2rem;
    animation: starPulse 2s ease-in-out infinite;
}

.stars i:nth-child(1) { animation-delay: 0s; }
.stars i:nth-child(2) { animation-delay: 0.1s; }
.stars i:nth-child(3) { animation-delay: 0.2s; }
.stars i:nth-child(4) { animation-delay: 0.3s; }
.stars i:nth-child(5) { animation-delay: 0.4s; }

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--yellow-primary), var(--yellow-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

/* ========== FAQ SECTION ========== */
.faq {
    padding: 8rem 2rem;
    background: var(--gray-light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border: 2px solid var(--yellow-light);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--yellow-primary);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-dark);
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--yellow-dark);
}

.faq-question i {
    color: var(--yellow-primary);
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: var(--gray-medium);
    line-height: 1.8;
    font-size: 1rem;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--yellow-primary), var(--yellow-dark));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.cta-btn {
    padding: 1.2rem 2.5rem;
    background: var(--gray-dark);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-feature i {
    font-size: 1.5rem;
}

/* ========== SCROLL TO TOP BUTTON ========== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--yellow-primary), var(--yellow-dark));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(251, 191, 36, 0.4);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.6);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .cta-features {
        gap: 1.5rem;
    }
}

/* ========== BUY NOW SECTION ========== */
.buynow-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    position: relative;
    overflow: hidden;
}

.buynow-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15), transparent);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.buynow-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1), transparent);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
}

.buynow-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.buynow-content {
    background: white;
    padding: 4rem 3rem;
    border-radius: 30px;
    border: 4px solid var(--yellow-primary);
    box-shadow: 0 20px 60px rgba(251, 191, 36, 0.3);
    transition: all 0.4s ease;
}

.buynow-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(251, 191, 36, 0.4);
}

.buynow-icon {
    font-size: 5rem;
    color: var(--yellow-primary);
    margin-bottom: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

.buynow-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.buynow-content p {
    font-size: 1.2rem;
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.buynow-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 4rem;
    background: linear-gradient(135deg, var(--yellow-primary), var(--yellow-dark));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    position: relative;
    overflow: hidden;
}

.buynow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.buynow-btn:hover::before {
    left: 100%;
}

.buynow-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
}

.buynow-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.buynow-btn:hover i {
    transform: translateX(5px);
}

.buynow-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.buynow-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--gray-dark);
    font-size: 1.1rem;
    font-weight: 600;
}

.buynow-feature i {
    font-size: 1.8rem;
    color: var(--yellow-primary);
}

/* ========== RESPONSIVE BUY NOW ========== */
@media (max-width: 768px) {
    .buynow-content {
        padding: 3rem 2rem;
    }
    
    .buynow-content h2 {
        font-size: 2.5rem;
    }
    
    .buynow-btn {
        padding: 1.2rem 3rem;
        font-size: 1.1rem;
    }
    
    .buynow-features {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 640px) {
    .buynow-icon {
        font-size: 3.5rem;
    }
    
    .buynow-content h2 {
        font-size: 2rem;
    }
    
    .buynow-content p {
        font-size: 1rem;
    }
}

/* ========== SCROLL PROGRESS BAR ========== */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow-primary), var(--yellow-dark));
    z-index: 9998;
    transition: width 0.1s ease;
    box-shadow: 0 2px 10px rgba(251, 191, 36, 0.5);
}

/* ========== STICKY CTA BUTTON ========== */
.sticky-cta-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: linear-gradient(135deg, var(--yellow-primary), var(--yellow-dark));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 25px rgba(251, 191, 36, 0.5);
    z-index: 998;
    opacity: 0;
    transform: translateX(200px);
    transition: all 0.4s ease;
}

.sticky-cta-btn.visible {
    opacity: 1;
    transform: translateX(0);
}

.sticky-cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.7);
}

/* ========== TRUST BADGES SECTION ========== */
.trust-badges {
    padding: 4rem 2rem;
    background: var(--yellow-light);
}

.trust-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.trust-badge {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.trust-badge:hover {
    transform: translateY(-10px);
    border-color: var(--yellow-primary);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
}

.trust-badge i {
    font-size: 3rem;
    color: var(--yellow-primary);
    margin-bottom: 1rem;
}

.trust-badge h4 {
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.trust-badge p {
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin: 0;
}

/* ========== TOOLTIPS ========== */
[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: var(--gray-dark);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
}

[data-tooltip]::after {
    content: '';
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%) scale(0);
    border: 6px solid transparent;
    border-top-color: var(--gray-dark);
    opacity: 0;
    transition: all 0.3s ease;
}

[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

/* ========== ANIMATED COUNTER ========== */
.counter {
    display: inline-block;
}

/* ========== PARALLAX EFFECT ========== */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
    padding: 1rem 2rem;
    background: var(--gray-light);
    margin-top: 100px;
}

.breadcrumb-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-container a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-container a:hover {
    color: var(--yellow-primary);
}

.breadcrumb-container i {
    color: var(--gray-medium);
    font-size: 0.7rem;
}

/* ========== RIPPLE EFFECT ========== */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple:active::after {
    width: 300px;
    height: 300px;
}

/* ========== ENHANCED SCROLL TO TOP ========== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--yellow-primary), var(--yellow-dark));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(251, 191, 36, 0.4);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.6);
}

.scroll-top::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 3px solid var(--yellow-primary);
    opacity: 0;
    animation: scrollProgress 2s linear infinite;
}

@keyframes scrollProgress {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */
@media (max-width: 768px) {
    .sticky-cta-btn {
        bottom: 80px;
        right: 20px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .trust-badge {
        padding: 1.5rem 0.5rem;
    }

    .trust-badge i {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .scroll-progress-bar {
        height: 3px;
    }

    .sticky-cta-btn span {
        display: none;
    }

    .sticky-cta-btn {
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}


/* ========== PRODUCT BUY NOW BUTTON ========== */
.product-buy-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2.5rem;
    background: white;
    color: var(--yellow-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.product-buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
    background: #f3f4f6;
}


/* ========== VISION & MISSION SECTION ========== */
.vision-mission {
    padding: 6rem 2rem;
    background: white;
}

.vm-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.vm-card {
    background: var(--yellow-light);
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid var(--yellow-primary);
    text-align: center;
    transition: all 0.4s ease;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.3);
}

.vm-card i {
    font-size: 3rem;
    color: var(--yellow-primary);
    margin-bottom: 1.5rem;
}

.vm-card h3 {
    font-size: 2rem;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.vm-card p {
    font-size: 1rem;
    color: var(--gray-medium);
    line-height: 1.8;
}

.vm-card ul {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.vm-card ul li {
    padding: 0.5rem 0;
    color: var(--gray-medium);
    position: relative;
    padding-left: 1.5rem;
}

.vm-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--yellow-primary);
    font-weight: bold;
}

/* ========== WHY CHOOSE US SECTION ========== */
.why-choose {
    padding: 6rem 2rem;
    background: var(--gray-light);
}

.why-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.why-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--yellow-primary);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
}

.why-card i {
    font-size: 2.5rem;
    color: var(--yellow-primary);
    margin-bottom: 1rem;
}

.why-card h4 {
    font-size: 1.1rem;
    color: var(--gray-dark);
}

/* ========== CORE VALUES SECTION ========== */
.core-values {
    padding: 6rem 2rem;
    background: white;
}

.values-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.value-card {
    background: linear-gradient(135deg, var(--yellow-light), white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--yellow-primary);
}

.value-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.3);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--yellow-dark);
    margin-bottom: 1rem;
}

.value-card h4 {
    font-size: 1.1rem;
    color: var(--gray-dark);
    font-weight: 600;
}

/* ========== LEADERSHIP SECTION ========== */
.leadership {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--yellow-primary), var(--yellow-dark));
}

.leadership-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.leadership-container i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.leadership-container h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.leadership-container p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .vm-container {
        grid-template-columns: 1fr;
    }
    
    .why-grid, .values-grid {
        grid-template-columns: 1fr;
    }
}
