/* ==========================================
   DESIGN SYSTEM & CUSTOM PROPERTIES (LIGHT CLINICAL THEME)
   ========================================== */
:root {
    --bg-primary: #f8fafc; /* light slate background */
    --bg-secondary: #ffffff; /* pure white for panels */
    --bg-tertiary: #f1f5f9; /* cool gray panels */
    --card-bg: rgba(255, 255, 255, 0.85);
    
    --text-primary: #0f172a; /* deep slate-black for headers */
    --text-secondary: #334155; /* slate-gray for text */
    --text-muted: #64748b; /* muted steel-gray */
    
    --primary-blue: #007cc3; /* Ojana logo clinical blue */
    --primary-green: #71c42d; /* Ojana logo clinical green */
    --accent-gold: #f29429; /* Ojana logo orange highlight */
    
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    --gradient-glow: linear-gradient(135deg, rgba(0, 124, 195, 0.06) 0%, rgba(113, 196, 45, 0.06) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-gold) 0%, #ff7a00 100%);
    
    --border-color: rgba(15, 23, 42, 0.08);
    --border-hover: rgba(0, 124, 195, 0.25);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-sm: 0 2px 4px rgba(0, 72, 117, 0.03), 0 1px 2px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 10px 20px -5px rgba(0, 72, 117, 0.06), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 20px 30px -10px rgba(0, 72, 117, 0.08), 0 10px 15px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(0, 124, 195, 0.2);
}

/* ==========================================
   BASE & RESET
   ========================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-secondary);
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 130px; /* Sticky top bar + header offset */
    background: var(--bg-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.text-center { text-align: center; }
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-gradient-green {
    color: var(--primary-green);
}
.text-accent {
    color: var(--accent-gold);
}
.hidden {
    display: none !important;
}

/* Glassmorphism Panel (Light Mode) */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}
.glass-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

/* Button UI */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-normal);
    gap: 8px;
}
.btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
}
.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}
.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 124, 195, 0.15);
}
.btn-primary:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}
.btn-secondary {
    background: var(--bg-secondary);
    color: var(--primary-blue);
    border: 1px solid rgba(0, 124, 195, 0.2);
}
.btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}
.btn-block {
    width: 100%;
}

/* ==========================================
   TOP BAR & HEADER
   ========================================== */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 45px;
    background-color: #00385c; /* deep corporate blue */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1001;
    display: flex;
    align-items: center;
    color: #e2e8f0;
}
.top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
    font-size: 0.85rem;
}
.top-bar-ticker {
    display: flex;
    gap: 24px;
    align-items: center;
}
.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.top-bar-item a:hover {
    color: var(--primary-green);
}

.header {
    position: fixed;
    top: 45px;
    left: 0;
    width: 100%;
    height: 85px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-normal);
}
.header.scrolled {
    height: 75px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.logo-wrapper {
    display: flex;
    align-items: center;
    max-width: 180px;
    flex-shrink: 0;
}
.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px; /* Reduced from 32px to fit all items cleanly */
    flex-shrink: 0;
}
.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem; /* Slightly reduced font size for desktop layout */
    color: var(--text-secondary);
    white-space: nowrap; /* Prevent ugly two-line wrapping on smaller desktop viewports */
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-blue);
}
.nav-cta {
    animation: glow-pulse 3s infinite;
    font-size: 0.9rem;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
}

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed;
    top: 130px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 130px);
    background: var(--bg-secondary);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transition: var(--transition-slow);
}
.mobile-nav.open {
    left: 0;
}
.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}
.mobile-nav-link:hover {
    color: var(--primary-blue);
    padding-left: 8px;
}
.mobile-cta {
    margin-top: 12px;
}

/* ==========================================
   HERO SECTION (VIEWPORT LOCKED ON DESKTOP)
   ========================================== */
.hero-section {
    position: relative;
    overflow: hidden;
    background: var(--gradient-glow);
    display: flex;
    align-items: center;
}

@media (min-width: 1025px) {
    .hero-section {
        height: calc(100vh - 130px); /* Fill screen height exactly */
        min-height: 580px;
        padding: 0;
    }
}
@media (max-width: 1024px) {
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }
}

.hero-bg-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 124, 195, 0.04) 0%, rgba(113, 196, 45, 0.02) 50%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    position: relative;
    z-index: 1;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 124, 195, 0.08);
    color: var(--primary-blue);
    border: 1px solid rgba(0, 124, 195, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.hero-badge i {
    animation: spin 4s linear infinite;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 16px;
    font-weight: 800;
}
.hero-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 580px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-highlights {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}
.highlight-item {
    display: flex;
    flex-direction: column;
}
.highlight-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
}
.highlight-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Hero Right Glass Card Widget */
.hero-glass-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 440px;
    margin: 0 auto;
}
.card-header-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(113, 196, 45, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.pharma-badge {
    display: inline-block;
    background: var(--bg-tertiary);
    color: var(--accent-gold);
    border: 1px solid rgba(242, 148, 41, 0.2);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.hero-glass-card h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.hero-glass-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.product-mini-preview {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 18px;
    position: relative;
}
.mini-img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 8px;
    background: #fff;
    padding: 2px;
    border: 1px solid #e2e8f0;
}
.mini-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
}
.mini-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}
.trending-badge {
    position: absolute;
    top: -10px;
    right: 12px;
    background: #fff;
    border: 1px solid rgba(242, 148, 41, 0.3);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--accent-gold);
    box-shadow: var(--shadow-sm);
}

