/* ==========================================================================
   FITNESS VEDA NARI SHAKTI™ (INDIAN HERBS) - Stylesheet
   - Pure Dark Black Environment Background (Zero Pinkness)
   - Luxury Dark Ambient Room Background Texture
   - Gold Amber Highlights (#F8A900) & Glassmorphism Cards
   - Custom Ayurvedic Trailing Cursor
   ========================================================================== */

:root {
    --gold-primary: #F8A900;
    --gold-hover: #E09800;
    --gold-glow: rgba(248, 169, 0, 0.4);
    --dark-bg: #07090C;
    --glass-bg: rgba(10, 12, 18, 0.45);
    --glass-border: rgba(248, 169, 0, 0.22);
    --text-white: #FFFFFF;
    --text-muted: #CBD5E1;
    --input-bg: #B8B8B8;
    --radius-lg: 20px;
    --radius-pill: 37px;
}

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

body {
    font-family: 'Hind', 'Inter', sans-serif;
    color: var(--text-white);
    background-color: var(--dark-bg);
    
    /* DARK AYURVEDIC ENVIRONMENT BACKGROUND - LOCAL IMAGE */
    background-image: 
        linear-gradient(180deg, rgba(7, 9, 12, 0.45) 0%, rgba(5, 6, 9, 0.65) 50%, rgba(3, 4, 6, 0.85) 100%),
        url('assets/bg.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    
    line-height: 1.6;
    padding-bottom: 90px;
    position: relative;
    overflow-x: hidden;
}

.container {
    width: 92%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

/* MARQUEE SCROLLER */
.scroller-container {
    background: linear-gradient(90deg, #EAA000 0%, #FFC107 50%, #EAA000 100%);
    color: #000000;
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);

    /* Blended left and right edges to match Play More Herbs design */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 18%, rgba(0,0,0,1) 82%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 18%, rgba(0,0,0,1) 82%, transparent 100%);
}

.scroller-track {
    display: inline-block;
    animation: marquee 40s linear infinite;
}

.scroller-track span {
    margin-right: 40px;
}

@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

/* HERO SECTION */
.hero-section {
    padding: 40px 0 20px 0;
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 45px;
    align-items: center;
}

.g9-badge {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--gold-primary);
    letter-spacing: 1.5px;
    text-shadow: 0 0 10px rgba(248, 169, 0, 0.4);
}

.logo-title {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #FFFFFF;
    line-height: 1.1;
    margin-top: 4px;
}

.tm {
    font-size: 1.1rem;
    vertical-align: super;
    color: var(--gold-primary);
}

.logo-subtitle {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 2.5px;
    margin-top: 4px;
    margin-bottom: 20px;
}

/* PRODUCT BOTTLE SHOWCASE IN HERO */
.product-visual-wrapper-hero {
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* GOLDEN AURA GLOW — absolute positioned sibling behind the image */
.product-glow-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    background: radial-gradient(ellipse at center,
        rgba(248, 169, 0, 0.22) 0%,
        rgba(248, 169, 0, 0.08) 50%,
        transparent 75%
    );
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
}

/* PRODUCT IMAGE — true transparent cutout PNG, no blend needed */
.product-hero-img {
    position: relative;
    z-index: 1;
    max-width: 680px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 30px rgba(248, 169, 0, 0.25));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.product-hero-img:hover {
    transform: scale(1.04);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 25px rgba(248, 169, 0, 0.18));
}

/* DARK SLATE GLASS CARDS (ZERO PINK) */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
}

/* OUTER DARK GLASS WRAPPER (CONTAINS TITLE + GOLDEN FORM) */
.form-outer-wrapper {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 30px 22px 26px 22px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

.form-outer-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFFFFF;
    text-align: center;
    line-height: 1.25;
    margin-bottom: 6px;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.9);
}

.form-outer-subtitle {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gold-primary);
    text-align: center;
    letter-spacing: 0.5px;
    margin-bottom: 22px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* NESTED GOLDEN BORDERED FORM CARD (INSIDE OUTER WRAPPER) */
.form-gold-inner-card {
    border: 2px solid var(--gold-primary);
    border-radius: 16px;
    padding: 26px 22px;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 25px rgba(248, 169, 0, 0.2), inset 0 0 30px rgba(0, 0, 0, 0.2);
}

