/**
 * Smart Parking Unified Red Theme Stylesheet
 * Centralized styles for public pages, solutions, industries, pricing, and portals.
 */

/* ==========================================================================
   1. GLOBAL VARIABLES & TOKENS
   ========================================================================== */
:root {
    --theme-color: #F02801;
    --theme-color-hover: #d82400;
    --theme-color2: #FFC000;
    --theme-dark: #161921;
    --theme-hero-gradient: linear-gradient(135deg, #161921 0%, #1c0808 50%, #F02801 100%);
    --theme-red-subtle: rgba(240, 40, 1, 0.08);

    /* Portal & Sidebar Variables */
    --sidebar-width: 270px;
    --brand-navy: #161921;
    --brand-teal: #F02801;
    --brand-cyan: #FFC000;
    --brand-blue: #1c0808;
    --primary-blue: #F02801;
    --dark-navy: #161921;
    --card-bg: #ffffff;
}

/* ==========================================================================
   2. GLOBAL BOOTSTRAP UTILITIES & OVERRIDES
   ========================================================================== */
.btn-primary,
.btn-primary:focus {
    background-color: #F02801 !important;
    border-color: #F02801 !important;
    color: #ffffff !important;
}

.btn-primary:hover,
.btn-primary:active {
    background-color: #d82400 !important;
    border-color: #d82400 !important;
    color: #ffffff !important;
}

.btn-outline-primary {
    color: #F02801 !important;
    border-color: #F02801 !important;
}

.btn-outline-primary:hover {
    background-color: #F02801 !important;
    border-color: #F02801 !important;
    color: #ffffff !important;
}

.bg-primary {
    background-color: #F02801 !important;
}

.bg-primary-subtle {
    background-color: rgba(240, 40, 1, 0.1) !important;
}

.text-primary {
    color: #F02801 !important;
}

.border-primary {
    border-color: #F02801 !important;
}

.badge.bg-primary {
    background-color: #F02801 !important;
    color: #ffffff !important;
}

.badge.bg-info {
    background-color: #FFC000 !important;
    color: #161921 !important;
}

.nav-pills .nav-link.active {
    background-color: #F02801 !important;
}

.form-control:focus,
.form-select:focus {
    border-color: #F02801 !important;
    box-shadow: 0 0 0 0.25rem rgba(240, 40, 1, 0.2) !important;
}

/* ==========================================================================
   3. HERO & BANNER COMPONENTS
   ========================================================================== */
.hero,
.solution-hero,
.page-hero-banner {
    background: var(--theme-hero-gradient);
    color: white;
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
}

.hero::after,
.solution-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: var(--theme-red-subtle);
    border-radius: 50%;
    pointer-events: none;
}

.hero h1,
.solution-hero h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
}

.hero p,
.solution-hero p {
    font-size: 18px;
    color: #f1f5f9;
    margin-top: 15px;
}

.hero-announcement {
    background: rgba(255, 192, 0, 0.15);
    border: 1px solid rgba(255, 192, 0, 0.3);
    color: #FFC000;
    font-size: 13.5px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta {
    background: var(--theme-hero-gradient);
    color: white;
    padding: 80px 0;
    border-radius: 30px;
}

/* ==========================================================================
   4. SOLUTIONS & CARDS
   ========================================================================== */
.section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--theme-dark);
}

.subtitle {
    color: #64748b;
    font-size: 18px;
}

.solution-card,
.feature-card,
.access-config-card,
.access-control-card,
.ev-config-card,
.event-config-card,
.iq-config-card,
.permit-simulator-box,
.qr-scanner-card,
.nfc-config-card,
.validation-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(22, 25, 33, 0.06);
    border: 1px solid #e2e8f0;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.solution-card:hover,
.feature-card:hover {
    box-shadow: 0 15px 35px rgba(240, 40, 1, 0.18);
    border-color: var(--theme-color);
    transform: translateY(-4px);
}

.solution-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(240, 40, 1, 0.12) 0%, rgba(255, 192, 0, 0.12) 100%);
    color: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
    transition: background 0.25s ease, color 0.25s ease;
}

.solution-card:hover .solution-icon {
    background: linear-gradient(135deg, var(--theme-dark) 0%, var(--theme-color) 100%);
    color: var(--theme-color2);
}