.visual-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.feature-bullet {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* ==========================================
   CHECKER SECTION (INTERACTIVE WIDGET)
   ========================================== */
.checker-section {
    padding: 80px 0;
    position: relative;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.section-header {
    margin-bottom: 48px;
}
.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 12px;
}
.section-header p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.checker-card {
    max-width: 860px;
    margin: 0 auto;
    background: var(--bg-primary);
    border-color: var(--border-color);
}
.form-row-checker {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}
.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}
.form-group select, .form-group input {
    background: var(--bg-secondary);
    border: 1px solid #cbd5e1;
    padding: 12px 16px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    width: 100%;
    color: var(--text-primary);
    transition: var(--transition-fast);
}
.form-group select:focus, .form-group input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 10px rgba(0, 124, 195, 0.1);
}
.btn-align {
    max-width: 200px;
}

/* Checker Result */
.checker-result {
    margin-top: 24px;
    border-top: 1px dashed #cbd5e1;
    padding-top: 24px;
}
.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}
.spinner {
    width: 32px;
    height: 32px;
    border: 4px solid var(--bg-tertiary);
    border-top: 4px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.result-message {
    text-align: center;
    animation: fadeInUp var(--transition-normal);
}
.result-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}
.result-header i {
    font-size: 1.8rem;
    color: var(--primary-green);
}
.result-header h3 {
    font-size: 1.5rem;
}
.result-text {
    font-size: 1rem;
    max-width: 580px;
    margin: 0 auto 20px;
}
.btn-claim-monopoly {
    animation: pulse-glow 2s infinite;
}

/* ==========================================
   DIVISIONS SECTION (CATEGORIES)
   ========================================== */
.divisions-section {
    padding: 80px 0;
    position: relative;
    background: var(--bg-primary);
}
.divisions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.division-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}
.division-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}
.div-image-wrapper {
    height: 160px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}
.div-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition-normal);
}
.division-card:hover .div-img {
    transform: scale(1.08);
}
.div-content {
    padding: 20px;
}
.div-content h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}
.div-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==========================================
   HERO INTERACTIVE SCENE ANIMATIONS
   ========================================== */
.hero-svg-wrapper {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    filter: drop-shadow(0 15px 35px rgba(0,72,117,0.12));
}
.hero-interactive-svg {
    width: 100%;
    height: auto;
    overflow: visible;
}
.anim-spin-slow {
    transform-origin: 250px 250px;
    animation: spin-clockwise 40s linear infinite;
}
.anim-spin-reverse {
    transform-origin: 250px 250px;
    animation: spin-counter 25s linear infinite;
}
.orbiting-group {
    transform-origin: 250px 250px;
    animation: spin-clockwise 60s linear infinite;
}
.floating-capsule {
    transform-origin: 250px 180px;
    animation: float-capsule 5s ease-in-out infinite;
}
.rotating-tablet {
    transform-origin: 150px 280px;
    animation: spin-clockwise 15s linear infinite;
}
.syrup-bottle-graphic {
    transform-origin: 345px 325px;
    animation: float-bottle 6s ease-in-out infinite;
}
.anim-pulse {
    animation: pulse-cross 2s ease-in-out infinite;
}

@keyframes spin-clockwise {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes spin-counter {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}
@keyframes float-capsule {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(8deg); }
}
@keyframes float-bottle {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(-4deg); }
}
@keyframes pulse-cross {
    0%, 100% { opacity: 0.3; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* ==========================================
   TRUST STATS BAR
   ========================================== */
.trust-stats-bar {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 10;
}
.trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    align-items: center;
}
.stat-counter-card {
    text-align: center;
    border-right: 1px solid var(--border-color);
    padding: 10px 0;
}
.stat-counter-card:last-child, .stat-counter-card.text-center-stat {
    border-right: none;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}
.stat-plus {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
}
.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 6px;
}
.stat-label-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 4px;
}
.stat-label-large {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* ==========================================
   WHY CHOOSE US - TIMELINE OVERLAY
   ========================================== */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 20px 0;
}
.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    background: var(--border-color);
    border-radius: 2px;
}
.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: height 0.1s ease;
}
.timeline-item {
    display: flex;
    width: 100%;
    margin-bottom: 50px;
    position: relative;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-dot {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.15rem;
    box-shadow: var(--shadow-md);
    z-index: 5;
    transition: var(--transition-normal);
}
.timeline-item:hover .timeline-dot {
    background: var(--primary-blue);
    color: #ffffff;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: var(--shadow-glow);
}
.timeline-card {
    width: 45%;
    padding: 30px;
    background: #ffffff;
    box-shadow: var(--shadow-md);
    position: relative;
    border-radius: 16px;
}
.timeline-item.left-item {
    justify-content: flex-start;
}
.timeline-item.right-item {
    justify-content: flex-end;
}
.timeline-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: rgba(0, 124, 195, 0.08);
    position: absolute;
    top: 15px;
    right: 25px;
    line-height: 1;
}
.timeline-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}
.timeline-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* ==========================================
   INTERACTIVE THERAPEUTIC CATEGORIES
   ========================================== */
