/* ===============================
   GANGA FOX NUTS - Main Stylesheet
================================ */

/* CSS Custom Properties */
:root {
    --primary-color: #1a1a2e;
    --secondary-color: #c9a86a;
    --accent-color: #e8c886;
    --text-color: #333;
    --text-light: #666;
    --white: #fff;
    --bg-light: #f8f9fa;
    --border-color: #eee;
    --shadow: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-hover: 0 10px 30px rgba(0,0,0,0.15);
    --border-radius: 15px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

body.loading { overflow: hidden; }

/* ===== SKIP LINK ===== */
.skip-to-main {
    position: absolute; top: -40px; left: 0;
    background: var(--primary-color); color: var(--white);
    padding: 8px 16px; text-decoration: none; z-index: 99999;
    transition: top 0.3s;
}
.skip-to-main:focus { top: 0; }

/* ===== LOGO SPLASH ===== */
.logo-splash {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex; align-items: center; justify-content: center;
    z-index: 99999;
    animation: none;
}
.logo-splash .logo-container { text-align: center; }
.logo-splash .main-logo { max-width: 200px; max-height: 200px; object-fit: contain; }
.logo-splash .logo-tagline {
    color: var(--secondary-color); font-size: 1rem; margin-top: 15px;
    font-family: 'Poppins', sans-serif; letter-spacing: 2px;
}
@keyframes splashFadeOut {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.05); pointer-events: none; visibility: hidden; }
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: var(--transition);
    box-shadow: none;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); padding: 10px 0; }
.navbar-logo { height: 50px; width: auto; object-fit: contain; }
.navbar-brand { font-family: 'Playfair Display', serif; font-weight: 700; }
.nav-link {
    font-family: 'Poppins', sans-serif; font-weight: 500; color: var(--text-color) !important;
    padding: 8px 16px !important; transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--secondary-color) !important; }
.cart-icon { position: relative; }
.cart-count {
    position: absolute; top: -5px; right: -5px;
    background: var(--secondary-color); color: var(--white);
    border-radius: 50%; width: 20px; height: 20px;
    font-size: 0.7rem; display: flex; align-items: center; justify-content: center;
    font-weight: 700;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative; overflow: hidden; min-height: 100vh;
}
.ajfan-pattern-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(201,168,106,0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(201,168,106,0.08) 0%, transparent 40%);
    z-index: 0;
}
.hero-content { position: relative; z-index: 1; }
.hero-text { color: var(--white); }
.hero-badge-new {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,168,106,0.2); border: 1px solid rgba(201,168,106,0.4);
    color: var(--secondary-color); padding: 8px 20px; border-radius: 50px;
    font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 500;
    margin-bottom: 20px;
}
.hero-title-new {
    font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 900;
    line-height: 1.1; color: var(--white); margin-bottom: 20px;
}
.accent-italic { color: var(--secondary-color); font-style: italic; }
.hero-description { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 30px; max-width: 500px; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 30px; }
.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border: none; color: var(--primary-color) !important; font-weight: 600;
    padding: 12px 30px; border-radius: 50px; transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,168,106,0.4); }
.btn-outline-dark {
    border: 2px solid rgba(255,255,255,0.5); color: var(--white) !important;
    padding: 12px 30px; border-radius: 50px; transition: var(--transition);
}
.btn-outline-dark:hover { background: rgba(255,255,255,0.1); }
.brand-trust-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-badge {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.8); font-size: 0.85rem;
}
.trust-badge i { color: var(--secondary-color); }