.solution-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(240, 40, 1, 0.1);
    color: var(--theme-color);
    border: 1px solid rgba(240, 40, 1, 0.25);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.solution-card h4 {
    font-size: 21px;
    font-weight: 700;
    color: var(--theme-dark);
    margin-bottom: 10px;
}

.solution-card p {
    color: #556070;
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.feature-meta-box {
    background: #f8fafc;
    border-radius: 14px;
    padding: 14px;
    margin-top: 10px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}

.color-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    transition: transform 0.2s ease;
    cursor: pointer;
}

.color-dot:hover {
    transform: scale(1.3);
}

.model-size-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 6px;
    background: #ffffff;
    color: var(--theme-dark);
    border: 1px solid #cbd5e1;
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.filter-tab-btn {
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 13.5px;
    transition: all 0.25s ease;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #475569;
}

.filter-tab-btn.active,
.filter-tab-btn:hover {
    background: linear-gradient(135deg, var(--theme-dark) 0%, var(--theme-color) 100%);
    color: #ffffff;
    border-color: var(--theme-color);
    box-shadow: 0 4px 12px rgba(240, 40, 1, 0.25);
}

.btn-explore {
    color: var(--theme-color);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

.btn-explore:hover {
    gap: 12px;
    color: var(--theme-color-hover);
}

/* App Simulation & Interactive Blocks */
/* SMARTPHONE MOCKUP & APP STYLES */
.phone-mockup-wrapper {
    max-width: 360px;
    margin: 0 auto;
}
.phone-mockup {
    width: 100%;
    height: 640px;
    background: #090f1d;
    border-radius: 46px;
    border: 12px solid #1e293b;
    box-shadow: 0 25px 60px rgba(6, 20, 47, 0.35);
    padding: 14px 12px;
    position: relative;
    color: #fff;
    overflow: hidden;
}
.phone-notch {
    width: 120px;
    height: 22px;
    background: #1e293b;
    border-radius: 0 0 14px 14px;
    margin: 0 auto 10px;
}
.app-screen {
    background: #06142f;
    border-radius: 30px;
    height: 555px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: system-ui, -apple-system, sans-serif;
    border: 1px solid rgba(255,255,255,0.08);
}
.app-sim-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 14px;
    margin-bottom: 12px;
    transition: all 0.25s ease;
}
.app-sim-card:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--theme-color2);
}
.app-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}
.app-eco-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    height: 100%;
    transition: all 0.3s ease;
}

.app-eco-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(22, 25, 33, 0.1);
    border-color: var(--theme-color);
}

.app-pill-btn {
    border: 2px solid #cbd5e1;
    color: #334155;
    font-weight: 600;
    transition: all 0.25s ease;
    background: white;
}

.app-pill-btn:hover,
.app-pill-btn.active {
    background: linear-gradient(135deg, var(--theme-dark) 0%, var(--theme-color) 100%) !important;
    color: white !important;
    border-color: var(--theme-color) !important;
    box-shadow: 0 6px 20px rgba(240, 40, 1, 0.25);
}

.download-box {
    background: var(--theme-hero-gradient);
    border-radius: 28px;
    padding: 40px;
    color: white;
    box-shadow: 0 20px 50px rgba(22, 25, 33, 0.2);
}

.ai-interactive-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    color: var(--theme-dark);
    box-shadow: 0 20px 40px rgba(22, 25, 33, 0.08);
    border: 1px solid #e2e8f0;
}

.chat-window {
    background: #f8fafc;
    border-radius: 18px;
    padding: 20px;
    height: 290px;
    overflow-y: auto;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}

.msg {
    margin-bottom: 15px;
    max-width: 85%;
    font-size: 14.5px;
    line-height: 1.6;
}

.msg.ai {
    background: #ffffff;
    color: var(--theme-dark);
    border: 1px solid #cbd5e1;
    padding: 13px 18px;
    border-radius: 18px 18px 18px 4px;
    box-shadow: 0 4px 12px rgba(22, 25, 33, 0.04);
}

