/* ============================================
   PREMIUM DESIGN UPGRADE 2025
   Modern, Attractive, Eye-catching Design
   ============================================ */

/* Premium Color Palette */
:root {
    --premium-gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --premium-gradient-2: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --premium-gradient-3: linear-gradient(135deg, #ee0979 0%, #ff6a00 100%);
    --premium-gradient-4: linear-gradient(135deg, #2D5016 0%, #4a7c23 50%, #6bb82d 100%);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-premium: 0 20px 60px rgba(0, 0, 0, 0.12);
    --glow-green: 0 0 40px rgba(45, 80, 22, 0.3);
    --glow-cyan: 0 0 40px rgba(0, 175, 239, 0.3);
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 175, 239, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 175, 239, 0.5);
    }
}

/* ============================================
   PREMIUM PROMO BAR
   ============================================ */
.promo-bar {
    background: linear-gradient(90deg, #2D5016 0%, #4a7c23 50%, #2D5016 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
    padding: 12px 0;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ============================================
   PREMIUM HEADER
   ============================================ */
.main-header {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    height: auto;
    padding: 8px 0;
}

.logo-img {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

/* Premium Search Bar */
.search-bar {
    background: white;
    border: 2px solid #e8e8e8;
    border-radius: 50px;
    position: relative;
    overflow: visible !important;
    /* Critical to show dropdown */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    max-width: 500px;
    display: flex;
    align-items: center;
}

.search-bar:focus-within {
    border-color: var(--primary-green);
    box-shadow: 0 4px 20px rgba(0, 175, 239, 0.2);
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    font-size: 14px;
    border: none;
    background: transparent;
    outline: none;
    border-radius: 50px 0 0 50px;
}

.search-btn {
    background: linear-gradient(135deg, #2D5016 0%, #4a7c23 100%);
    padding: 0 20px;
    height: 48px;
    border: none;
    border-radius: 0 50px 50px 0;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: linear-gradient(135deg, #4a7c23 0%, #2D5016 100%);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

/* Premium Header Buttons */
.header-btn {
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.login-btn {
    background: linear-gradient(135deg, #2D5016 0%, #4a7c23 100%);
    color: white !important;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.4);
}

.app-btn {
    background: linear-gradient(135deg, var(--primary-green) 0%, #00d4aa 100%);
    color: white !important;
    box-shadow: 0 4px 15px rgba(0, 175, 239, 0.3);
}

.app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 175, 239, 0.4);
}

/* Premium Cart Button */
.cart-link {
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%) !important;
    border: 2px solid transparent !important;
    background-clip: padding-box !important;
    position: relative !important;
    transition: all 0.3s ease !important;
}

.cart-link::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-green), #00d4aa);
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-link:hover::before {
    opacity: 1;
}

.cart-link:hover {
    transform: scale(1.08);
}

/* ============================================
   PREMIUM NAVIGATION
   ============================================ */
.nav-bar {
    background: linear-gradient(180deg, #ffffff 0%, #f8faf5 100%);
    border-bottom: none;
    padding: 5px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.nav-menu {
    gap: 8px;
}

.nav-link {
    padding: 12px 24px;
    font-size: 12px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

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

.nav-link:hover::before {
    left: 100%;
}

/* ============================================
   PREMIUM HERO SLIDER
   ============================================ */
.hero-slider-section {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    min-height: 500px;
    position: relative;
}

.slide-overlay {
    background: none !important;
    /* Completely transparent - no black fade */
}

/* Override for Offer Layout - Clear background by default */
.hero-slide.offer-layout .slide-overlay {
    background: none !important;
}

.slide-content {
    animation: fadeInUp 0.8s ease;
}

.slide-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.slide-content h1 {
    font-size: 52px;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.slide-content p {
    font-size: 18px;
    opacity: 0.95;
    max-width: 500px;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slide-btn {
    display: inline-block;
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    color: #2D5016 !important;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.slide-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

/* Slider Arrows */
.slider-arrow {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.slider-arrow:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* ============================================
   PREMIUM CATEGORY CIRCLES
   ============================================ */
.category-section {
    padding: 50px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8faf5 100%);
}

.category-grid {
    padding: 20px 30px;
    gap: 30px;
    justify-content: center;
}

.category-item {
    min-width: 110px;
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: translateY(-8px);
}

.category-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.category-circle::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), #00d4aa, #2D5016);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-item:hover .category-circle::after {
    opacity: 1;
}

.category-item:hover .category-circle {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 175, 239, 0.25);
}

.category-icon {
    font-size: 38px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.category-name {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    transition: color 0.3s ease;
}

.category-item:hover .category-name {
    color: #2D5016;
}

/* ============================================
   PREMIUM PRODUCT SECTIONS
   ============================================ */
.product-section {
    padding: 50px 0;
    position: relative;
}

.product-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 175, 239, 0.3), transparent);
}

.lightning-sale {
    background: linear-gradient(180deg, #fffbf5 0%, #fff8f0 100%);
}

.section-header {
    margin-bottom: 35px;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), #00d4aa);
    border-radius: 2px;
}

.timer-badge {
    background: linear-gradient(135deg, #e91e63 0%, #f44336 100%);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 13px;
    animation: pulse-glow 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.view-all {
    background: linear-gradient(135deg, var(--primary-green) 0%, #00d4aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    padding-bottom: 3px;
}

.view-all::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), #00d4aa);
    transition: width 0.3s ease;
}

.view-all:hover::after {
    width: 100%;
}

/* Premium Product Cards */
.product-card {
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), #00d4aa, #2D5016);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image-wrapper {
    background: linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.product-image-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.3) 50%, transparent 60%);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.product-card:hover .product-image-wrapper::after {
    opacity: 1;
    animation: shimmer 1s ease;
}

.product-image {
    transition: transform 0.4s ease;
}

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

.sale-badge {
    background: linear-gradient(135deg, #ff5252 0%, #ff1744 100%);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 23, 68, 0.3);
}

.combo-badge {
    background: linear-gradient(135deg, #2D5016 0%, #4a7c23 100%);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 11px;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

.wishlist-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 15px;
    right: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
}

.wishlist-btn:hover {
    background: #ff5252;
    transform: scale(1.15);
}

.wishlist-btn:hover svg {
    stroke: white;
}

.wishlist-btn svg {
    width: 18px;
    height: 18px;
    stroke: #666;
    fill: none;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.product-info {
    padding: 18px 20px 20px;
}

.product-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    height: auto;
    min-height: 40px;
}

.product-usp {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 12px;
    font-weight: 700;
}

.product-rating {
    background: #fffbf0;
    border-radius: 20px;
    padding: 6px 12px;
    display: inline-flex;
    gap: 6px;
    margin-bottom: 12px;
}

.rating-star {
    font-size: 14px;
    color: #ffc107;
}

.price-row {
    margin-bottom: 15px;
}

.product-price {
    font-size: 20px;
    font-weight: 800;
    color: #2D5016;
}

.product-price-old {
    font-size: 14px;
    color: #999;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, var(--primary-green) 0%, #00d4aa 100%);
    border-radius: 25px;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 175, 239, 0.3);
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 175, 239, 0.4);
}

/* ============================================
   PREMIUM YOUTUBE SECTION
   ============================================ */
.youtube-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faf5 0%, #e8f5e9 100%);
    position: relative;
    overflow: hidden;
}

.youtube-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 175, 239, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.youtube-video {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.youtube-video::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--primary-green), #00d4aa, #2D5016);
    border-radius: 27px;
    z-index: -1;
}

.youtube-video iframe {
    display: block;
    border-radius: 20px;
}

.youtube-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.youtube-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.youtube-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #2D5016 0%, #4a7c23 100%);
    color: white !important;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(45, 80, 22, 0.4);
}

.btn-secondary {
    display: inline-block;
    background: white;
    color: #2D5016 !important;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #2D5016;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2D5016;
    color: white !important;
    transform: translateY(-3px);
}

/* ============================================
   PREMIUM TRUST SECTION
   ============================================ */
.trust-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8faf5 100%);
}

