/* MOMOCHEF PREMIUM MOBILE STYLESHEET (<=768px screens) */

/* Global Reset & Base Variables */
:root {
    --primary: #8B0000;
    --primary-dark: #5B0000;
    --accent: #F5B700;
    --accent-hover: #DDA000;
    --bg-cream: #FAF6F0;
    --bg-white: #FFFDF9;
    --text-dark: #2A1D1D;
    --text-muted: #6B5D5D;
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.5;
    padding-bottom: 120px; /* Space for sticky bottom navigation & bottom CTAs */
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-primary);
    font-weight: 700;
}

/* Hide Desktop specific items */
.nav-menu,
.header-actions {
    display: none !important;
}

/* Container */
.container {
    padding: 0 16px;
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.85rem;
    border: none;
    text-decoration: none;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-gold {
    background-color: var(--accent);
    color: #000;
}

.btn-outline {
    background: transparent;
    color: #FFF;
    border: 2px solid rgba(255,255,255,0.6);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #FFF;
}

.btn-sm {
    padding: 8px 14px;
    font-size: 0.8rem;
}

/* Section Header for Mobile */
.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-header .subtitle {
    display: block;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.section-header h2 {
    font-size: 1.8rem;
    color: var(--primary-dark);
}

.section-header .section-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.section-header .divider {
    width: 40px;
    height: 3px;
    background-color: var(--accent);
    margin: 10px auto 0;
}

/* STICKY HEADER (Mobile App Bar) */
.main-header {
    position: sticky;
    top: 0;
    background: var(--primary-dark);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 999;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #FFF;
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--accent);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.3rem;
    color: #FFF;
}

.brand-name span {
    color: var(--accent);
}

.brand-tag {
    font-size: 0.55rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
}

/* Hamburger Toggle Button */
.hamburger-menu {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.hamburger-menu span {
    display: block;
    width: 24px;
    height: 3px;
    background: #FFF;
    border-radius: 2px;
    transition: var(--transition);
}

/* MOBILE Hamburger Active style in JS if needed */
.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}
.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* MOBILE APP SIDEBAR */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: var(--bg-cream);
    z-index: 2001;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 10px 0 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.show {
    transform: translateX(280px);
}

.sidebar-header {
    background: var(--primary-dark);
    padding: 20px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FFF;
}

.sidebar-logo .brand-name {
    font-size: 1.4rem;
}

.close-sidebar {
    background: transparent;
    border: none;
    color: #FFF;
    font-size: 1.4rem;
    cursor: pointer;
}

.sidebar-nav {
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    overflow-y: auto;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.sidebar-link:hover, .sidebar-link.active {
    background: rgba(139,0,0,0.08);
    color: var(--primary);
}

.sidebar-footer {
    padding: 16px;
    border-top: 1px solid rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
}

.sidebar-btn-call {
    background: var(--primary);
    color: #FFF;
}

.sidebar-btn-wa {
    background: #25D366;
    color: #FFF;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sidebar-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* HERO SLIDER - MOBILE OPTIMIZED */
.hero-section {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    padding: 20px;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    color: #FFF;
    z-index: 10;
    width: 100%;
}

.slide-content .badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(245, 183, 0, 0.2);
    border: 1px solid var(--accent);
    padding: 4px 10px;
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.slide-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content .subheadline {
    font-size: 1rem;
    color: #FAF6F0;
    margin-bottom: 12px;
}

.slide-content .wholesale-msg {
    font-size: 0.85rem;
    border-left: 3px solid var(--accent);
    padding-left: 10px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 10px;
    border-radius: 0 4px 4px 0;
}

.slide-content .moq-info {
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.slide-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Floating elements background decoration on mobile */
.floating-elements {
    display: none; /* Hide details on small touch screens for performance */
}

/* Varieties Ticker (Marquee) */
.varieties-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    padding: 8px 12px;
    z-index: 12;
    display: flex;
    align-items: center;
}

.ticker-title {
    color: var(--accent);
    font-weight: 800;
    font-size: 0.75rem;
    margin-right: 10px;
}

.ticker-wrap {
    overflow: hidden;
}

.ticker-items {
    display: flex;
    gap: 20px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.ticker-items span {
    color: #FFF;
    font-size: 0.75rem;
    font-weight: 600;
}

.ticker-items span::after {
    content: '•';
    color: var(--accent);
    margin-left: 15px;
}

/* Slider dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* ABOUT US SECTION */
.about-section {
    padding: 40px 0;
    background-color: var(--bg-cream);
}

.about-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
}

.about-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.about-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.feature-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
}

.chk-item {
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chk-item i {
    color: var(--primary);
}

.about-author-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(139, 0, 0, 0.1);
}

.auth-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-info strong {
    font-size: 0.85rem;
}

.auth-info span {
    font-size: 0.75rem;
}

.about-visuals {
    width: 100%;
}

.about-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.main-about-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.overlay-card {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(91, 0, 0, 0.9);
    padding: 10px 15px;
    border-radius: 8px;
    color: #FFF;
    display: flex;
    align-items: center;
    gap: 10px;
}

.oc-num {
    font-size: 1.4rem;
    color: var(--accent);
    font-weight: 800;
}

.oc-text {
    font-size: 0.75rem;
}

/* PRODUCT CATALOG SECTION */
.products-section {
    padding: 40px 0;
    background: var(--bg-white);
}

.products-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-card {
    background: var(--bg-cream);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(91,0,0,0.05);
}

.card-image {
    position: relative;
    height: 180px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    font-size: 0.65rem;
    border-radius: 40px;
}

.veg-badge { background: #2e7d32; }
.nonveg-badge { background: #c62828; }
.spicy-badge { background: #e65100; }
.crunch-badge { background: #ef6c00; }
.hot-badge { background: #d84315; }
.mild-badge { background: #ad1457; }

.card-body {
    padding: 16px;
}

.card-body h3 {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.card-body .desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.specs {
    margin-bottom: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.specs li {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    margin-bottom: 6px;
}

.spec-lbl {
    color: var(--text-muted);
}

.spec-val {
    color: var(--text-dark);
    font-weight: 700;
}

.card-footer-actions {
    display: flex;
    gap: 8px;
}

.card-footer-actions .btn {
    flex: 1;
}

/* WHY CHOOSE US USP cards */
.why-choose-section {
    padding: 40px 0;
    background: var(--bg-cream);
}

.usp-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.usp-card {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.usp-icon {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background: rgba(139, 0, 0, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.usp-card h3 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.usp-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* STATS COUNTER SECTION */
.stats-section {
    padding: 40px 0;
    background: linear-gradient(rgba(91, 0, 0, 0.92), rgba(139, 0, 0, 0.92)), url('https://images.unsplash.com/photo-1534422298391-e4f8c172dddb?auto=format&fit=crop&q=80&w=600') no-repeat center/cover;
    color: #FFF;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-box {
    padding: 10px;
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-box .counter {
    font-size: 1.8rem;
    font-family: var(--font-primary);
    font-weight: 800;
}

.stat-box .plus {
    font-size: 1.2rem;
    color: var(--accent);
}

.stat-box p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
}

/* CERTIFICATES & COMPLIANCES */
.certificates-section {
    padding: 40px 0;
    background: var(--bg-white);
}

.certificates-carousel-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
}

.certificates-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: certScrollLeftToRight 25s linear infinite;
}

.certificates-track .cert-card {
    width: 310px;
    flex-shrink: 0;
}

.cert-card {
    background: var(--bg-cream);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.cert-preview {
    width: 100%;
    height: 120px;
    border-radius: 8px;
    background: #FFF;
    border: 1px dashed rgba(139,0,0,0.3);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-placeholder-icon {
    font-size: 2.5rem;
    color: rgba(139,0,0,0.15);
}

.badge-verified {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #2e7d32;
    color: #FFF;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 40px;
}

.cert-info h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.cert-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.cert-no {
    display: inline-block;
    background: rgba(139,0,0,0.06);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-family: monospace;
}

.cert-actions {
    display: flex;
    gap: 8px;
}

.cert-actions .btn {
    flex: 1;
}

/* COMPANY DETAILS IDENTIFICATION */
.company-info-section {
    padding: 30px 0;
    background: var(--bg-cream);
}

.info-card-container {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ver-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(46, 125, 50, 0.1);
    color: #2e7d32;
    padding: 4px 10px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 800;
}

.info-details-box h2 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.info-details-box p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.85rem;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.info-row .lbl {
    color: var(--text-muted);
    font-weight: 600;
}

.info-row .val {
    color: var(--text-dark);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.info-qr-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.qr-code {
    font-size: 4rem;
    color: var(--primary-dark);
}

.qr-caption {
    font-size: 0.75rem;
}

.verification-badge-large {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(245, 183, 0, 0.1);
    border: 1px solid var(--accent);
    padding: 10px;
    border-radius: 6px;
}

/* BULK ORDER CTA */
.bulk-order-section {
    background: var(--primary-dark);
    padding: 40px 0;
    color: #FFF;
    text-align: center;
}

.cta-banner-content h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.cta-banner-content p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* SERVICE AREAS BIHAR MAP */
.service-areas-section {
    padding: 40px 0;
    background: var(--bg-white);
}

.map-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.map-visual-container {
    background: #150202;
    border-radius: 12px;
    padding: 15px;
}

.bihar-svg-map {
    width: 100%;
}

.map-district text {
    font-size: 16px; /* Scaled up for readable screens */
}

.hub-info-box {
    background: var(--bg-cream);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.hub-info-box h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.hub-info-box p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.lstat {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    padding-bottom: 6px;
}

.statewide-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(139,0,0,0.05);
    padding: 12px;
    border-radius: 8px;
}

.statewide-banner i {
    font-size: 1.5rem;
    color: var(--primary);
}

.statewide-banner h4 {
    font-size: 0.85rem;
}

.statewide-banner p {
    font-size: 0.75rem;
}

/* GOOGLE REVIEWS TESTIMONIALS (Mobile Horizontal Swipe-Friendly Layout) */
.testimonials-section {
    padding: 40px 0;
    background: var(--bg-cream);
}

.testimonial-carousel-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 15px;
}

.testimonial-track {
    display: flex;
    gap: 15px;
    animation: none; /* Disable auto scroll on mobile to allow manual swipe */
}

.test-card {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 12px;
    width: 280px;
    flex-shrink: 0;
}

.test-text {
    font-size: 0.8rem;
}

.test-author strong {
    font-size: 0.85rem;
}

/* FAQ ACCORDION */
.faq-section {
    padding: 40px 0;
    background: var(--bg-white);
}

.faq-accordion-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-question {
    padding: 15px;
    font-size: 0.9rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 15px;
}

.faq-answer p {
    font-size: 0.8rem;
}

/* CONTACT SECTION Form & Split Layout */
.contact-section {
    padding: 40px 0;
    background: var(--bg-cream);
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-details-panel {
    background: var(--primary-dark);
    color: #FFF;
    padding: 20px;
    border-radius: 12px;
}

.contact-details-panel h3 {
    font-size: 1.3rem;
    color: var(--accent);
}

.c-info-list {
    gap: 15px;
}

.c-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
}

.contact-form-panel {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 12px;
}

.contact-form-panel h3 {
    font-size: 1.3rem;
}

.momochef-direct-form .form-row {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.momochef-direct-form input,
.momochef-direct-form select,
.momochef-direct-form textarea {
    padding: 10px;
}

.momo-select-wrap {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
}

.momo-select-wrap select {
    flex: 1;
}

.momo-live-badge {
    background: var(--accent);
    color: #000;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(245, 183, 0, 0.2);
}

/* FOOTER */
.footer-container {
    background: linear-gradient(180deg, #3a0000 0%, #150000 100%);
    color: #FFF;
    padding: 40px 0 20px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 30px;
}

.footer-col h3 {
    font-size: 1rem;
    margin-bottom: 12px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    font-size: 0.8rem;
}

.social-links {
    margin-top: 10px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

/* MOBILE APP EXPERIENCE: BOTTOM NAVIGATION BAR */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #FFF;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    z-index: 999;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.m-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 700;
    gap: 4px;
}

.m-nav-item i {
    font-size: 1.2rem;
}

.m-nav-item.active {
    color: var(--primary);
}

/* MOBILE FLOATING ACTIONS (BOTTOM BAR POSITION) */
.floating-cta-container {
    display: none !important; /* Hide floating buttons on mobile to avoid overlapping */
}

/* PERSISTENT STICKY BOTTOM ACTIONS FOR FAST CONVERSIONS */
.mobile-sticky-cta {
    position: fixed;
    bottom: 57px; /* Sits exactly on top of bottom navigation */
    left: 0;
    width: 100%;
    display: flex;
    z-index: 998;
    box-shadow: 0 -3px 10px rgba(0,0,0,0.1);
}

.sticky-cta-btn {
    flex: 1;
    border: none;
    padding: 12px 10px;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 0.85rem;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.cta-wa {
    background-color: #25D366;
    color: #FFF;
}

.cta-enquiry {
    background-color: var(--accent);
    color: #000;
}

/* LEAD POPUP GLASSMORPHISM MOBILE STYLE */
.lead-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(21, 2, 2, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lead-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.lead-popup-container {
    width: 90%;
    max-width: 440px;
    max-height: 85vh;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.lead-popup-overlay.show .lead-popup-container {
    transform: scale(1);
}

.close-popup-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: var(--accent);
    color: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-glass-card {
    background: rgba(139, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 24px 20px 20px;
    color: #FFF;
    max-height: 75vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.popup-header {
    text-align: center;
    margin-bottom: 15px;
    padding-right: 15px;
}

.decor-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.popup-header h2 {
    font-size: 1.3rem;
    color: #FFF;
}

.popup-header p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
}

.popup-form .popup-field-row {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.popup-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.popup-field label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 3px;
}

.popup-form input,
.popup-form select,
.popup-form textarea {
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: #FFF;
    font-family: var(--font-secondary);
    font-size: 0.8rem;
}

.popup-form input::placeholder,
.popup-form textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.popup-form select option {
    background: var(--primary-dark);
    color: #FFF;
}

.popup-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

/* CERTIFICATE ZOOM MODAL MOBILE */
.cert-modal-container {
    width: 95%;
}

.cert-modal-body {
    padding: 20px;
}

.cert-mock-image {
    padding: 30px 10px;
}

/* MARQUEE ANIMATION FOR MARQUEE DUST */
@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}