.form-callout {
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    line-height: 1.35;
    margin-bottom: 18px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.form-divider-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
    margin: 0 auto 22px auto;
    width: 100%;
}

.input-group {
    margin-bottom: 18px;
}

.input-group label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.req { color: #FF4D4D; }

.input-group input {
    width: 100%;
    padding: 13px 15px;
    border-radius: 4px;
    border: none;
    background-color: #B5B5B5;
    color: #000000;
    font-size: 1.05rem;
    font-family: inherit;
    font-weight: 600;
}

.input-group input:focus {
    outline: 2px solid var(--gold-primary);
    background-color: #FFFFFF;
    box-shadow: 0 0 10px rgba(248, 169, 0, 0.4);
}

/* BUTTON WITH BLINK PULSE ANIMATION */
.btn-submit-gold {
    width: 100%;
    background: #F8A900;
    color: #000000;
    border: 1px solid #EAA000;
    padding: 14px 24px;
    border-radius: 35px;
    font-size: 1.3rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(248, 169, 0, 0.4);
    margin-top: 12px;
}

.btn-submit-gold.blink {
    animation: pulseBlink 2s infinite;
}

@keyframes pulseBlink {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(248, 169, 0, 0.7); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 14px rgba(248, 169, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(248, 169, 0, 0); }
}

/* SECTION HEADINGS */
.section-gold-heading {
    color: var(--gold-primary);
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.font-gold { color: var(--gold-primary); }
.section-sub-white { color: #E2E8F0; font-size: 1.05rem; margin-bottom: 30px; }
.text-center { text-align: center; }

/* BILINGUAL INTRO SECTION */
.section-intro { padding: 40px 0; position: relative; z-index: 2; }
.text-center-card { text-align: center; }

.hindi-highlight {
    font-size: 1.35rem;
    color: #FFFFFF;
    line-height: 1.5;
    margin-bottom: 15px;
}

.hindi-subtext {
    font-size: 1.15rem;
    color: #E2E8F0;
    margin-bottom: 25px;
}

.card-divider {
    height: 1px;
    background: rgba(248, 169, 0, 0.25);
    margin: 25px auto;
    width: 80%;
}

.english-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* EXPERT VIEWS */
.section-expert-views { padding: 50px 0; position: relative; z-index: 2; }

.carousel-wrapper {
    position: relative;
    max-width: 1050px;
    margin: 30px auto 0 auto;
    padding: 0 45px;
}

.expert-carousel-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Hide scrollbar Firefox */
    padding: 10px 0;
}

.expert-carousel-grid::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

.expert-card {
    background: var(--glass-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    padding: 20px;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
    flex: 0 0 270px; /* Fixed width for horizontal scrolling cards */
}

.expert-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.expert-video-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* CAROUSEL BUTTONS */
.carousel-btn {
    position: absolute;
    top: 98px; /* Center on video overlay */
    transform: translateY(-50%);
    width: 30px;
    height: 60px;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s, transform 0.2s;
    outline: none;
}

.carousel-btn:hover {
    color: var(--gold-primary);
    transform: translateY(-50%) scale(1.15);
}

.carousel-btn.btn-left {
    left: 8px;
}

.carousel-btn.btn-right {
    right: 8px;
}

.video-overlay {
    height: 155px;
    background: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
}

.expert-video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.thumb-video-1 {
    object-position: center 26%; /* Centers Anita Sharma's face */
}

.thumb-video-2 {
    object-position: center 42%; /* Centers Rekha Verma's face */
}

.thumb-video-3 {
    object-position: center 15%; /* Centers Suman Choudhary's face */
}

.play-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: var(--gold-primary);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 0 10px var(--gold-glow);
    z-index: 2;
}

.expert-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gold-primary);
}

.expert-title { font-size: 0.85rem; color: var(--text-muted); }

/* WHAT IS FITNESS VEDA NARI SHAKTI */
.section-what-is { padding: 40px 0; position: relative; z-index: 2; }
.card-desc { font-size: 1.1rem; color: #E2E8F0; max-width: 800px; margin: 0 auto 25px auto; }

.female-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border: 3px solid var(--gold-primary);
    border-radius: 50%;
    position: relative;
    margin-top: 10px;
    box-shadow: 0 0 20px rgba(248, 169, 0, 0.4);
    overflow: hidden;
    background: #000000;
}