/* ===== HERO PRODUCT SHOWCASE ===== */
.hero-product-showcase { position: relative; padding: 20px; }
.product-grid-hero { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; max-width: 450px; margin: 0 auto; }
.hero-product-card { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.hero-product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.hero-product-card.card-3 { grid-column: span 2; max-width: 50%; margin: 0 auto; }
.product-package { padding: 20px; text-align: center; }
.package-img { width: 100%; height: 120px; object-fit: cover; border-radius: 10px; }
.package-label { color: var(--white); font-weight: 700; font-size: 0.9rem; margin-top: 10px; font-family: 'Poppins', sans-serif; }
.floating-elements { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.floating-icon {
    position: absolute; font-size: 1.5rem; animation: float 3s ease-in-out infinite;
}
.floating-icon.icon-1 { top: 10%; left: 5%; animation-delay: 0s; }
.floating-icon.icon-2 { top: 20%; right: 5%; animation-delay: 0.5s; }
.floating-icon.icon-3 { bottom: 30%; left: 8%; animation-delay: 1s; }
.floating-icon.icon-4 { bottom: 15%; right: 8%; animation-delay: 1.5s; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ===== HERO BOTTOM BANNER ===== */
.hero-bottom-banner {
    position: absolute; bottom: 0; left: 0; width: 100%;
    background: rgba(255,255,255,0.05); backdrop-filter: blur(10px);
    padding: 20px 0;
}
.banner-content { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 15px; }
.banner-item { display: flex; align-items: center; gap: 12px; color: var(--white); }
.banner-icon { width: 45px; height: 45px; background: rgba(201,168,106,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.banner-icon i { color: var(--secondary-color); font-size: 1.1rem; }
.banner-text strong { display: block; font-size: 0.9rem; }
.banner-text p { font-size: 0.75rem; color: rgba(255,255,255,0.7); margin: 0; }
.scroll-indicator {
    position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.6); animation: bounce 2s infinite;
}
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }

/* ===== SECTION HEADERS ===== */
.section-header { margin-bottom: 50px; }
.section-subtitle {
    color: var(--secondary-color); font-family: 'Poppins', sans-serif;
    font-size: 0.85rem; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; display: block; margin-bottom: 10px;
}
.section-title { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; margin-bottom: 15px; }
.section-description { color: var(--text-light); font-size: 1rem; }

/* ===== CATEGORY CARDS ===== */
.category-card {
    position: relative; border-radius: var(--border-radius); overflow: hidden;
    height: 250px; cursor: pointer;
}
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.category-card:hover img { transform: scale(1.05); }
.category-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 30px 20px 20px; color: var(--white); transition: var(--transition);
}
.category-overlay h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 5px; }
.category-overlay p { font-size: 0.85rem; color: rgba(255,255,255,0.8); margin-bottom: 10px; }

/* ===== PRODUCT CARDS ===== */
.product-card {
    background: var(--white); border-radius: var(--border-radius);
    overflow: hidden; box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: var(--transition); border: 1px solid var(--border-color);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.product-image { position: relative; overflow: hidden; }
.product-image img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--primary-color); color: var(--white);
    padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600;
}
.product-badge.sale { background: #e74c3c; }
.product-actions {
    position: absolute; bottom: -50px; right: 12px;
    display: flex; flex-direction: column; gap: 8px; transition: var(--transition);
}
.product-card:hover .product-actions { bottom: 12px; }
.action-btn {
    width: 40px; height: 40px; background: var(--white); border: none; border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15); cursor: pointer; display: flex;
    align-items: center; justify-content: center; transition: var(--transition); color: var(--text-color);
}
.action-btn:hover { background: var(--secondary-color); color: var(--white); transform: scale(1.1); }
.product-info { padding: 20px; }
.product-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; margin-bottom: 5px; }
.product-category { color: var(--text-light); font-size: 0.8rem; margin-bottom: 8px; }
.product-rating { color: var(--secondary-color); font-size: 0.85rem; margin-bottom: 10px; }
.product-rating span { color: var(--text-light); margin-left: 5px; }
.product-price { font-size: 1.1rem; font-weight: 700; color: var(--primary-color); }
.old-price { color: var(--text-light); text-decoration: line-through; font-size: 0.9rem; font-weight: 400; margin-right: 5px; }

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--bg-light); }
.about-images { position: relative; }
.about-img-main { width: 100%; border-radius: 20px; box-shadow: var(--shadow); }
.about-img-overlay {
    position: absolute; bottom: -30px; right: -20px; width: 55%;
    border-radius: 15px; overflow: hidden; box-shadow: var(--shadow-hover);
    border: 4px solid var(--white);
}
.about-img-overlay img { width: 100%; height: 200px; object-fit: cover; }
.about-stats-card {
    position: absolute; top: 30px; left: -30px;
    background: var(--white); border-radius: 15px; padding: 20px;
    box-shadow: var(--shadow-hover); display: flex; align-items: center; gap: 15px;
    z-index: 2;
}
.stat-box { text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--secondary-color); margin: 0; }
.stat-label { font-size: 0.75rem; color: var(--text-light); margin: 0; }
.stat-divider { width: 1px; height: 40px; background: var(--border-color); }
.about-pattern-circle {
    position: absolute; border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color)); opacity: 0.1; z-index: -1;
}
.circle-1 { width: 200px; height: 200px; top: -50px; left: -50px; }
.circle-2 { width: 150px; height: 150px; bottom: -30px; right: -30px; }
.about-content { padding-left: 20px; }
.about-text { color: var(--text-light); line-height: 1.8; margin-bottom: 20px; }
.about-features { margin-top: 30px; }
.feature-item { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; }
.feature-icon { width: 45px; height: 45px; background: linear-gradient(135deg, var(--secondary-color), var(--accent-color)); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-icon i { color: var(--white); font-size: 1.1rem; }
.feature-item h4 { font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 600; margin-bottom: 5px; }
.feature-item p { color: var(--text-light); font-size: 0.85rem; margin: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--white); }
.testimonial-card {
    background: var(--bg-light); border-radius: var(--border-radius); padding: 30px;
    transition: var(--transition); border: 1px solid var(--border-color);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.testimonial-rating { color: var(--secondary-color); margin-bottom: 15px; }
.testimonial-text { color: var(--text-color); font-style: italic; line-height: 1.8; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.testimonial-author h5 { font-size: 0.9rem; font-weight: 600; margin: 0; }
.testimonial-author p { font-size: 0.8rem; color: var(--text-light); margin: 0; }

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--bg-light); }
.contact-details { font-style: normal; }
.contact-item { display: flex; gap: 15px; margin-bottom: 25px; align-items: flex-start; }
.contact-icon { width: 45px; height: 45px; background: linear-gradient(135deg, var(--secondary-color), var(--accent-color)); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon i { color: var(--white); }
.contact-item h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 5px; }
.contact-item p, .contact-item a { color: var(--text-light); font-size: 0.85rem; text-decoration: none; }
.contact-item a:hover { color: var(--secondary-color); }
.social-links { display: flex; gap: 10px; margin-top: 30px; }
.social-link { width: 40px; height: 40px; background: var(--primary-color); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: var(--transition); }
.social-link:hover { background: var(--secondary-color); color: var(--white); transform: translateY(-3px); }
.contact-form-wrapper { background: var(--white); border-radius: var(--border-radius); padding: 40px; box-shadow: var(--shadow); }
.form-group { margin-bottom: 5px; }
.form-group label { font-size: 0.85rem; font-weight: 500; margin-bottom: 5px; display: block; }
.form-control { border: 1px solid #ddd; border-radius: 8px; padding: 12px 15px; font-size: 0.9rem; transition: var(--transition); }
.form-control:focus { border-color: var(--secondary-color); box-shadow: 0 0 0 3px rgba(201,168,106,0.15); }

/* ===== NEWSLETTER ===== */
.newsletter-section { background: linear-gradient(135deg, var(--primary-color), #0f3460); }
.newsletter-title { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.8rem; }
.newsletter-text { color: rgba(255,255,255,0.8); }
.newsletter-form .form-control { border-radius: 50px 0 0 50px; padding: 12px 20px; border: none; }
.newsletter-form .btn { border-radius: 0 50px 50px 0; padding: 12px 25px; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 25px; width: 55px; height: 55px;
    background: #25d366; color: var(--white) !important; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
    text-decoration: none; z-index: 9997; box-shadow: 0 5px 20px rgba(37,211,102,0.4);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 5px 20px rgba(37,211,102,0.4); }
    50% { transform: scale(1.05); box-shadow: 0 5px 30px rgba(37,211,102,0.6); }
}

/* ===== FOOTER ===== */
.footer { background: var(--primary-color); color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer-brand h3 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.3rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-logo { height: 50px; width: auto; object-fit: contain; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 35px; height: 35px; background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: var(--transition); }
.footer-social a:hover { background: var(--secondary-color); color: var(--white); }
.footer-links h4 { color: var(--white); font-size: 1rem; margin-bottom: 20px; font-family: 'Poppins', sans-serif; }
.footer-links ul { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: var(--transition); }
.footer-links a:hover { color: var(--secondary-color); padding-left: 5px; }
.footer-contact h4 { color: var(--white); font-size: 1rem; margin-bottom: 20px; font-family: 'Poppins', sans-serif; }
.footer-contact ul { list-style: none; padding: 0; }
.footer-contact li { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-contact i { color: var(--secondary-color); width: 15px; }
.footer-contact a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-contact a:hover { color: var(--secondary-color); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.footer-bottom a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-bottom a:hover { color: var(--secondary-color); }

/* ===== NOTIFICATION ===== */
.notification {
    position: fixed; top: 80px; right: 20px; background: var(--primary-color);
    color: var(--white); padding: 12px 25px; border-radius: 8px;
    font-size: 0.9rem; z-index: 99990; box-shadow: var(--shadow);
    transition: opacity 0.3s ease; opacity: 0;
}
.notification.show { opacity: 1; }

/* ===== PRODUCTS SECTION BG ===== */
.products-section { background: var(--bg-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-title-new { font-size: 2.8rem; }
    .about-img-overlay { position: relative; bottom: 0; right: 0; width: 100%; margin-top: 20px; }
    .about-stats-card { position: relative; top: 0; left: 0; margin-top: 20px; }
}

@media (max-width: 767px) {
    .hero-title-new { font-size: 2.2rem; }
    .section-title { font-size: 1.8rem; }
    .product-image img { height: 180px; }
    .banner-content { justify-content: flex-start; }
    .hero-bottom-banner { position: relative; }
    .scroll-indicator { display: none; }
    .contact-form-wrapper { padding: 20px; }
    .hero-product-card.card-3 { max-width: 100%; }
}

@media (max-width: 576px) {
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; text-align: center; }
    .brand-trust-badges { flex-direction: column; gap: 10px; }
}
