/* =========================================
   eMeditech Plus – eHospitality Suite CSS
   Modern Design System  |  Violet Edition
   ========================================= */

:root {
    /* Restaurant Brand Colors */
    --resto-primary: #FF6B35;
    --resto-secondary: #F7C59F;
    --resto-dark: #c0391b;

    /* Hotel Brand Colors */
    --hotel-primary: #1A6FBC;
    --hotel-secondary: #4ECDC4;
    --hotel-dark: #0d4d8a;

    /* Violet Accent – unifying tinge */
    --violet: #7C3AED;
    --violet-light: #A78BFA;
    --violet-soft: #EDE9FE;
    --violet-mid: #6D28D9;

    /* Neutral */
    --dark: #0E0B1E;
    --dark-2: #1A1230;
    --grey: #6B7280;
    --light-grey: #F5F3FF;
    --white: #FFFFFF;

    /* Common Gradients */
    --gradient-resto: linear-gradient(135deg, #FF6B35, #F7A261);
    --gradient-hotel: linear-gradient(135deg, #1A6FBC, #4ECDC4);
    --gradient-violet: linear-gradient(135deg, #7C3AED, #A78BFA);
    --gradient-hero: linear-gradient(145deg, #0a0618 0%, #1a0e3a 30%, #2d1160 55%, #4a1580 75%, #2d1160 100%);
    --gradient-dark-section: linear-gradient(145deg, #0a0618 0%, #1a0e3a 40%, #2d1160 70%, #1a0e3a 100%);

    --border-radius: 16px;
    --border-radius-sm: 8px;
    --shadow: 0 8px 32px rgba(124,58,237,0.10);
    --shadow-lg: 0 16px 48px rgba(124,58,237,0.18);

    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-primary);
    color: var(--dark);
    background: #faf8ff;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; }

.gradient-text {
    background: linear-gradient(135deg, #FF6B35, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-text-hotel {
    background: linear-gradient(135deg, #1A6FBC, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-text-violet {
    background: var(--gradient-violet);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Sections ---- */
.section-padding { padding: 90px 0; }
.section-tag {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(167,139,250,0.10));
    border: 1px solid rgba(124,58,237,0.3);
    color: var(--violet);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-tag.light {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}
.hotel-tag-text { color: var(--hotel-primary); }
.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.25;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--grey);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ======== TOP BAR ======== */
.top-bar {
    background: linear-gradient(90deg, #0E0B1E 0%, #2D1B69 50%, #1A1230 100%);
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(124,58,237,0.2);
}
.top-bar .top-info a, .top-bar .top-info li {
    color: rgba(255,255,255,0.8);
    display: inline-flex;
    align-items: center;
}
.top-bar .top-info a:hover { color: var(--resto-secondary); }
.top-bar .top-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem;
    transition: all 0.3s;
}
.top-bar .top-social a:hover {
    background: var(--gradient-violet);
    color: #fff;
    transform: translateY(-2px);
}

/* ======== NAVBAR ======== */
.navbar-main {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(124,58,237,0.10);
    padding: 12px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 24px rgba(124,58,237,0.08);
}
.navbar-main.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(124,58,237,0.16);
}
.brand-logo { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
}
.brand-accent { color: var(--violet); }
.brand-tagline {
    font-size: 0.65rem;
    color: var(--grey);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
}
.navbar-main .nav-link {
    font-weight: 500;
    color: var(--dark-2) !important;
    font-size: 0.92rem;
    padding: 8px 12px !important;
    border-radius: 8px;
    transition: all 0.3s;
}
.navbar-main .nav-link:hover, .navbar-main .nav-link.active {
    color: var(--violet) !important;
    background: rgba(124,58,237,0.07);
}

/* Mega Menu */
.mega-menu {
    border: none;
    box-shadow: 0 16px 48px rgba(124,58,237,0.15);
    border-radius: var(--border-radius);
    padding: 12px;
    min-width: 340px;
    border-top: 3px solid var(--violet);
}
.mega-menu-content { display: flex; flex-direction: column; gap: 8px; }
.mega-product-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    color: var(--dark) !important;
    transition: all 0.3s;
}
.mega-product-link:hover { background: var(--light-grey); transform: translateX(4px); }
.mega-product-link strong { display: block; font-size: 0.95rem; font-weight: 700; }
.mega-product-link span { display: block; font-size: 0.78rem; color: var(--grey); }
.mega-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.mega-icon.resto { background: var(--gradient-resto); color: white; }
.mega-icon.hotel { background: var(--gradient-hotel); color: white; }

/* Demo Button */
.btn-demo {
    background: var(--gradient-violet);
    color: white !important;
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    box-shadow: 0 4px 16px rgba(124,58,237,0.35);
    transition: all 0.3s;
}
.btn-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124,58,237,0.5);
    color: white !important;
}

/* ======== HERO SECTION ======== */
.hero-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.hero-bg-animation {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(180,60,255,0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 15%, rgba(255,100,200,0.18) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 90%, rgba(120,40,220,0.2) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 50%, rgba(200,80,255,0.12) 0%, transparent 40%),
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.03) 0%, transparent 30%);
    animation: bgShift 10s ease-in-out infinite alternate;
}
@keyframes bgShift {
    0% { opacity: 0.8; }
    100% { opacity: 1; transform: scale(1.04); }
}
.hero-particles {
    position: absolute; inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}
.hero-particles .sparkle {
    position: absolute;
    width: 3px; height: 3px;
    background: white;
    border-radius: 50%;
    animation: sparkleAnim var(--dur) ease-in-out infinite;
    opacity: 0;
}
@keyframes sparkleAnim {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: var(--opacity); transform: scale(1.2); }
}
.hero-section .container { position: relative; z-index: 2; }
.hero-badge {
    display: inline-block;
}
.hero-badge span {
    background: rgba(124,58,237,0.25);
    border: 1px solid rgba(167,139,250,0.5);
    color: #c4b5fd;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-subtitle {
    color: rgba(255,255,255,0.75);
    font-size: 1.08rem;
    line-height: 1.75;
    max-width: 520px;
}
.hero-actions .btn-hero-primary {
    background: linear-gradient(135deg, #7C3AED, #FF6B35);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 6px 24px rgba(124,58,237,0.45);
    transition: all 0.3s;
}
.hero-actions .btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(124,58,237,0.6);
}
.btn-hero-primary {
    background: linear-gradient(135deg, #7C3AED, #FF6B35);
    color: white !important;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 6px 24px rgba(124,58,237,0.4);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(124,58,237,0.55);
    color: white !important;
}
.btn-hero-hotel {
    background: var(--gradient-hotel);
    color: white !important;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 6px 24px rgba(26,111,188,0.4);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}
.btn-hero-hotel:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(26,111,188,0.5);
    color: white !important;
}
.hero-actions .btn-hero-outline {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(8px);
    transition: all 0.3s;
}
.hero-actions .btn-hero-outline:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}
.hero-stats { margin-top: 36px; }
.stat-item { display: flex; flex-direction: column; }
.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.2);
    align-self: stretch;
}