.category-tabs-container {
    overflow-x: auto;
    padding-bottom: 16px;
    margin-bottom: 30px;
    scroll-behavior: smooth;
}
.category-tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 12px;
    min-width: max-content;
    padding: 4px;
}
.category-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 50px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}
.category-tab i {
    font-size: 1.1rem;
    color: var(--primary-blue);
}
.category-tab:hover {
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}
.category-tab.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #ffffff;
    box-shadow: var(--shadow-glow);
}
.category-tab.active i {
    color: #ffffff;
}

.category-showcase-stage {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}
.showcase-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    padding: 48px;
    align-items: center;
}
.showcase-visual-panel {
    background: var(--bg-primary);
    border-radius: 20px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}
.showcase-svg-container {
    width: 80%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.showcase-text-panel h3 {
    font-size: 2.2rem;
    margin-bottom: 14px;
}
.showcase-text-panel p.category-lead {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}
.category-perk-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 30px;
}
.category-perk-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}
.category-perk-list li i {
    color: var(--primary-green);
    font-size: 1rem;
}
.category-meta-info {
    display: flex;
    gap: 24px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    margin-bottom: 30px;
}
.meta-box h4 {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.meta-box p {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}
.showcase-text-panel .btn {
    animation: glow-pulse 3s infinite;
}

/* Category Showcase Animation Keyframes */
@keyframes float-pill {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes capsule-split-left {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-12px, -6px) rotate(-15deg); }
}
@keyframes capsule-split-right {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(12px, 6px) rotate(15deg); }
}
@keyframes wave-motion {
    0%, 100% { d: path("M0 100 Q20 90 40 100 T80 100 T120 100 T160 100 L160 150 L0 150 Z"); }
    50% { d: path("M0 100 Q20 110 40 100 T80 100 T120 90 T160 100 L160 150 L0 150 Z"); }
}
@keyframes drop-down {
    0% { transform: translateY(-40px); opacity: 0; }
    50% { transform: translateY(10px); opacity: 1; }
    100% { transform: translateY(50px); opacity: 0; }
}
@keyframes ripple-grow {
    0% { r: 5; opacity: 0.8; stroke-width: 1.5; }
    100% { r: 40; opacity: 0; stroke-width: 0.5; }
}
@keyframes leaf-sway {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(8deg); }
}

/* ==========================================
   PRODUCT PORTFOLIO - PHARMACY SHELF
   ========================================== */
.medicine-shelf-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}
.shelf-menu {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}
.shelf-menu-btn {
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition-normal);
}
.shelf-menu-btn:hover, .shelf-menu-btn.active {
    background: var(--primary-blue);
    color: #ffffff;
    border-color: var(--primary-blue);
}

.pharmacy-shelf {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}
.shelf-row {
    position: relative;
    padding-bottom: 20px;
}
.shelf-wood {
    position: absolute;
    bottom: 0;
    left: -4%;
    width: 108%;
    height: 18px;
    background: linear-gradient(180deg, #d97706 0%, #b45309 100%);
    border-radius: 4px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15), 0 2px 4px rgba(0,0,0,0.1);
    z-index: 2;
}
.shelf-wood::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 4%;
    width: 92%;
    height: 8px;
    background: rgba(0,0,0,0.25);
    filter: blur(4px);
}
.shelf-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}
.shelf-product-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4px;
}
.product-top-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0, 124, 195, 0.08);
    color: var(--primary-blue);
    border: 1px solid rgba(0, 124, 195, 0.15);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.product-img-holder {
    background: #ffffff;
    border-radius: 12px;
    padding: 12px;
    height: 160px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.04);
    margin: 10px 0 16px;
    transition: var(--transition-normal);
}
.product-img-holder img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.product-shelf-info h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.product-shelf-info p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.packing-badge {
    display: inline-block;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 600;
}
.shelf-hover-actions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.shelf-product-card:hover {
    transform: translateY(-24px) scale(1.03);
    box-shadow: 0 25px 40px -10px rgba(0, 72, 117, 0.25);
    z-index: 3;
}
.shelf-product-card:hover .product-img-holder {
    transform: scale(1.05);
}
.shelf-product-card:hover .shelf-hover-actions {
    opacity: 1;
    pointer-events: auto;
}
.portfolio-actions-footer {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 60px;
}
.portfolio-actions-footer .btn {
    padding: 14px 28px;
}

/* ==========================================
   FRANCHISE PROFIT CALCULATOR
   ========================================== */
.calculator-section {
    padding: 80px 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}
.calculator-card {
    max-width: 960px;
    margin: 0 auto;
    background: #ffffff;
}
.calculator-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}
.calc-inputs-block {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.calc-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.calc-label-row label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}
.calc-label-row label i {
    margin-right: 6px;
}
.slider-display {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-blue);
    background: rgba(0, 124, 195, 0.08);
    padding: 4px 12px;
    border-radius: 6px;
}
.calc-group input[type="range"] {
    width: 100%;
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}
.calc-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-blue);
    border: 3px solid #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.1s ease;
}
.calc-group input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}
.slider-bounds {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
}

.calc-outputs-block {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 36px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.output-block-title {
    font-size: 1.25rem;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 14px;
}
.output-item {
    margin-bottom: 24px;
}
.output-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 6px;
}
.output-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}
.output-grid-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}
.output-item-small {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 12px;
}
.output-number-sm {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    display: block;
    margin-top: 4px;
}
.roi-meter-container {
    margin-bottom: 28px;
    text-align: left;
}
.roi-label-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
}
.roi-meter-track {
    height: 10px;
    background: var(--border-color);
    border-radius: 5px;
    overflow: hidden;
}
.roi-meter-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 5px;
    width: 0%;
    transition: width 0.4s ease;
}