.trust-section .section-title {
    font-size: 32px;
    margin-bottom: 10px;
}

.trust-section .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.trust-grid {
    gap: 50px;
}

.trust-item {
    width: 140px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-8px);
}

.trust-item div:first-child {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 15px !important;
    font-size: 36px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
}

.trust-item:hover div:first-child {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.trust-item span {
    font-size: 13px;
    font-weight: 700;
    color: #333;
}

/* ============================================
   PREMIUM REVIEWS SECTION
   ============================================ */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.reviews-section .section-title {
    color: white;
    margin-bottom: 40px;
}

.reviews-section .section-title::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    left: 50%;
    transform: translateX(-50%);
}

.review-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    min-width: 350px;
    margin: 0 15px;
}

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

.review-text {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    margin-bottom: 20px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 3px solid #667eea;
    object-fit: cover;
}

.reviewer-info strong {
    font-size: 15px;
    color: #1a1a1a;
    display: block;
    margin-bottom: 3px;
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #fff3cd, #ffe69c);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    color: #856404;
}

.review-nav {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-nav:hover {
    background: white;
    color: #667eea;
    transform: scale(1.1);
}

/* ============================================
   PREMIUM FOOTER
   ============================================ */
.main-footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #ccc;
    padding: 70px 0 30px;
}

.light-footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-tagline {
    color: #999;
    font-size: 14px;
    line-height: 1.7;
}

.footer-social {
    margin-top: 25px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-green), #00d4aa);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), #00d4aa);
    border-radius: 2px;
}

.footer-col ul a {
    color: #999;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul a:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 25px 0 0 25px;
}

.newsletter-form input::placeholder {
    color: #666;
}

.newsletter-form button {
    background: linear-gradient(135deg, var(--primary-green), #00d4aa);
    border-radius: 0 25px 25px 0;
    font-size: 14px;
    padding: 12px 25px;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #00d4aa, var(--primary-green));
}

.footer-contact-info p {
    color: #999;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 40px;
}

.footer-bottom p {
    color: #666;
    font-size: 13px;
}

/* ============================================
   PREMIUM WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    position: fixed;
    bottom: 90px;
    right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 1024px) {
    .youtube-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .slide-content h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        min-height: 400px;
    }

    .slide-content h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 22px;
    }

    .youtube-content h2 {
        font-size: 28px;
    }

    .review-card {
        min-width: 280px;
    }
}

/* ============================================
   PREMIUM PINCODE MODAL
   ============================================ */
.pincode-modal-content {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pincode-modal-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.pincode-modal-content input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 16px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.pincode-modal-content input:focus {
    border-color: var(--primary-green);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 175, 239, 0.1);
}

.pincode-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.pincode-check-btn {
    flex: 1;
    padding: 12px 20px;
    background: linear-gradient(135deg, #2D5016 0%, #4a7c23 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pincode-check-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.4);
}

.pincode-detect-btn {
    flex: 1;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #00d4aa 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pincode-detect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 175, 239, 0.4);
}

.pincode-result {
    font-size: 13px;
    padding: 10px;
    border-radius: 8px;
    margin-top: 5px;
}

.pincode-result.success {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2D5016;
}

.pincode-result.error {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    color: #c62828;
}