/* Hero Visual / Cards */
.hero-visual {
    position: relative;
    padding: 20px;
}
.hero-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--border-radius);
    padding: 20px;
    color: #fff;
}
.card-main {
    margin-right: 30px;
    transform: rotate(-2deg);
    animation: float1 4s ease-in-out infinite;
}
.card-secondary {
    margin-left: 30px;
    margin-top: -10px;
    transform: rotate(2deg);
    animation: float2 4s ease-in-out infinite;
    border-color: rgba(78,205,196,0.3);
}
@keyframes float1 {
    0%, 100% { transform: rotate(-2deg) translateY(0); }
    50% { transform: rotate(-2deg) translateY(-10px); }
}
@keyframes float2 {
    0%, 100% { transform: rotate(2deg) translateY(-5px); }
    50% { transform: rotate(2deg) translateY(5px); }
}
.card-header-visual {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.card-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.card-dot.red { background: #FF5F57; }
.card-dot.yellow { background: #FEBC2E; }
.card-dot.green { background: #28C840; }
.card-body-visual { display: flex; flex-direction: column; gap: 12px; }
.visual-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.08);
    padding: 10px 14px;
    border-radius: 10px;
}
.visual-stat i {
    font-size: 1.2rem;
    color: var(--resto-secondary);
    width: 24px;
    text-align: center;
}
.card-secondary .visual-stat i { color: var(--hotel-secondary); }
.vs-num { display: block; font-weight: 700; font-size: 1rem; }
.vs-label { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.6); }
.hero-floating-badge {
    position: absolute;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
}
.badge-1 { top: 10px; right: 10px; animation: floatBadge 3s ease-in-out infinite; }
.badge-2 { bottom: 20px; left: 0; animation: floatBadge 3s ease-in-out infinite 1.5s; }
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.hero-wave {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
}
.hero-wave svg { width: 100%; height: 100%; }

/* ======== TRUSTED SECTION ======== */
.trusted-section {
    background: #f8faff;
    border-bottom: 1px solid #eaeef5;
}
.trusted-label { font-size: 0.82rem; color: var(--grey); text-transform: uppercase; letter-spacing: 1px; }
.trusted-logo-item {
    background: white;
    border: 1px solid #e5e9f0;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--grey);
    transition: all 0.3s;
}
.trusted-logo-item:hover {
    border-color: var(--resto-primary);
    color: var(--resto-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,107,53,0.15);
}

/* ======== PRODUCTS SECTION ======== */
.products-section { background: white; }
.product-card {
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #eaeef5;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    background: white;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    border-radius: 24px 24px 0 0;
}
.resto-card::before { background: var(--gradient-resto); }
.hotel-card::before { background: var(--gradient-hotel); }
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.product-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.product-icon-wrap {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: white;
}
.resto-card .product-icon-wrap { background: var(--gradient-resto); box-shadow: 0 8px 24px rgba(255,107,53,0.35); }
.hotel-card .product-icon-wrap { background: var(--gradient-hotel); box-shadow: 0 8px 24px rgba(26,111,188,0.35); }
.product-tag {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.resto-card .product-tag { background: rgba(255,107,53,0.12); color: var(--resto-primary); }
.hotel-tag { background: rgba(26,111,188,0.12) !important; color: var(--hotel-primary) !important; }
.product-name {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 8px;
}
.product-tagline {
    color: var(--grey);
    font-size: 0.9rem;
    margin-bottom: 16px;
    font-weight: 500;
}
.product-desc { color: #4B5563; line-height: 1.7; margin-bottom: 24px; }
.product-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.9rem;
    color: #374151;
}
.product-highlights li:last-child { border-bottom: none; }
.product-highlights li i { font-size: 0.85rem; }
.resto-card .product-highlights li i { color: var(--resto-primary); }
.hotel-card .product-highlights li i { color: var(--hotel-primary); }
.product-card-footer {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.btn-product-primary {
    background: var(--gradient-resto);
    color: white;
    border: none;
    padding: 11px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}
.btn-product-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,107,53,0.4);
    color: white;
}
.hotel-btn { background: var(--gradient-hotel) !important; }
.hotel-btn:hover { box-shadow: 0 6px 20px rgba(26,111,188,0.4) !important; }
.btn-product-outline {
    background: transparent;
    border: 1.5px solid #e5e9f0;
    color: var(--grey);
    padding: 11px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.3s;
}
.btn-product-outline:hover { border-color: var(--resto-primary); color: var(--resto-primary); }

/* ======== WHY SECTION ======== */
.bg-light-custom { background: linear-gradient(160deg, #f5f0ff 0%, #faf8ff 50%, #eff6ff 100%); }
.why-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(124,58,237,0.12);
    transition: all 0.3s;
    height: 100%;
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(124,58,237,0.14);
    border-color: rgba(124,58,237,0.3);
}
.why-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(167,139,250,0.1));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: var(--violet);
    margin-bottom: 18px;
    transition: all 0.3s;
}
.why-card:hover .why-icon {
    background: var(--gradient-violet);
    color: white;
    transform: scale(1.1);
}
.why-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { color: var(--grey); font-size: 0.9rem; line-height: 1.7; margin: 0; }