/* ==========================================
   WHY CHOOSE US & TRUST SECTION
   ========================================== */
.why-us-section {
    padding: 80px 0;
    background: var(--bg-primary);
}
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}
.adv-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}
.adv-card:hover {
    border-color: var(--primary-blue);
}
.adv-icon {
    font-size: 1.8rem;
    color: var(--primary-blue);
    background: rgba(0, 124, 195, 0.08);
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.adv-card h3 {
    font-size: 1.2rem;
}
.adv-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Certificates Ticker */
.certificates-wrapper {
    border-top: 1px solid var(--border-color);
    padding-top: 48px;
}
.trust-title {
    font-size: 1.35rem;
    margin-bottom: 32px;
}
.certs-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}
.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.cert-badge {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
    transition: var(--transition-normal);
}
.cert-badge:hover {
    transform: scale(1.08) rotate(3deg);
}
.cert-item span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* ==========================================
   LEAD FORM & CONTACT SECTION
   ========================================== */
.contact-section {
    padding: 80px 0;
    background: #f1f5f9;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}
.contact-bg-glow {
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(113, 196, 45, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.contact-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
}
.contact-info p {
    font-size: 1rem;
    margin-bottom: 36px;
}
.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}
.contact-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-detail-item i {
    font-size: 1.25rem;
    color: var(--primary-blue);
    background: rgba(0, 124, 195, 0.08);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-detail-item h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}
.contact-detail-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.manufacturing-partners-mini {
    border-left: 3px solid var(--primary-green);
    padding-left: 14px;
}
.manufacturing-partners-mini h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.manufacturing-partners-mini p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* Contact Form Card */
.contact-form-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--border-color);
}
.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}
.contact-form-card form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.input-with-icon {
    position: relative;
}
.input-with-icon i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}
.input-with-icon input {
    padding-left: 44px !important;
}

.contact-form-card label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    display: block;
}
.contact-form-card input, .contact-form-card textarea {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 12px 16px;
    border-radius: 8px;
    width: 100%;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}
.contact-form-card input:focus, .contact-form-card textarea:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 10px rgba(0, 124, 195, 0.15);
}
.form-group-row {
    display: flex;
    gap: 16px;
}
.error-msg {
    font-size: 0.75rem;
    color: #ef4444;
    margin-top: 4px;
    display: none;
}
.form-group.invalid input, .form-group.invalid textarea {
    border-color: #ef4444;
}
.form-group.invalid .error-msg {
    display: block;
}

/* Success Confirmation Overlay */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 10;
}
.success-content i {
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}
.success-content h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}
.success-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: #002238; /* deep clinical navy */
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 0 0;
    color: #e2e8f0;
}
.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand .footer-logo {
    height: 44px;
    width: auto;
    margin-bottom: 20px;
}
.footer-brand p {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 20px;
}
.social-links {
    display: flex;
    gap: 12px;
}
.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}
.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.footer-links h4, .footer-map h4 {
    font-size: 1.05rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
    color: #ffffff;
}
.footer-links h4::after, .footer-map h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--primary-green);
}
.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 0.85rem;
    color: #94a3b8;
}
.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 6px;
}

.footer-map iframe {
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
}

.footer-contact-mini {
    margin-bottom: 20px;
}
.footer-contact-mini p {
    font-size: 0.82rem;
    color: #94a3b8;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-contact-mini p i {
    color: var(--primary-green);
    width: 14px;
}
.footer-contact-mini a {
    color: #94a3b8;
}
.footer-contact-mini a:hover {
    color: var(--primary-green);
}

.footer-address {
    font-size: 0.82rem;
    color: #94a3b8;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.6;
}
.footer-address i {
    color: var(--primary-green);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    font-size: 0.8rem;
    color: #64748b;
}

/* ==========================================
   FLOATING ACTION BUTTONS
   ========================================== */
.floating-actions {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 998;
}
.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    position: relative;
    transition: var(--transition-normal);
}
.float-btn:hover {
    transform: scale(1.08) translateY(-3px);
}
.phone-btn {
    background: var(--gradient-accent);
}
.whatsapp-btn {
    background: #25d366;
}

.float-tooltip {
    position: absolute;
    right: 76px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}
.float-btn:hover .float-tooltip {
    opacity: 1;
    right: 68px;
}

.notification-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: #ef4444;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #25d366;
    animation: bounce 2s infinite;
}

/* ==========================================
   KEYFRAME ANIMATIONS
   ========================================== */
@keyframes spin {
    to { transform: rotate(360deg); }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes animate-scale {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 124, 195, 0.15);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 124, 195, 0.4);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(113, 196, 45, 0.15);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 4px 20px rgba(113, 196, 45, 0.35);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes ticker-slide {
    0% {
        opacity: 0;
        transform: translate(-50%, 15px);
        pointer-events: none;
    }
    3% {
        opacity: 1;
        transform: translate(-50%, 0);
        pointer-events: auto;
    }
    47% {
        opacity: 1;
        transform: translate(-50%, 0);
        pointer-events: auto;
    }
    50% {
        opacity: 0;
        transform: translate(-50%, -15px);
        pointer-events: none;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -15px);
        pointer-events: none;
    }
}


.animate-pulse {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    body {
        padding-top: 130px;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-highlights {
        width: 100%;
        justify-content: center;
    }
    .hero-visual {
        max-width: 460px;
        margin: 0 auto;
        width: 100%;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .footer-content {
        grid-template-columns: 1.5fr 1fr;
    }
    .footer-map {
        grid-column: span 2;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }
    body {
        padding-top: 110px; /* 38px top-bar + 72px header */
    }
    .top-bar {
        font-size: 0.72rem;
        height: 38px;
        overflow: hidden;
    }
    .top-bar-content {
        gap: 0;
        justify-content: center;
    }
    /* Hide the address on mobile — show only the rotating ticker */
    .hide-mobile {
        display: none !important;
    }
    .top-bar-ticker {
        position: relative;
        width: 100%;
        max-width: 280px;
        height: 24px;
        overflow: hidden;
        display: block;
    }
    .top-bar-ticker .top-bar-item {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, 15px);
        margin: 0;
        width: max-content;
        animation: ticker-slide 8s infinite;
        opacity: 0;
        pointer-events: none;
        height: 100%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .top-bar-ticker .top-bar-item.email-item {
        animation-delay: -4s;
    }
    .header {
        top: 38px;
        height: 68px;
    }
    .header.scrolled {
        height: 68px !important;
    }
    .nav-menu {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .mobile-nav {
        top: 106px;
        height: calc(100vh - 106px);
    }
    
    /* Hero layout adjustments for mobile viewport locking and space filling */
    .hero-section {
        padding: 0;
        min-height: auto;
        display: block;
    }
    .hero-container {
        display: flex;
        flex-direction: column;
        padding-top: 0;
        padding-bottom: 0;
        gap: 0;
        padding-left: 20px;
        padding-right: 20px;
    }
    .hero-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-main-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        min-height: calc(100vh - 110px);
        padding: 40px 10px;
        width: 100%;
        box-sizing: border-box;
    }
    .hero-badge {
        font-size: 0.9rem;
        padding: 10px 20px;
        margin-bottom: 28px;
    }
    .hero-title {
        font-size: 2.45rem;
        line-height: 1.25;
        margin-bottom: 28px;
    }
    .hero-description {
        font-size: 1.12rem;
        line-height: 1.7;
        margin-bottom: 38px;
        max-width: 100%;
    }
    .hero-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 340px;
        gap: 14px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions .btn {
        width: 100%;
        padding: 14px 28px;
    }
    .hero-highlights {
        width: 100%;
        margin-top: 0;
        padding: 50px 20px;
        border-top: 1px solid var(--border-color);
        background: var(--bg-secondary);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        box-sizing: border-box;
    }
    .hero-visual {
        margin: 0 auto;
        padding: 50px 20px;
        width: 100%;
        box-sizing: border-box;
        background: transparent;
    }
    
    .form-row-checker {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    .btn-align {
        max-width: 100%;
    }
    
    .product-card {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 24px;
    }
    .prod-img-box {
        height: 180px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-map {
        grid-column: span 1;
    }

    /* Contact Section Mobile Alignment Fixes */
    .contact-section {
        padding: 50px 0;
    }
    .contact-detail-item {
        gap: 12px;
    }
    .contact-detail-item i {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    .manufacturing-partners-mini {
        padding-left: 50px;
    }
    
    .floating-actions {
        position: fixed !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        bottom: auto !important;
        left: auto !important;
        right: 16px !important;
        display: flex !important;
        flex-direction: column !important;
        background: transparent !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
        gap: 12px !important;
        z-index: 998 !important;
    }
    .float-btn {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.15rem !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    .hero-title {
        font-size: 1.85rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .hero-highlights {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .form-group-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .floating-actions {
        position: fixed !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        bottom: auto !important;
        left: auto !important;
        right: 12px !important;
        display: flex !important;
        flex-direction: column !important;
        background: transparent !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
        gap: 10px !important;
        z-index: 998 !important;
    }
    .float-btn {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.1rem !important;
    }
}

/* ==========================================
   POPUP MODAL FORM
   ========================================== */

/* Overlay backdrop */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 10, 30, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Main popup box */
.popup-box {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    width: 100%;
    max-width: 860px;
    max-height: 92vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
    transform: translateY(28px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.popup-overlay.active .popup-box {
    transform: translateY(0) scale(1);
}

/* Close button */
.popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s, transform 0.2s;
}
.popup-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

/* ---- LEFT PANEL ---- */
.popup-left {
    background: linear-gradient(160deg, #003f80 0%, #00264d 60%, #00a651 100%);
    padding: 36px 28px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
}
.popup-brand img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 4px;
}
.popup-left h2 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
}
.popup-left h2 span {
    color: #7fffb5;
}
.popup-left > p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.6;
}
.popup-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 4px 0;
}
.popup-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.92);
    font-weight: 500;
}
.popup-perks li i {
    color: #7fffb5;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.popup-contact-strip {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.popup-contact-strip a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    font-weight: 500;
    transition: color 0.2s;
}
.popup-contact-strip a:hover { color: #7fffb5; }
.popup-contact-strip i { width: 14px; }

/* ---- RIGHT PANEL ---- */
.popup-right {
    background: #ffffff;
    padding: 32px 28px;
    overflow-y: auto;
    position: relative;
}
.popup-right h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2px;
}
.popup-form-sub {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

/* Form groups */
.popup-form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}
.popup-form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.popup-form-group label .req { color: #e53e3e; }

.popup-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.popup-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.popup-input-wrap > i {
    position: absolute;
    left: 12px;
    color: #94a3b8;
    font-size: 0.8rem;
    pointer-events: none;
    z-index: 1;
}
.popup-input-wrap input,
.popup-input-wrap select,
.popup-input-wrap textarea {
    width: 100%;
    padding: 9px 12px 9px 34px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: var(--text-primary);
    background: #f8fafc;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.popup-input-wrap select {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}
.popup-input-wrap textarea {
    resize: none;
    padding-top: 10px;
}
.popup-input-wrap.textarea-wrap {
    align-items: flex-start;
}
.popup-input-wrap.textarea-wrap > i {
    top: 12px;
}
.popup-input-wrap input:focus,
.popup-input-wrap select:focus,
.popup-input-wrap textarea:focus {
    border-color: var(--primary-blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}
.popup-form-group.invalid .popup-input-wrap input,
.popup-form-group.invalid .popup-input-wrap select {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}
.popup-error {
    font-size: 0.72rem;
    color: #e53e3e;
    display: none;
}
.popup-form-group.invalid .popup-error {
    display: block;
}

/* Submit button */
.popup-submit-btn {
    width: 100%;
    padding: 13px 20px;
    background: linear-gradient(135deg, #0056b3 0%, #00a651 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 4px;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(0, 86, 179, 0.3);
}
.popup-submit-btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.4);
}
.popup-submit-btn:active { transform: translateY(0); }
.popup-submit-btn i { transition: transform 0.2s; }
.popup-submit-btn:hover i { transform: translateX(4px); }

.popup-privacy {
    font-size: 0.7rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.popup-privacy i { color: var(--primary-green); }

/* Success state */
.popup-success {
    position: absolute;
    inset: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    border-radius: 0;
}
.popup-success.hidden { display: none; }
.popup-success-inner {
    text-align: center;
    max-width: 320px;
}
.popup-success-icon {
    font-size: 3.5rem;
    color: var(--primary-green);
    margin-bottom: 16px;
    animation: animate-scale 0.5s ease-out;
}
.popup-success-inner h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.popup-success-inner p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}
.popup-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 11px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: background 0.2s, transform 0.2s;
}
.popup-wa-btn:hover { background: #1ebe5a; transform: scale(1.03); color: #fff; }
.popup-done-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: #f1f5f9;
    border: none;
    border-radius: 8px;
    color: var(--text-secondary);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s;
}
.popup-done-btn:hover { background: #e2e8f0; }


/* ---- POPUP MOBILE (≤700px) ---- */
@media (max-width: 700px) {

    /* Float centered overlay — leaves background gap */
    .popup-overlay {
        padding: 20px 12px;
        align-items: center; /* center vertically */
        justify-content: center; /* center horizontally */
    }

    /* Modal card floating in the middle of the screen */
    .popup-box {
        grid-template-columns: 1fr;          /* single column */
        grid-template-rows: 1fr;             /* only form panel */
        width: 100%;
        max-width: 410px;                    /* standard mobile modal width */
        height: auto;
        border-radius: 16px;                 /* nice rounded corners */
        overflow: hidden;                    /* hide outer scrollbars */
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    }

    /* Scale & Fade animation in center on mobile */
    .popup-overlay .popup-box {
        transform: translateY(20px) scale(0.95);
        opacity: 0;
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    }
    .popup-overlay.active .popup-box {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    /* Hide the left panel on mobile to save vertical space */
    .popup-left {
        display: none !important;
    }

    /* ---- Right / Form panel ---- */
    .popup-right {
        padding: 24px 20px;
        border-radius: 16px;
        width: 100%;
        box-sizing: border-box;
        position: relative;
    }
    .popup-right h3 {
        font-size: 1.25rem;
        margin-bottom: 2px;
        text-align: center;
    }
    .popup-form-sub {
        font-size: 0.78rem;
        margin-bottom: 16px;
        text-align: center;
    }

    /* Side-by-side city and state fields on mobile */
    .popup-form-row {
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 10px;
    }

    /* Tighter form groups and input fields */
    .popup-form-group {
        margin-bottom: 10px;
        display: flex;
        flex-direction: column;
    }
    .popup-form-group label {
        font-size: 0.72rem;
        font-weight: 600;
        margin-bottom: 3px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .popup-input-wrap {
        height: 36px;
    }
    .popup-input-wrap input,
    .popup-input-wrap select {
        height: 34px;
        font-size: 0.85rem;
        padding-left: 32px;
    }
    .popup-input-wrap i {
        font-size: 0.85rem;
        left: 12px;
    }
    
    .popup-input-wrap.textarea-wrap {
        height: 44px;
    }
    .popup-input-wrap textarea {
        height: 42px;
        font-size: 0.85rem;
        padding-top: 8px;
        padding-left: 32px;
    }

    /* Submit button full width & compact */
    .popup-submit-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
        margin-top: 8px;
    }
    .popup-privacy {
        font-size: 0.68rem;
        margin-top: 8px;
        text-align: center;
    }

    /* Close button: absolute positioned inside form card */
    .popup-close {
        position: absolute;
        top: 14px;
        right: 14px;
        background: #f1f5f9;
        color: var(--text-secondary);
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10001;
    }

    /* Success overlay: fit within card */
    .popup-success {
        position: absolute;
        inset: 0;
        z-index: 10002;
        border-radius: 16px;
        background: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ==========================================
   INTERACTIVE INDIA MAP SECTION
   ========================================== */
.map-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}
.map-card-container {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
}
.map-grid-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}
.map-visual-pane {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.india-svg {
    width: 100%;
    max-height: 520px;
    height: auto;
    overflow: visible;
}
.map-state {
    fill: #e2e8f0;
    stroke: #ffffff;
    stroke-width: 2.5;
    cursor: pointer;
    transition: fill 0.3s ease, filter 0.3s ease;
}
.map-state:hover {
    fill: #007cc3 !important;
    filter: drop-shadow(0 4px 12px rgba(0, 124, 195, 0.35));
}
.map-state.active-state {
    fill: url(#active-state-grad);
}
.map-state.vacant-state {
    fill: url(#vacant-state-grad);
}
.map-state.highlighted {
    fill: #f29429 !important;
    filter: drop-shadow(0 4px 12px rgba(242, 148, 41, 0.4));
}
.map-text-pane {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.map-interactive-box {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}
.map-box-sub {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 8px;
}
#map-box-state {
    font-size: 1.8rem;
    margin-bottom: 12px;
}
.map-status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--border-color);
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.map-status-badge.available {
    background: rgba(113, 196, 45, 0.08);
    color: var(--primary-green);
    border: 1px solid rgba(113, 196, 45, 0.15);
}
.map-status-badge.taken {
    background: rgba(0, 124, 195, 0.08);
    color: var(--primary-blue);
    border: 1px solid rgba(0, 124, 195, 0.15);
}
.map-box-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}
.map-stats-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}
.map-stat-col {
    display: flex;
    flex-direction: column;
}
.map-stat-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}
.map-stat-txt {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 4px;
}

/* ==========================================
   PROMOTIONAL KIT GALLERY
   ========================================== */
.promo-kit-section {
    padding: 80px 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}
.promo-kit-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.promo-gallery-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.promo-img-card {
    position: relative;
    padding: 6px !important;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    cursor: zoom-in;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}
.promo-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
}
.promo-gallery-overlay {
    position: absolute;
    inset: 6px;
    background: rgba(15, 23, 42, 0.4);
    border-radius: 12px;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}
.promo-gallery-overlay span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 16px;
    border-radius: 30px;
    backdrop-filter: blur(4px);
}
.promo-img-card:hover img {
    transform: scale(1.06);
}
.promo-img-card:hover .promo-gallery-overlay {
    opacity: 1;
}

.promo-text-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.promo-stagger-card {
    display: flex;
    gap: 20px;
    padding: 20px 24px !important;
    background: #ffffff;
    border-radius: 16px;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}
.promo-stagger-card:hover {
    transform: translateX(8px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}
.promo-icon {
    font-size: 1.4rem;
    color: var(--primary-blue);
    background: rgba(0, 124, 195, 0.08);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.promo-card-info h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}
.promo-card-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    inset: 0;
    background-color: rgba(10, 20, 30, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    animation: animate-scale 0.3s ease-out;
}
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: #f1f5f9;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}
.lightbox-close:hover {
    color: var(--primary-blue);
    transform: scale(1.1);
}
#lightbox-caption {
    position: absolute;
    bottom: 40px;
    color: #e2e8f0;
    font-family: var(--font-body);
    font-size: 1rem;
    text-align: center;
}

/* ==========================================
   FRANCHISE JOURNEY FLOW
   ========================================== */
.journey-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}
.journey-flow-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 60px auto 0;
}
.journey-connecting-line {
    position: absolute;
    top: 45px;
    left: 8%;
    right: 8%;
    height: 4px;
    background: var(--border-color);
    z-index: 1;
}
.journey-line-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
}
.journey-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    position: relative;
    z-index: 2;
}
.journey-step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-muted);
    margin: 0 auto 18px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}
