/* 
 * FudMate - Cloud Kitchen WhatsApp Order Automation Platform
 * Premium SaaS Style Single Page Website Custom Stylesheet
 * Brand HSL Colors: 
 *   - Primary Green: #075E54 -> hsl(172, 85%, 19%)
 *   - Secondary Slate: #182431 -> hsl(211, 34%, 15%)
 *   - Accent Green: #25D366 -> hsl(142, 70%, 49%)
 */

/* ==========================================================================
   1. DESIGN SYSTEM & VARIABLE DEFINITIONS
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    /* HSL Colors */
    --primary-h: 172;
    --primary-s: 85%;
    --primary-l: 19%;
    --primary: hsl(var(--primary-h), var(--primary-s), var(--primary-l));
    --primary-light: hsl(var(--primary-h), var(--primary-s), 28%);
    --primary-glow: rgba(7, 94, 84, 0.15);

    --secondary-h: 211;
    --secondary-s: 34%;
    --secondary-l: 15%;
    --secondary: hsl(var(--secondary-h), var(--secondary-s), var(--secondary-l));
    --secondary-light: hsl(var(--secondary-h), var(--secondary-s), 23%);

    --accent-h: 142;
    --accent-s: 70%;
    --accent-l: 49%;
    --accent: hsl(var(--accent-h), var(--accent-s), var(--accent-l));
    --accent-glow: rgba(37, 211, 102, 0.25);

    --dark-h: 220;
    --dark-s: 23%;
    --dark-l: 11%;
    --text-dark: hsl(var(--dark-h), var(--dark-s), var(--dark-l));
    --text-muted: #475467;

    --light-h: 216;
    --light-s: 33%;
    --light-l: 97%;
    --bg-light: hsl(var(--light-h), var(--light-s), var(--light-l));

    --white: #ffffff;
    --border-color: #E4E7EC;
    --border-glow: rgba(7, 94, 84, 0.08);

    /* Fonts */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* Transition & Shadows */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 1px 3px rgba(16, 24, 40, 0.1), 0 1px 2px rgba(16, 24, 40, 0.06);
    --shadow-md: 0 4px 20px -2px rgba(16, 24, 40, 0.05), 0 2px 8px -1px rgba(16, 24, 40, 0.03);
    --shadow-lg: 0 12px 32px -4px rgba(16, 24, 40, 0.08), 0 4px 12px -2px rgba(16, 24, 40, 0.03);
    --shadow-xl: 0 24px 48px -12px rgba(16, 24, 40, 0.12), 0 8px 24px -4px rgba(16, 24, 40, 0.04);

    /* Glassmorphism Defaults */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-blur: blur(16px);
}

/* ==========================================================================
   2. GENERAL STYLES & RESET
   ========================================================================== */
html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* Removed overflow-x: hidden to fully unlock CSS sticky stacking scroll effects */
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    letter-spacing: -0.01em;
    overflow-x: clip;
    /* clip safely prevents horizontal overflow scrollbars without breaking position: sticky */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

p {
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--accent);
}

/* Container Spacing */
section {
    padding: 7.5rem 0;
    position: relative;
    overflow: hidden;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: #c3cbd6;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Slim Horizontal Scrollbar for overflow tables */
.dashboard-orders-table-wrapper::-webkit-scrollbar,
.showcase-customers-table-wrapper::-webkit-scrollbar {
    height: 6px;
}

.dashboard-orders-table-wrapper::-webkit-scrollbar-track,
.showcase-customers-table-wrapper::-webkit-scrollbar-track {
    background: #f2f4f7;
    border-radius: 10px;
}

.dashboard-orders-table-wrapper::-webkit-scrollbar-thumb,
.showcase-customers-table-wrapper::-webkit-scrollbar-thumb {
    background: #c3cbd6;
    border-radius: 10px;
}

.dashboard-orders-table-wrapper::-webkit-scrollbar-thumb:hover,
.showcase-customers-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}


/* ==========================================================================
   3. PREMIUM UTILITIES & ANIMATIONS
   ========================================================================== */

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: rgba(7, 94, 84, 0.2);
    box-shadow: 0 24px 60px -10px rgba(7, 94, 84, 0.1);
}

/* Background Mesh & Accents */
.mesh-gradient-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    background: radial-gradient(at 0% 0%, rgba(37, 211, 102, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(7, 94, 84, 0.08) 0px, transparent 50%),
        radial-gradient(at 50% 100%, rgba(24, 36, 49, 0.03) 0px, transparent 50%),
        var(--bg-light);
}

.glow-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.45;
    pointer-events: none;
    animation: pulseGlow 12s infinite alternate;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-glow);
    top: -100px;
    right: -100px;
}

.glow-2 {
    width: 350px;
    height: 350px;
    background: var(--accent-glow);
    bottom: -50px;
    left: -50px;
    animation-delay: 4s;
}

/* Floating Animations */
@keyframes floatUp {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes pulseGlow {
    0% {
        opacity: 0.35;
        transform: scale(1);
    }

    100% {
        opacity: 0.6;
        transform: scale(1.15);
    }
}

.float-animated {
    animation: floatUp 6s ease-in-out infinite;
}

/* Custom Buttons */
.btn-premium {
    padding: 0.85rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: -0.01em;
    font-family: var(--font-heading);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-premium-primary {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white);
}

.btn-premium-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
    z-index: -1;
}

.btn-premium-primary:hover::before {
    transform: translateX(100%);
}

.btn-premium-primary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    box-shadow: 0 10px 25px -5px var(--accent-glow);
    transform: translateY(-2px);
}

.btn-premium-secondary {
    background-color: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
}

.btn-premium-secondary:hover {
    background-color: var(--primary-glow);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(7, 94, 84, 0.1);
}

.btn-premium-dark {
    background-color: var(--secondary);
    border: 1px solid var(--secondary);
    color: var(--white);
}

.btn-premium-dark:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.badge-trust {
    background-color: var(--white);
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--border-color);
}

.badge-trust i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* ==========================================================================
   4. HEADER & NAVBAR
   ========================================================================== */
.navbar-premium {
    padding: 1.25rem 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.navbar-premium.scrolled {
    padding: 0.85rem 0;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(228, 231, 236, 0.8);
    box-shadow: var(--shadow-md);
}

.navbar-premium .navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-premium .navbar-brand img {
    width: 160px;
    height: auto;
    max-height: 38px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

@media (min-width: 992px) {
    .navbar-premium .navbar-brand img {
        width: 220px;
        max-height: 48px;
    }
}

.navbar-premium .navbar-brand span {
    color: var(--primary);
}

.navbar-premium .nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary);
    padding: 0.5rem 1rem !important;
    position: relative;
}

.navbar-premium .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.navbar-premium .nav-link:hover {
    color: var(--primary);
}

.navbar-premium .nav-link:hover::after,
.navbar-premium .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-premium .nav-link.active {
    color: var(--primary);
}

@media (min-width: 992px) and (max-width: 1199px) {
    .navbar-premium .nav-link {
        padding: 0.5rem 0.6rem !important;
        font-size: 0.9rem;
    }

    .navbar-premium .btn-premium {
        padding: 0.7rem 1.3rem;
        font-size: 0.85rem;
    }
}

/* Mobile Hamburger Menu */
.navbar-premium .navbar-toggler {
    border: none;
    padding: 0.25rem;
}

.navbar-premium .navbar-toggler:focus {
    box-shadow: none;
}

.navbar-premium .toggler-icon {
    width: 24px;
    height: 18px;
    position: relative;
    display: block;
}

.navbar-premium .toggler-icon span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--secondary);
    left: 0;
    transition: all 0.3s ease;
}

.navbar-premium .toggler-icon span:nth-child(1) {
    top: 0;
}

.navbar-premium .toggler-icon span:nth-child(2) {
    top: 8px;
}

.navbar-premium .toggler-icon span:nth-child(3) {
    top: 16px;
}

.navbar-premium .navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}

.navbar-premium .navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(2) {
    opacity: 0;
}

.navbar-premium .navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
}

/* ==========================================================================
   5. HERO SECTION
   ========================================================================== */
.hero-section {
    padding-top: 10rem;
    padding-bottom: 7.5rem;
    background: radial-gradient(at 0% 0%, rgba(37, 211, 102, 0.09) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(7, 94, 84, 0.08) 0px, transparent 50%),
        #F8FAFC;
}