.msg.user {
    background: linear-gradient(135deg, var(--theme-dark) 0%, var(--theme-color) 100%);
    color: white;
    padding: 13px 18px;
    border-radius: 18px 18px 4px 18px;
    margin-left: auto;
    box-shadow: 0 4px 12px rgba(240, 40, 1, 0.25);
}

.stat-pill {
    background: rgba(240, 40, 1, 0.1);
    color: var(--theme-color);
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 20px;
}

.signal-ping {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(240, 40, 1, 0.12);
    color: var(--theme-color);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    animation: pingPulse 2s infinite ease-in-out;
}

@keyframes pingPulse {
    0% { box-shadow: 0 0 0 0 rgba(240, 40, 1, 0.4); }
    70% { box-shadow: 0 0 0 16px rgba(240, 40, 1, 0); }
    100% { box-shadow: 0 0 0 0 rgba(240, 40, 1, 0); }
}

.access-logs-light {
    background: #f8fafc;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 13.5px;
    line-height: 1.6;
    color: #334155;
    min-height: 120px;
}

.access-feature-card {
    background: white;
    border-radius: 20px;
    padding: 32px 26px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.access-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(22, 25, 33, 0.12);
}

.access-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
    transition: transform 0.3s ease;
}

.access-feature-card:hover .access-icon-box {
    transform: scale(1.08);
}

.ev-charging-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    color: var(--theme-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.charge-bar-bg {
    background: #e2e8f0;
    height: 12px;
    border-radius: 10px;
    overflow: hidden;
}

.charge-bar-fill {
    background: linear-gradient(90deg, var(--theme-color) 0%, var(--theme-color2) 100%);
    height: 100%;
    width: 45%;
    transition: width 0.4s ease;
}

.ev-feature-card {
    background: white;
    border-radius: 20px;
    padding: 32px 26px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.ev-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(22, 25, 33, 0.12);
}

.ev-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
    transition: transform 0.3s ease;
}

.ev-feature-card:hover .ev-icon-box {
    transform: scale(1.08);
}

.event-pass-ticket {
    background: white;
    border-radius: 24px;
    padding: 32px;
    color: var(--theme-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.event-pass-ticket::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    background: rgba(240, 40, 1, 0.1);
    border-radius: 50%;
    filter: blur(25px);
}

.evt-feature-card {
    background: white;
    border-radius: 20px;
    padding: 32px 26px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.evt-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(22, 25, 33, 0.12);
}

.evt-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
    transition: transform 0.3s ease;
}

.evt-feature-card:hover .evt-icon-box {
    transform: scale(1.08);
}

.gate-card {
    background: #161921;
    color: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 25px 50px rgba(22, 25, 33, 0.35);
    border: 1px solid rgba(240, 40, 1, 0.35);
}

.gate-bar {
    height: 14px;
    width: 100%;
    background: #ef4444;
    border-radius: 7px;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: left center;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.gate-bar.open {
    background: #10b981;
    transform: rotate(-75deg);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.6);
}

.lpr-camera-box {
    border: 2px dashed rgba(240, 40, 1, 0.4);
    border-radius: 16px;
    padding: 22px;
    background: rgba(240, 40, 1, 0.08);
    text-align: center;
}

.plate-display {
    background: #ffea00;
    color: #111;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 900;
    font-size: 30px;
    padding: 10px 28px;
    border-radius: 10px;
    border: 3px solid #111;
    display: inline-block;
    letter-spacing: 4px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(22, 25, 33, 0.05);
    height: 100%;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(240, 40, 1, 0.15);
    border-color: var(--theme-color);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(240, 40, 1, 0.12) 0%, rgba(255, 192, 0, 0.12) 100%);
    color: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(22, 25, 33, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.remote-lane-box {
    background: var(--theme-hero-gradient);
    color: white;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 192, 0, 0.3);
}

.iq-dashboard-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    color: var(--theme-dark);
    box-shadow: 0 15px 40px rgba(22, 25, 33, 0.08);
    border: 1px solid #e2e8f0;
    border-top: 4px solid var(--theme-color);
    position: relative;
    overflow: hidden;
}

