/* ==========================================================================
   RestoQuick POS - Premium CSS Style Sheet
   Designed for Speed, Conversions, Local Trust and Full Mobile Responsiveness
   ========================================================================== */

/* 1. Design System Tokens & Base Theme Settings */
:root {
    /* Fonts */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Base Dimensions */
    --nav-height: 80px;
    --border-radius-lg: 16px;
    --border-radius-md: 12px;
    --border-radius-sm: 8px;
    --transition-speed: 0.3s;
    --max-width: 1200px;
}

/* Light Theme Variables */
body.light-mode {
    --bg-primary: #FCFCFD;
    --bg-secondary: #F4F5F7;
    --bg-card: #FFFFFF;
    --text-primary: #1D2939;
    --text-secondary: #475467;
    --text-muted: #98A2B3;
    --primary-color: #FF5B22;
    --primary-hover: #E04A15;
    --primary-light: #FFF0EB;
    --accent-green: #12B76A;
    --accent-red: #FDA29B;
    --accent-red-text: #B42318;
    --border-color: #E4E7EC;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.08);
    --card-hover-border: #FF5B22;
}

/* Dark Theme Variables */
body.dark-mode {
    --bg-primary: #0B0F19;
    --bg-secondary: #131B2E;
    --bg-card: #1E293B;
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --primary-color: #FF5B22;
    --primary-hover: #FF7547;
    --primary-light: #2A1B15;
    --accent-green: #34D399;
    --accent-red: #F87171;
    --accent-red-text: #EF4444;
    --border-color: #334155;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.4);
    --card-hover-border: #FF5B22;
}

/* 2. Global Resets & Elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-speed), color var(--transition-speed);
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* 3. Utility Styles & Components */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px auto;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-tag {
    display: inline-block;
    color: var(--primary-color);
    background-color: var(--primary-light);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-subhead {
    font-size: 1.15rem;
    color: var(--text-secondary);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 91, 34, 0.25);
}

.btn-secondary {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--border-color);
    transform: translateY(-2px);
}

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

.btn-whatsapp:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.95rem;
}

.btn-xs {
    padding: 8px 14px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    transition: all var(--transition-speed);
}

.btn-icon:hover {
    background-color: var(--bg-secondary);
    border-color: var(--text-muted);
}

.btn-icon svg {
    width: 20px;
    height: 20px;
}

/* Badge styling */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: inline-block;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.7; }
}

/* 4. Sticky Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: rgba(252, 252, 253, 0.9);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    backdrop-filter: blur(12px);
    transition: all var(--transition-speed);
}

body.dark-mode .navbar {
    background-color: rgba(11, 15, 25, 0.9);
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-sm);
}

.logo-icon svg {
    width: 22px;
    height: 22px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.logo-highlight {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.nav-item:hover {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 10px;
    transition: all var(--transition-speed);
}

/* Mobile navigation slide-out */
.mobile-nav {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--bg-card);
    border-bottom: 0px solid var(--border-color);
    z-index: 999;
    overflow: hidden;
    transition: all var(--transition-speed) ease-in-out;
}