.badge-icon-img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: brightness(1.25) contrast(1.05);
}

.check-tick {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #10B981;
    color: #FFF;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-weight: 900;
}

/* WHY CHOOSE */
.section-why-choose { padding: 50px 0; position: relative; z-index: 2; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.why-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 25px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.why-icon-wrap {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    border-radius: 8px;
}

.why-icon-img {
    width: 95%;
    height: 95%;
    object-fit: contain;
    mix-blend-mode: screen;
    filter: brightness(1.2) contrast(1.05);
}

.why-content h3 { font-size: 1.05rem; color: #FFFFFF; margin-bottom: 6px; }
.why-content p { font-size: 0.95rem; color: var(--text-muted); }

.form-repeater-box { max-width: 600px; margin: 0 auto; }

/* ADVANTAGES */
.section-advantages { padding: 50px 0; position: relative; z-index: 2; }

.advantages-sub { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 30px; }

.advantages-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 850px;
    margin: 0 auto;
}

.advantages-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.05rem;
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.04);
    padding: 14px 20px;
    border-radius: 12px;
    border-left: 3px solid var(--gold-primary);
}

.gold-check { color: var(--gold-primary); font-size: 1.3rem; font-weight: 900; flex-shrink: 0; }

/* VISUAL DOSAGE DIAGRAM CARD (MATCHING PLAYMORE-HERBS SHOWCASE) */
.section-dosage { padding: 50px 0; position: relative; z-index: 2; }