.journey-step-card:hover .journey-step-circle {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}
.journey-step-card.active .journey-step-circle {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #ffffff;
    box-shadow: var(--shadow-glow);
}
.journey-step-card h3 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.journey-step-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================
   TESTIMONIALS MASONRY GRID
   ========================================== */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}
.testimonial-masonry-grid {
    column-count: 2;
    column-gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}
.testimonial-card {
    break-inside: avoid;
    margin-bottom: 24px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: inline-block;
    width: 100%;
}
.t-header {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
}
.t-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(0, 124, 195, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.15rem;
}
.t-meta h4 {
    font-size: 0.98rem;
    margin: 0;
}
.t-meta span {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
}
.t-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 14px;
    font-style: italic;
}
.t-rating {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

/* ==========================================
   FAQ ACCORDION
   ========================================== */
.faq-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}
.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    padding: 0 !important;
    overflow: hidden;
    background: #ffffff;
}
.faq-header {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
    transition: background 0.3s ease;
}
.faq-header:hover {
    background: var(--bg-primary);
}
.faq-header i {
    font-size: 0.95rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}
.faq-item.active .faq-header i {
    transform: rotate(180deg);
}
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    padding: 0 30px;
}
.faq-item.active .faq-body {
    max-height: 250px;
    padding: 0 30px 24px;
    border-top: 1px solid rgba(15,23,42,0.04);
}
.faq-body p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================
   STICKY CONVERSION BAR
   ========================================== */