.metric-box-light {
    background: #f8fafc;
    border-radius: 18px;
    padding: 20px 16px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-box-light:hover {
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    border-color: var(--theme-color);
}

.bar-chart-col-light {
    background: linear-gradient(180deg, var(--theme-color2) 0%, var(--theme-color) 100%);
    border-radius: 6px 6px 0 0;
    width: 100%;
    transition: height 0.5s ease-in-out;
}

.iq-feature-card {
    background: white;
    border-radius: 20px;
    padding: 32px 26px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.iq-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(22, 25, 33, 0.12);
}

.iq-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
    transition: transform 0.3s ease;
}

.iq-feature-card:hover .iq-icon-box {
    transform: scale(1.08);
}

.loc-btn {
    border-radius: 40px;
    padding: 14px 20px;
    font-weight: 700;
    text-align: left;
    transition: all 0.25s ease;
    border: 1.5px solid #e2e8f0;
    background: #ffffff;
    color: var(--theme-dark);
}

.loc-btn.active, .loc-btn:hover {
    background: linear-gradient(135deg, var(--theme-dark) 0%, var(--theme-color) 100%);
    color: #ffffff;
    border-color: var(--theme-color);
    box-shadow: 0 6px 18px rgba(240, 40, 1, 0.25);
}

.digital-permit-pass {
    background: linear-gradient(145deg, #161921 0%, #1c0808 60%, #2a0b0b 100%);
    border-radius: 24px;
    padding: 32px;
    color: white;
    box-shadow: 0 20px 50px rgba(22, 25, 33, 0.3);
    border: 2px solid var(--theme-color2);
    position: relative;
    overflow: hidden;
}

.digital-permit-pass::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 192, 0, 0.15);
    border-radius: 50%;
    filter: blur(30px);
}

.permit-feature-card {
    background: white;
    border-radius: 20px;
    padding: 32px 26px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.permit-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(22, 25, 33, 0.12);
}

.permit-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
    transition: transform 0.3s ease;
}

.permit-feature-card:hover .permit-icon-box {
    transform: scale(1.08);
}

.qr-terminal-preview {
    background: linear-gradient(145deg, #161921 0%, #1c0808 60%, #2a0b0b 100%);
    border-radius: 24px;
    padding: 32px;
    color: white;
    box-shadow: 0 20px 50px rgba(22, 25, 33, 0.3);
    border: 2px solid var(--theme-color);
    position: relative;
    overflow: hidden;
}

.qr-viewfinder {
    width: 180px;
    height: 180px;
    border: 3px dashed var(--theme-color2);
    border-radius: 20px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: rgba(255, 192, 0, 0.08);
}

.scan-line-anim {
    position: absolute;
    width: 90%;
    height: 3px;
    background: var(--theme-color);
    box-shadow: 0 0 12px var(--theme-color);
    animation: scanMove 2.2s infinite ease-in-out;
}

@keyframes scanMove {
    0% { top: 8%; }
    50% { top: 88%; }
    100% { top: 8%; }
}

.qr-feature-card {
    background: white;
    border-radius: 20px;
    padding: 32px 26px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.qr-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(22, 25, 33, 0.12);
}

.qr-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
    transition: transform 0.3s ease;
}

.qr-feature-card:hover .qr-icon-box {
    transform: scale(1.08);
}

.nfc-terminal-preview {
    background: white;
    border-radius: 24px;
    padding: 32px;
    color: var(--theme-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.nfc-ring-target {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(240, 40, 1, 0.08);
    border: 2px dashed var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.tap-feature-card {
    background: white;
    border-radius: 20px;
    padding: 32px 26px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.tap-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(22, 25, 33, 0.12);
}

.tap-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
    transition: transform 0.3s ease;
}

.tap-feature-card:hover .tap-icon-box {
    transform: scale(1.08);
}

.merchant-pos-terminal {
    background: white;
    border-radius: 24px;
    padding: 32px;
    color: var(--theme-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.val-feature-card {
    background: white;
    border-radius: 20px;
    padding: 32px 26px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.val-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(22, 25, 33, 0.12);
}

.val-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
    transition: transform 0.3s ease;
}

.val-feature-card:hover .val-icon-box {
    transform: scale(1.08);
}











/* ==========================================================================
   5. INDUSTRY COMPONENTS
   ========================================================================== */
.industry-feature-card,
.air-card,
.air-feature-card,
.corp-card,
.corp-feature-card,
.hosp-card,
.hosp-feature-card,
.hospit-card,
.hospit-feature-card,
.muni-card,
.muni-feature-card,
.uni-card,
.uni-feature-card {
    background: white;
    border-radius: 20px;
    padding: 36px 30px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.industry-feature-card:hover,
.air-feature-card:hover,
.corp-feature-card:hover,
.hosp-feature-card:hover,
.hospit-feature-card:hover,
.muni-feature-card:hover,
.uni-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(22, 25, 33, 0.1);
    border-color: var(--theme-color);
}

.transition-hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.transition-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(22, 25, 33, 0.08) !important;
}

.hover-scale {
    transition: transform 0.2s ease;
}

.hover-scale:hover {
    transform: scale(1.02);
}


.industry-icon-box,
.air-icon-box,
.corp-icon-box,
.hosp-icon-box,
.hospit-icon-box,
.muni-icon-box,
.uni-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
    transition: transform 0.3s ease;
}


.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--theme-color) 0%, var(--theme-color-hover) 100%);
    color: white;
    font-weight: 800;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-pillar-card {
    background: white;
    border-radius: 20px;
    padding: 32px 26px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
}