.visual-dosage-card {
    padding: 45px 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.dosage-main-title {
    font-size: 2.3rem;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: 1px;
    line-height: 1.15;
    margin-bottom: 40px;
    text-align: center;
}

.brand-sub {
    color: var(--gold-primary);
    font-size: 1.8rem;
    font-weight: 800;
}

.tm-sm {
    font-size: 0.9rem;
    vertical-align: super;
}

.dosage-flow-container {
    display: grid;
    grid-template-columns: 1fr 75px 1fr 75px 1fr;
    align-items: center;
    justify-items: center;
    max-width: 950px;
    margin: 0 auto 30px auto;
    position: relative;
}

.flow-step-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.white-card-inner {
    background: #FFFFFF;
    border-radius: 18px;
    padding: 18px 14px;
    width: 100%;
    max-width: 210px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 185px;
}

.step-card-header {
    font-size: 0.85rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

.highlight-red { color: #DC2626; font-weight: 900; }

.flow-single-bottle-img {
    max-height: 125px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: contrast(1.1) brightness(0.96);
}

.step-card-image {
    max-height: 125px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.step-num-bubble {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #FFFFFF;
    color: #000000;
    border: 3px solid #000000;
    border-radius: 50%;
    font-weight: 900;
    font-size: 1.15rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    margin: 10px 0;
}

.flow-arrow-curve {
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 6px rgba(248, 169, 0, 0.4));
}

.dosage-hindi-footer {
    font-size: 1.1rem;
    color: #E2E8F0;
    max-width: 800px;
    margin: 25px auto 0 auto;
    line-height: 1.6;
}

@media (max-width: 820px) {
    .dosage-flow-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .flow-arrow-curve { transform: rotate(90deg); margin: 10px 0; }
}

/* REVIEWS */
.section-reviews { padding: 50px 0; position: relative; z-index: 2; }

/* REVIEWS SUMMARY BREAKDOWN CARD */
.reviews-summary-card {
    display: grid;
    grid-template-columns: 1fr 2.2fr;
    gap: 45px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 35px 45px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.summary-left {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding-right: 45px;
}

.reviews-big-number {
    font-size: 3.4rem;
    font-weight: 900;
    color: var(--gold-primary);
    line-height: 1.1;
}

.reviews-big-label {
    font-size: 1.9rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.stars-gold-big {
    font-size: 1.7rem;
    color: var(--gold-primary);
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: flex;
    gap: 2px;
    justify-content: center;
}

.stars-gold-big .star-half {
    opacity: 0.5; /* Half filled effect */
}

.rating-fraction {
    font-size: 1.05rem;
    font-weight: 700;
    color: #E2E8F0;
}

.summary-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
}

.row-num {
    width: 12px;
    text-align: center;
}

.row-star {
    color: var(--gold-primary);
    font-size: 1.1rem;
}

.bar-container {
    flex-grow: 1;
    height: 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--gold-primary);
    border-radius: 6px;
    transition: width 1.2s cubic-bezier(0.1, 1, 0.1, 1);
}

.row-count {
    width: 45px;
    text-align: right;
    color: #CBD5E1;
    font-weight: 500;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .reviews-summary-card {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px 20px;
    }
    .summary-left {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 25px;
    }
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.review-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.reviewer-info {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 8px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-primary);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.reviewer-meta h5 {
    font-size: 1.05rem;
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 2px;
}

.reviewer-meta .stars-gold {
    font-size: 0.9rem;
}

.verified-tag {
    font-size: 0.75rem;
    color: #10B981;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.review-card-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.review-quote {
    font-size: 0.92rem;
    color: #CBD5E1;
    line-height: 1.5;
}

.text-only-card .review-quote {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-top: 5px;
}

/* STICKY CONSULTATION BAR */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(8, 10, 14, 0.95);
    backdrop-filter: blur(12px);
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    border-top: 1px solid var(--glass-border);
}

.btn-consultation-gold {
    background: linear-gradient(135deg, #F8A900 0%, #E09800 100%);
    color: #000000;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.15rem;
    padding: 14px 38px;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 20px rgba(248, 169, 0, 0.5);
    letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.btn-consultation-gold.blink {
    animation: pulseBlink 2s infinite;
}

.btn-consultation-gold:hover {
    transform: scale(1.04);
}

.btn-consultation-gold:active,
.btn-submit-gold:active {
    transform: scale(0.95) !important;
    box-shadow: 0 2px 8px rgba(248, 169, 0, 0.7) !important;
}

/* FLOATING PHONE BUBBLE WITH GREEN CALLING RIPPLE & RING TILT */
.floating-call-btn {
    position: fixed;
    bottom: 80px;
    right: 25px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.65);
    z-index: 9999;
    text-decoration: none;
    animation: greenCallPulse 2s infinite;
    transition: transform 0.2s, right 0.2s, bottom 0.2s;
}

.floating-call-btn:hover {
    transform: scale(1.08);
}

.floating-call-btn:active {
    transform: scale(0.92);
}

.floating-call-btn svg {
    animation: phoneRingTilt 1.2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes greenCallPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.75), 0 4px 15px rgba(16, 185, 129, 0.5);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(16, 185, 129, 0), 0 4px 20px rgba(16, 185, 129, 0.6);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0), 0 4px 15px rgba(16, 185, 129, 0.5);
    }
}

@keyframes phoneRingTilt {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(18deg); }
    20% { transform: rotate(-18deg); }
    30% { transform: rotate(18deg); }
    40% { transform: rotate(-18deg); }
    50% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

/* MODALS */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    padding: 20px;
}

.modal-backdrop.active { display: flex; }

.modal-content {
    background: #11151F;
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-lg);
    padding: 35px;
    max-width: 480px;
    width: 100%;
    color: #FFFFFF;
    box-shadow: 0 0 30px rgba(248, 169, 0, 0.3);
}

.modal-icon { font-size: 3rem; margin-bottom: 10px; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .text-center-mobile { text-align: center; }
    .logo-title { font-size: 2rem; }
    .product-hero-img { max-width: 520px; }
    .user-product-img.bottle-clean-display { max-width: 480px; }
    .section-gold-heading { font-size: 1.7rem; }
}

/* ==========================================================================
   PRODUCT ANIMATION — ADVANTAGES SHOWCASE & HERBS ENTERING BOTTLE
   ========================================================================== */

.section-product-animation {
    padding: 60px 0 70px;
    position: relative;
    overflow: hidden;
}

.product-anim-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 560px;
    position: relative;
    width: 100%;
}

/* --- BOTTLE & HERBS AREA (Left Side) --- */
.bottle-herbs-area {
    position: relative;
    width: 360px;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.anim-bottle-img {
    width: 310px;
    max-height: 500px;
    object-fit: contain;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 10px 35px rgba(248, 169, 0, 0.22));
    animation: bottleSubtleFloat 4s ease-in-out infinite;
}

@keyframes bottleSubtleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* --- CAP GLOW (Golden light at bottle opening) --- */
.cap-glow {
    position: absolute;
    top: 14%;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 35px;
    background: radial-gradient(ellipse, rgba(248, 169, 0, 0.7) 0%, rgba(248, 169, 0, 0) 70%);
    z-index: 4;
    animation: capGlowPulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes capGlowPulse {
    0%, 100% { opacity: 0.4; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.3); }
}

/* --- FLOATING HERB ICONS --- */
.herb-float {
    position: absolute;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    pointer-events: none;
}

.herb-float img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(248, 169, 0, 0.6);
    box-shadow: 0 0 12px rgba(248, 169, 0, 0.4);
}

.herb-name {
    font-size: 0.62rem;
    color: var(--gold-primary);
    margin-top: 3px;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0,0,0,0.9);
    white-space: nowrap;
}

/* Herb starting positions */
.herb-1 { left: -10px; top: 2%; }
.herb-2 { right: -5px; top: -2%; }
.herb-3 { left: -25px; top: 20%; }
.herb-4 { right: -20px; top: 15%; }
.herb-5 { left: 50%; top: -12%; transform: translateX(-50%); }

/* Animation: herbs float toward the cap center and shrink/fade */
@keyframes herbFloatIn1 {
    0% { opacity: 0; transform: translate(0, 0) scale(0.5); }
    15% { opacity: 1; transform: translate(0, 0) scale(1); }
    70% { opacity: 1; transform: translate(140px, 60px) scale(0.6); }
    100% { opacity: 0; transform: translate(160px, 70px) scale(0.2); }
}
@keyframes herbFloatIn2 {
    0% { opacity: 0; transform: translate(0, 0) scale(0.5); }
    15% { opacity: 1; transform: translate(0, 0) scale(1); }
    70% { opacity: 1; transform: translate(-110px, 65px) scale(0.6); }
    100% { opacity: 0; transform: translate(-125px, 75px) scale(0.2); }
}
@keyframes herbFloatIn3 {
    0% { opacity: 0; transform: translate(0, 0) scale(0.5); }
    15% { opacity: 1; transform: translate(0, 0) scale(1); }
    70% { opacity: 1; transform: translate(150px, 25px) scale(0.6); }
    100% { opacity: 0; transform: translate(170px, 35px) scale(0.2); }
}
@keyframes herbFloatIn4 {
    0% { opacity: 0; transform: translate(0, 0) scale(0.5); }
    15% { opacity: 1; transform: translate(0, 0) scale(1); }
    70% { opacity: 1; transform: translate(-125px, 30px) scale(0.6); }
    100% { opacity: 0; transform: translate(-140px, 40px) scale(0.2); }
}
@keyframes herbFloatIn5 {
    0% { opacity: 0; transform: translate(-50%, 0) scale(0.5); }
    15% { opacity: 1; transform: translate(-50%, 0) scale(1); }
    70% { opacity: 1; transform: translate(-50%, 90px) scale(0.6); }
    100% { opacity: 0; transform: translate(-50%, 110px) scale(0.2); }
}

.section-product-animation.anim-active .herb-1 { animation: herbFloatIn1 5.5s ease-in-out infinite; animation-delay: 0s; }
.section-product-animation.anim-active .herb-2 { animation: herbFloatIn2 5.5s ease-in-out infinite; animation-delay: 1.1s; }
.section-product-animation.anim-active .herb-3 { animation: herbFloatIn3 5.5s ease-in-out infinite; animation-delay: 2.2s; }
.section-product-animation.anim-active .herb-4 { animation: herbFloatIn4 5.5s ease-in-out infinite; animation-delay: 3.3s; }
.section-product-animation.anim-active .herb-5 { animation: herbFloatIn5 5.5s ease-in-out infinite; animation-delay: 4.4s; }

/* --- ADVANTAGE LABELS AREA (Right Side) --- */
.advantage-labels-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    max-width: 500px;
}

