/* --- Global Variables: Midnight Blue & Dimensional Gold Theme --- */
:root {
    --bg-midnight: #060D1A;
    --bg-card: #0A1428;
    --gold-light: #FBEBA5;
    --gold-mid: #D4AF37;
    --gold-dark: #8C6A1A;
    --text-offwhite: #EAE6DF;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-midnight);
    background-image: radial-gradient(circle at 50% 0%, #0d1e3a 0%, #060D1a 70%);
    color: var(--text-offwhite);
    line-height: 1.6;
}

h1, h2, h3, h4 { font-family: var(--font-heading); letter-spacing: 1px; }
a { text-decoration: none; transition: all 0.3s ease; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.block { display: block; }
.w-100 { width: 100%; }

/* --- Dimensional Gold Text Effect --- */
.gold-text-effect {
    background: linear-gradient(to bottom right, var(--gold-light) 0%, var(--gold-mid) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
    display: inline-block;
}

.gold-icon { color: var(--gold-mid); text-shadow: 1px 1px 3px rgba(0,0,0,0.8); }

/* --- Breathing Space (Padding upgrade) --- */
.section-spacing { padding: 100px 0; }

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-premium {
    background: linear-gradient(145deg, #112240, #0A1428);
    color: var(--gold-light);
    border: 1px solid var(--gold-mid);
    box-shadow: 0 8px 20px rgba(0,0,0,0.6), inset 0 1px 1px rgba(255,255,255,0.1);
}

.btn-premium:hover {
    transform: translateY(-3px);
    background: linear-gradient(145deg, #162a50, #0A1428);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.3), inset 0 1px 1px rgba(255,255,255,0.2);
    color: #fff;
}

.btn-sm { padding: 12px 24px; font-size: 0.85rem; }

/* --- Header --- */
header {
    background-color: rgba(6, 13, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container { display: flex; justify-content: space-between; align-items: center; }
.logo-container { display: flex; flex-direction: column; align-items: center; }
.tagline { font-family: var(--font-heading); font-style: italic; font-size: 14px; color: var(--gold-light); letter-spacing: 1px; margin-top: 2px;}

.header-center ul { list-style: none; display: flex; gap: 35px; }
.header-center a { color: var(--text-offwhite); font-weight: 400; font-size: 13px; text-transform: uppercase; letter-spacing: 2px; }
.header-center a:hover { color: var(--gold-mid); }

.header-right { display: flex; gap: 20px; }
.header-right a { color: var(--gold-mid); font-size: 18px; }

/* --- Hero Section --- */
.hero { position: relative; height: 85vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
/* Darkened overlay for perfect text visibility */
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(6,13,26,0.9)); z-index: 2; }
.hero-content { position: relative; z-index: 3; max-width: 900px; }
.hero-content h1 { font-size: 4.5rem; line-height: 1.15; margin-bottom: 25px; }
.hero-content p { font-size: 1.2rem; color: var(--text-offwhite); margin-bottom: 40px; font-weight: 300; letter-spacing: 1px; }

/* --- Trust Bar --- */
.trust-bar { background-color: var(--bg-card); border-top: 1px solid rgba(212, 175, 55, 0.2); border-bottom: 1px solid rgba(212, 175, 55, 0.2); padding: 20px 0; }
.trust-grid { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-offwhite); }

/* --- Section Headers --- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .subtitle { color: var(--gold-mid); font-family: var(--font-body); text-transform: uppercase; letter-spacing: 3px; font-size: 0.85rem; margin-bottom: 10px; }
.section-header h2 { font-size: 3rem; display: flex; align-items: center; justify-content: center; gap: 15px; }
.header-star { font-size: 1.2rem; color: var(--gold-dark); }
.header-divider { width: 60px; height: 2px; background: var(--gold-mid); margin: 20px auto 0; }

/* --- Products Section (Hover Effects & Badges) --- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.product-card { 
    background: var(--bg-card); padding: 25px 20px; border-radius: 6px; 
    text-align: center; border: 1px solid rgba(255,255,255,0.05); 
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease; 
}

/* Hover Animations Applied */
.product-card:hover { 
    transform: translateY(-8px); 
    border-color: var(--gold-mid);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15); /* Gold glow */
}

/* Badges */
.badge {
    position: absolute; top: 15px; left: -10px;
    padding: 5px 12px; font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
    border-radius: 0 4px 4px 0; color: #fff; z-index: 5;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}
.badge.bestseller { background: linear-gradient(90deg, #b58e65, #D4AF37); }
.badge.trending { background: linear-gradient(90deg, #990000, #cc0000); }
.badge.premium { background: linear-gradient(90deg, #112240, #1a365d); border: 1px solid var(--gold-mid); border-left: none;}

.img-wrapper { overflow: hidden; border-radius: 4px; margin-bottom: 20px; }
.product-img { width: 100%; height: auto; display: block; transition: transform 0.6s ease; }

/* Image zoom on hover */
.product-card:hover .product-img { transform: scale(1.04); }

.product-card h3 { font-family: var(--font-body); font-weight: 500; font-size: 1rem; color: var(--text-offwhite); margin-bottom: 10px; }
.product-card .price { font-family: var(--font-heading); font-size: 1.5rem; color: var(--gold-light); margin-bottom: 25px; }

/* --- Brand Story Section --- */
.brand-story { background-color: #040914; border-top: 1px solid rgba(212, 175, 55, 0.1); border-bottom: 1px solid rgba(212, 175, 55, 0.1); }
.story-flex { display: flex; align-items: center; gap: 60px; }
.story-image { flex: 1; border-radius: 8px; overflow: hidden; border: 1px solid rgba(212, 175, 55, 0.3); }
.story-image img { width: 100%; height: auto; display: block; }
.story-content { flex: 1; }
.story-content h2 { font-size: 2.8rem; margin-bottom: 25px; }
.story-content p { color: #A0AABF; margin-bottom: 20px; font-size: 1.05rem; line-height: 1.8; }

/* --- Features Section --- */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.feature-card { text-align: center; padding: 30px 20px; }
.icon-circle { width: 80px; height: 80px; margin: 0 auto 25px; border-radius: 50%; border: 1px dashed var(--gold-mid); display: flex; align-items: center; justify-content: center; font-size: 30px; transition: transform 0.5s ease; }
.feature-card:hover .icon-circle { transform: rotate(360deg); }
.feature-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.feature-card p { font-size: 0.9rem; color: #A0AABF; }

/* --- Footer Upgraded --- */
footer { background-color: #030812; border-top: 1px solid rgba(212, 175, 55, 0.2); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }
.footer-brand h2 { font-size: 2.5rem; margin-bottom: 5px; }
.footer-desc { color: #556680; margin: 20px 0; font-size: 0.9rem; max-width: 300px; }
.footer-social a { color: var(--gold-mid); font-size: 1.5rem; margin-right: 20px; transition: color 0.3s ease; }
.footer-social a:hover { color: var(--gold-light); }

.footer-links-col h4, .footer-contact h4 { font-size: 1.2rem; margin-bottom: 25px; }
.footer-links-col a { display: block; color: #A0AABF; margin-bottom: 15px; font-size: 0.9rem; }
.footer-links-col a:hover { color: var(--gold-mid); padding-left: 5px; }
.footer-contact p { color: #A0AABF; margin-bottom: 15px; font-size: 0.9rem; display: flex; align-items: center; gap: 10px; }
.footer-contact i { color: var(--gold-mid); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; text-align: center; font-size: 0.8rem; color: #556680; }

/* --- Modal Overlay & Box (Lead Gen) --- */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85); backdrop-filter: blur(5px);
    display: none; justify-content: center; align-items: center; z-index: 1000;
}
.modal-box {
    background: var(--bg-card); width: 90%; max-width: 450px;
    padding: 40px; border-radius: 8px; border: 1px solid var(--gold-mid);
    position: relative; text-align: center; box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    animation: fadeIn 0.4s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

.close-btn {
    position: absolute; top: 15px; right: 20px; font-size: 28px;
    color: var(--text-offwhite); cursor: pointer; transition: color 0.3s;
}
.close-btn:hover { color: var(--gold-mid); }

.modal-icon { font-size: 40px; margin-bottom: 20px; }
.modal-step h3 { font-size: 1.8rem; margin-bottom: 15px; }
.modal-step p { color: #A0AABF; font-size: 0.95rem; margin-bottom: 25px; line-height: 1.5; }
.modal-step p.small-text { font-size: 0.8rem; color: var(--gold-mid); }

.modal-input {
    width: 100%; padding: 15px; margin-bottom: 20px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 4px; color: #fff; font-family: var(--font-body); font-size: 1rem;
    outline: none; transition: border-color 0.3s;
}
.modal-input:focus { border-color: var(--gold-mid); background: rgba(255,255,255,0.1); }

/* Responsive */
@media (max-width: 992px) {
    .product-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
    .story-flex { flex-direction: column; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .header-center { display: none; }
    .hero-content h1 { font-size: 3.5rem; }
}
@media (max-width: 768px) {
    .product-grid, .features-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2.8rem; }
    .trust-grid { flex-direction: column; gap: 15px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-contact p { justify-content: center; }
}

/* --- Contact Section Styles --- */
.contact-section {
    background-color: var(--bg-card);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(6, 13, 26, 0.6);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    .contact-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Custom Highlight for Modal Text */
.highlight-gold {
    color: var(--gold-mid);
    font-weight: 700;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

/* --- Highlighting and Animations for Bumper Offer Vibe --- */
.highlight-gold {
    color: #FFDF00; /* Much brighter, pure gold */
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0 4px;
}

.pulse-text {
    display: inline-block;
    animation: pulse-glow 2s infinite alternate;
}

@keyframes pulse-glow {
    0% { 
        text-shadow: 0 0 5px rgba(255, 223, 0, 0.5); 
        transform: scale(1); 
    }
    100% { 
        text-shadow: 0 0 15px rgba(255, 223, 0, 1), 0 0 25px rgba(212, 175, 55, 0.8); 
        transform: scale(1.04); /* Slight zoom to grab attention */
    }
}

.bumper-bounce {
    animation: bounce-icon 2.5s infinite;
}

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


/* new code */

/* --- Interactive Bumper Offer Styles (Clean & Crisp) --- */

.crisp-gold-text {
    color: var(--gold-mid);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    transition: transform 0.3s ease;
}

.highlight-clean {
    color: var(--gold-mid);
    font-weight: 700;
}

.bumper-offer-container {
    position: relative;
    padding: 15px;
    margin-bottom: 25px;
    border: 1px dashed rgba(212, 175, 55, 0.4);
    border-radius: 6px;
    background: rgba(255,255,255,0.02);
    cursor: pointer;
    overflow: hidden; /* Keeps the falling gifts inside the box */
    transition: all 0.4s ease;
}

/* On Hover: Change Box Style */
.bumper-offer-container:hover {
    border-style: solid;
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--gold-mid);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* On Hover: Slightly enlarge title */
.bumper-offer-container:hover .crisp-gold-text {
    transform: scale(1.03);
}

/* Hidden Reveal Text */
.hover-reveal-text {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

/* On Hover: Reveal Text */
.bumper-offer-container:hover .hover-reveal-text {
    max-height: 100px;
    opacity: 1;
    margin-top: 10px;
}

.hover-reveal-text p {
    font-size: 0.85rem;
    color: #EAE6DF;
    margin: 0;
    line-height: 1.6;
}

/* --- Falling Gift Animation --- */
.falling-gift {
    position: absolute;
    top: -30px;
    color: var(--gold-mid);
    opacity: 0;
    font-size: 16px;
    z-index: 0;
}

.bumper-offer-container:hover .falling-gift {
    animation: fall-down 1.2s infinite linear;
}

/* Different positions and timings for gifts */
.gift-1 { left: 15%; animation-delay: 0.1s !important; }
.gift-2 { left: 35%; animation-delay: 0.5s !important; font-size: 22px; }
.gift-3 { left: 55%; animation-delay: 0.2s !important; }
.gift-4 { left: 75%; animation-delay: 0.6s !important; font-size: 18px; }
.gift-5 { left: 85%; animation-delay: 0.3s !important; }

@keyframes fall-down {
    0% { top: -20px; opacity: 1; transform: rotate(0deg); }
    100% { top: 120px; opacity: 0; transform: rotate(180deg); }
}


/* --- 1. HERO HOVER ANIMATIONS (Apple/Rolex Style) --- */
.hero-content:hover .gold-text-effect {
    /* Creates the Gold Foil Sweep */
    background: linear-gradient(to right, var(--gold-mid) 0%, #ffffff 50%, var(--gold-mid) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: goldFoilSweep 2s linear infinite;
}

@keyframes goldFoilSweep {
    to { background-position: 200% center; }
}

.hero-content p {
    transition: all 0.4s ease; /* Smooth transition */
}

.hero-content p {
    transition: all 0.5s ease; /* Smooth transition */
}

.hero-content:hover p {
    /* Slightly floats up, turns light gold, and emits a soft golden aura */
    transform: translateY(-3px);
    color: var(--gold-light); 
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}


/* --- 4. MOBILE STICKY CTA STYLES --- */
.mobile-sticky-cta {
    display: none; /* Hidden on Desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(6, 13, 26, 0.85); /* Semi-transparent midnight blue */
    backdrop-filter: blur(12px);
    padding: 15px 20px;
    z-index: 999;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block; /* Show on mobile */
    }
    body {
        /* Add padding so the footer doesn't hide behind the sticky bar */
        padding-bottom: 75px; 
    }
}

/* --- VEDIC SUPERFOOD ICON ANIMATIONS --- */
@keyframes heart-beat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}
@keyframes leaf-sway {
    0%, 100% { transform: rotate(-8deg); }
    50% { transform: rotate(8deg); }
}
@keyframes bone-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}
@keyframes shield-glow {
    0%, 100% { filter: drop-shadow(0 0 2px var(--gold-mid)); }
    50% { filter: drop-shadow(0 0 12px var(--gold-light)); }
}

.icon-heart-beat { animation: heart-beat 1.5s infinite ease-in-out; display: inline-block; }
.icon-leaf-sway { animation: leaf-sway 2.5s infinite ease-in-out; display: inline-block; transform-origin: bottom center; }
.icon-bone-float { animation: bone-float 3s infinite ease-in-out; display: inline-block; }
.icon-shield-glow { animation: shield-glow 2s infinite ease-in-out; display: inline-block; }