.hero-tagline {
    background-color: rgba(37, 211, 102, 0.12);
    color: var(--primary-light);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.45rem 1.15rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero-tagline i {
    color: var(--accent);
}

.hero-title {
    font-size: 3.6rem;
    line-height: 1.15;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 580px;
}

@media (max-width: 1199px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }

    section {
        padding: 5rem 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    section {
        padding: 4rem 0;
    }
}


.hero-features-list {
    margin-bottom: 2.5rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.hero-feature-item i {
    color: var(--accent);
    font-size: 1.3rem;
}

/* Hero Dashboard Mockup CSS */
.hero-mockup-wrapper {
    position: relative;
    width: 100%;
}

.hero-mockup-main {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 30px 70px -15px rgba(24, 36, 49, 0.18);
    background: #ffffff;
    position: relative;
}

.mockup-header {
    background: #075E54;
    padding: 0.95rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffffff;
    opacity: 0.7;
}

.mockup-dot.active {
    background: #25D366;
    opacity: 1;
    box-shadow: 0 0 10px #25D366;
}

.mockup-header-title {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: 0.05em;
}

.mockup-header-actions {
    display: flex;
    gap: 0.5rem;
}

.mockup-btn {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.mockup-body {
    padding: 1.5rem;
    background: #F4F6F8;
    height: 380px;
    overflow-y: auto;
}

/* Chat bubble mockup */
.mockup-chat-bubble {
    max-width: 80%;
    margin-bottom: 1rem;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    position: relative;
}

.mockup-chat-bubble.customer {
    background: #ffffff;
    color: var(--text-dark);
    margin-right: auto;
    border-top-left-radius: 0;
    box-shadow: var(--shadow-sm);
}

.mockup-chat-bubble.system {
    background: #DCF8C6;
    color: var(--text-dark);
    margin-left: auto;
    border-top-right-radius: 0;
    box-shadow: var(--shadow-sm);
}

.bubble-time {
    font-size: 0.7rem;
    color: #888;
    text-align: right;
    margin-top: 0.25rem;
    display: block;
}

.bubble-order-card {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

/* Floating overlay widgets */
.floating-overlay-card {
    position: absolute;
    z-index: 10;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.floating-overlay-card .icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.floating-overlay-card.analytics {
    top: 15%;
    left: -40px;
    animation: floatUp 7s ease-in-out infinite;
}

.floating-overlay-card.analytics .icon-wrap {
    background: linear-gradient(135deg, #FF9F43, #FF5252);
}

.floating-overlay-card.kitchen {
    bottom: 20%;
    right: -40px;
    animation: floatUp 8s ease-in-out infinite;
    animation-delay: 2s;
}

.floating-overlay-card.kitchen .icon-wrap {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.floating-overlay-card.delivery {
    bottom: -15px;
    left: 40px;
    animation: floatUp 6s ease-in-out infinite;
    animation-delay: 1s;
}

.floating-overlay-card.delivery .icon-wrap {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.floating-text-title {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
}

.floating-text-val {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0;
}

.phone-glow-back {
    position: absolute;
    width: 140%;
    height: 130%;
    top: -15%;
    left: -20%;
    z-index: 1;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.35) 0%, rgba(7, 94, 84, 0.1) 50%, transparent 70%);
    filter: blur(45px);
    pointer-events: none;
    opacity: 0.9;
    animation: breatheGlow 6s ease-in-out infinite;
}

@keyframes breatheGlow {

    0%,
    100% {
        opacity: 0.75;
        transform: scale(0.96);
    }

    50% {
        opacity: 0.98;
        transform: scale(1.04);
    }
}

/* ==========================================================================
   6. BRAND TRUST SECTION
   ========================================================================== */
.brand-section {
    padding: 3.5rem 0;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.brand-section-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2rem;
}

/* Logo Slider Animation */
.logo-slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-slider-container::before,
.logo-slider-container::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.logo-slider-container::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.logo-slider-container::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.logo-track {
    display: flex;
    width: calc(250px * 14);
    animation: scrollLogos 28s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-item {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    height: 38px;
    opacity: 0.55;
    filter: grayscale(1);
    transition: var(--transition-smooth);
}

.logo-item img:hover {
    opacity: 0.95;
    filter: grayscale(0);
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

/* ==========================================================================
   7. FEATURES SECTION
   ========================================================================== */
.features-section {
    background-color: var(--bg-light);
}

.section-tagline {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.section-title-wrapper {
    margin-bottom: 4.5rem;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.02em;
}

.section-title span {
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0.75rem auto 0 auto;
}

/* Premium Feature Cards */
.feature-card {
    padding: 2.25rem 2rem;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.feature-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
    background: rgba(7, 94, 84, 0.06);
    color: var(--primary);
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.85rem;
}

.feature-card-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Hover effects for Feature cards */
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(7, 94, 84, 0.15);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover .feature-card-icon {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 20px -4px var(--primary-glow);
}

/* ==========================================================================
   8. HOW IT WORKS SECTION (WORKFLOW)
   ========================================================================== */
.workflow-section {
    background-color: var(--white);
}

.workflow-stepper {
    position: relative;
    margin-top: 3.5rem;
}

.workflow-stepper .row {
    position: relative;
    z-index: 2;
}

/* Connection Line & Badges (Desktop only) */
@media (min-width: 992px) {
    .workflow-step-line {
        position: absolute;
        top: 40px;
        left: 50%;
        width: calc(100% + 24px);
        /* Spans exactly center-to-center by accounting for 1.5rem (24px) Bootstrap gutter */
        height: 3px;
        background: var(--border-color);
        z-index: 1;
    }

    .workflow-step-line::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        /* Smooth ease-out matching 1500ms step delay */
        z-index: 2;
    }

    .workflow-step.line-active .workflow-step-line::after {
        transform: scaleX(1);
    }

    .workflow-step-badge {
        position: absolute;
        bottom: 8px;
        left: 50.5%;
        transform: translateX(-50%) scale(0.85);
        background: #ffffff;
        border: 1px solid var(--border-color);
        color: var(--text-muted);
        padding: 5px 12px;
        border-radius: 5px;
        font-size: 0.75rem;
        font-weight: 600;
        white-space: nowrap;
        box-shadow: var(--shadow-sm);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 4;
    }

    .workflow-step.line-active .workflow-step-badge {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) scale(1);
        border-color: rgba(7, 94, 84, 0.25);
        color: var(--primary);
        box-shadow: 0 4px 12px rgba(7, 94, 84, 0.08);
    }
}

/* Hide line on smaller screens */
@media (max-width: 991px) {
    .workflow-step-line {
        display: none;
    }
}

.workflow-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.workflow-step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ffffff !important;
    border: 3px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2rem;
    color: #98A2B3;
    /* Default inactive icon color */
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.workflow-step-num {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #98A2B3;
    /* Default inactive badge color */
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    z-index: 3;
}

.workflow-step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.workflow-step-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 220px;
    margin: 0 auto;
}

/* Hover and Active highlights for Stepper elements */
.workflow-step:hover .workflow-step-circle,
.workflow-step.active .workflow-step-circle {
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.15);
    box-shadow: 0 8px 24px rgba(7, 94, 84, 0.18);
}

.workflow-step:hover .workflow-step-num,
.workflow-step.active .workflow-step-num {
    background: var(--accent);
    box-shadow: 0 2px 8px var(--accent-glow);
}


/* Workflow Mobile Spacing Adjustments */
@media (max-width: 991px) {
    .workflow-step {
        margin-bottom: 3.5rem;
    }
}

/* ==========================================================================
   9. DASHBOARD SHOWCASE SECTION
   ========================================================================== */
.showcase-section {
    background-color: var(--secondary);
    color: var(--white);
}

.showcase-section .section-title {
    color: var(--white);
}

.showcase-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.showcase-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.showcase-nav-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-family: var(--font-heading);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.showcase-nav-btn i {
    margin-right: 0.5rem;
}

.showcase-nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.showcase-nav-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 25px -5px var(--primary-glow);
}

/* Dashboard Mockup Layouts inside Tabs */
.showcase-content-wrapper {
    display: none;
}

.showcase-content-wrapper.active {
    display: block;
    animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.showcase-preview-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* Realistic Mini Widgets for Dashboard Showcase */
.dashboard-widget-card {
    background: rgba(24, 36, 49, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.dashboard-widget-card:hover {
    border-color: rgba(37, 211, 102, 0.4);
    transform: translateX(4px);
}

.widget-stat-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.widget-stat-title {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.widget-stat-badge {
    background: rgba(37, 211, 102, 0.12);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.widget-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
}

/* Chat manager simulator */
.chat-window {
    background: #0f1620;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 380px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-window-header {
    background: #182431;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.chat-window-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0;
}

.chat-window-status {
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 0;
}

.chat-window-body {
    flex-grow: 1;
    padding: 1.25rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.chat-window-footer {
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #182431;
    display: flex;
    gap: 0.5rem;
}

.chat-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    flex-grow: 1;
}

.chat-send-btn {
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 10px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.chat-send-btn:hover {
    background: var(--primary);
}

/* ==========================================================================
   10. BENEFITS SECTION
   ========================================================================== */
.benefits-section {
    background-color: #050911;
    background-image: radial-gradient(circle at 50% 0%, rgba(37, 211, 102, 0.08) 0%, rgba(7, 94, 84, 0.03) 50%, rgba(0, 0, 0, 0) 100%);
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.benefits-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(7, 94, 84, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.benefits-grid {
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.benefit-card-premium {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 2.25rem 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.benefit-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(37, 211, 102, 0.08), transparent 40%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.benefit-card-premium:hover::before {
    opacity: 1;
}

.benefit-card-premium:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 211, 102, 0.25);
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.5), 0 0 25px rgba(37, 211, 102, 0.05);
    background: rgba(255, 255, 255, 0.03);
}

.benefit-card-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05);
}

.benefit-card-premium:hover .benefit-card-icon-wrap {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    transform: scale(1.05);
}

.benefit-card-title-prem {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.85rem;
    font-family: var(--font-heading);
}

.benefit-card-text-prem {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ==========================================================================
   10B. COMPARISON SECTION
   ========================================================================== */
.comparison-section {
    background-color: #03070e;
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.comparison-glow-1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(7, 94, 84, 0.06) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    filter: blur(80px);
}

.comparison-wrapper {
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    height: 100%;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    transition: all 0.4s ease;
}

.comparison-card.aggregator-card {
    border-color: rgba(255, 100, 100, 0.08);
}

.comparison-card.fudmate-card {
    border-color: rgba(37, 211, 102, 0.15);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, rgba(37, 211, 102, 0.005) 100%);
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.4);
}

.comparison-card.fudmate-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: radial-gradient(600px circle at 50% 0px, rgba(37, 211, 102, 0.05), transparent 50%);
    pointer-events: none;
}

.comparison-card.aggregator-card:hover {
    border-color: rgba(255, 100, 100, 0.15);
    box-shadow: 0 15px 35px -5px rgba(255, 100, 100, 0.02);
}

.comparison-card.fudmate-card:hover {
    border-color: rgba(37, 211, 102, 0.35);
    box-shadow: 0 20px 50px -10px rgba(37, 211, 102, 0.08), 0 0 30px rgba(37, 211, 102, 0.03);
}

.comparison-card-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.comparison-card.aggregator-card .comparison-card-badge {
    background: rgba(255, 100, 100, 0.1);
    color: #ff5252;
}

.comparison-card.fudmate-card .comparison-card-badge {
    background: rgba(37, 211, 102, 0.1);
    color: var(--accent);
}

.comparison-card-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.comparison-card-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2.5rem;
}

.comparison-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.comparison-item i {
    font-size: 1.25rem;
    margin-top: 0.1rem;
}

.comparison-card.aggregator-card .comparison-item i {
    color: #ff5252;
}

.comparison-card.fudmate-card .comparison-item i {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(37, 211, 102, 0.4);
}

.comparison-item span {
    display: flex;
    flex-direction: column;
}

.comparison-item .item-title {
    font-weight: 700;
    color: #ffffff;
}

.comparison-item .item-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
    font-weight: 400;
}

/* ==========================================================================
   11. PRICING SECTION
   ========================================================================== */
.pricing-section {
    background-color: var(--bg-light);
}

.pricing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4.5rem;
}

.pricing-toggle-label {
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.pricing-toggle-label.active {
    color: var(--secondary);
}

/* Premium toggle switch */
.pricing-switch-btn {
    position: relative;
    width: 64px;
    height: 34px;
    background: var(--primary);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.pricing-switch-btn::before {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--white);
    top: 4px;
    left: 4px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.pricing-switch-btn.yearly::before {
    left: 34px;
}

.pricing-badge-save {
    background: var(--accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
    margin-left: 0.25rem;
    box-shadow: 0 2px 6px var(--accent-glow);
}

/* Pricing Cards */
.pricing-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem 2.25rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.growth-card {
    border: 2.5px solid #075E54;
    background-color: #f6fdfa;
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

.pricing-card.growth-card:hover {
    transform: translateY(-8px) scale(1.03);
}

.pricing-card.pro-card {
    border: 2.5px solid #f27c22;
}

.pricing-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(7, 94, 84, 0.08);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
}

.pricing-card-badge.badge-growth {
    background: #075E54;
    color: var(--white);
}

.pricing-card-badge.badge-pro {
    background: #f27c22;
    color: var(--white);
}

.pricing-card.growth-card .pricing-card-badge {
    background: #075E54;
    color: var(--white);
}

.pricing-card.pro-card .pricing-card-badge {
    background: #f27c22;
    color: var(--white);
}

.pricing-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.pricing-card-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.pricing-card-price-wrap {
    display: flex;
    align-items: baseline;
    margin-bottom: 2.25rem;
}

.pricing-card-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-right: 0.15rem;
}

.pricing-card-price {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.03em;
    line-height: 1;
}

.pricing-card-period {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-left: 0.35rem;
}

.pricing-card-divider {
    height: 1px;
    background: var(--border-color);
    margin-bottom: 2.25rem;
    width: 100%;
}

.pricing-features-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.pricing-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--secondary);
    margin-bottom: 0.95rem;
}

.pricing-feature-item i {
    font-size: 1.1rem;
}

.pricing-feature-item.available i {
    color: var(--accent);
}

.pricing-feature-item.unavailable i {
    color: #cbd5e1;
}

.pricing-feature-item.unavailable {
    color: var(--text-muted);
    opacity: 0.75;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured:hover {
    transform: translateY(-8px) scale(1.03);
}

/* ==========================================================================
   12. REVIEWS / TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    background-color: var(--white);
}

/* Custom testimonial slider CSS */
.testimonial-carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-track {
    overflow: hidden;
    position: relative;
}

.testimonial-slide-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
    flex-shrink: 0;
    width: 100%;
    padding: 0 1rem;
}

.testimonial-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    position: relative;
    box-shadow: var(--shadow-md);
}

.testimonial-card-quote {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    color: #FFB020;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 1.15rem;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.15rem;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.testimonial-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
    color: var(--secondary);
}

.testimonial-arrow-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.testimonial-arrow-btn.prev {
    left: -60px;
}

.testimonial-arrow-btn.next {
    right: -60px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.testimonial-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 10px;
}

/* Responsive adjustments for reviews */
@media (max-width: 1024px) {
    .testimonial-arrow-btn {
        display: none;
    }

    .testimonial-card {
        padding: 2.5rem 2rem;
    }
}

/* ==========================================================================
   13. BLOG SECTION
   ========================================================================== */
.blog-section {
    background-color: var(--bg-light);
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    height: 100%;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.blog-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--white);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.blog-body {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta-wrap {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.blog-meta-wrap i {
    margin-right: 0.25rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.4;
    margin-bottom: 0.85rem;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-readmore-btn {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.blog-readmore-btn:hover i {
    transform: translateX(4px);
}

.blog-readmore-btn i {
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.blog-card:hover .blog-img {
    transform: scale(1.08);
}

/* ==========================================================================
   14. CTA SECTION
   ========================================================================== */
.cta-section {
    padding: 6.5rem 0;
    background-color: var(--bg-light);
    /* Changed from dark #03070e to match surrounding white theme */
}

.cta-mesh-box {
    background: radial-gradient(circle at 100% 0%, rgba(37, 211, 102, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 0% 100%, rgba(7, 94, 84, 0.4) 0%, transparent 60%),
        var(--secondary);
    border-radius: 32px;
    padding: 5rem 4rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cta-glow-dot {
    position: absolute;
    width: 250px;
    height: 250px;
    background: var(--accent-glow);
    filter: blur(80px);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.cta-glow-dot-1 {
    top: -50px;
    right: -50px;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 2;
}

.cta-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    position: relative;
    z-index: 2;
}

.cta-buttons-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   15. FOOTER
   ========================================================================== */
.footer-premium {
    background-color: #0d141c;
    color: #94a3b8;
    padding: 6rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-brand img {
    width: 200px;
}

.footer-brand span {
    color: var(--accent);
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #94a3b8;
}

.footer-title {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.footer-links-list li {
    margin-bottom: 0.85rem;
}

.footer-links-list a {
    color: #94a3b8;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links-list a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 0.25rem;
}

.footer-social-wrap {
    display: flex;
    gap: 0.75rem;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.footer-social-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 4rem 0 2rem 0;
}

.footer-copy-text {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* ==========================================================================
   16. FLOATING CALL / WHATSAPP WIDGETS
   ========================================================================== */
.floating-widget-wrapper {
    position: fixed;
    bottom: 25px;
    z-index: 999;
}

.floating-widget-wrapper.left-side {
    left: 25px;
}

.floating-widget-wrapper.right-side {
    right: 25px;
}

.floating-btn-pulse {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: var(--transition-smooth);
}

.floating-btn-pulse:hover {
    transform: scale(1.1);
    color: #ffffff;
}

.floating-btn-pulse::before,
.floating-btn-pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.6;
    animation: btnPulse 2s infinite ease-out;
}

.floating-btn-pulse::after {
    animation-delay: 0.5s;
}

.floating-btn-pulse.whatsapp {
    background-color: #25D366;
}

.floating-btn-pulse.whatsapp::before,
.floating-btn-pulse.whatsapp::after {
    background-color: #25D366;
}

.floating-btn-pulse.call {
    background-color: var(--primary);
}

.floating-btn-pulse.call::before,
.floating-btn-pulse.call::after {
    background-color: var(--primary);
}

/* Tooltips */
.floating-btn-pulse .widget-tooltip {
    position: absolute;
    background: #182431;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.45rem 0.85rem;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.floating-btn-pulse.whatsapp .widget-tooltip {
    right: 75px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
}

.floating-btn-pulse.call .widget-tooltip {
    left: 75px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
}

.floating-btn-pulse:hover .widget-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

@keyframes btnPulse {
    0% {
        transform: scale(1);
        opacity: 0.75;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ==========================================================================
   17. POPUP MODAL (DEMO REQUEST FORM)
   ========================================================================== */
.modal-backdrop-blur {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(24, 36, 49, 0.4) !important;
}

.glass-modal-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 30px 80px rgba(7, 94, 84, 0.18);
    border-radius: 28px;
    overflow: hidden;
}

.modal-glass-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2rem 2.5rem 1rem 2.5rem;
    position: relative;
}

.modal-glass-header .modal-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.02em;
}

.modal-glass-header .modal-title span {
    color: var(--primary);
}

.modal-glass-body {
    padding: 1.5rem 2.5rem 2.5rem 2.5rem;
}

.form-label-premium {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.form-control-premium {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #d0d5dd;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.form-control-premium:focus {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(7, 94, 84, 0.12);
}

.form-select-premium {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23344054' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-size: 16px 12px;
}

/* ==========================================================================
   18. RESPONSIVE DESIGN ADJUSTMENTS
   ========================================================================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    section {
        padding: 5rem 0;
    }

    .hero-section {
        padding-top: 8rem;
        padding-bottom: 5rem;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons-wrap {
        justify-content: center;
        margin-bottom: 4rem;
    }

    .cta-buttons-wrap {
        flex-direction: column;
        align-items: center;
        gap: 0.85rem;
    }

    .cta-buttons-wrap .btn-premium {
        width: 100% !important;
        max-width: 380px !important;
    }


    .floating-overlay-card.analytics {
        left: 0;
    }

    .floating-overlay-card.kitchen {
        right: 0;
    }

    .benefit-block {
        margin-bottom: 4.5rem;
        text-align: center;
    }

    .benefit-icon-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .benefit-points {
        display: inline-block;
        text-align: left;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .cta-mesh-box {
        padding: 4rem 2rem;
        text-align: center;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .footer-premium {
        padding-bottom: 90px !important;
    }

    .footer-premium .row.align-items-center {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-premium .row.align-items-center .col-md-6 {
        width: 100% !important;
        text-align: center !important;
    }

    .footer-copy-text {
        margin-bottom: 0;
    }

    .footer-bottom-links {
        margin-top: 0 !important;
        justify-content: center !important;
    }
}

@media (max-width: 767px) {
    .footer-premium {
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-social-wrap {
        justify-content: center;
        margin-bottom: 2rem;
    }

    .footer-contact-item {
        justify-content: center;
        text-align: left;
    }
}



@media (max-width: 576px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .pricing-card {
        padding: 2.5rem 1.5rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-card-quote {
        font-size: 1.1rem;
    }

    .floating-widget-wrapper {
        bottom: 15px;
    }

    .floating-btn-pulse {
        width: 50px;
        height: 50px;
        font-size: 1.40rem;
    }

    .floating-widget-wrapper.left-side {
        left: 15px;
    }

    .floating-widget-wrapper.right-side {
        right: 15px;
    }
}

/* ==========================================================================
   10C. PREMIUM COMPARE TABLE STYLES
   ========================================================================== */
.premium-compare-table-wrap {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    overflow-x: auto;
}

.premium-compare-table {
    --bs-table-bg: transparent !important;
    --bs-table-color: #ffffff !important;
    --bs-table-border-color: rgba(255, 255, 255, 0.04) !important;
    --bs-table-hover-bg: rgba(255, 255, 255, 0.015) !important;
    --bs-table-hover-color: #ffffff !important;
    border-collapse: collapse !important;
    width: 100% !important;
    margin-bottom: 0 !important;
    border-color: transparent !important;
    color: #ffffff !important;
    background-color: transparent !important;
}

.premium-compare-table th,
.premium-compare-table td {
    background-color: transparent !important;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
    padding: 1.75rem 1.25rem;
    vertical-align: middle;
}

.premium-compare-table thead th {
    border-bottom: 2px solid rgba(255, 255, 255, 0.08) !important;
    padding: 1.5rem 1rem;
    vertical-align: bottom;
}

.premium-compare-table tbody tr:last-child td {
    border-bottom: none !important;
}

/* Column Widths */
.col-feature {
    width: 40% !important;
}

.col-aggregator {
    width: 30% !important;
}

.col-fudmate {
    width: 30% !important;
}

/* Cells styling */
.feature-cell {
    text-align: left;
}

.feature-cell h6 {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    color: #ffffff !important;
}

.text-muted-custom {
    color: rgba(255, 255, 255, 0.45) !important;
    font-size: 0.85rem;
}

.small-text-custom {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.25rem;
    font-weight: 400;
}

.table-header-box {
    padding: 0.5rem;
}

.table-header-box h5 {
    font-size: 1.15rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.badge-tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
}

.badge-tag.bg-success-glow {
    background: rgba(37, 211, 102, 0.15);
    color: var(--accent) !important;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.1);
}

/* Compare Icons */
.compare-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.compare-icon-wrap.negative {
    color: #ff5252;
    background: rgba(255, 82, 82, 0.08);
}

.compare-icon-wrap.positive {
    color: var(--accent);
    background: rgba(37, 211, 102, 0.08);
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.05);
}

/* Highlighted Column: FudMate */
.premium-compare-table td.fudmate-cell.highlighted,
.premium-compare-table th.highlighted-header {
    background: rgba(37, 211, 102, 0.02) !important;
}

/* Hover Rows styling */
.premium-compare-table tbody tr {
    transition: all 0.3s ease;
}

.premium-compare-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.01) !important;
}

.premium-compare-table tbody tr:hover td.fudmate-cell.highlighted {
    background: rgba(37, 211, 102, 0.035) !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .premium-compare-table-wrap {
        padding: 0.75rem;
    }

    .premium-compare-table tbody td {
        padding: 1.25rem 0.75rem;
    }

    .col-feature {
        width: 34%;
    }

    .col-aggregator,
    .col-fudmate {
        width: 33%;
    }
}

/* ==========================================================================
   Benefits Section Stacking Cards (Why Choose FudMate)
   ========================================================================== */
.benefits-section-white {
    background-color: #faf9f6;
    /* Premium warm/off-white background */
    padding: 8rem 0;
    position: relative;
    overflow: visible;
    /* Required for position: sticky to work */
}

.section-tagline-white {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    background: rgba(7, 94, 84, 0.06);
    color: var(--primary) !important;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
}

.section-title-white {
    font-size: 3rem;
    font-weight: 800;
    color: #101828;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
}

.section-title-white span {
    color: var(--primary);
}

.section-subtitle-white {
    font-size: 1.2rem;
    color: #475467;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Stacking Cards Container */
.stacking-cards-container {
    margin-top: 5rem;
    position: relative;
    overflow: visible;
    /* Must be visible for children stickiness */
}

.stacking-card {
    position: sticky;
    top: 120px;
    /* Spaced to avoid navbar overlap */
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 36px;
    padding: 5rem;
    margin-bottom: 6rem;
    /* Creates distance for the next card to scroll up and overlay */
    box-shadow:
        0 30px 60px -15px rgba(16, 24, 40, 0.05),
        0 10px 20px -5px rgba(16, 24, 40, 0.02),
        0 0 0 1px rgba(16, 24, 40, 0.01);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Card Stacking Layering */
#card-revenue {
    z-index: 10;
}

#card-ordering {
    z-index: 20;
}

#card-marketing {
    z-index: 30;
}

#card-automation {
    z-index: 40;
}

.stacking-card:last-child {
    margin-bottom: 0;
}

/* Titles and Typography inside cards */
.card-title-white {
    font-size: 2.25rem;
    font-weight: 800;
    color: #101828;
    line-height: 1.25;
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
}

.card-desc-white {
    font-size: 1.05rem;
    color: #475467;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Checklists & Benefits layout */
.card-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-row-horizontal {
    text-align: left;
}

.benefit-row-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.benefit-row-horizontal:hover .benefit-row-icon {
    transform: scale(1.1);
    background: rgba(37, 211, 102, 0.15);
}

.benefit-row-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #101828;
    margin-bottom: 0.35rem;
}

.benefit-row-desc {
    font-size: 0.95rem;
    color: #475467;
    margin-bottom: 0;
    line-height: 1.5;
}

/* ==========================================================================
   Mockup/UI Designs
   ========================================================================== */
.mockup-dashboard-wrap {
    background: #fcfbf7;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(16, 24, 40, 0.03);
    overflow: hidden;
    transition: transform 0.4s ease;
}

.mockup-dashboard-wrap:hover {
    transform: translateY(-5px);
}

.mockup-header-bar {
    background: #f4f3f0;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid rgba(16, 24, 40, 0.08);
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.mockup-dots span:nth-child(1) {
    background: #ff5f56;
}

.mockup-dots span:nth-child(2) {
    background: #ffbd2e;
}

.mockup-dots span:nth-child(3) {
    background: #27c93f;
}

.mockup-title {
    font-size: 0.75rem;
    color: #667085;
    font-weight: 600;
}

.mockup-body-bar {
    padding: 1.75rem;
}

.mockup-stat-card {
    background: #ffffff;
    border: 1px solid rgba(16, 24, 40, 0.06);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: left;
    transition: all 0.3s ease;
}

.mockup-stat-card.border-accent-glow {
    border-color: rgba(37, 211, 102, 0.35);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.03);
}

.m-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #667085;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.35rem;
}

.m-value {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
}

.m-sub {
    font-size: 0.75rem;
    font-weight: 600;
}

/* Chat Mockup Styling */
.mockup-chat-wrap {
    background: #efeae2;
    /* WhatsApp chat wallpaper background color */
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(16, 24, 40, 0.03);
    overflow: hidden;
    height: 320px;
    display: flex;
    flex-direction: column;
}

.bg-primary-dark {
    background: #075E54 !important;
}

.mockup-avatar-green {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #128C7E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.mockup-chat-body {
    flex-grow: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
    background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 0);
    background-size: 16px 16px;
}

.mockup-bubble {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    max-width: 85%;
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: left;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.mockup-bubble.guest {
    background: #ffffff;
    color: #101828;
    align-self: flex-start;
    border-top-left-radius: 0;
}

.mockup-bubble.bot {
    background: #d9fdd3;
    /* WhatsApp bot green bubble color */
    color: #101828;
    align-self: flex-end;
    border-top-right-radius: 0;
}

.m-time {
    display: block;
    font-size: 0.65rem;
    color: #8c96a3;
    margin-top: 0.35rem;
}

/* Responsive adjustments for Stacking Cards */
@media (max-width: 991px) {
    .benefits-section-white {
        padding: 5rem 0;
        overflow: visible;
    }

    .stacking-card {
        position: relative;
        /* Disable sticky scroll on mobile to avoid overlapping issues */
        top: 0 !important;
        padding: 3rem 2rem;
        margin-bottom: 2.5rem;
        border-radius: 24px;
    }

    .card-title-white {
        font-size: 1.75rem;
        margin-top: 2rem;
    }

    .section-title-white {
        font-size: 2.25rem;
    }
}

/* ==========================================================================
   14. HIGH-FIDELITY PREMIUM SPLIT BANNER SIMULATOR SYSTEM
   ========================================================================== */
.align-items-stretch {
    align-items: stretch !important;
}

/* 14a. Simulated Dashboard Frame Styles (Left) - Premium Laser-Bezel Fusion */
.dashboard-border-tracer-wrap {
    position: relative;
    overflow: hidden;
    padding: 6px;
    /* Bezel width - the laser beam fills the entire thick bezel! */
    border-radius: 24px;
    /* Matches the external bezel curvature */
    background: #2d3134;
    /* Elegant matte dark grey hardware bezel backing */
    max-width: 880px;
    /* Original tablet width */
    width: 100%;
    margin: 0 auto;
    z-index: 2;
    box-shadow: 0 30px 60px -15px rgba(24, 36, 49, 0.18);
    /* Crisp premium drop shadow */
}

.dashboard-border-tracer-wrap::before {
    content: '';
    position: absolute;
    width: 250%;
    height: 250%;
    top: -75%;
    left: -75%;
    z-index: 1;
    background: conic-gradient(from 0deg,
            transparent 50%,
            rgba(37, 211, 102, 0.1) 60%,
            #25d366 85%,
            /* Glowing WhatsApp Neon Green Segment */
            #075e54 95%,
            /* Soft Brand HSL Dark Green Trail */
            transparent 100%);
    animation: rotateTracer 5s linear infinite;
}

@keyframes rotateTracer {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.dashboard-sim-frame {
    background: #f8f9fa;
    border-radius: 18px;
    /* Fits perfectly inside the 24px parent curve with 6px padding (24 - 6 = 18) */
    border: none;
    /* Removed physical border to let the glowing wrapper padding act as the full-width bezel! */
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.8) inset, 0 0 0 1px rgba(0, 0, 0, 0.08);
    /* Inner clean device screen bezel shadow */
    display: flex;
    overflow: hidden;
    height: 468px;
    /* Adjusted to keep total layout height (including padding) at exactly 480px */
    position: relative;
    font-family: var(--font-body);
    width: 100%;
    z-index: 2;
}

.dashboard-sim-sidebar {
    width: 195px;
    background: #ffffff;
    border-right: 1px solid #eaecf0;
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    flex-shrink: 0;
}

.sidebar-brand-box {
    padding: 0 1.25rem 0.75rem 1.25rem;
    border-bottom: 1px solid #f2f4f7;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.sidebar-avatar {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #edfbf7;
    color: #075e54;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    border: 1px solid rgba(7, 94, 84, 0.1);
}

.sidebar-brand-text {
    text-align: left;
}

.sidebar-brand-title {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 700;
    color: #101828;
    font-family: var(--font-heading);
}

.sidebar-brand-subtitle {
    font-size: 0.6rem;
    color: #667085;
    font-weight: 500;
    display: block;
}

.sidebar-toggle-btn {
    position: absolute;
    right: 1.25rem;
    background: none;
    border: none;
    color: #98a2b3;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0;
}

.sidebar-nav {
    list-style: none;
    padding: 0.4rem 0.6rem;
    margin: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
}

.sidebar-nav-item {
    padding: 0.28rem 0.65rem;
    border-radius: 6px;
    font-size: 0.76rem;
    font-weight: 500;
    color: #475467;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition-smooth);
}

.sidebar-nav-item i {
    font-size: 0.85rem;
    color: #667085;
}

.sidebar-nav-item.active {
    background: #075e54;
    color: #ffffff;
    font-weight: 600;
}

.sidebar-nav-item.active i {
    color: #25d366;
}

.sidebar-nav-item:hover:not(.active) {
    background: #f4f6f8;
    color: #101828;
}

.sidebar-footer {
    padding: 0.65rem 1.25rem;
    border-top: 1px solid #f2f4f7;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.sidebar-footer-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #182431;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.sidebar-footer-text {
    text-align: left;
}

.sidebar-footer-name {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 700;
    color: #101828;
}

.sidebar-footer-email {
    font-size: 0.6rem;
    color: #667085;
    display: block;
}

.sidebar-badge-free {
    background: #edfbf7;
    color: #075e54;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    border: 1px solid rgba(7, 94, 84, 0.1);
    display: inline-block;
    margin-left: 0.35rem;
    vertical-align: middle;
}

.dashboard-sim-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    overflow-y: auto;
    background: #fcfcfd;
}

.dashboard-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid #f2f4f7;
    padding-bottom: 0.5rem;
}

.content-header-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 0 0.15rem 0;
    color: #101828;
    font-family: var(--font-heading);
}

.content-header-subtitle {
    font-size: 0.7rem;
    color: #667085;
    margin: 0;
}

.content-header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sim-date-badge {
    background: #ffffff;
    border: 1px solid #eaecf0;
    padding: 0.45rem 0.85rem;
    border-radius: 8px;
    font-size: 0.72rem;
    color: #344054;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.sim-refresh-btn {
    background: #ffffff;
    border: 1px solid #eaecf0;
    padding: 0.45rem 1rem;
    border-radius: 8px;
    font-size: 0.72rem;
    color: #344054;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.sim-refresh-btn:hover {
    background: #f9fafb;
    border-color: #d0d5dd;
}

.dashboard-orders-table-wrapper {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #eaecf0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(16, 24, 40, 0.03);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.dashboard-orders-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    table-layout: fixed;
    /* Fixed table layout is absolutely essential to force column widths */
}

.dashboard-orders-table th {
    background: #f9fafb;
    border-bottom: 1px solid #eaecf0;
    padding: 0.4rem 0.5rem;
    /* Balanced horizontal column padding */
    font-size: 0.58rem;
    font-weight: 700;
    color: #475467;
    letter-spacing: 0.02em;
    font-family: var(--font-heading);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dashboard-orders-table td {
    padding: 0.35rem 0.5rem;
    /* Balanced vertical and horizontal column padding */
    border-bottom: 1px solid #eaecf0;
    font-size: 0.65rem;
    color: #344054;
    vertical-align: middle;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Each column sized to its actual content so NOTHING clips */
.dashboard-orders-table th:nth-child(1),
.dashboard-orders-table td:nth-child(1) {
    width: 90px;
}

/* ORDER/ITEM  – shorter, just fits "Veg Biryani-2" */

.dashboard-orders-table th:nth-child(2),
.dashboard-orders-table td:nth-child(2) {
    width: 75px;
}

/* CUSTOMER    – "Joe" + phone */

.dashboard-orders-table th:nth-child(3),
.dashboard-orders-table td:nth-child(3) {
    width: 95px;
}

/* ADDRESS     – "colony, Ammapet" */

.dashboard-orders-table th:nth-child(4),
.dashboard-orders-table td:nth-child(4) {
    width: 38px;
    text-align: center;
}

/* QTY         */

.dashboard-orders-table th:nth-child(5),
.dashboard-orders-table td:nth-child(5) {
    width: 50px;
    text-align: center;
}

/* TOTAL       */

.dashboard-orders-table th:nth-child(6),
.dashboard-orders-table td:nth-child(6) {
    width: 118px;
    text-align: center;
}

/* KITCHEN     – fits full "Preparing" badge */

.dashboard-orders-table th:nth-child(7),
.dashboard-orders-table td:nth-child(7) {
    width: 62px;
    text-align: center;
}

/* TIME        */

.dashboard-orders-table th:nth-child(8),
.dashboard-orders-table td:nth-child(8) {
    width: 88px;
    text-align: left;
}

/* ACTIONS */

.order-item-title {
    font-weight: 700;
    color: #101828;
    margin: 0;
    font-size: 0.64rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.order-item-id {
    font-size: 0.58rem;
    color: #667085;
    font-weight: 500;
    display: block;
    margin-top: 0.08rem;
    white-space: nowrap;
}

.customer-name {
    font-weight: 700;
    color: #101828;
    margin: 0;
    font-size: 0.64rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.customer-phone {
    font-size: 0.58rem;
    color: #667085;
    font-weight: 500;
    display: block;
    margin-top: 0.08rem;
    white-space: nowrap;
}

.sim-status-badge {
    padding: 0.15rem 0.4rem;
    border-radius: 50px;
    font-size: 0.58rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    border: 1px solid transparent;
    white-space: nowrap;
}

.sim-status-badge.out-for-delivery {
    background: #fff8eb;
    color: #b54708;
    border-color: #fec84b;
}

.sim-status-badge.preparing {
    background: #f0f9ff;
    color: #026aa2;
    border-color: #b9e6fe;
}

.sim-status-badge.received {
    background: #ecfdf3;
    color: #027a48;
    border-color: #abefc6;
}

.sim-actions-dropdown {
    border: 1px solid #d0d5dd;
    padding: 0.2rem 1.3rem 0.2rem 0.4rem;
    border-radius: 6px;
    font-size: 0.62rem;
    font-weight: 600;
    color: #344054;
    width: 100%;
    max-width: 76px;
    /* snug fit — just wide enough for "Preparing" + arrow */
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #ffffff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23344054' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") no-repeat right 5px center / 7px 7px;
}

.table-empty-row {
    height: 100%;
}

.table-empty-row td {
    padding: 2.2rem 1rem !important;
    border-bottom: none !important;
}

.table-radar-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    color: #667085;
}

.radar-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(7, 94, 84, 0.1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: pulseRadar 2.2s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes pulseRadar {
    0% {
        transform: scale(0.95);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

.radar-text {
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0;
    color: #475467;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.radar-text i {
    color: #25d366;
    animation: flashRadar 1.5s infinite;
}

@keyframes flashRadar {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

.sim-inserted-row {
    animation: rowInsertGlow 2.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes rowInsertGlow {
    0% {
        background-color: rgba(37, 211, 102, 0.3);
        transform: translateY(-20px);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        background-color: rgba(37, 211, 102, 0.15);
    }

    100% {
        background-color: transparent;
        transform: translateY(0);
        opacity: 1;
    }
}


/* 14b. Simulated Mobile Phone WhatsApp Frame Styles (Right) */
.phone-sim-frame {
    background: #080f14;
    border-radius: 24px;
    /* matches dashboard-border-tracer-wrap */
    border: 6px solid #2d3134;
    /* same bezel thickness & colour as dashboard */
    box-sizing: content-box;
    /* border adds OUTSIDE the height → total = 468 + 6 + 6 = 480px, same as dashboard */
    box-shadow: 0 30px 60px -15px rgba(24, 36, 49, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    height: 468px;
    /* inner height — total outer = 480px matching dashboard */
    position: relative;
    overflow: hidden;
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
}

.phone-notch-bar {
    height: 30px;
    /* slightly taller status bar */
    background: #008069;
    padding: 0 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    /* anchor for absolutely-centered notch pill */
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 600;
    flex-shrink: 0;
    z-index: 10;
}

.phone-speaker-notch {
    position: absolute;
    /* true center regardless of sibling widths */
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 6px;
    background: #111111;
    border-radius: 10px;
}

.phone-status-icons {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.whatsapp-sim-header {
    background: #008069;
    padding: 0.4rem 0.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
    flex-shrink: 0;
    z-index: 10;
}

.whatsapp-header-left {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: #ffffff;
    text-align: left;
}

.whatsapp-header-left i {
    font-size: 0.95rem;
    cursor: pointer;
}

.whatsapp-avatar-img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-chat-name {
    margin: 0;
    font-size: 0.74rem;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

.whatsapp-chat-status {
    font-size: 0.58rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 500;
}

.whatsapp-chat-status .status-dot {
    width: 6px;
    height: 6px;
    background: #25d366;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 6px #25d366;
}

.whatsapp-header-actions {
    display: flex;
    gap: 0.65rem;
    color: #ffffff;
    font-size: 0.85rem;
}

.whatsapp-header-actions i {
    cursor: pointer;
    transition: var(--transition-smooth);
}

.whatsapp-header-actions i:hover {
    color: #ffffff;
}

/* WhatsApp Chat Wallpaper Style */
.whatsapp-chat-body {
    flex-grow: 1;
    padding: 0.75rem;
    overflow-y: auto;
    background: #efeae2;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.whatsapp-chat-body::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome, Safari and Opera */
}

/* High Fidelity WhatsApp Background Doodle Pattern */
.whatsapp-chat-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
    background-image: radial-gradient(rgba(0, 0, 0, 0.15) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
}

.whatsapp-chat-body>* {
    position: relative;
    z-index: 2;
}

.chat-day-divider {
    align-self: center;
    background: #ffffff;
    color: #54656f;
    font-size: 0.58rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 8px;
    letter-spacing: 0.06em;
    margin: 0.25rem 0;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}

/* Real-looking WhatsApp Chat Bubbles */
.wa-bubble {
    padding: 0.42rem 0.55rem;
    border-radius: 8px;
    max-width: 86%;
    font-size: 0.72rem;
    line-height: 1.4;
    text-align: left;
    position: relative;
    word-wrap: break-word;
    box-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.15);
    transform-origin: left top;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInBubble 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInBubble {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.wa-bubble.user {
    background: #d9fdd3;
    color: #111b21;
    align-self: flex-end;
    border-top-right-radius: 0;
    transform-origin: right top;
}

.wa-bubble.bot {
    background: #ffffff;
    color: #111b21;
    align-self: flex-start;
    border-top-left-radius: 0;
}

.wa-bubble-time {
    display: block;
    font-size: 0.55rem;
    color: #667781;
    text-align: right;
    margin-top: 0.25rem;
    font-weight: 500;
}

.wa-bubble.user .wa-bubble-time i {
    color: #53bdeb;
    font-size: 0.72rem;
    margin-left: 0.15rem;
    vertical-align: middle;
}

/* Interactive Option Selection Buttons */
.wa-interactive-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-top: 0.5rem;
    width: 100%;
}

.wa-btn-option {
    background: #ffffff;
    color: #008069;
    border: 1px solid #e9edef;
    padding: 0.38rem 0.65rem;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.wa-btn-option:hover {
    background: #f0f2f5;
    color: #008069;
}

/* Catalog View Elements */
.wa-catalog-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e9edef;
    align-self: flex-start;
    max-width: 86%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInBubble 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.wa-catalog-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.wa-catalog-body {
    padding: 0.5rem;
    text-align: left;
}

.wa-catalog-title {
    font-weight: 700;
    font-size: 0.72rem;
    color: #111b21;
    margin: 0 0 0.15rem 0;
    font-family: var(--font-heading);
}

.wa-catalog-subtitle {
    font-size: 0.62rem;
    color: #667781;
    font-weight: 500;
    display: block;
}

.wa-catalog-desc {
    font-size: 0.68rem;
    color: #3b4a54;
    margin: 0.45rem 0;
    line-height: 1.35;
}

.wa-catalog-btn {
    width: 100%;
    border: none;
    background: #ffffff;
    color: #008069;
    padding: 0.45rem;
    font-size: 0.7rem;
    font-weight: 700;
    border-top: 1px solid #e9edef;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.wa-catalog-btn:hover {
    background: #f0f2f5;
    color: #008069;
}

/* Cart Details Representation */
.wa-cart-bubble {
    background: #e7f7f4;
    border-radius: 8px;
    border: 1px solid #ccebe6;
    padding: 0.45rem;
    margin-top: 0.45rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
}

.wa-cart-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wa-cart-left i {
    font-size: 1.2rem;
    color: #008069;
}

.wa-cart-info {
    text-align: left;
}

.wa-cart-title {
    font-weight: 700;
    font-size: 0.72rem;
    color: #111b21;
    margin: 0;
}

.wa-cart-meta {
    font-size: 0.62rem;
    color: #667781;
    margin: 0;
}

.wa-cart-link {
    font-size: 0.7rem;
    font-weight: 700;
    color: #008069;
    cursor: pointer;
}

/* Keyboard/Typing Indicator Simulator */
.wa-bubble.typing {
    background: #ffffff;
    padding: 0.5rem 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: #667781;
    border-radius: 50%;
    margin: 0 1.5px;
    opacity: 0.4;
    animation: typingPulse 1.2s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.whatsapp-input-bar {
    background: #f0f2f5;
    padding: 0.35rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
    z-index: 10;
    border-top: 1px solid #e9edef;
}

.whatsapp-text-input-wrap {
    flex-grow: 1;
    background: #ffffff;
    border-radius: 24px;
    padding: 0.3rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #667781;
    font-size: 0.85rem;
    border: 1px solid #e9edef;
}

.whatsapp-text-input-wrap i {
    cursor: pointer;
}

.whatsapp-input-placeholder {
    flex-grow: 1;
    text-align: left;
    margin: 0 0.5rem;
    font-size: 0.72rem;
    color: #667781;
}

.whatsapp-mic-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #00a884;
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.whatsapp-mic-btn:hover {
    background: #008f72;
    transform: scale(1.05);
}

/* CSS variables tweak to accommodate sticky scroll side effects */
.hero-mockup-wrapper {
    position: relative;
    width: 100%;
}

@media (max-width: 1199px) {
    .dashboard-sim-sidebar {
        width: 60px;
        overflow: hidden;
    }

    .sidebar-brand-text,
    .sidebar-footer-text,
    .sidebar-badge-free,
    .sidebar-nav-item span {
        display: none !important;
    }

    .sidebar-avatar {
        margin: 0 auto;
    }

    .sidebar-nav-item {
        justify-content: center;
        padding: 0.45rem 0;
    }

    .sidebar-footer {
        justify-content: center;
        padding: 0.65rem 0;
    }

    .dashboard-orders-table-wrapper {
        overflow-x: auto;
    }

    .dashboard-orders-table {
        min-width: 616px;
    }
}

@media (max-width: 991px) {
    .dashboard-sim-frame {
        height: 420px;
    }

    .phone-sim-frame {
        height: 460px;
        margin-top: 1rem;
        max-width: 280px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}


/* ==========================================================================
   15. HIGH-FIDELITY SHOWCASE INTERACTIVE PANEL STYLES
   ========================================================================== */
.showcase-dashboard-screen {
    background: #f8f9fa;
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid #eaecf0;
    font-family: var(--font-body);
    color: #1d2939;
    text-align: left;
    min-height: 560px;
    height: auto;
    display: flex;
    flex-direction: column;
}


.showcase-screen-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #eaecf0;
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.showcase-screen-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.showcase-screen-header p {
    font-size: 0.85rem;
    color: #475467;
    margin-bottom: 0;
}

/* Menu Planner CSS */
.showcase-menu-planner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    flex-grow: 1;
    min-height: 0;
}

@media (max-width: 1199px) {
    .showcase-menu-planner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .showcase-menu-planner {
        grid-template-columns: 1fr;
    }
}



.showcase-menu-column {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #eaecf0;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.showcase-menu-col-header {
    text-align: center;
    border-bottom: 1px solid #f2f4f7;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
}

.showcase-menu-col-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1d2939;
    margin-bottom: 0.25rem;
}

.showcase-menu-col-time {
    font-size: 0.75rem;
    color: #667085;
    background: #f2f4f7;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
}

.showcase-food-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.showcase-food-card {
    background: #ffffff;
    border: 1px solid #eaecf0;
    border-radius: 8px;
    padding: 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    transition: var(--transition-smooth);
}

.showcase-food-card:hover {
    border-color: #a3e635;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.showcase-food-checkbox {
    width: 16px;
    height: 16px;
    border: 1.5px solid #d0d5dd;
    border-radius: 4px;
    cursor: pointer;
    accent-color: #25d366;
}

.showcase-food-info {
    flex-grow: 1;
}

.showcase-food-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1d2939;
    margin-bottom: 0.1rem;
    line-height: 1.2;
}

.showcase-food-price {
    font-size: 0.75rem;
    font-weight: 600;
    color: #475467;
}

/* Header Buttons styling matching the screen */
.header-actions-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.showcase-date-picker {
    background: #f2f4f7;
    border: 1px solid #d0d5dd;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #344054;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.showcase-btn-outline {
    background: #ffffff;
    border: 1.5px solid #d0d5dd;
    color: #344054;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.showcase-btn-outline.primary-outline {
    border-color: #25d366;
    color: #008069;
}

.showcase-btn-outline.purple-outline {
    border-color: #a855f7;
    color: #7e22ce;
}

.showcase-btn-solid {
    background: #006d2f;
    border: 1px solid #006d2f;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.45rem 0.9rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.showcase-btn-solid:hover {
    background: #005322;
}

/* Customers CSS */
.showcase-search-wrap {
    position: relative;
}

.showcase-search-input {
    background: #ffffff;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    padding: 0.4rem 0.75rem 0.4rem 2rem;
    font-size: 0.8rem;
    color: #344054;
    width: 200px;
}

.showcase-search-icon {
    position: absolute;
    left: 0.65rem;
    top: 50%;
    transform: translateY(-50%);
    color: #667085;
    font-size: 0.8rem;
}

.showcase-tab-bar {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.showcase-tab-btn {
    border-radius: 8px;
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.showcase-tab-btn.active {
    background: #006d2f;
    border: 1px solid #006d2f;
    color: #ffffff;
}

.showcase-tab-btn.outline {
    background: #ffffff;
    border: 1px solid #d0d5dd;
    color: #475467;
}

.showcase-customers-table-wrapper {
    background: #ffffff;
    border: 1px solid #eaecf0;
    border-radius: 12px;
    overflow-y: auto;
    overflow-x: auto;
    flex-grow: 1;
    min-height: 0;
}

@media (max-width: 1199px) {
    .showcase-table {
        min-width: 850px;
    }
}

@media (max-width: 991px) {
    .showcase-dashboard-screen {
        padding: 1rem;
    }

    .showcase-preview-card {
        padding: 0.5rem !important;
    }

    .showcase-nav {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .showcase-nav-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        border-radius: 8px;
    }

    .showcase-screen-header h3 {
        font-size: 1.25rem;
    }

    .showcase-screen-header {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

    .header-actions-wrap {
        width: 100%;
        justify-content: flex-start;
        gap: 0.35rem;
    }

    .showcase-date-picker,
    .showcase-btn-outline,
    .showcase-btn-solid {
        font-size: 0.7rem !important;
        padding: 0.3rem 0.5rem !important;
        border-radius: 6px !important;
    }
}



.showcase-table {
    width: 100%;
    border-collapse: collapse;
}

.showcase-table th {
    background: #f9fafb;
    border-bottom: 1px solid #eaecf0;
    color: #475467;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: sticky;
    top: 0;
    z-index: 10;
}

.showcase-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid #eaecf0;
    font-size: 0.8rem;
    color: #344054;
    vertical-align: middle;
}

.showcase-table tr:last-child td {
    border-bottom: none;
}

.showcase-cust-info h5 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1d2939;
    margin-bottom: 0.15rem;
}

.showcase-cust-info span {
    font-size: 0.7rem;
    color: #667085;
}

.showcase-cust-contact {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.showcase-cust-contact span {
    font-size: 0.75rem;
    color: #344054;
}

.showcase-cust-contact small {
    font-size: 0.7rem;
    color: #667085;
}

.showcase-table-action-btn {
    background: #ffffff;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #475467;
    transition: var(--transition-smooth);
}

.showcase-table-action-btn:hover {
    background: #f9fafb;
    color: #006d2f;
    border-color: #006d2f;
}

/* Subscription CSS */
.subscription-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    flex-grow: 1;
}

@media (max-width: 1199px) {
    .subscription-plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .subscription-plans-grid {
        grid-template-columns: 1fr;
    }
}



.showcase-sub-card {
    background: #ffffff;
    border: 1px solid #eaecf0;
    border-radius: 12px;
    padding: 1.25rem;
    position: relative;
}

.showcase-sub-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: #eff8ff;
    color: #175cd3;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
}

.showcase-sub-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1d2939;
    margin-bottom: 0.5rem;
}

.showcase-sub-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.showcase-sub-price span {
    font-size: 0.75rem;
    font-weight: 500;
    color: #667085;
}

.showcase-sub-desc {
    font-size: 0.8rem;
    color: #475467;
    margin-bottom: 1rem;
}

.showcase-sub-meals {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.showcase-sub-meal-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: #344054;
    background: #f2f4f7;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.showcase-sub-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f2f4f7;
    padding-top: 1rem;
}

/* Light Theme Showcase Live Order Widgets */
.showcase-light-widget {
    background: #ffffff;
    border: 1px solid #eaecf0;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.showcase-light-widget:hover {
    border-color: #a3e635;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.showcase-chat-window {
    background: #ffffff;
    border: 1px solid #eaecf0;
    border-radius: 16px;
    height: 380px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.showcase-chat-header {
    background: #008069;
    padding: 0.75rem 1rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.showcase-chat-body {
    background: #efeae2 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%23e5ddd5' fill-opacity='0.4' d='M0 0h100v100H0z'/%3E%3C/svg%3E");
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow-y: auto;
}

.showcase-chat-bubble {
    max-width: 85%;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    line-height: 1.4;
    position: relative;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
}

.showcase-chat-bubble.customer {
    background: #ffffff;
    align-self: flex-start;
    color: #111b21;
    border-top-left-radius: 0;
}

.showcase-chat-bubble.system {
    background: #d9fdd3;
    align-self: flex-end;
    color: #111b21;
    border-top-right-radius: 0;
}

.showcase-chat-bubble .bubble-time {
    display: block;
    text-align: right;
    font-size: 0.65rem;
    color: #667781;
    margin-top: 0.25rem;
}

.showcase-chat-footer {
    padding: 0.65rem 0.75rem;
    background: #f0f2f5;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    border-top: 1px solid #e9edef;
}

.showcase-chat-input {
    flex-grow: 1;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    color: #3b4a54;
    outline: none;
}

.showcase-chat-send-btn {
    background: #008069;
    border: none;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.showcase-chat-send-btn:hover {
    background: #016b57;
}

/* ==========================================================================
   DEMO BOOKING MODAL � Complete UI System
   ========================================================================== */

/* Backdrop */
.modal-backdrop.show {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Dialog sizing */
.demo-modal-dialog {
    max-width: 560px;
    margin: 1.5rem auto;
}

/* Card shell */
.demo-modal-content {
    border: none;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16);
    overflow: hidden;
}

/* -- Header ------------------------------------------- */
.demo-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 28px 32px 20px;
    background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
}

.demo-modal-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
}

.demo-modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.demo-modal-title span {
    color: #25D366;
}

.demo-modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
    margin-top: 2px;
}

.demo-modal-close:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: rotate(90deg);
}

/* -- Body ---------------------------------------------- */
.demo-modal-body {
    padding: 28px 32px 32px;
    background: #ffffff;
}

/* Two-column row */
.demo-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

@media (max-width: 480px) {
    .demo-form-row {
        grid-template-columns: 1fr;
    }

    .demo-modal-dialog {
        margin: 0.5rem;
    }

    .demo-modal-header,
    .demo-modal-body {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Group */
.demo-form-group {
    display: flex;
    flex-direction: column;
}

.demo-form-group--full {
    margin-bottom: 16px;
}

/* Label */
.demo-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #344054;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.demo-label i {
    color: #075E54;
    font-size: 0.82rem;
}

/* Input */
.demo-input {
    width: 100%;
    padding: 10px 14px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: #101828;
    background: #f9fafb;
    border: 1.5px solid #e4e7ec;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.demo-input::placeholder {
    color: #98a2b3;
}

.demo-input:focus {
    border-color: #075E54;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(7, 94, 84, 0.1);
}

/* Select wrapper � custom arrow only, no Bootstrap double-chevron */
.demo-select-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.demo-select {
    cursor: pointer;
    padding-right: 38px;
    /* space for the icon */
}

.demo-select-icon {
    position: absolute;
    right: 14px;
    pointer-events: none;
    color: #667085;
    font-size: 0.8rem;
}

/* Success alert */
.demo-success-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ecfdf5;
    border: 1px solid #6ce9a6;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 16px;
    color: #027a48;
    font-size: 0.88rem;
}

.demo-success-alert i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.demo-success-alert div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.demo-success-alert strong {
    font-weight: 700;
}

.demo-success-alert span {
    opacity: 0.85;
}

/* Submit button */
.demo-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    margin-top: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #ffffff;
    background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.18s, box-shadow 0.18s, opacity 0.18s;
    letter-spacing: 0.01em;
}

.demo-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(7, 94, 84, 0.32);
}

.demo-submit-btn:active {
    transform: translateY(0);
}

.demo-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Demo modal � textarea */
.demo-textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.55;
}

/* ==========================================================================
   PREMIUM OFFCANVAS MOBILE NAVIGATION
   ========================================================================== */
@media (max-width: 991px) {
    .navbar-premium .offcanvas {
        width: 100% !important;
        height: 100% !important;
        border: none !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }

    .navbar-premium .offcanvas-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem !important;
        border-bottom: 1px solid rgba(7, 94, 84, 0.08);
    }

    .navbar-premium .offcanvas-body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Center links vertically */
        align-items: center;
        /* Center links horizontally */
        padding: 2.5rem 1.5rem !important;
        gap: 2.5rem;
    }

    .navbar-premium .navbar-nav {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.75rem;
        margin: 0 !important;
    }

    .navbar-premium .navbar-nav .nav-item {
        width: 100%;
        text-align: center;
    }

    .navbar-premium .navbar-nav .nav-link {
        font-size: 1.5rem !important;
        font-weight: 700 !important;
        color: var(--secondary) !important;
        display: inline-block;
        padding: 0.5rem 1.5rem !important;
        transition: all 0.3s ease;
        text-transform: capitalize;
    }

    .navbar-premium .navbar-nav .nav-link.active {
        color: var(--primary) !important;
        position: relative;
    }

    .navbar-premium .navbar-nav .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 50%;
        transform: translateX(-50%);
        width: 24px;
        height: 3px;
        background: var(--primary);
        border-radius: 10px;
    }

    .navbar-premium .navbar-nav .nav-link:hover {
        color: var(--primary) !important;
        transform: scale(1.05);
    }

    /* Buttons in Offcanvas */
    .navbar-premium .offcanvas-body .d-flex {
        flex-direction: column;
        width: 100%;
        gap: 1rem !important;
        align-items: center;
        margin-top: 1rem;
    }

    .navbar-premium .offcanvas-body .d-flex .btn-link {
        font-size: 1.2rem;
        padding: 0.5rem !important;
        color: var(--secondary) !important;
        font-weight: 700 !important;
    }

    .navbar-premium .offcanvas-body .d-flex .btn-premium {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem !important;
        font-size: 1.1rem !important;
        justify-content: center;
        display: flex;
        align-items: center;
    }

    /* Slick Bootstrap custom close button override */
    .navbar-premium .btn-close {
        background-color: rgba(7, 94, 84, 0.05) !important;
        opacity: 0.8;
        border-radius: 50% !important;
        padding: 0.75rem !important;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-shadow: none !important;
    }

    .navbar-premium .btn-close:hover {
        background-color: rgba(7, 94, 84, 0.1) !important;
        transform: rotate(90deg) !important;
        opacity: 1;
    }
}

/* ==========================================================================
   PREMIUM OFFCANVAS MOBILE NAVIGATION � Robust & Full Screen OVERRIDE
   ========================================================================== */
@media (max-width: 991px) {

    /* Target the offcanvas directly by its ID and classes to ensure absolute highest specificity */
    div.offcanvas#offcanvasNavbar {
        width: 100% !important;
        height: 100vh !important;
        height: 100dvh !important;
        /* support dynamic viewport height on mobile */
        border: none !important;
        background-color: rgba(255, 255, 255, 0.98) !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }

    div.offcanvas#offcanvasNavbar .offcanvas-header {
        background-color: #ffffff !important;
        padding: 1.5rem 1.5rem 1rem 1.5rem !important;
        border-bottom: 1px solid rgba(7, 94, 84, 0.08) !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    div.offcanvas#offcanvasNavbar .offcanvas-body {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        /* Center links vertically */
        align-items: center !important;
        /* Center links horizontally */
        flex-grow: 1 !important;
        padding: 2.5rem 1.5rem !important;
        gap: 2.5rem !important;
        background: transparent !important;
        overflow-y: auto !important;
    }

    div.offcanvas#offcanvasNavbar .navbar-nav {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1.75rem !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    div.offcanvas#offcanvasNavbar .navbar-nav .nav-item {
        width: 100% !important;
        text-align: center !important;
        list-style: none !important;
    }

    div.offcanvas#offcanvasNavbar .navbar-nav .nav-link {
        font-size: 1.6rem !important;
        font-weight: 700 !important;
        color: #182431 !important;
        /* Direct Slate color to bypass variable issues */
        display: inline-block !important;
        padding: 0.5rem 1.5rem !important;
        transition: all 0.3s ease !important;
        text-decoration: none !important;
        text-transform: capitalize !important;
    }

    div.offcanvas#offcanvasNavbar .navbar-nav .nav-link.active {
        color: #075E54 !important;
        /* Primary Brand Green */
        position: relative !important;
    }

    div.offcanvas#offcanvasNavbar .navbar-nav .nav-link.active::after {
        content: '' !important;
        position: absolute !important;
        bottom: -2px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 32px !important;
        height: 3px !important;
        background: #075E54 !important;
        border-radius: 10px !important;
    }

    div.offcanvas#offcanvasNavbar .navbar-nav .nav-link:hover {
        color: #00a884 !important;
        /* WhatsApp Green */
        transform: scale(1.05) !important;
    }

    /* Buttons in Offcanvas */
    div.offcanvas#offcanvasNavbar .offcanvas-body .d-flex {
        flex-direction: column !important;
        width: 100% !important;
        gap: 1.25rem !important;
        align-items: center !important;
        margin-top: 1rem !important;
    }

    div.offcanvas#offcanvasNavbar .offcanvas-body .d-flex .btn-link {
        font-size: 1.25rem !important;
        font-weight: 700 !important;
        color: #182431 !important;
        text-decoration: none !important;
        padding: 0.5rem !important;
    }

    div.offcanvas#offcanvasNavbar .offcanvas-body .d-flex .btn-premium {
        width: 100% !important;
        max-width: 280px !important;
        padding: 1rem 2rem !important;
        font-size: 1.1rem !important;
        justify-content: center !important;
        display: flex !important;
        align-items: center !important;
        border-radius: 8px !important;
    }

    /* Slick Bootstrap custom close button override */
    div.offcanvas#offcanvasNavbar .btn-close {
        background-color: rgba(7, 94, 84, 0.05) !important;
        opacity: 0.8 !important;
        border-radius: 50% !important;
        padding: 0.75rem !important;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-shadow: none !important;
    }

    div.offcanvas#offcanvasNavbar .btn-close:hover {
        background-color: rgba(7, 94, 84, 0.1) !important;
        transform: rotate(90deg) !important;
        opacity: 1 !important;
    }
}