/* ======== FEATURES HIGHLIGHT ======== */
.features-highlight { background: white; }
.feature-list { display: flex; flex-direction: column; gap: 20px; }
.feature-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid #f0f2f7;
    transition: all 0.3s;
}
.feature-item:hover {
    background: linear-gradient(135deg, rgba(124,58,237,0.04), rgba(255,107,53,0.04));
    border-color: rgba(124,58,237,0.2);
}
.hotel-feature:hover { background: linear-gradient(135deg, rgba(26,111,188,0.04), rgba(124,58,237,0.04)); border-color: rgba(26,111,188,0.2); }
.fi-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: var(--gradient-violet);
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.hotel-fi-icon { background: linear-gradient(135deg, #1A6FBC, #7C3AED) !important; }
.feature-item h6 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.feature-item p { font-size: 0.85rem; color: var(--grey); margin: 0; line-height: 1.6; }

/* Feature Visual Grid */
.feature-visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.fv-card {
    border-radius: 20px;
    padding: 24px 20px;
    color: white;
    text-align: center;
    transition: all 0.3s;
}
.fv-card:hover { transform: translateY(-6px) scale(1.02); }
.fv-card i { font-size: 1.8rem; margin-bottom: 12px; opacity: 0.9; }
.fv-card h5 { font-weight: 800; font-size: 1.3rem; margin-bottom: 4px; }
.fv-card p { font-size: 0.8rem; opacity: 0.85; margin: 0; }
.fv-orange { background: linear-gradient(135deg, #FF6B35, #c084fc); box-shadow: 0 8px 24px rgba(124,58,237,0.3); }
.fv-blue { background: linear-gradient(135deg, #7C3AED, #1A6FBC); box-shadow: 0 8px 24px rgba(124,58,237,0.3); }
.fv-green { background: linear-gradient(135deg, #7C3AED, #4ECDC4); box-shadow: 0 8px 24px rgba(124,58,237,0.3); }
.fv-purple { background: linear-gradient(135deg, #5B21B6, #A855F7); box-shadow: 0 8px 24px rgba(91,33,182,0.4); }
.fv-teal { background: linear-gradient(135deg, #4338CA, #14B8A6); box-shadow: 0 8px 24px rgba(67,56,202,0.3); }
.fv-indigo { background: linear-gradient(135deg, #3B0F8C, #6366F1); box-shadow: 0 8px 24px rgba(67,56,202,0.35); }
.fv-rose { background: linear-gradient(135deg, #7C3AED, #F43F5E); box-shadow: 0 8px 24px rgba(124,58,237,0.3); }
.fv-amber { background: linear-gradient(135deg, #7C3AED, #F59E0B); box-shadow: 0 8px 24px rgba(124,58,237,0.3); }

/* ======== DEPLOYMENT SECTION ======== */
.bg-dark-custom { background: var(--gradient-dark-section); }
.deploy-card {
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(167,139,250,0.15);
    height: 100%;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.saas-card {
    background: linear-gradient(135deg, rgba(124,58,237,0.14) 0%, rgba(255,107,53,0.07) 100%);
    border-color: rgba(167,139,250,0.3);
}
.onprem-card {
    background: linear-gradient(135deg, rgba(26,111,188,0.12) 0%, rgba(124,58,237,0.1) 100%);
    border-color: rgba(124,58,237,0.25);
}
.deploy-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.deploy-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
}
.saas-card .deploy-icon { background: linear-gradient(135deg, #7C3AED, #FF6B35); box-shadow: 0 8px 24px rgba(124,58,237,0.45); }
.onprem-card .deploy-icon { background: linear-gradient(135deg, #1A6FBC, #7C3AED); box-shadow: 0 8px 24px rgba(124,58,237,0.4); }
.deploy-card h3 { color: white; font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; }
.deploy-card > p { color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 24px; }
.deploy-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.deploy-features li:last-child { border-bottom: none; }
.saas-card .deploy-features li i { color: #c4b5fd; }
.onprem-card .deploy-features li i { color: #a5f3fc; }
.btn-deploy-saas {
    display: inline-block;
    margin-top: 24px;
    background: linear-gradient(135deg, #7C3AED, #FF6B35);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(124,58,237,0.4);
}
.btn-deploy-saas:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(124,58,237,0.55); color: white; }
.btn-deploy-onprem {
    display: inline-block;
    margin-top: 24px;
    background: linear-gradient(135deg, #1A6FBC, #7C3AED);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(124,58,237,0.35);
}
.btn-deploy-onprem:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(124,58,237,0.5); color: white; }

/* ======== TESTIMONIALS ======== */
.testimonials-section { background: linear-gradient(160deg, #f5f0ff 0%, #faf8ff 60%, #eff6ff 100%); }
.testimonial-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(124,58,237,0.1);
    height: 100%;
    transition: all 0.3s;
    position: relative;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px; right: 24px;
    font-size: 5rem;
    color: rgba(124,58,237,0.08);
    font-family: Georgia, serif;
    line-height: 1;
}
.featured-testi {
    background: linear-gradient(135deg, #0E0B1E, #2D1B69);
    border-color: rgba(167,139,250,0.4);
    transform: scale(1.02);
}
.featured-testi::before { color: rgba(255,255,255,0.05); }
.featured-testi p { color: rgba(255,255,255,0.85); }
.featured-testi .testi-author strong { color: white; }
.featured-testi .testi-author span { color: rgba(255,255,255,0.6); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(124,58,237,0.14); }
.featured-testi:hover { transform: scale(1.02) translateY(-4px); }
.testi-rating { color: #F59E0B; font-size: 0.85rem; margin-bottom: 16px; }
.testimonial-card > p { color: #4B5563; line-height: 1.75; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gradient-violet);
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.hotel-av { background: linear-gradient(135deg, #1A6FBC, #7C3AED) !important; }
.testi-author strong { display: block; font-size: 0.9rem; color: var(--dark); }
.testi-author span { display: block; font-size: 0.78rem; color: var(--grey); }

/* ======== CTA SECTION ======== */
.cta-section {
    background: linear-gradient(135deg, #0E0B1E, #2D1B69, #0E0B1E);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(124,58,237,0.25) 0%, rgba(255,107,53,0.08) 50%, transparent 70%);
}
.cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
}
.cta-subtitle { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.75; margin-bottom: 8px; }
.btn-cta-primary {
    background: linear-gradient(135deg, #7C3AED, #FF6B35);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 28px rgba(124,58,237,0.45);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}
.btn-cta-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(124,58,237,0.6); color: white; }
.btn-cta-outline {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.3);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.1); color: white; transform: translateY(-3px); }

/* ======== FOOTER ======== */
.main-footer {
    background: linear-gradient(160deg, #0E0B1E 0%, #160D35 50%, #0E0B1E 100%);
    color: rgba(255,255,255,0.75);
    border-top: 1px solid rgba(124,58,237,0.2);
}
.footer-brand .brand-name { font-size: 1.6rem; }
.footer-desc { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    transition: all 0.3s;
}
.footer-social a:hover { background: var(--gradient-violet); color: white; transform: translateY(-3px); }
.footer-heading { color: white; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    transition: all 0.3s;
}
.footer-links a:hover { color: var(--violet-light); padding-left: 4px; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    margin-bottom: 10px;
}
.footer-contact li i { color: var(--violet-light); margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-contact a:hover { color: var(--violet-light); }
.newsletter .form-control {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    border-radius: 8px 0 0 8px;
    font-size: 0.85rem;
}
.newsletter .form-control::placeholder { color: rgba(255,255,255,0.4); }
.newsletter .form-control:focus { background: rgba(255,255,255,0.12); border-color: var(--resto-primary); box-shadow: none; color: white; }
.btn-newsletter {
    background: var(--gradient-resto);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 0 8px 8px 0;
    font-size: 0.85rem;
    font-weight: 600;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}
.footer-bottom a {
    color: rgba(255,255,255,0.5);
    margin-left: 16px;
    transition: color 0.3s;
}
.footer-bottom a:hover { color: var(--violet-light); }

/* ======== DEMO MODAL ======== */
.demo-modal-content { border-radius: 20px; border: none; overflow: hidden; }
.demo-modal-content .form-control, .demo-modal-content .form-select {
    border-radius: 10px;
    border-color: #e5e9f0;
    padding: 10px 14px;
    font-size: 0.9rem;
    transition: all 0.3s;
}
.demo-modal-content .form-control:focus, .demo-modal-content .form-select:focus {
    border-color: var(--violet);
    box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}

/* ======== SCROLL TOP BUTTON ======== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--gradient-violet);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    box-shadow: 0 6px 20px rgba(124,58,237,0.45);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    display: flex; align-items: center; justify-content: center;
}
.scroll-top-btn.visible { opacity: 1; visibility: visible; }
.scroll-top-btn:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(124,58,237,0.6); }

/* ======== PRICING PAGE STYLES ======== */
.pricing-hero {
    background: var(--gradient-hero);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pricing-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(124,58,237,0.25), transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(255,107,53,0.15), transparent 45%);
}
.pricing-toggle .btn {
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}
.pricing-toggle .btn.active { background: var(--gradient-violet); color: white; border-color: transparent; box-shadow: 0 4px 16px rgba(124,58,237,0.4); }
.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 36px 30px;
    border: 1px solid rgba(124,58,237,0.1);
    transition: all 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.pricing-card.popular {
    border-color: var(--violet);
    box-shadow: 0 8px 40px rgba(124,58,237,0.2);
    transform: scale(1.03);
}
.pricing-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: 0; right: 0;
    background: var(--gradient-violet);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 0 24px 0 12px;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pricing-card.popular:hover { transform: scale(1.03) translateY(-8px); }
.plan-type { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--grey); margin-bottom: 8px; }
.plan-name { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.plan-price { margin: 20px 0; }
.price-amount { font-size: 2.8rem; font-weight: 900; color: var(--dark); }
.price-currency { font-size: 1.2rem; font-weight: 700; vertical-align: top; margin-top: 8px; display: inline-block; }
.price-period { font-size: 0.85rem; color: var(--grey); }
.plan-desc { font-size: 0.88rem; color: var(--grey); margin-bottom: 24px; line-height: 1.6; }
.plan-features { list-style: none; padding: 0; margin: 0 0 28px; }
.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: 0.88rem;
    color: #374151;
    border-bottom: 1px solid #f9fafb;
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li i { color: var(--violet); font-size: 0.82rem; flex-shrink: 0; }
.plan-features li.not-included { color: #9CA3AF; }
.plan-features li.not-included i { color: #D1D5DB; }
.btn-plan-primary {
    width: 100%;
    padding: 13px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    background: var(--gradient-violet);
    color: white;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(124,58,237,0.35);
}
.btn-plan-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,58,237,0.55); }
.btn-plan-outline {
    width: 100%;
    padding: 13px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.92rem;
    background: transparent;
    color: var(--violet);
    border: 2px solid var(--violet);
    transition: all 0.3s;
}
.btn-plan-outline:hover { background: var(--gradient-violet); color: white; border-color: transparent; }
.btn-plan-hotel {
    background: var(--gradient-hotel) !important;
    box-shadow: 0 4px 16px rgba(26,111,188,0.35) !important;
}
.btn-plan-hotel:hover { box-shadow: 0 8px 24px rgba(26,111,188,0.5) !important; }

/* ======== PAGE HEROES ======== */
.page-hero {
    background: var(--gradient-hero);
    padding: 130px 0 80px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 25% 50%, rgba(124,58,237,0.22), transparent 50%),
        radial-gradient(ellipse at 75% 30%, rgba(255,107,53,0.1), transparent 45%);
}
.page-hero-hotel::before {
    background:
        radial-gradient(ellipse at 70% 50%, rgba(26,111,188,0.2), transparent 50%),
        radial-gradient(ellipse at 30% 30%, rgba(124,58,237,0.2), transparent 45%);
}
.page-hero h1 { color: white; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; }
.page-hero p { color: rgba(255,255,255,0.75); }
.breadcrumb-nav .breadcrumb { background: none; margin: 0; padding: 0; }
.breadcrumb-nav .breadcrumb-item a { color: rgba(255,255,255,0.6); }
.breadcrumb-nav .breadcrumb-item.active { color: rgba(255,255,255,0.9); }
.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* Feature Tabs */
.feature-tabs .nav-pills .nav-link {
    border-radius: 50px;
    padding: 10px 22px;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--grey);
    background: transparent;
    border: 1.5px solid #e5e9f0;
    margin: 4px;
    transition: all 0.3s;
}
.feature-tabs .nav-pills .nav-link.active {
    background: var(--gradient-violet);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 16px rgba(124,58,237,0.4);
}
.feature-tab-content {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(124,58,237,0.1);
    box-shadow: var(--shadow);
}
.feature-tab-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 20px;
}
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.feature-grid-item {
    background: #f5f0ff;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(124,58,237,0.12);
    transition: all 0.3s;
}
.feature-grid-item:hover { border-color: rgba(124,58,237,0.35); background: #ede9fe; }
.feature-grid-item i { font-size: 1.2rem; color: var(--violet); margin-bottom: 8px; }
.feature-grid-item h6 { font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; }
.feature-grid-item p { font-size: 0.8rem; color: var(--grey); margin: 0; }

/* About Page */
.team-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(124,58,237,0.12);
    text-align: center;
    transition: all 0.3s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(124,58,237,0.16); border-color: rgba(124,58,237,0.3); }
.team-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--gradient-violet);
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 16px;
}
.team-card h5 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.team-card .role { color: var(--violet); font-size: 0.82rem; font-weight: 600; }

/* Contact Page */
.contact-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #eaeef5;
    text-align: center;
    transition: all 0.3s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 16px;
}
.contact-form-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #eaeef5;
    box-shadow: var(--shadow);
}
.contact-form-card .form-control, .contact-form-card .form-select {
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 0.9rem;
    border-color: #e5e9f0;
    transition: all 0.3s;
}
.contact-form-card .form-control:focus, .contact-form-card .form-select:focus {
    border-color: var(--violet);
    box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}

/* ======== RESPONSIVE ======== */
@media (max-width: 991.98px) {
    .section-padding { padding: 60px 0; }
    .hero-section { min-height: auto; padding: 80px 0 60px; }
    .hero-visual { margin-top: 40px; }
    .card-main { margin-right: 0; }
    .card-secondary { margin-left: 0; }
    .pricing-card.popular { transform: none; }
    .pricing-card.popular:hover { transform: translateY(-8px); }
}
@media (max-width: 767.98px) {
    .top-bar .top-info { font-size: 0.78rem; }
    .hero-stats { gap: 16px; }
    .stat-number { font-size: 1.4rem; }
    .product-card { padding: 28px 24px; }
    .deploy-card { padding: 28px 24px; }
    .hero-floating-badge { display: none; }
    .feature-visual-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575.98px) {
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn-hero-primary, .hero-actions .btn-hero-outline { text-align: center; justify-content: center; }
    .feature-visual-grid { grid-template-columns: 1fr; }
    .product-card-footer { flex-direction: column; }
    .product-card-footer .btn { text-align: center; justify-content: center; }
}

/* ======== UTILITY ======== */
.bg-gradient-resto { background: var(--gradient-resto); }
.bg-gradient-hotel { background: var(--gradient-hotel); }
.text-resto { color: var(--resto-primary); }
.text-hotel { color: var(--hotel-primary); }

/* ======== HERO FEATURE SLIDER ======== */
.hero-feature-slider { position: relative; }
.hero-slide-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 32px 28px;
    color: white;
    text-align: center;
}
.hero-slide-card h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 6px; }
.hsc-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.hsc-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px;
    color: white;
}
.resto-glow { background: var(--gradient-resto); box-shadow: 0 0 30px rgba(255,107,53,0.4); }
.hotel-glow { background: var(--gradient-hotel); box-shadow: 0 0 30px rgba(26,111,188,0.4); }
.hotel-slide .hsc-features i { color: #4ECDC4; }
.hsc-features {
    text-align: left;
    display: flex; flex-direction: column; gap: 8px;
    margin-bottom: 20px;
}
.hsc-feat {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
}
.hsc-feat i { color: #c084fc; font-size: 0.8rem; flex-shrink: 0; }
.hsc-price {
    background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(255,107,53,0.2));
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.88rem;
    display: inline-block;
}
.hsc-price strong { color: #fbbf24; font-size: 1.1rem; }
.hero-pagination .swiper-pagination-bullet {
    width: 10px; height: 10px;
    background: rgba(255,255,255,0.4);
    opacity: 1;
}
.hero-pagination .swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #c084fc, #FF6B35);
    width: 28px;
    border-radius: 5px;
}

/* ======== FEATURE SLIDER SECTIONS ======== */
.features-slider-section { background: white; }
.features-slider-hotel { background: linear-gradient(160deg, #f5f0ff 0%, #faf8ff 50%, #eff6ff 100%); }
.feature-slide-card {
    background: white;
    border: 1px solid rgba(124,58,237,0.1);
    border-radius: 20px;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}
.feature-slide-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(124,58,237,0.14);
    border-color: rgba(124,58,237,0.3);
}
.hotel-fsc { border-color: rgba(26,111,188,0.1); }
.hotel-fsc:hover { box-shadow: 0 12px 36px rgba(26,111,188,0.14); border-color: rgba(26,111,188,0.3); }
.fsc-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--gradient-violet);
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 16px;
    transition: transform 0.3s;
}
.feature-slide-card:hover .fsc-icon { transform: scale(1.1); }
.hotel-fsc-icon { background: var(--gradient-hotel) !important; }
.feature-slide-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feature-slide-card p { font-size: 0.85rem; color: var(--grey); line-height: 1.6; margin: 0; }
.features-pagination .swiper-pagination-bullet,
.features-pagination-2 .swiper-pagination-bullet {
    width: 8px; height: 8px;
    background: var(--violet-light);
    opacity: 0.4;
}
.features-pagination .swiper-pagination-bullet-active { opacity: 1; background: var(--violet); width: 24px; border-radius: 4px; }
.features-pagination-2 .swiper-pagination-bullet-active { opacity: 1; background: var(--hotel-primary); width: 24px; border-radius: 4px; }

/* ======== PRICING GLANCE ======== */
.pricing-glance-section { background: white; }
.pricing-glance-card {
    background: linear-gradient(160deg, #f5f0ff 0%, #faf8ff 100%);
    border: 1px solid rgba(124,58,237,0.12);
    border-radius: 24px;
    padding: 32px;
    height: 100%;
}
.pricing-glance-card h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 4px; }
.pg-subtitle { font-size: 0.82rem; color: var(--grey); margin-bottom: 20px; }
.hotel-glance { background: linear-gradient(160deg, #eef6ff 0%, #f8faff 100%); border-color: rgba(26,111,188,0.12); }
.pg-plans { display: flex; gap: 12px; flex-wrap: wrap; }
.pg-plan {
    flex: 1;
    min-width: 120px;
    background: white;
    border: 1px solid #eaeef5;
    border-radius: 16px;
    padding: 16px 12px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}
.pg-plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.popular-plan { border-color: var(--violet); box-shadow: 0 4px 16px rgba(124,58,237,0.15); }
.hotel-glance .popular-plan { border-color: var(--hotel-primary); box-shadow: 0 4px 16px rgba(26,111,188,0.15); }
.pg-popular-badge {
    position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
    background: var(--gradient-violet);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: 50px;
    white-space: nowrap;
}
.hotel-glance .pg-popular-badge { background: var(--gradient-hotel); }
.pg-plan-name { display: block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--grey); margin-bottom: 6px; }
.pg-plan-price { display: block; font-size: 1.4rem; font-weight: 900; font-family: var(--font-heading); color: var(--dark); }
.pg-plan-price small { font-size: 0.7rem; font-weight: 500; color: var(--grey); }
.pg-plan-desc { display: block; font-size: 0.72rem; color: var(--grey); margin-top: 6px; }
.promo-banner {
    display: inline-block;
    background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(255,107,53,0.08));
    border: 1px solid rgba(124,58,237,0.2);
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 0.92rem;
    color: var(--dark);
}

/* ======== WHATSAPP FLOAT ======== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 54px; height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 20px rgba(37,211,102,0.45);
    z-index: 998;
    transition: all 0.3s;
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.1); box-shadow: 0 10px 28px rgba(37,211,102,0.6); color: white; }

/* AOS tweaks */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }
