/* Custom Properties & Reset */
:root {
    --black: #050505;
    --dark-blue: #082A63;
    --royal-blue: #103E8A;
    --gold: #D4AF37;
    --light-gold: #F4D06F;
    --white: #F8F8F8;
    --green: #25D366;
    --text-light: #cccccc;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(212, 175, 55, 0.2);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Noto Sans Kannada', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    color: var(--gold);
    font-weight: 600;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-darker {
    background-color: #030303;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    line-height: 1.4;
}

.section-title.left-align {
    text-align: left;
}

.text-center {
    text-align: center;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 50px rgba(244, 208, 111, 0.6); }
    100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
button {
    cursor: pointer;
    border: none;
    outline: none;
    font-weight: 600;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--black);
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--light-gold), var(--gold));
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    padding: 16px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
    padding: 15px 0;
}

header.scrolled {
    padding: 10px 0;
    background: rgba(5, 5, 5, 0.98);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.1rem;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu {
    display: none;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--gold);
}

.mobile-menu-btn {
    background: none;
    color: var(--gold);
    font-size: 1.5rem;
    display: block;
}

.header-buttons {
    display: none;
}

/* Hero Section */
#hero {
    padding-top: 120px;
    padding-bottom: 60px;
    background: radial-gradient(circle at right center, var(--dark-blue) 0%, var(--black) 70%);
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--white);
}

.hero-title span {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--light-gold);
}

.hero-desc {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1rem;
}

.trust-badges {
    list-style: none;
    margin-bottom: 30px;
}

.trust-badges li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cod-text {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-effect {
    position: absolute;
    width: 250px;
    height: 250px;
    background: var(--gold);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: pulse-glow 4s infinite;
}

.floating-bottle {
    position: relative;
    z-index: 2;
    max-height: 400px;
    animation: float 6s ease-in-out infinite;
}

/* Social Proof Strip */
#social-proof {
    background: var(--royal-blue);
    padding: 12px 0;
    font-size: 0.85rem;
    font-weight: 600;
}

.proof-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
    line-height: 1.5;
}

.proof-item {
    white-space: nowrap;
}

.divider {
    color: var(--gold);
}

/* Problem vs Solution Graphic Cards */
.prob-sol-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.ps-card {
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}

.ps-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--white);
}

/* FIX: Image will now scale naturally without zooming/cropping */
.ps-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.card-black {
    background-color: #080808;
    border-color: #222;
}

.card-red {
    background-color: #7A0000;
    border-color: #990000;
}

.ps-card p {
    font-size: 1.05rem;
    color: var(--white);
    line-height: 1.6;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.glass-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.glass-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.glass-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* About Section */
.about-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* How to Use */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.step-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.step-num {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
    font-weight: 700;
}

.step-card h3 {
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

/* Expert Section */
.expert-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    background: rgba(16, 62, 138, 0.2);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

.expert-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}

.disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 20px;
}

/* Testimonials */
.reviews-slider {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.review-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 10px;
}

.stars {
    margin-bottom: 15px;
}

.review-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-light);
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer h4 {
    color: var(--white);
    font-size: 1rem;
}

.reviewer span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0,0,0,0.2);
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

/* Lead Form */
.form-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: var(--glass-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.form-subtitle {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--gold);
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: var(--white);
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(5px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--black);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--gold);
    width: 90%;
    max-width: 450px;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--gold);
}

.modal-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.modal-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.9rem;
}

/* Thank You Modal Redesign */
.ty-modal-content {
    padding: 0; 
    overflow: hidden;
    background: #FAFAFA; 
    color: #000;
    text-align: center;
    border: none;
}
.ty-header-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.ty-body { 
    padding: 30px 20px; 
    position: relative; 
}
.ty-check {
    width: 60px;
    height: 60px;
    background: #FFB800; /* Yellow Checkmark from image */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    font-weight: bold;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid #FAFAFA;
}
.ty-title { 
    font-size: 1.4rem; 
    font-weight: 700; 
    margin-top: 20px; 
    color: #000; 
    line-height: 1.3;
}
.ty-subtitle { 
    color: #555; 
    margin-bottom: 20px; 
    font-size: 1rem;
    margin-top: 10px;
}
.ty-call-box {
    background: #F4F6F8;
    border: 1px solid #E1E6EB;
    padding: 12px 25px;
    border-radius: 8px;
    display: inline-block;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Floating Phone Button */
.phone-float {
    position: fixed;
    bottom: 80px; /* Above mobile sticky CTA if present */
    right: 20px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1500;
    transition: var(--transition);
}

.phone-float:hover {
    transform: scale(1.1);
}

/* Mobile Sticky Order Button */
.mobile-sticky-btn {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--black);
    padding: 12px;
    z-index: 1000;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 -4px 15px rgba(0,0,0,0.5);
}

/* Footer */
footer {
    background: #020202;
    padding: 60px 0 30px; 
    border-top: 1px solid var(--glass-border);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    margin-bottom: 30px;
}

.footer-brand p {
    color: var(--text-light);
    margin-top: 10px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact p {
    color: var(--text-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #666;
    font-size: 0.8rem;
}

/* Media Queries */
@media (max-width: 767px) {
    body {
        padding-bottom: 70px; /* Space for mobile sticky CTA */
    }
    
    .mobile-sticky-btn {
        display: block;
    }
    
    .proof-container {
        font-size: 0.75rem; 
    }
    
    .divider {
        display: none; 
    }
    
    .phone-float {
        bottom: 90px; 
        width: 50px;
        height: 50px;
    }
}

@media (min-width: 768px) {
    .logo { font-size: 1.4rem; }
    .nav-menu { display: block; }
    .mobile-menu-btn { display: none; }
    .header-buttons { display: block; }
    .hero-container { flex-direction: row; align-items: center; }
    .hero-title { font-size: 3rem; }
    .benefits-grid { grid-template-columns: repeat(3, 1fr); }
    .about-container { flex-direction: row; }
    .about-image, .about-content { flex: 1; }
    .prob-sol-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .steps-grid { grid-template-columns: repeat(4, 1fr); }
    .expert-container { flex-direction: row; text-align: left; }
    .reviews-slider { grid-template-columns: repeat(3, 1fr); }
    .footer-container { grid-template-columns: repeat(3, 1fr); text-align: left; }
    .footer-links { align-items: flex-start; }
    .phone-float { bottom: 30px; } 
}