/* ==========================================================================
   OFFCANVAS MOBILE NAV � Gap, Font, and Logo Size Adjustments
   ========================================================================== */
@media (max-width: 991px) {

    /* Make offcanvas header logo bigger */
    div.offcanvas#offcanvasNavbar .offcanvas-header img {
        width: 175px !important;
        max-height: 38px !important;
    }

    /* Reduce body and nav gaps */
    div.offcanvas#offcanvasNavbar .offcanvas-body {
        padding: 1.5rem 1.5rem !important;
        gap: 1.5rem !important;
    }

    div.offcanvas#offcanvasNavbar .navbar-nav {
        gap: 0.9rem !important;
    }

    /* Reduce nav links font size */
    div.offcanvas#offcanvasNavbar .navbar-nav .nav-link {
        font-size: 1.2rem !important;
        padding: 0.35rem 1.5rem !important;
    }

    /* Adjust active indicator bar size */
    div.offcanvas#offcanvasNavbar .navbar-nav .nav-link.active::after {
        width: 20px !important;
        height: 2px !important;
        bottom: -1px !important;
    }

    /* Reduce buttons section margins and gaps */
    div.offcanvas#offcanvasNavbar .offcanvas-body .d-flex {
        gap: 0.75rem !important;
        margin-top: 0.25rem !important;
    }

    div.offcanvas#offcanvasNavbar .offcanvas-body .d-flex .btn-link {
        font-size: 1.1rem !important;
    }

    div.offcanvas#offcanvasNavbar .offcanvas-body .d-flex .btn-premium {
        padding: 0.75rem 2rem !important;
        font-size: 1rem !important;
    }
}

/* ==========================================================================
   DASHBOARD SHOWCASE SCREEN HEADER MOBILE OPTIMIZATIONS
   ========================================================================== */
@media (max-width: 991px) {

    /* Force title & description container to take full 100% width (First Row) */
    .showcase-screen-header>div:first-child {
        width: 100% !important;
        flex: 0 0 100% !important;
        margin-bottom: 0.5rem !important;
        /* space between row 1 and row 2 */
    }

    /* Force action elements to take full 100% width on the Second Row */
    .showcase-screen-header .header-actions-wrap,
    .showcase-screen-header .showcase-search-wrap,
    .showcase-screen-header>button,
    .showcase-screen-header>a {
        width: 100% !important;
        flex: 0 0 100% !important;
        margin-top: 0.25rem !important;
    }

    /* Align search elements nicely on mobile second row */
    .showcase-screen-header .showcase-search-wrap {
        max-width: 100% !important;
    }

    .showcase-screen-header .showcase-search-input {
        width: 100% !important;
    }
}

/* ==========================================================================
   HERO SECTION DASHBOARD SIMULATOR HEADER MOBILE TWEAKS
   ========================================================================== */
@media (max-width: 991px) {
    .dashboard-content-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.65rem !important;
        padding-bottom: 0.75rem !important;
    }

    .dashboard-content-header>div:first-child {
        width: 100% !important;
    }

    .content-header-actions {
        width: 100% !important;
        justify-content: flex-start !important;
        gap: 0.5rem !important;
    }

    .sim-date-badge,
    .sim-refresh-btn {
        font-size: 0.68rem !important;
        padding: 0.35rem 0.65rem !important;
        border-radius: 6px !important;
    }
}