.adv-label-item {
    display: flex;
    align-items: center;
    gap: 0;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.adv-connector {
    width: 60px;
    height: 8px;
    flex-shrink: 0;
    overflow: visible;
}

.connector-dot {
    filter: drop-shadow(0 0 5px #F8A900);
}

.connector-line {
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    filter: drop-shadow(0 0 3px rgba(248, 169, 0, 0.8));
    transition: stroke-dashoffset 0.8s ease;
}

/* Specification Boxed Pill Styling — Expanded Size & Crisp Lines */
.adv-pill {
    background: rgba(10, 12, 18, 0.88);
    border: 1.5px solid rgba(248, 169, 0, 0.6);
    border-radius: 9px;
    padding: 11px 20px;
    font-size: 0.98rem;
    font-weight: 700;
    color: #FFFFFF;
    white-space: nowrap;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.7), inset 0 0 10px rgba(248, 169, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.adv-label-item.show {
    opacity: 1;
    transform: translateX(0);
}

.adv-label-item.show .connector-line {
    stroke-dashoffset: 0;
}

/* --- RESPONSIVE MOBILE VIEW (STRICT SIDE-BY-SIDE SIDE LAYOUT) --- */
@media (max-width: 768px) {
    .section-product-animation {
        padding: 35px 0 45px;
    }

    .product-anim-wrapper {
        flex-direction: row !important; /* STRICT SIDE BY SIDE ON MOBILE */
        align-items: center;
        justify-content: space-between;
        gap: 4px;
        min-height: 430px;
        width: 100%;
    }

    /* Bottle on the left (takes ~42% width) */
    .bottle-herbs-area {
        width: 42%;
        min-height: 380px;
        flex-shrink: 0;
    }

    .anim-bottle-img {
        width: 100%;
        max-width: 175px;
        max-height: 360px;
    }

    .cap-glow {
        top: 12%;
        width: 65px;
        height: 22px;
    }

    /* Advantages on the right (takes ~58% width) */
    .advantage-labels-area {
        width: 58%;
        gap: 11px;
        padding-left: 0;
        max-width: none;
    }

    .adv-label-item {
        gap: 0;
        width: 100%;
    }

    .adv-connector {
        width: 22px; /* Visible connecting line on mobile */
        height: 8px;
    }

    .adv-pill {
        font-size: 0.8rem;
        padding: 7px 11px;
        font-weight: 700;
        white-space: normal;
        word-break: break-word;
        line-height: 1.25;
        border-radius: 7px;
        border-width: 1.2px;
        text-align: left;
        width: 100%;
    }

    .herb-float img {
        width: 33px;
        height: 33px;
    }

    .herb-name {
        font-size: 0.5rem;
    }

    /* Adjust mobile herb float keyframes */
    @keyframes herbFloatIn1 {
        0% { opacity: 0; transform: translate(0, 0) scale(0.5); }
        15% { opacity: 1; transform: translate(0, 0) scale(1); }
        70% { opacity: 1; transform: translate(75px, 35px) scale(0.5); }
        100% { opacity: 0; transform: translate(85px, 45px) scale(0.2); }
    }
    @keyframes herbFloatIn2 {
        0% { opacity: 0; transform: translate(0, 0) scale(0.5); }
        15% { opacity: 1; transform: translate(0, 0) scale(1); }
        70% { opacity: 1; transform: translate(-60px, 40px) scale(0.5); }
        100% { opacity: 0; transform: translate(-70px, 45px) scale(0.2); }
    }
    @keyframes herbFloatIn3 {
        0% { opacity: 0; transform: translate(0, 0) scale(0.5); }
        15% { opacity: 1; transform: translate(0, 0) scale(1); }
        70% { opacity: 1; transform: translate(80px, 15px) scale(0.5); }
        100% { opacity: 0; transform: translate(90px, 20px) scale(0.2); }
    }
    @keyframes herbFloatIn4 {
        0% { opacity: 0; transform: translate(0, 0) scale(0.5); }
        15% { opacity: 1; transform: translate(0, 0) scale(1); }
        70% { opacity: 1; transform: translate(-70px, 18px) scale(0.5); }
        100% { opacity: 0; transform: translate(-80px, 22px) scale(0.2); }
    }
    @keyframes herbFloatIn5 {
        0% { opacity: 0; transform: translate(-50%, 0) scale(0.5); }
        15% { opacity: 1; transform: translate(-50%, 0) scale(1); }
        70% { opacity: 1; transform: translate(-50%, 55px) scale(0.5); }
        100% { opacity: 0; transform: translate(-50%, 65px) scale(0.2); }
    }

    /* Mobile Floating Call Button Positioning & Z-index Fix */
    .floating-call-btn {
        right: 15px !important;
        bottom: 85px !important;
        width: 52px !important;
        height: 52px !important;
        z-index: 9999 !important;
    }

    .hero-card, .repeat-lead-card, .form-card {
        padding: 20px 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .hero-card h3, .repeat-lead-card h3 {
        font-size: 1.15rem !important;
        line-height: 1.35 !important;
    }
}

/* ==========================================================================
   FAQ SECTION (MATCHING REFERENCE IMAGE 2)
   ========================================================================== */
.section-faq {
    padding: 60px 0 70px;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, rgba(15, 19, 28, 0.4) 0%, rgba(7, 9, 12, 0.9) 100%);
}

.faq-container {
    max-width: 820px;
    margin: 35px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-card {
    background: #111520;
    border: 1px solid rgba(248, 169, 0, 0.22);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-card:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 4px 20px rgba(248, 169, 0, 0.15);
}

.faq-question {
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    user-select: none;
}

.faq-question h4 {
    font-size: 1.08rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.4;
    padding-right: 15px;
}

.faq-arrow {
    font-size: 0.9rem;
    color: var(--gold-primary);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-card.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 20px 24px;
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    font-size: 0.98rem;
    color: #CBD5E1;
    line-height: 1.65;
    margin-top: 12px;
}

/* ==========================================================================
   FOOTER LEGAL, CONTACT & DISCLAIMER SECTION (MATCHING REFERENCE IMAGE 1)
   ========================================================================== */
.site-footer {
    background: #05070A;
    border-top: 2px solid var(--gold-primary);
    padding: 60px 0 110px; /* Bottom padding for floating CTA bar */
    color: #E2E8F0;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 45px;
}

.footer-brand-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold-primary);
    margin-bottom: 4px;
    letter-spacing: 1.5px;
}

.footer-brand-sub {
    font-size: 1.05rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 0.92rem;
    color: #94A3B8;
    line-height: 1.6;
    max-width: 340px;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 18px;
    position: relative;
}

.footer-heading::after {
    content: '';
    display: block;
    width: 35px;
    height: 2px;
    background: var(--gold-primary);
    margin-top: 6px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #CBD5E1;
    text-decoration: none;
    font-size: 0.96rem;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gold-link-icon {
    filter: drop-shadow(0 0 4px rgba(248, 169, 0, 0.4));
    transition: transform 0.2s ease, filter 0.2s ease;
    flex-shrink: 0;
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-links a:hover .gold-link-icon {
    transform: scale(1.18);
    filter: drop-shadow(0 0 8px rgba(248, 169, 0, 0.8));
}

/* OFFICIAL DISCLAIMER BOX (MATCHING IMAGE 1) */
.footer-disclaimer-box {
    background: rgba(17, 21, 32, 0.85);
    border: 1px dashed rgba(248, 169, 0, 0.35);
    border-radius: 10px;
    padding: 22px 28px;
    margin-bottom: 30px;
    text-align: center;
}

.footer-disclaimer-box p {
    font-size: 0.86rem;
    color: #94A3B8;
    line-height: 1.65;
    margin: 0;
}

.footer-disclaimer-box strong {
    color: var(--gold-primary);
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
}

.footer-copyright p {
    font-size: 0.88rem;
    color: #64748B;
    margin: 0;
}

/* RESPONSIVE FOOTER & FAQ */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-disclaimer-box {
        padding: 16px 18px;
    }
    .faq-question h4 {
        font-size: 0.98rem;
    }
    .faq-question {
        padding: 14px 16px;
    }
    .faq-answer {
        padding: 0 16px 16px 16px;
    }
}