.mobile-nav.open {
    height: calc(100vh - var(--nav-height));
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-content {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-item {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 8px 0;
}

.mobile-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 10px 0;
}

/* 5. Hero Section */
.hero-section {
    padding-top: calc(var(--nav-height) + 64px);
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-subhead {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.hero-trust-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.trust-bullet {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

.check-icon {
    color: var(--primary-color);
    background-color: var(--primary-light);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.local-ratings {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.stars {
    color: #FDB022;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 0.9rem;
}

/* Mockup Frame & Mini POS CSS */
.mockup-frame {
    background-color: #1E293B;
    border: 6px solid #334155;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    width: 100%;
}

.mockup-header {
    background-color: #0F172A;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mockup-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-header .dot.red { background-color: #EF4444; }
.mockup-header .dot.yellow { background-color: #F59E0B; }
.mockup-header .dot.green { background-color: #10B981; }

.mockup-title {
    color: #94A3B8;
    font-size: 0.75rem;
    font-family: var(--font-body);
    margin-left: 12px;
}

.mini-pos-preview {
    background-color: #0F172A;
    color: #F8FAFC;
    padding: 20px;
    font-family: var(--font-body);
}

.mini-pos-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: bold;
    color: #94A3B8;
    border-bottom: 1px solid #1E293B;
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.live-pulse {
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    animation: live-blink 1.2s infinite;
}

@keyframes live-blink {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.mini-pos-main {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 16px;
}

.mini-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mini-item {
    background-color: #1E293B;
    padding: 10px;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
}

.mini-item .price {
    color: var(--primary-color);
    font-weight: bold;
}

.mini-cart {
    background-color: #1E293B;
    padding: 12px;
    border-radius: var(--border-radius-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-title {
    font-size: 0.75rem;
    color: #94A3B8;
    margin-bottom: 8px;
    font-weight: bold;
}

.cart-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    margin-bottom: 6px;
}

.cart-total {
    border-top: 1px solid #334155;
    padding-top: 8px;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: bold;
    color: #10B981;
}

.mini-pos-footer {
    margin-top: 16px;
    text-align: center;
    border-top: 1px solid #1E293B;
    padding-top: 16px;
}

/* 6. Problem/Solution Section */
.problem-solution-section {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.compare-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.compare-card.new-way {
    border-left: 4px solid var(--accent-green);
}

.compare-card.old-way {
    border-left: 4px solid var(--accent-red-text);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 100px;
}

.badge-red {
    background-color: #FEE4E2;
    color: #B42318;
}

body.dark-mode .badge-red {
    background-color: #551414;
    color: #FCA5A5;
}

.badge-green {
    background-color: #D1FADF;
    color: #027A48;
}

body.dark-mode .badge-green {
    background-color: #064E3B;
    color: #A7F3D0;
}

.compare-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.compare-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.list-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.icon-red { color: var(--accent-red-text); }
.icon-green { color: var(--accent-green); }

/* 7. FULL POS SIMULATOR SECTION */
.simulator-section {
    padding: 100px 0;
}

.simulator-wrapper {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

/* Tabs list */
.simulator-tabs {
    display: flex;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
}

.simulator-tabs::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.sim-tab-btn {
    flex: 1;
    padding: 18px 24px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: all var(--transition-speed);
    text-align: center;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sim-tab-btn:hover {
    color: var(--primary-color);
    background-color: var(--bg-primary);
}

.sim-tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background-color: var(--bg-primary);
}

.badge-indicator {
    background-color: var(--primary-color);
    color: #FFFFFF;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 100px;
    margin-left: 6px;
    font-weight: bold;
}

/* Screen console container */
.simulator-screen {
    padding: 32px;
    background-color: var(--bg-primary);
    min-height: 520px;
}

.sim-tab-content {
    display: none;
}

.sim-tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

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

.sim-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

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

/* TAB 1: BILLING SPECIFIC */
.billing-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
}

.menu-side {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.menu-card-btn {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.menu-card-btn:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.food-emoji {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.food-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 4px;
}

.food-price {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.billing-table-selector {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.billing-table-selector label {
    font-size: 0.85rem;
    font-weight: 600;
}

.form-select-sm {
    padding: 6px 12px;
    font-size: 0.85rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-card);
    color: var(--text-primary);
}

/* Cart Panel Specifics */
.cart-side {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.btn-clear-cart {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
}

.btn-clear-cart:hover {
    color: var(--accent-red-text);
}

.cart-items-list {
    min-height: 180px;
    max-height: 240px;
    overflow-y: auto;
    padding: 16px 0;
}

.empty-cart-msg {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
    margin-top: 48px;
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-color);
    font-size: 0.85rem;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-qty {
    width: 20px;
    height: 20px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-totals-area {
    margin-top: auto;
    background-color: var(--bg-secondary);
    padding: 16px;
    border-radius: var(--border-radius-sm);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.grand-total {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--accent-green);
}

.discount-color {
    color: var(--primary-color);
    font-weight: bold;
}

.total-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 4px 0;
}

.coupon-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Checkbox */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 24px;
    cursor: pointer;
    font-size: 0.8rem;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 3px;
}

.checkbox-container input:checked ~ .checkbox-checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkbox-checkmark:after {
    display: block;
}

.checkbox-container .checkbox-checkmark:after {
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.btn-bill-print {
    margin-top: 16px;
    padding: 14px;
}

.btn-bill-print:disabled {
    background-color: var(--border-color);
    color: var(--text-muted);
    cursor: not-allowed;
    box-shadow: none !important;
    transform: none !important;
}

/* TAB 2: TABLES MANAGEMENT SPECIFIC */
.table-mgmt-container {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
}

.table-legend {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    font-weight: 500;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.legend-dot.vacant { background-color: var(--text-muted); }
.legend-dot.occupied { background-color: var(--primary-color); }

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 16px;
}

.table-node {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 20px;
    text-align: center;
    background-color: var(--bg-primary);
    transition: all var(--transition-speed);
}

.table-node.vacant {
    border-top: 4px solid var(--text-muted);
}

.table-node.occupied {
    border-top: 4px solid var(--primary-color);
    background-color: var(--primary-light);
}

.table-number {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.table-status-label {
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.table-node.vacant .table-status-label { color: var(--text-muted); }
.table-node.occupied .table-status-label { color: var(--primary-color); }

.table-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.table-items {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    min-height: 18px;
    margin-bottom: 16px;
}

.btn-table-action {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.btn-table-action:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* TAB 3: KOT SPECIFIC */
.kot-container {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
}

.kot-tickets-flex {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.kot-card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-primary);
    width: calc(33.33% - 14px);
    min-width: 250px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.kot-card-header {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 12px;
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
}

.kot-timer {
    color: var(--primary-color);
    font-weight: bold;
}

.kot-card-body {
    padding: 16px;
    flex-grow: 1;
}

.kot-item-list {
    list-style: none;
    font-size: 0.85rem;
    font-weight: 600;
}

.kot-item-list li {
    margin-bottom: 8px;
    border-left: 2px solid var(--primary-color);
    padding-left: 8px;
}

.kot-card-footer {
    padding: 12px;
    border-top: 1px solid var(--border-color);
}

.btn-kot-complete {
    width: 100%;
    padding: 8px;
}

/* TAB 4: CLOUD KITCHEN SPECIFIC */
.cloud-kitchen-container {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
}

.channel-integrations {
    display: flex;
    gap: 10px;
}

.channel-pill {
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid var(--border-color);
}

.channel-pill.swiggy { background-color: #FFF0EB; color: #FC8019; }
.channel-pill.zomato { background-color: #FFF2F4; color: #CB202D; }
.channel-pill.direct { background-color: #EEF4FF; color: #1570EF; }

.cloud-orders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.cloud-order-card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-primary);
    padding: 16px;
    display: flex;
    flex-direction: column;
    min-height: 180px;
}

.cloud-order-card.swiggy-border { border-top: 4px solid #FC8019; }
.cloud-order-card.zomato-border { border-top: 4px solid #CB202D; }
.cloud-order-card.direct-border { border-top: 4px solid #1570EF; }

.cloud-card-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.badge-swiggy { color: #FC8019; font-weight: bold; }
.badge-zomato { color: #CB202D; font-weight: bold; }
.badge-direct { color: #1570EF; font-weight: bold; }

.cloud-time {
    color: var(--text-muted);
}

.cloud-card-body {
    flex-grow: 1;
}

.cloud-order-id {
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.cloud-items {
    list-style: none;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.cloud-items li {
    margin-bottom: 4px;
}

.cloud-card-footer {
    margin-top: 12px;
}

.status-pill {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
}

.status-pill.preparing {
    background-color: #FEF0C7;
    color: #B54708;
}

/* TAB 5: ANALYTICS SPECIFIC */
.analytics-container {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
}

.date-badge {
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--primary-color);
}

.stats-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.stat-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 16px;
}

.stat-title {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.stat-change {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.stat-change.positive { color: var(--accent-green); font-weight: bold; }

.analytics-charts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}

.chart-wrapper {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 20px;
}

.chart-wrapper h4 {
    font-size: 0.95rem;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.svg-chart-container {
    position: relative;
    width: 100%;
}

.svg-chart {
    width: 100%;
    height: auto;
}

.chart-label {
    font-size: 10px;
    fill: var(--text-muted);
    font-weight: 500;
}

/* Horizontal top bars representation */
.top-items-bars {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bar-row {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
}

.item-name {
    width: 110px;
    font-weight: 600;
}

.bar-track {
    flex-grow: 1;
    height: 12px;
    background-color: var(--bg-secondary);
    border-radius: 100px;
    margin: 0 16px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 100px;
    transition: width 1s ease;
}

.item-qty {
    width: 70px;
    text-align: right;
    color: var(--text-muted);
    font-weight: bold;
}

/* 8. Feature Grid Section */
.features-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed);
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 9. Operations Workflow Section */
.workflow-section {
    padding: 100px 0;
}

.workflow-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
}

.step-card {
    flex: 1;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.step-number {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.step-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.85rem;
}

.step-arrow {
    font-size: 2rem;
    color: var(--text-muted);
}

/* 10. Why Us Section */
.why-us-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.why-us-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.body-lg {
    font-size: 1.15rem;
    margin-bottom: 32px;
}

.why-bullets {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-bullet {
    display: flex;
    gap: 16px;
}

.bullet-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: bold;
    flex-shrink: 0;
}

.why-bullet h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.why-bullet p {
    font-size: 0.9rem;
}

.why-us-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-stat-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.stat-big {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
    line-height: 1;
}

.why-stat-card p {
    font-size: 0.9rem;
}

/* 11. Industries Served Section */
.industries-section {
    padding: 100px 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.industry-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed);
}

.industry-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.ind-emoji {
    font-size: 2.25rem;
    display: block;
    margin-bottom: 16px;
}

.industry-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.industry-card p {
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.ind-link {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.85rem;
}

.ind-link:hover {
    text-decoration: underline;
}

/* 12. Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    margin: 16px 0;
    color: var(--text-primary);
}

.reviewer-info {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
}

.reviewer-info strong {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text-primary);
}

.reviewer-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.reviews-trust-footer {
    margin-top: 48px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.g-logo {
    font-weight: bold;
    background-color: #EA4335;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
}

.g-rating {
    font-weight: 700;
    color: var(--text-primary);
}

.g-count {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* 13. FAQ Section Accordion styling */
.faq-section {
    padding: 100px 0;
}

.faq-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
}

.faq-intro h2 {
    font-size: 2rem;
    margin: 12px 0 20px 0;
}

.faq-intro p {
    margin-bottom: 24px;
}

.faq-accordion-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.faq-question-btn {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.faq-question-btn:hover {
    background-color: var(--bg-secondary);
}

.faq-chevron {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: transform var(--transition-speed);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer-panel {
    padding: 0 24px 20px 24px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 14. Contact Form & trust section */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}

.text-orange {
    color: var(--primary-color) !important;
}

.contact-info-block h2 {
    font-size: 2.25rem;
    margin: 12px 0 20px 0;
}

.contact-bullets {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.c-bullet {
    display: flex;
    gap: 14px;
}

.c-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.c-bullet strong {
    font-family: var(--font-heading);
    font-size: 1.05rem;
}

.c-bullet p {
    font-size: 0.9rem;
}

/* Local styled visual Map Mockup for speed */
.google-map-container {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    height: 180px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, var(--border-color) 1.5px, transparent 1.5px),
        radial-gradient(circle, var(--border-color) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.4;
    z-index: 1;
}

.map-overlay {
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-sm);
    padding: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    max-width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

body.dark-mode .map-overlay {
    background-color: rgba(30, 41, 59, 0.95);
}

.map-overlay strong {
    font-size: 0.85rem;
    color: var(--text-primary);
}

.map-overlay span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.map-pin {
    font-size: 1.45rem;
}

/* Contact Form Grid styling */
.contact-form-block {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.contact-form-block h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-subtext {
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-input, .form-select {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    transition: border-color var(--transition-speed);
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.error-msg {
    color: var(--accent-red-text);
    font-size: 0.75rem;
    margin-top: 4px;
    display: none;
}

.form-group.has-error .form-input, 
.form-group.has-error .form-select {
    border-color: var(--accent-red-text);
}

.form-group.has-error .error-msg {
    display: block;
}

.btn-submit-form {
    padding: 16px;
    margin-top: 8px;
}

/* Form Success state overlay */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    z-index: 10;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: fadeIn 0.4s ease-out;
}

.success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent-green);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 24px;
}

.form-success-overlay h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.form-success-overlay p {
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.success-highlight-box {
    background-color: var(--bg-secondary);
    padding: 16px 20px;
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--accent-green);
    margin: 12px 0 24px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* 15. Footer */
.footer {
    background-color: #0F172A;
    color: #94A3B8;
    padding: 80px 0 40px 0;
    border-top: 1px solid #1E293B;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
}

.footer-brand-side .logo-link {
    margin-bottom: 20px;
}

.text-white {
    color: #FFFFFF !important;
}

.footer-desc {
    color: #64748B;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.local-office-trust {
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.local-office-trust strong {
    color: #FFFFFF;
}

.footer-links-side {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.footer-column h4 {
    color: #FFFFFF;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.footer-column a {
    display: block;
    color: #64748B;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

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

.footer-divider {
    border: none;
    border-top: 1px solid #1E293B;
    margin: 48px 0 24px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 16px;
}

.seo-footer-citation {
    margin-top: 16px;
    font-size: 0.75rem;
    color: #475569;
    width: 100%;
}

.seo-footer-citation a {
    color: #64748B;
    text-decoration: underline;
}

/* 16. WhatsApp Floating CTA */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #25D366;
    color: #FFFFFF;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 998;
    transition: transform var(--transition-speed);
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1);
}

.whatsapp-floating-btn svg {
    width: 28px;
    height: 28px;
}

.wa-tooltip {
    position: absolute;
    right: 68px;
    background-color: #1E293B;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-speed);
    box-shadow: var(--shadow-sm);
}

.whatsapp-floating-btn:hover .wa-tooltip {
    opacity: 1;
}

/* Toast Alerts */
.toast-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1001;
}

.toast {
    background-color: #1E293B;
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-md);
    font-size: 0.85rem;
    font-weight: 500;
    border-left: 4px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 240px;
    animation: slideUp 0.3s ease-out;
}

.toast.toast-success {
    border-left-color: var(--accent-green);
}

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

.btn-close-toast {
    background: none;
    border: none;
    color: #94A3B8;
    cursor: pointer;
    font-size: 0.85rem;
}

/* Desktop-only vs mobile-only visibility triggers */
.desktop-only {
    display: flex;
}

/* ==========================================================================
   17. Responsive Breakpoints Layout
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

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

    .hero-ctas {
        justify-content: center;
    }

    .hero-trust-bullets {
        align-items: center;
    }

    .local-ratings {
        justify-content: center;
    }

    .hero-visual {
        max-width: 580px;
        width: 100%;
        margin: 0 auto;
    }

    .billing-container {
        grid-template-columns: 1fr;
    }

    .why-us-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-us-stats {
        flex-direction: row;
    }

    .why-stat-card {
        flex: 1;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    /* Sticky Nav adjustments */
    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    /* Keep booking flow CTAs extremely visible in mobile navigation header */
    .desktop-only {
        display: none !important;
    }

    .navbar {
        height: 70px;
    }

    .mobile-nav {
        top: 70px;
    }

    .hero-section {
        padding-top: calc(70px + 32px);
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .section-header h2 {
        font-size: 1.85rem;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .workflow-steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 8px 0;
    }

    .why-us-stats {
        flex-direction: column;
    }

    .analytics-charts-grid {
        grid-template-columns: 1fr;
    }

    .sim-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-links-side {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-floating-btn {
        width: 48px;
        height: 48px;
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-floating-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .contact-form-block {
        padding: 24px;
    }
    
    .simulator-screen {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .hero-ctas a {
        width: 100%;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tables-grid {
        grid-template-columns: 1fr;
    }

    .footer-links-side {
        grid-template-columns: 1fr;
    }
}