/* ==========================================================================
   HERO CTA BUTTONS MOBILE ROW ALIGNMENT
   ========================================================================== */
@media (max-width: 767px) {
    .hero-buttons-wrap {
        flex-wrap: nowrap !important;
        gap: 0.5rem !important;
        width: 100% !important;
        max-width: 360px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-buttons-wrap .btn-premium {
        padding: 0.65rem 0.75rem !important;
        font-size: 0.82rem !important;
        white-space: nowrap !important;
        flex: 1 1 50% !important;
        max-width: 180px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 10px !important;
    }

    .hero-buttons-wrap .btn-premium i {
        margin-left: 0.25rem !important;
        font-size: 0.85rem !important;
    }
}

/* ==========================================================================
   PRICING BILLING SWITCHER MOBILE TWEAKS
   ========================================================================== */
@media (max-width: 767px) {
    .pricing-toggle-wrap {
        gap: 0.4rem !important;
        margin-bottom: 2.5rem !important;
        width: 100% !important;
        justify-content: center !important;
    }

    .pricing-toggle-label {
        font-size: 0.82rem !important;
        white-space: nowrap !important;
        display: inline-flex !important;
        align-items: center !important;
    }

    .pricing-badge-save {
        font-size: 0.65rem !important;
        padding: 0.15rem 0.45rem !important;
        white-space: nowrap !important;
        margin-left: 0.2rem !important;
        display: inline-block !important;
    }

    .pricing-switch-btn {
        width: 52px !important;
        height: 28px !important;
        flex-shrink: 0 !important;
    }

    .pricing-switch-btn::before {
        width: 20px !important;
        height: 20px !important;
        top: 4px !important;
        left: 4px !important;
    }

    .pricing-switch-btn.yearly::before {
        left: 28px !important;
    }
}

/* ==========================================================================
   PRICING BILLING SWITCHER MOBILE TWEAKS � 2 Row Split Layout
   ========================================================================== */
@media (max-width: 767px) {

    /* Allow flex wrapping */
    .pricing-toggle-wrap {
        flex-wrap: wrap !important;
        gap: 0.75rem !important;
        margin-bottom: 3.5rem !important;
        justify-content: center !important;
    }

    /* Billed Monthly and Switch are on Row 1 (centered) */
    #toggleMonthly {
        font-size: 0.95rem !important;
        white-space: nowrap !important;
    }

    .pricing-switch-btn {
        width: 64px !important;
        height: 34px !important;
        flex-shrink: 0 !important;
    }

    .pricing-switch-btn::before {
        width: 26px !important;
        height: 26px !important;
        top: 4px !important;
        left: 4px !important;
    }

    .pricing-switch-btn.yearly::before {
        left: 34px !important;
    }

    /* Billed Yearly (Save 20%) is forced to Row 2 and centered */
    #toggleYearly {
        width: 100% !important;
        flex: 0 0 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        font-size: 0.95rem !important;
        white-space: nowrap !important;
        margin-top: 0.6rem !important;
        /* spacing below row 1 */
    }

    .pricing-badge-save {
        font-size: 0.75rem !important;
        padding: 0.25rem 0.6rem !important;
        white-space: nowrap !important;
        margin-left: 0.35rem !important;
        display: inline-block !important;
    }
}