.sticky-conversion-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 -4px 25px rgba(15,23,42,0.08);
    border-top: 1px solid var(--border-color);
    z-index: 995;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    transition: transform 0.3s ease;
}
.sticky-bar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 100%;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
    outline: none;
}
.sticky-bar-btn.call-action {
    background: var(--gradient-accent);
    color: #ffffff;
}
.sticky-bar-btn.whatsapp-action {
    background: #25d366;
    color: #ffffff;
}
.sticky-bar-btn.apply-action {
    background: var(--gradient-primary);
    color: #ffffff;
}
.sticky-bar-btn:hover {
    opacity: 0.92;
}
.sticky-conversion-bar.hidden-bar {
    transform: translateY(100%);
}

/* Floating whatsapp adjustment */
body {
    padding-bottom: 64px; /* offset for sticky conversion bar */
}

/* Media Query Adaptations for New Components */
@media (max-width: 1024px) {
    /* Tighten section paddings on mobile/tablet to eliminate huge vertical empty spaces */
    .checker-section,
    .why-us-section,
    .divisions-section,
    .medicine-shelf-section,
    .calculator-section,
    .map-section,
    .promo-kit-section,
    .journey-section,
    .testimonials-section,
    .certs-section,
    .faq-section,
    .contact-section {
        padding: 48px 0 !important;
    }

    .trust-stats-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    .stat-counter-card {
        flex: 1 1 calc(33.33% - 16px);
        min-width: 220px;
        max-width: 340px;
        border-right: none !important;
        background: var(--bg-secondary) !important;
        border: 1px solid var(--border-color) !important;
        border-radius: 16px !important;
        padding: 24px 16px !important;
        box-shadow: var(--shadow-sm) !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition-normal) !important;
        min-height: 125px;
    }
    .stat-counter-card:hover {
        border-color: var(--primary-blue) !important;
        transform: translateY(-2px);
        box-shadow: var(--shadow-md) !important;
    }
    .timeline-line {
        left: 20px;
    }
    .timeline-dot {
        left: 20px;
    }
    .timeline-card {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }
    .timeline-item {
        justify-content: flex-start !important;
    }
    .timeline-num {
        right: 20px;
    }
    .showcase-content-grid {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .showcase-visual-panel {
        height: 280px;
    }
    .shelf-products-grid {
        grid-template-columns: 1fr 1fr;
    }
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    .map-grid-layout {
        grid-template-columns: 1fr;
    }
    .promo-kit-grid {
        grid-template-columns: 1fr;
    }
    .journey-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    .journey-connecting-line {
        display: none;
    }
    .testimonial-masonry-grid {
        column-count: 1;
    }
}