/* ==========================================================================
   6. PRICING COMPONENTS
   ========================================================================== */
.price-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 15px 40px rgba(22, 25, 33, 0.08);
    transition: all 0.35s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(240, 40, 1, 0.15);
}

.price {
    font-size: 46px;
    font-weight: 800;
    color: var(--theme-color);
}

.price span {
    font-size: 18px;
    color: #64748b;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.price-card li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.price-card li i {
    color: var(--theme-color);
    margin-right: 10px;
}

.featured {
    background: var(--theme-hero-gradient);
    color: white;
    transform: scale(1.04);
    border: 2px solid var(--theme-color2);
}

.featured .price {
    color: white;
}

.featured li {
    border-color: rgba(255, 255, 255, 0.15);
}

.featured li i {
    color: var(--theme-color2);
}

.badge-popular {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--theme-color2);
    color: var(--theme-dark);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.compare-box {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   7. DASHBOARD & PORTAL LAYOUTS (USER, OWNER, ADMIN)
   ========================================================================== */
.sidebar {
    width: var(--sidebar-width);
    height: 100vh;
    overflow-y: auto;
    background: linear-gradient(180deg, #161921 0%, #1c0808 50%, #2a0b0b 100%);
    position: fixed;
    top: 0;
    left: 0;
    padding: 24px 18px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 4px 0 24px rgba(22, 25, 33, 0.25);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.sidebar-brand {
    color: white;
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.sidebar-nav {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    color: #f1d3ce;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.25s ease;
}

.sidebar-link i {
    font-size: 19px;
    width: 24px;
    text-align: center;
    color: #ff6b52;
}

.sidebar-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(3px);
}

.sidebar-link.active {
    background: linear-gradient(135deg, var(--theme-color) 0%, var(--theme-color-hover) 100%);
    color: white !important;
    box-shadow: 0 8px 20px rgba(240, 40, 1, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar-link.active i {
    color: #ffffff;
}

.status-widget {
    background: rgba(240, 40, 1, 0.1);
    border: 1px solid rgba(240, 40, 1, 0.25);
    border-radius: 14px;
    padding: 14px;
    color: white;
}

.main-wrapper {
    margin-left: var(--sidebar-width) !important;
    min-height: 100vh;
}

.top-header {
    height: 75px;
    background: white;
    border-bottom: 2px solid #e2e8f0;
    padding: 0 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(22, 25, 33, 0.04);
}

.content-container {
    padding: 30px 35px;
}

.stat-card {
    background: white;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid #f0f4f9;
    box-shadow: 0 6px 20px rgba(0,0,0,0.03);
    transition: transform 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.icon-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* Mobile Portal Adaptation */
@media (max-width: 991.98px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 10050 !important;
    }

    .sidebar.show {
        transform: translateX(0);
    }

    .main-wrapper {
        margin-left: 0 !important;
    }

    .top-header {
        padding: 0 15px !important;
    }

    .content-container {
        padding: 20px 15px !important;
    }

    .sidebar-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 10040;
        display: none;
    }

    .sidebar-backdrop.show {
        display: block;
    }
}