@media (max-width: 768px) {
    /* Hide floating actions on mobile since the sticky conversion bar has a giant WhatsApp button */
    .floating-actions {
        display: none !important;
    }
}

@media (max-width: 600px) {
    /* Scale down large section header h2 sizes on small mobile */
    .section-header {
        margin-bottom: 28px !important;
    }
    .section-header h2 {
        font-size: 1.65rem !important;
        margin-bottom: 8px !important;
    }
    .section-header p {
        font-size: 0.88rem !important;
    }

    /* Trust Stats Grid wrapping layout */
    .trust-stats-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 12px !important;
        padding: 0 12px;
    }
    .stat-counter-card {
        flex: 1 1 calc(50% - 12px) !important;
        min-width: 140px !important;
        padding: 16px 12px !important;
        min-height: 110px !important;
        border-radius: 12px !important;
    }
    .stat-counter-card:nth-child(5) {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }
    .stat-number {
        font-size: 1.8rem !important;
    }
    .stat-plus {
        font-size: 1.4rem !important;
    }
    .stat-label {
        font-size: 0.7rem !important;
    }
    .stat-label-icon {
        font-size: 1.6rem !important;
        margin-bottom: 4px !important;
    }
    .stat-label-large {
        font-size: 0.8rem !important;
    }

    /* Fix flexbox center clipping for categories/divisions tabs */
    .category-tabs-wrapper {
        justify-content: flex-start !important;
        padding-left: 12px;
        padding-right: 12px;
    }

    /* Touch-scrolling track for Medicine Shelf filters */
    .shelf-menu {
        display: flex !important;
        overflow-x: auto !important;
        justify-content: flex-start !important;
        padding: 4px 12px 12px !important;
        margin-bottom: 24px !important;
        gap: 8px !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important; /* Firefox */
    }
    .shelf-menu::-webkit-scrollbar {
        display: none !important; /* Safari and Chrome */
    }
    .shelf-menu-btn {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
    }

    /* Shrink output card padding on mobile */
    .calc-outputs-block,
    .map-interactive-box {
        padding: 24px 16px !important;
    }
    .output-number {
        font-size: 1.8rem !important;
    }

    .shelf-products-grid {
        grid-template-columns: 1fr;
    }
    .journey-grid {
        grid-template-columns: 1fr 1fr;
    }
    .category-perk-list {
        grid-template-columns: 1fr;
    }
    .category-meta-info {
        flex-direction: column;
        gap: 14px;
    }
    .faq-header {
        padding: 18px 20px;
        font-size: 0.95rem;
    }
    .faq-item.active .faq-body {
        padding: 0 20px 18px;
    }
    .sticky-bar-btn span {
        display: none; /* Icon-only view on very small mobile to prevent text overflow */
    }
    .sticky-bar-btn {
        font-size: 1.25rem;
    }

    /* Certifications gap reduction */
    .certs-flex {
        gap: 28px !important;
    }
    .cert-badge {
        height: 54px !important;
    }
}

