@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');

/* ==========================================================================
   BRANDSLY FRONTEND UNIFIED STYLESHEET (frontend.css)
   ========================================================================== */


/* --------------------------------------------------------------------------
   1. GLOBAL VARIABLES & CSS RESET
   -------------------------------------------------------------------------- */
:root {
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --secondary: #ec4899;
    --accent: #8b5cf6;
    --primary-rgb: 99, 102, 241;
    --secondary-rgb: 236, 72, 153;
    --accent-rgb: 139, 92, 246;
    --dark: #121316;
    --dark-surface: #1a1c23;
    --light: #f8fafc;
    --gray: #64748b;
    --border: rgba(255, 255, 255, 0.12);
    --radius: 16px;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);

    --bg-page: #0c0c12;
    --bg-surface: #141522;
    --bg-surface-elevated: #1a1b2c;
    --text-main: #f8fafc;
    --text-muted: #cbd5e1;
    --text-sub: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.12);
    --card-shadow: 0 14px 40px -8px rgba(0, 0, 0, 0.45);

    --bg-base: #0c0c12;
    --blob-1: rgba(99, 102, 241, 0.25);
    --blob-2: rgba(20, 184, 166, 0.20);
    --blob-3: rgba(139, 92, 246, 0.20);
    --particle-color: rgba(100, 160, 255, 0.55);
    --grid-line: rgba(255,255,255,0.04);
    --rocket-body: #e2e8f0;
    --rocket-window: #38bdf8;
    --arrow-color: rgba(52, 211, 153, 0.90);
    --badge-bg: rgba(16, 185, 129, 0.18);
    --badge-text: #34d399;
    --hex-stroke: rgba(100,160,255,0.18);
    --flame-1: #f97316;
    --flame-2: #facc15;
}

:root[data-theme="dark"],
html:not([data-theme="light"]) {
    --bg-page: #0c0c12;
    --bg-surface: #141522;
    --bg-surface-elevated: #1a1b2c;
    --text-main: #f8fafc;
    --text-muted: #cbd5e1;
    --text-sub: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.12);
    --card-shadow: 0 14px 40px -8px rgba(0, 0, 0, 0.45);

    --bg-base: #0c0c12;
    --blob-1: rgba(99, 102, 241, 0.25);
    --blob-2: rgba(20, 184, 166, 0.20);
    --blob-3: rgba(139, 92, 246, 0.20);
    --particle-color: rgba(100, 160, 255, 0.55);
    --grid-line: rgba(255,255,255,0.04);
    --rocket-body: #e2e8f0;
    --rocket-window: #38bdf8;
    --arrow-color: rgba(52, 211, 153, 0.90);
    --badge-bg: rgba(16, 185, 129, 0.18);
    --badge-text: #34d399;
    --hex-stroke: rgba(100,160,255,0.18);
    --flame-1: #f97316;
    --flame-2: #facc15;
}

:root[data-theme="light"] {
    --bg-page: #f8fafc;
    --bg-surface: #ffffff;
    --bg-surface-elevated: #f1f5f9;
    --text-main: #0f172a;
    --text-muted: #475569;
    --text-sub: #64748b;
    --border-color: rgba(226, 232, 240, 0.8);
    --card-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);

    --bg-base: #f8fafc;
    --blob-1: rgba(147, 197, 253, 0.35);
    --blob-2: rgba(167, 243, 208, 0.30);
    --blob-3: rgba(196, 181, 254, 0.28);
    --particle-color: rgba(59, 130, 246, 0.35);
    --grid-line: rgba(0,0,0,0.04);
    --rocket-body: #1e293b;
    --rocket-window: #2563eb;
    --arrow-color: rgba(5, 150, 105, 0.90);
    --badge-bg: rgba(5, 150, 105, 0.12);
    --badge-text: #059669;
    --hex-stroke: rgba(59,130,246,0.18);
    --flame-1: #ea580c;
    --flame-2: #f59e0b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, p, h1, h2, h3, h4, h5, h6, span, a, input, button, select, textarea, div {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

body {
    background-color: var(--bg-page);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 80px;
    transition: background-color 0.35s ease, color 0.35s ease;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* --------------------------------------------------------------------------
   2. APPLE LIQUID GLASS HEADER & NAVBAR
   -------------------------------------------------------------------------- */
.navbar-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 24px;
    transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.navbar-header.scrolled {
    padding: 10px 24px;
}

.nav-glass-pill {
    pointer-events: all;
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08), inset 0 1px 0 0 rgba(255, 255, 255, 0.65);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.navbar-header.scrolled .nav-glass-pill {
    background: rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(24px) saturate(190%);
    -webkit-backdrop-filter: blur(24px) saturate(190%);
    border-radius: 20px;
    border-color: rgba(255, 255, 255, 0.60);
    box-shadow: 0 14px 35px -5px rgba(0, 0, 0, 0.12), inset 0 1px 0 0 rgba(255, 255, 255, 0.80);
}

:root[data-theme="dark"] .nav-glass-pill {
    background: rgba(15, 23, 42, 0.65);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 36px -8px rgba(0, 0, 0, 0.40), inset 0 1px 0 0 rgba(255, 255, 255, 0.12);
}

:root[data-theme="dark"] .navbar-header.scrolled .nav-glass-pill {
    background: rgba(15, 23, 42, 0.82);
    border-color: rgba(255, 255, 255, 0.20);
    box-shadow: 0 16px 42px -8px rgba(0, 0, 0, 0.55), inset 0 1px 0 0 rgba(255, 255, 255, 0.16);
}

.nav-container {
    position: relative;
    z-index: 3;
    padding: 13px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: #0f172a;
    flex-shrink: 0;
}
:root[data-theme="dark"] .logo-brand {
    color: #f8fafc;
}

.logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14.5px;
    font-weight: 600;
    color: #334155;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.25s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.08);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.12);
}

:root[data-theme="dark"] .nav-link {
    color: rgba(226, 232, 240, 0.90);
}
:root[data-theme="dark"] .nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
}

/* Mega Dropdown Menu */
.mega-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: max-content;
    min-width: 440px;
    max-width: 540px;
    padding: 16px;
    display: none;
    flex-direction: column;
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    background: #151722;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 50px -12px rgba(0, 0, 0, 0.75);
}

.nav-item:hover .mega-dropdown-menu {
    display: flex;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-bottom: 12px;
}

.mega-menu-item {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    border-radius: 12px;
    transition: all 0.15s ease;
    text-decoration: none;
    background: transparent;
}

.mega-menu-item:hover,
.mega-menu-item.active {
    background: #252738;
}

.mega-menu-title {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

.mega-menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 8px 0 12px;
    width: 100%;
}

.mega-menu-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 8px 4px;
    gap: 12px;
    width: 100%;
}

.mega-menu-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #94a3b8;
}

.rating-play-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #f59e0b;
    font-size: 12px;
    flex-shrink: 0;
}

.rating-score {
    font-weight: 700;
    color: #ffffff;
    font-size: 13px;
    margin-left: 2px;
}

.rating-v-divider {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 2px;
}

.rating-reviews {
    font-size: 12px;
    color: #94a3b8;
    white-space: nowrap;
}

.mega-menu-app-btn {
    padding: 7px 16px;
    border-radius: 50px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff !important;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none !important;
    white-space: nowrap;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    flex-shrink: 0;
}

.mega-menu-app-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.45);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.btn-login-link {
    font-size: 14.5px;
    font-weight: 600;
    color: #334155;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-login-link:hover {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.08);
}

:root[data-theme="dark"] .btn-login-link {
    color: rgba(226, 232, 240, 0.90);
}
:root[data-theme="dark"] .btn-login-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
}

.btn-primary-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 18px rgba(var(--primary-rgb), 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.01em;
    text-decoration: none;
}

.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.50), inset 0 1px 0 rgba(255, 255, 255, 0.45);
    color: #ffffff !important;
    filter: brightness(1.08);
}

.btn-outline {
    border: 1px solid rgba(51, 65, 85, 0.25);
    color: #334155;
    padding: 9px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    background: rgba(255,255,255,0.20);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.08);
}

/* Mobile Toggle & Drawer Menu */
.mobile-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
    color: rgba(220,230,255,0.90);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mobile-toggle:hover {
    background: rgba(255,255,255,0.14);
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 310px;
    height: 100%;
    background: linear-gradient(160deg, rgba(14,16,32,0.97) 0%, rgba(22,18,50,0.97) 100%);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-left: 1px solid rgba(255,255,255,0.08);
    z-index: 2000;
    box-shadow: -8px 0 48px rgba(0,0,30,0.60);
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
}

.mobile-menu-drawer.open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
    color: rgba(220,230,255,0.9);
}

.mobile-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-link {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: rgba(210,220,255,0.88);
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.mobile-menu-link:hover {
    background: rgba(255,255,255,0.07);
    color: #fff;
}

/* --------------------------------------------------------------------------
   3. MODERN CATEGORY CARDS & DYNAMIC SECTIONS
   -------------------------------------------------------------------------- */
.category-card-modern {
    background: var(--bg-surface-elevated, #161622);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    text-decoration: none;
    color: #ffffff;
    position: relative;
}

.category-card-modern:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
    color: #ffffff;
}

.category-card-thumb {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: 20px;
}

.category-card-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.4s ease;
}

.category-card-modern:hover .category-card-thumb img {
    transform: scale(1.08);
}

.category-edit-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    backdrop-filter: blur(8px);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

/* --------------------------------------------------------------------------
   4. HOME PAGE & HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section-new {
    position: relative;
    background: transparent;
    padding: 60px 24px 40px;
    text-align: center;
    overflow: hidden;
}

.hero-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    color: #475569;
    font-weight: 500;
    margin-bottom: 24px;
}

.stars-gold {
    color: #fbbf24;
    font-size: 13px;
}

.floating-tag {
    position: absolute;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 5;
}

.hero-main-title {
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.12;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

:root[data-theme="dark"] .hero-main-title {
    color: #ffffff;
}

.gradient-title-text {
    background: linear-gradient(135deg, var(--primary, #6366f1) 0%, var(--accent, #a855f7) 50%, var(--secondary, #ec4899) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 6s ease infinite;
    display: inline-block;
}

.ai-pill-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    vertical-align: middle;
    border: 2px solid rgba(var(--primary-rgb, 147, 51, 234), 0.4);
    background: linear-gradient(135deg, rgba(var(--primary-rgb, 147, 51, 234), 0.12), rgba(var(--accent-rgb, 139, 92, 246), 0.12));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 4px 22px 5px;
    border-radius: 50px;
    color: var(--primary, #9333ea);
    font-weight: 700;
    font-size: 0.72em;
    margin-left: 8px;
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   5. LEGAL & INFORMATIONAL CONTENT CARDS
   -------------------------------------------------------------------------- */
.privacy-container, .terms-container, .about-container, .refund-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.privacy-content-card, .terms-content-card, .about-content-card, .refund-content-card {
    background: var(--bg-surface, #141522);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.12));
    border-radius: 20px;
    padding: 44px;
    box-shadow: var(--card-shadow);
    font-size: 16px;
    color: var(--text-muted, #cbd5e1);
    line-height: 1.85;
}

:root[data-theme="light"] .privacy-content-card,
:root[data-theme="light"] .terms-content-card,
:root[data-theme="light"] .about-content-card,
:root[data-theme="light"] .refund-content-card {
    background: #ffffff !important;
    border-color: #e2e8f0 !important;
    color: #475569 !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03) !important;
}

.privacy-content-card h1, .privacy-content-card h2, .privacy-content-card h3, .privacy-content-card h4,
.terms-content-card h1, .terms-content-card h2, .terms-content-card h3, .terms-content-card h4,
.about-content-card h1, .about-content-card h2, .about-content-card h3, .about-content-card h4,
.refund-content-card h1, .refund-content-card h2, .refund-content-card h3, .refund-content-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main, #f8fafc);
    margin: 28px 0 14px;
}

:root[data-theme="light"] .privacy-content-card h1, :root[data-theme="light"] .privacy-content-card h2, :root[data-theme="light"] .privacy-content-card h3, :root[data-theme="light"] .privacy-content-card h4,
:root[data-theme="light"] .terms-content-card h1, :root[data-theme="light"] .terms-content-card h2, :root[data-theme="light"] .terms-content-card h3, :root[data-theme="light"] .terms-content-card h4,
:root[data-theme="light"] .about-content-card h1, :root[data-theme="light"] .about-content-card h2, :root[data-theme="light"] .about-content-card h3, :root[data-theme="light"] .about-content-card h4,
:root[data-theme="light"] .refund-content-card h1, :root[data-theme="light"] .refund-content-card h2, :root[data-theme="light"] .refund-content-card h3, :root[data-theme="light"] .refund-content-card h4 {
    color: #0f172a !important;
}

/* --------------------------------------------------------------------------
   6. FOOTER STYLING
   -------------------------------------------------------------------------- */
.footer-new {
    background-color: #0c0d14;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    color: #94a3b8;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container-new {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 36px;
    position: relative;
    z-index: 5;
}

.footer-brand-col {
    flex: 1 1 320px;
    max-width: 380px;
}

.footer-nav-col {
    flex: 1 1 160px;
    min-width: 150px;
}

.footer-brand-col h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    font-family: 'Outfit', sans-serif;
}

.footer-brand-col p {
    font-size: 14px;
    line-height: 1.65;
    color: #94a3b8;
    margin-bottom: 24px;
    max-width: 340px;
}

/* Store Badge Button */
.store-badge-row {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.store-badge-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 10px 18px;
    color: #ffffff;
    text-decoration: none !important;
    font-size: 11px;
    transition: all 0.25s ease;
}
.store-badge-btn i {
    font-size: 24px;
}
.store-badge-btn div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    color: #94a3b8;
}
.store-badge-btn strong {
    font-size: 14px;
    color: #ffffff;
}
.store-badge-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Navigation Columns */
.footer-nav-col h4 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.2px;
}

.footer-nav-col ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-nav-col ul li {
    list-style: none !important;
    margin-bottom: 12px;
}

.footer-nav-col ul li a {
    color: #94a3b8;
    font-size: 14px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-nav-col ul li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* Giant Background Watermark Text */
.footer-watermark-text {
    font-size: clamp(80px, 12vw, 160px);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    text-align: center;
    line-height: 1;
    margin-top: 30px;
    margin-bottom: 10px;
    pointer-events: none;
    user-select: none;
    letter-spacing: -4px;
    font-family: 'Outfit', sans-serif;
    position: relative;
    z-index: 1;
}

/* Bottom Row & Social Icons */
.footer-bottom-row {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13.5px;
    color: #64748b;
    position: relative;
    z-index: 5;
}

.footer-social-list {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social-list a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.25s ease;
    text-decoration: none !important;
}

.footer-social-list a:hover {
    background: #6366f1;
    border-color: #6366f1;
    color: #ffffff;
    transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   7. SCROLL-LINKED BACKGROUND ENGINE & CANVAS
   -------------------------------------------------------------------------- */
#growth-bg {
    position: fixed;
    inset: 0;
    z-index: -10;
    overflow: hidden;
    background: var(--bg-base);
    transition: background 0.4s ease;
    pointer-events: none;
}

.gbg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    will-change: transform, opacity;
    transition: background 0.4s ease;
}

.gbg-blob-1 { width: 520px; height: 520px; top: -60px; left: -100px; background: var(--blob-1); }
.gbg-blob-2 { width: 420px; height: 420px; bottom: 20%; right: -80px; background: var(--blob-2); }
.gbg-blob-3 { width: 380px; height: 380px; top: 40%; left: 40%; background: var(--blob-3); }

#growth-grid-canvas, #growth-particle-canvas, #growth-svg-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* --------------------------------------------------------------------------
   8. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .footer-container-new { grid-template-columns: 1fr repeat(2, 1fr); }
    .footer-watermark-text { font-size: 90px; }
}

/* About Hero Section */
.about-hero {
    position: relative;
    background: transparent;
    padding: 70px 24px 40px;
    text-align: center;
}
.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(168,85,247,0.12);
    border: 1px solid rgba(168,85,247,0.25);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #7c3aed;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.about-hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
:root[data-theme="dark"] .about-hero h1 {
    color: #f8fafc !important;
}
.about-hero p {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}
/* Privacy, Terms, Refund & Contact Hero Sections */
.privacy-hero, .terms-hero, .refund-hero, .contact-hero {
    position: relative;
    background: transparent;
    padding: 70px 24px 40px;
    text-align: center;
}
.privacy-hero-badge, .terms-hero-badge, .refund-hero-badge, .contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16,185,129,0.12);
    border: 1px solid rgba(16,185,129,0.25);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #10b981;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.privacy-hero h1, .terms-hero h1, .refund-hero h1, .contact-hero h1, .about-hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--text-main, #f8fafc);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
:root[data-theme="light"] .privacy-hero h1,
:root[data-theme="light"] .terms-hero h1,
:root[data-theme="light"] .refund-hero h1,
:root[data-theme="light"] .contact-hero h1,
:root[data-theme="light"] .about-hero h1 {
    color: #0f172a !important;
}
.privacy-hero .meta-text, .terms-hero .meta-text, .refund-hero .meta-text, .contact-hero .meta-text {
    font-size: 14px;
    color: #64748b;
}
/* Contact Layout & Form Styles */
.contact-layout {
    max-width: 1150px;
    margin: 0 auto;
    padding: 72px 24px 100px;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: start;
}
.contact-info-panel {
    background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 100%);
    border-radius: 24px;
    padding: 40px 36px;
    color: white;
    position: sticky;
    top: 100px;
}
.contact-info-panel h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}
.contact-info-panel > p {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 36px;
    line-height: 1.6;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}
.contact-info-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.contact-info-item h5 {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.contact-info-item p {
    font-size: 14px;
    font-weight: 600;
    color: #e2e8f0;
    line-height: 1.5;
}

/* Response Time Badges in Contact Page */
.response-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
}
.response-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-surface, #141522);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.12));
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main, #f8fafc);
    box-shadow: var(--card-shadow);
}
.response-badge i {
    color: #818cf8;
}
:root[data-theme="light"] .response-badge {
    background: #ffffff !important;
    border-color: #e2e8f0 !important;
    color: #1e293b !important;
}

/* Contact Divider & Social Links */
.contact-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 28px 0 20px;
}
:root[data-theme="light"] .contact-divider {
    background: #e2e8f0 !important;
}
.social-links-contact {
    display: flex;
    gap: 10px;
}
.social-link-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-main, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.25s ease;
}
.social-link-btn:hover {
    background: #6366f1;
    border-color: #6366f1;
    color: #ffffff;
    transform: translateY(-2px);
}

.contact-form-card {
    background: var(--bg-surface, #141522);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.12));
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--card-shadow);
}
:root[data-theme="light"] .contact-form-card {
    background: #ffffff !important;
    border-color: #e2e8f0 !important;
}
.contact-form-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main, #ffffff);
    margin-bottom: 6px;
}
:root[data-theme="light"] .contact-form-card h3 {
    color: #0f172a !important;
}
.contact-form-card > p {
    font-size: 14px;
    color: var(--text-sub, #94a3b8);
    margin-bottom: 28px;
}
.select-wrap {
    position: relative;
}
.select-field {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px !important;
}
.alert-success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
    padding: 12px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
}
.alert-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
    padding: 12px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted, #cbd5e1);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}
:root[data-theme="light"] .form-group label {
    color: #334155 !important;
}
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-color, rgba(255, 255, 255, 0.14));
    border-radius: 12px;
    font-size: 14px;
    color: var(--text-main, #ffffff);
    background: var(--bg-surface-elevated, #1a1b2c);
    transition: all 0.25s ease;
    outline: none;
    font-family: inherit;
    box-sizing: border-box;
}
:root[data-theme="light"] .form-control {
    background: #f8fafc !important;
    border-color: #e2e8f0 !important;
    color: #0f172a !important;
}
.submit-btn {
    width: 100%;
    padding: 15px 24px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.25s ease;
    letter-spacing: 0.01em;
}
/* Pricing Hero & Animated Poster Column Styles */
.pricing-hero {
    position: relative;
    padding: 54px 20px 42px;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: #0f172a;
    text-align: center;
    overflow: hidden;
}

.pricing-poster-bg {
    position: absolute;
    inset: -40px;
    display: flex;
    gap: 12px;
    padding: 0 10px;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
    transform: rotate(-2deg) scale(1.05);
    opacity: 0.08;
}

.pricing-poster-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: scrollUp 32s linear infinite;
}

.pricing-poster-col:nth-child(even) { animation-direction: reverse; animation-duration: 36s; }

@keyframes scrollUp {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.pricing-poster-thumb {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 10px;
    object-fit: cover;
    background: #e2e8f0;
}

.pricing-hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}

.pricing-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #059669;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* FAQ Hero & Accordion Styles */
.faq-hero {
    position: relative;
    background: transparent;
    padding: 90px 24px 80px;
    text-align: center;
    overflow: hidden;
}
.faq-hero h1 {
    font-size: clamp(36px, 5.5vw, 58px);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 18px;
}
:root[data-theme="dark"] .faq-hero h1 { color: #ffffff !important; }
.faq-hero p {
    max-width: 580px;
    margin: 0 auto 36px;
    font-size: 17px;
    color: #475569;
    line-height: 1.7;
}
:root[data-theme="dark"] .faq-hero p { color: #cbd5e1 !important; }
.faq-search-wrap {
    max-width: 540px;
    margin: 0 auto;
    position: relative;
}
/* Category View Layout & Subcategory Pills Styles */
.cat-page-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 36px 24px 70px;
}
.cat-header-container {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}
.cat-header-back-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-top: 2px;
}
.cat-header-back-btn:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    transform: translateX(-2px);
}
.cat-header-icon-box {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}
.cat-header-info h1 {
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 6px 0;
    font-family: 'Outfit', sans-serif;
}
:root[data-theme="light"] .cat-header-info h1 {
    color: #0f172a !important;
}
.cat-header-info p {
    font-size: 14px;
    color: #94a3b8;
    margin: 0;
}
:root[data-theme="light"] .cat-header-info p {
    color: #64748b !important;
}
.subcats-pills-wrapper {
    margin-bottom: 32px;
}
.subcats-scroll-container {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}
.subcats-scroll-container::-webkit-scrollbar {
    display: none;
}
.cat-pill {
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    user-select: none;
}
.cat-pill.active {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4) !important;
}
.cat-pill.inactive {
    background: rgba(255, 255, 255, 0.07);
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.cat-pill.inactive:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}
:root[data-theme="light"] .cat-pill.inactive {
    background: #f1f5f9;
    color: #334155;
    border-color: #e2e8f0;
}
:root[data-theme="light"] .cat-pill.inactive:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* --------------------------------------------------------------------------
   8. HOME PAGE HERO, SEARCH & FESTIVAL CALENDAR COMPONENT STYLES
   -------------------------------------------------------------------------- */

/* Rating Badge & Hero Main Title */
.hero-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    color: #e2e8f0;
    font-weight: 500;
    margin-bottom: 24px;
}
.hero-main-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}
@media (min-width: 768px) {
    .hero-main-title {
        font-size: 56px;
    }
}
.gradient-title-text {
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.light-word {
    color: #ffffff;
}
.grey-word {
    color: #f8fafc;
}
.ai-pill-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(168, 85, 247, 0.2));
    border: 1px solid rgba(99, 102, 241, 0.4);
    padding: 4px 18px;
    border-radius: 50px;
    color: #a5b4fc;
    font-size: 0.65em;
    font-weight: 700;
    vertical-align: middle;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.25);
}
.ai-sparkle-icon {
    color: #818cf8;
}
.hero-subtitle-new {
    max-width: 680px;
    margin: 0 auto 32px;
    font-size: 15.5px;
    color: #94a3b8;
    line-height: 1.65;
}

/* Search Input Bar */
.hero-search-box {
    max-width: 580px;
    margin: 0 auto 36px;
    position: relative;
}
.hero-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 16px;
    z-index: 2;
}
.hero-search-input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    background: #141522 !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 50px !important;
    font-size: 14.5px !important;
    color: #ffffff !important;
    outline: none !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35) !important;
    transition: all 0.25s ease;
}
.hero-search-input::placeholder {
    color: #64748b !important;
}
.hero-search-input:focus {
    border-color: #6366f1 !important;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25), 0 8px 24px rgba(0, 0, 0, 0.35) !important;
}

/* Festival Calendar Section on Home */
.festival-calendar-section {
    background: #141522;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 24px;
    margin: 0 auto;
    max-width: 1100px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    text-align: left;
}
.calendar-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.calendar-header-bar h3 {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.calendar-header-bar h3 i {
    color: #818cf8;
}
.view-more-link {
    font-size: 13px;
    font-weight: 700;
    color: #818cf8;
    text-decoration: none;
    transition: color 0.2s ease;
}
.view-more-link:hover {
    color: #a5b4fc;
    text-decoration: underline;
}

.date-pills-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.date-pills-row::-webkit-scrollbar { display: none; }

.date-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.date-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}
.date-pill.active {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-color: #6366f1;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
}

.festival-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}
@media (min-width: 576px) {
    .festival-cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}

.festival-card-item {
    background: #1a1b2c;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.25s ease;
}
.festival-card-item:hover {
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.35);
    transform: translateY(-4px);
    color: #ffffff;
}
.festival-card-img-box {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 8px;
    background: #1e1b4b;
}
.festival-card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.festival-card-item:hover .festival-card-img-box img {
    transform: scale(1.06);
}
.festival-card-title {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

/* Business Categories Scroll Track */
.business-section-container {
    padding: 60px 0;
    overflow: hidden;
}
.business-scroll-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.business-scroll-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: scrollTrack 30s linear infinite;
}
.business-scroll-track:hover {
    animation-play-state: paused;
}
@keyframes scrollTrack {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.business-cat-card {
    width: 220px;
    height: 150px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.business-cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.business-cat-card:hover .business-cat-img {
    transform: scale(1.08);
}
.business-cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%);
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
}
.business-cat-name {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 4px;
}
.business-cat-btn {
    font-size: 11px;
    color: #818cf8;
    font-weight: 700;
}









/* ===== COMPLETE HOME PAGE FULL CONTENT STYLES ===== */
@push('styles')
<style>
    /* Hero Section (Matching User Reference Image) */
    .hero-section-new {
        position: relative;
        background: transparent;
        padding: 60px 24px 40px;
        text-align: center;
        overflow: hidden;
    }

    .hero-rating-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        padding: 6px 18px;
        border-radius: 50px;
        font-size: 13px;
        color: #475569;
        font-weight: 500;
        margin-bottom: 24px;
    }

    .stars-gold {
        color: #fbbf24;
        font-size: 13px;
    }

    /* Floating Pill Badges */
    .floating-tag {
        position: absolute;
        padding: 6px 14px;
        border-radius: 6px;
        font-size: 11px;
        font-weight: 600;
        color: white;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        z-index: 5;
    }

    .tag-blue {
        top: 20px;
        left: 12%;
        background: #60a5fa;
    }

    .tag-purple {
        bottom: 80px;
        right: 12%;
        background: #a855f7;
    }

    /* Hero Title Animations & Styling */
    @keyframes heroTitleFadeUp {
        0% {
            opacity: 0;
            transform: translateY(24px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes gradientShift {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    @keyframes aiBorderPulse {
        0%, 100% {
            box-shadow: 0 0 16px rgba(var(--primary-rgb, 147, 51, 234), 0.25), inset 0 0 10px rgba(var(--accent-rgb, 139, 92, 246), 0.15);
            border-color: rgba(var(--primary-rgb, 147, 51, 234), 0.4);
        }
        50% {
            box-shadow: 0 0 28px rgba(var(--accent-rgb, 139, 92, 246), 0.50), inset 0 0 14px rgba(var(--secondary-rgb, 236, 72, 153), 0.25);
            border-color: rgba(var(--accent-rgb, 139, 92, 246), 0.7);
        }
    }

    @keyframes sparkleRotate {
        0% { transform: scale(1) rotate(0deg); }
        50% { transform: scale(1.25) rotate(18deg); }
        100% { transform: scale(1) rotate(0deg); }
    }

    .hero-main-title {
        font-size: clamp(38px, 5vw, 68px);
        line-height: 1.12;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 20px;
        letter-spacing: -1.5px;
        animation: heroTitleFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    :root[data-theme="dark"] .hero-main-title {
        color: #ffffff;
    }

    .gradient-title-text {
        background: linear-gradient(135deg, var(--primary, #6366f1) 0%, var(--accent, #a855f7) 50%, var(--secondary, #ec4899) 100%);
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: gradientShift 6s ease infinite;
        display: inline-block;
    }

    .hero-main-title .light-word {
        color: #64748b;
        font-weight: 400;
    }

    .hero-main-title .grey-word {
        color: #1e293b;
        font-weight: 800;
        position: relative;
        display: inline-block;
    }

    :root[data-theme="dark"] .hero-main-title .grey-word {
        color: #e2e8f0;
    }

    /* Animated Glassmorphism AI Pill Box */
    .ai-pill-box {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        position: relative;
        vertical-align: middle;
        border: 2px solid rgba(var(--primary-rgb, 147, 51, 234), 0.4);
        background: linear-gradient(135deg, rgba(var(--primary-rgb, 147, 51, 234), 0.12), rgba(var(--accent-rgb, 139, 92, 246), 0.12));
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        padding: 4px 22px 5px;
        border-radius: 50px;
        color: var(--primary, #9333ea);
        font-weight: 700;
        font-size: 0.72em;
        margin-left: 8px;
        letter-spacing: -0.01em;
        animation: aiBorderPulse 3.5s ease-in-out infinite;
        transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
        cursor: pointer;
    }

    .ai-pill-box:hover {
        transform: translateY(-3px) scale(1.04);
        background: linear-gradient(135deg, rgba(var(--primary-rgb, 147, 51, 234), 0.22), rgba(var(--secondary-rgb, 236, 72, 153), 0.22));
    }

    .ai-sparkle-icon {
        font-size: 15px;
        color: var(--accent, #a855f7);
        animation: sparkleRotate 2.5s ease-in-out infinite;
        display: inline-block;
    }

    .hero-subtitle-new {
        max-width: 750px;
        margin: 0 auto 32px;
        font-size: 16px;
        color: #475569;
        line-height: 1.6;
        font-weight: 500;
    }

    /* Search Input Bar */
    .hero-search-box {
        max-width: 600px;
        margin: 0 auto;
        position: relative;
    }

    .hero-search-input {
        width: 100%;
        padding: 16px 20px 16px 48px;
        border: 1px solid #cbd5e1;
        border-radius: 12px;
        font-size: 15px;
        background: #ffffff;
        box-shadow: 0 4px 15px rgba(0,0,0,0.04);
        outline: none;
        transition: all 0.3s;
    }

    .hero-search-input:focus {
        border-color: var(--primary, #a855f7);
        box-shadow: 0 0 0 4px rgba(var(--primary-rgb, 168, 85, 247), 0.18);
    }

    .hero-search-icon {
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: #94a3b8;
        font-size: 16px;
    }

    /* 🗓️ Festival Calendar Section (Matching Reference Screenshot) */
    .festival-calendar-section {
        max-width: 1280px;
        margin: 40px auto 0;
        padding: 0 24px;
        text-align: left;
    }

    .calendar-header-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

    .calendar-header-bar h3 {
        font-size: 20px;
        font-weight: 700;
        color: var(--text-main, #ffffff) !important;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    :root[data-theme="light"] .calendar-header-bar h3 {
        color: #0f172a !important;
    }

    .calendar-header-bar .view-more-link {
        color: var(--primary, #3b82f6);
        font-weight: 600;
        font-size: 14px;
    }

    /* Date Pills Filter Bar */
    .date-pills-row {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 24px;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .date-pill {
        padding: 10px 22px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        background: #f1f5f9;
        color: #334155;
        cursor: pointer;
        transition: all 0.2s ease;
        white-space: nowrap;
        border: none;
    }

    .date-pill:hover {
        background: #e2e8f0;
    }

    .date-pill.active {
        background: linear-gradient(135deg, var(--primary, #7c3aed), var(--accent, #9333ea));
        color: white;
        box-shadow: 0 4px 12px rgba(var(--primary-rgb, 147, 51, 234), 0.35);
    }

    /* Poster Cards Grid */
    .festival-cards-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
    }

    /* Enhanced Animated Card Items */
    @keyframes cardFadeInScale {
        0% {
            opacity: 0;
            transform: translateY(24px) scale(0.92);
        }
        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    @keyframes pillPulse {
        0% { transform: scale(0.95); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }

    .festival-card-item {
        background: var(--bg-surface-elevated, #181928);
        border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
        border-radius: 16px;
        overflow: hidden;
        transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
        will-change: transform;
        animation: cardFadeInScale 0.45s cubic-bezier(0.16, 1, 0.3, 1) ease-out;
        text-decoration: none !important;
    }
    :root[data-theme="light"] .festival-card-item {
        background: #ffffff !important;
        border-color: #e2e8f0 !important;
    }

    .festival-card-item:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.35), 0 8px 16px rgba(0, 0, 0, 0.2);
        border-color: rgba(99, 102, 241, 0.5) !important;
    }

    .festival-card-img-box {
        width: 100%;
        aspect-ratio: 1 / 1;
        border-radius: 16px 16px 0 0;
        overflow: hidden;
        background: #1e1b4b;
        box-shadow: 0 4px 10px rgba(0,0,0,0.06);
        position: relative;
    }

    .festival-card-img-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100%;
        background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.35),
            transparent
        );
        transform: skewX(-25deg);
        z-index: 2;
        pointer-events: none;
    }

    .festival-card-item:hover .festival-card-img-box::before {
        left: 140%;
        transition: left 0.75s ease-in-out;
    }

    .festival-card-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .festival-card-item:hover .festival-card-img-box img {
        transform: scale(1.08);
    }

    .festival-card-title {
        font-size: 13.5px;
        font-weight: 700;
        color: var(--text-main, #ffffff);
        padding: 12px 14px;
        line-height: 1.3;
        text-align: center;
        transition: color 0.3s ease;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    :root[data-theme="light"] .festival-card-title {
        color: #1e293b !important;
    }

    .festival-card-item:hover .festival-card-title {
        color: #818cf8 !important;
    }

    /* Section Container */
    .section-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 90px 24px;
    }

    .section-title {
        text-align: center;
        /* max-width: 700px; */
        margin: 0 auto 60px;
    }

    .section-title h2 {
        font-size: 38px;
        color: #0f172a;
        margin-bottom: 16px;
    }

    .section-title p {
        font-size: 16px;
        color: #64748b;
    }

    /* 🎨 Pastel Feature Cards Grid (Matching Reference Screenshot) */
    .features-section-container {
        padding: 80px 24px;
        background: transparent;
    }

    .pastel-features-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        max-width: 1280px;
        margin: 0 auto;
    }

    .pastel-feature-card {
        background: #ffffff;
        border-radius: 24px;
        padding: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
        border: 1px solid rgba(226, 232, 240, 0.8);
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .pastel-feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
    }

    .pastel-card-top-box {
        border-radius: 20px;
        padding: 24px 20px;
        min-height: 220px;
        display: flex;
        flex-direction: column;
    }

    .pastel-blue {
        background: #e0f2fe;
    }

    .pastel-orange {
        background: #ffedd5;
    }

    .pastel-purple {
        background: #f3e8ff;
    }

    .pastel-green {
        background: #dcfce7;
    }

    .pastel-rose {
        background: #ffe4e6;
    }

    .pastel-teal {
        background: #ccfbf1;
    }

    .pastel-indigo {
        background: #e0e7ff;
    }

    .pastel-amber {
        background: #fef3c7;
    }

    .pastel-card-title {
        font-size: 22px;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 8px;
        font-family: 'Outfit', sans-serif;
    }

    .pastel-card-desc {
        font-size: 13px;
        color: #475569;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .pastel-tag-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: auto;
    }

    .pastel-tag-pill {
        padding: 6px 14px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 600;
        background: rgba(255, 255, 255, 0.7);
        color: #1e293b;
        backdrop-filter: blur(4px);
    }

    .pastel-card-footer {
        padding: 16px 16px 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .pastel-explore-text {
        font-size: 14px;
        font-weight: 700;
        color: #0f172a;
    }

    .pastel-arrow-btn {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #f1f5f9;
        color: #0f172a;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        transition: all 0.3s ease;
    }

    .pastel-feature-card:hover .pastel-arrow-btn {
        background: #0f172a;
        color: #ffffff;
        transform: translateX(3px);
    }

    /* ✨ Feature Showcase Section — matches reference image */
    .feature-showcase-wrapper {
        padding: 50px 24px 80px;
        max-width: 1360px;
        margin: 0 auto;
        position: relative;
    }

    .feature-showcase-dark-card {
        background: #18181b;
        border-radius: 28px;
        padding: 64px 32px 145px;
        position: relative;
        overflow: hidden;
        text-align: center;
        background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
        background-size: 20px 20px;
    }

    .feature-showcase-hero {
        max-width: 840px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .feature-showcase-hero h2 {
        font-size: clamp(26px, 3.8vw, 44px);
        line-height: 1.22;
        letter-spacing: -0.02em;
        font-family: 'Outfit', sans-serif;
        margin-bottom: 20px;
    }

    .fsh-white {
        color: #ffffff;
        font-weight: 800;
    }

    .fsh-muted {
        color: rgba(255, 255, 255, 0.65);
        font-weight: 700;
    }

    .feature-showcase-hero p {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.65);
        line-height: 1.65;
        margin-bottom: 32px;
        font-family: 'Inter', sans-serif;
    }

    .feature-showcase-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #ffffff;
        color: #18181b;
        font-size: 14px;
        font-weight: 700;
        padding: 12px 28px;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.2s ease;
        font-family: 'Outfit', sans-serif;
        box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    }

    .feature-showcase-cta:hover {
        background: #f4f4f5;
        color: #000000;
        transform: translateY(-2px);
    }

    /* 3-column feature cards floating over dark card bottom */
    .feature-showcase-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        max-width: 1220px;
        margin: -110px auto 0;
        padding: 0 16px;
        position: relative;
        z-index: 10;
    }

    .fsc-card {
        background: #ffffff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 45px -10px rgba(0,0,0,0.14);
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid rgba(0,0,0,0.05);
    }

    .fsc-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 28px 55px -12px rgba(0,0,0,0.20);
    }

    .fsc-visual {
        position: relative;
        width: 100%;
        height: 290px;
        overflow: hidden;
        border-radius: 20px 20px 0 0;
        user-select: none;
    }

    /* Arrow button top-right */
    .fsc-arrow-btn {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 16px;
        text-decoration: none;
        z-index: 20;
        transition: background 0.2s, transform 0.2s;
    }

    .fsc-arrow-btn:hover {
        background: rgba(0, 0, 0, 0.45);
        transform: scale(1.08);
        color: #ffffff;
    }

    /* CARD 1 VISUAL (Social Media) */
    .fsc-visual-1 {
        background: linear-gradient(135deg, #fef08a 0%, #fbcfe8 50%, #fda4af 100%);
        padding: 14px;
    }

    .fsc-mockup-wrap-1 {
        display: flex;
        gap: 10px;
        height: 100%;
        position: relative;
    }

    .fsc-mock-poster-left {
        width: 48%;
        background: #ffffff;
        border-radius: 12px;
        padding: 10px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .fsc-mock-img-box {
        position: relative;
        width: 100%;
        height: 110px;
        border-radius: 8px;
        overflow: hidden;
    }

    .fsc-mock-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .fsc-mock-tag {
        position: absolute;
        top: 6px;
        right: 6px;
        background: #ffffff;
        color: #000;
        font-size: 9px;
        font-weight: 800;
        padding: 2px 5px;
        border-radius: 4px;
        line-height: 1;
    }

    .fsc-mock-text-box {
        font-size: 13px;
        font-weight: 800;
        line-height: 1.25;
        color: #1e293b;
        margin: 6px 0;
        font-family: 'Outfit', sans-serif;
    }

    .fsc-hl-green {
        background: #a3e635;
        padding: 1px 4px;
        border-radius: 4px;
    }

    .fsc-hl-brand {
        color: #0f172a;
    }

    .fsc-mock-reminder-box {
        background: #dc2626;
        border-radius: 8px;
        padding: 8px;
        color: #ffffff;
        position: relative;
    }

    .fsc-rem-title {
        font-size: 8px;
        font-weight: 900;
        letter-spacing: 0.05em;
        opacity: 0.85;
    }

    .fsc-rem-bubble {
        background: #ffffff;
        color: #1e293b;
        font-size: 9px;
        padding: 6px 8px;
        border-radius: 6px;
        margin-top: 4px;
        display: flex;
        align-items: center;
        gap: 4px;
        font-weight: 600;
        line-height: 1.2;
    }

    .fsc-rem-bubble i {
        color: #dc2626;
        font-size: 10px;
    }

    .fsc-mock-poster-right {
        width: 52%;
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .fsc-mock-banner-top {
        height: 65px;
        border-radius: 10px;
        overflow: hidden;
    }

    .fsc-mock-banner-top img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .fsc-mock-purple-card {
        background: #4c1d95;
        border-radius: 10px;
        padding: 12px 10px;
        color: #ffffff;
    }

    .fsc-purple-text {
        font-size: 11px;
        line-height: 1.2;
        font-weight: 700;
    }

    .fsc-purple-text strong {
        font-size: 16px;
        font-weight: 900;
        letter-spacing: 0.05em;
    }

    .fsc-mock-popup {
        position: absolute;
        top: 25px;
        right: 5px;
        left: 5px;
        background: #ffffff;
        border-radius: 12px;
        padding: 10px 12px;
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
        border: 1px solid #f1f5f9;
        display: flex;
        flex-direction: column;
        gap: 5px;
        z-index: 10;
    }

    .fsc-popup-btn {
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        color: #334155;
        font-size: 11px;
        font-weight: 600;
        text-align: center;
        padding: 5px 8px;
        border-radius: 6px;
    }

    .fsc-popup-active {
        background: var(--primary, #6366f1);
        border-color: var(--primary, #6366f1);
        color: #ffffff;
        font-weight: 700;
    }

    .fsc-popup-socials {
        display: flex;
        align-items: center;
        justify-content: space-around;
        margin-top: 4px;
        padding-top: 4px;
        border-top: 1px solid #f1f5f9;
    }

    .fsc-soc-icon {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        color: #fff;
    }

    .fsc-soc-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
    .fsc-soc-x { background: #000000; }
    .fsc-soc-fb { background: #1877f2; }
    .fsc-soc-in { background: #0a66c2; }


    /* CARD 2 VISUAL (Website Builder) */
    .fsc-visual-2 {
        background: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #c084fc 100%);
        padding: 16px;
    }

    .fsc-mockup-wrap-2 {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .fsc-url-card {
        position: absolute;
        top: 10px;
        left: 10px;
        width: 210px;
        background: #ffffff;
        border-radius: 14px;
        padding: 12px 14px;
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
        z-index: 10;
        border: 1px solid #f1f5f9;
    }

    .fsc-url-label {
        font-size: 10px;
        font-weight: 700;
        color: #64748b;
        margin-bottom: 4px;
    }

    .fsc-url-input {
        background: #f8fafc;
        border: 1px solid #cbd5e1;
        border-radius: 6px;
        padding: 6px 10px;
        font-size: 11px;
        color: #334155;
        margin-bottom: 6px;
        font-family: monospace;
    }

    .fsc-url-sub {
        font-size: 9px;
        color: #64748b;
        margin-bottom: 8px;
    }

    .fsc-url-btn {
        background: var(--primary, #3b82f6);
        color: #ffffff;
        font-size: 12px;
        font-weight: 700;
        border: none;
        border-radius: 8px;
        padding: 8px;
        width: 100%;
        cursor: pointer;
        font-family: 'Outfit', sans-serif;
    }

    .fsc-web-canvas {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 82%;
        height: 80%;
        background: linear-gradient(135deg, var(--primary, #6366f1) 0%, var(--accent, #8b5cf6) 100%);
        border-radius: 16px 0 0 0;
        padding: 14px;
        color: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-shadow: 0 -8px 24px rgba(0,0,0,0.12);
    }

    .fsc-web-header {
        display: flex;
        justify-content: flex-end;
        gap: 10px;
        font-size: 9px;
        opacity: 0.8;
    }

    .fsc-web-hero {
        position: relative;
    }

    .fsc-web-title {
        font-size: 18px;
        font-weight: 800;
        line-height: 1.2;
        font-family: 'Outfit', sans-serif;
        margin-bottom: 10px;
    }

    .fsc-web-cta-yellow {
        display: inline-block;
        background: #facc15;
        color: #000000;
        font-size: 10px;
        font-weight: 800;
        padding: 5px 12px;
        border-radius: 20px;
        margin-bottom: 10px;
    }

    .fsc-web-tags {
        display: flex;
        gap: 6px;
    }

    .fsc-web-tag {
        background: #facc15;
        color: #000000;
        font-size: 8px;
        font-weight: 800;
        padding: 3px 8px;
        border-radius: 4px;
    }

    .fsc-web-person {
        position: absolute;
        bottom: -14px;
        right: 10px;
        width: 65px;
        height: 65px;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid #ffffff;
    }

    .fsc-web-person img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    /* CARD 3 VISUAL (Marketing Functions) */
    .fsc-visual-3 {
        background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
        padding: 14px;
    }

    .fsc-mockup-wrap-3 {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .fsc-bg-remover-part {
        position: absolute;
        top: 0;
        left: 0;
        width: 50%;
        height: 100%;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .fsc-transparent-grid {
        width: 100%;
        height: 100%;
        background-image: conic-gradient(#cbd5e1 90deg, #ffffff 90deg 180deg, #cbd5e1 180deg 270deg, #ffffff 270deg);
        background-size: 16px 16px;
        position: relative;
    }

    .fsc-model-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .fsc-bg-tooltip {
        position: absolute;
        top: 10px;
        right: 5px;
        background: #ffffff;
        border-radius: 10px;
        padding: 8px 10px;
        box-shadow: 0 12px 28px rgba(0,0,0,0.18);
        display: flex;
        align-items: center;
        gap: 8px;
        max-width: 180px;
        z-index: 10;
    }

    .fsc-bg-tt-icon {
        width: 24px;
        height: 24px;
        border-radius: 6px;
        overflow: hidden;
        flex-shrink: 0;
    }

    .fsc-bg-tt-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .fsc-bg-tt-text strong {
        display: block;
        font-size: 10px;
        font-weight: 800;
        color: #1e293b;
        line-height: 1.1;
    }

    .fsc-bg-tt-text p {
        font-size: 8px;
        color: #64748b;
        line-height: 1.1;
        margin: 2px 0 0;
    }

    .fsc-cursor-pointer {
        position: absolute;
        bottom: -8px;
        right: 15px;
        color: #1e293b;
        font-size: 12px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }

    .fsc-quote-card {
        position: absolute;
        bottom: 10px;
        right: 0;
        width: 58%;
        background: #047857;
        color: #ffffff;
        border-radius: 12px;
        padding: 12px;
        box-shadow: 0 10px 24px rgba(0,0,0,0.15);
    }

    .fsc-quote-card p {
        font-size: 11px;
        font-weight: 700;
        line-height: 1.3;
        margin: 0 0 6px;
        font-family: 'Outfit', sans-serif;
    }

    .fsc-quote-hl {
        background: #ffffff;
        color: #047857;
        padding: 0 3px;
        border-radius: 3px;
        font-weight: 900;
    }

    .fsc-quote-author {
        display: block;
        font-size: 10px;
        font-weight: 800;
        opacity: 0.9;
    }

    .fsc-floating-tag {
        position: absolute;
        bottom: 50px;
        left: 36%;
        background: #ffffff;
        color: #475569;
        font-size: 12px;
        font-weight: 700;
        padding: 5px 12px;
        border-radius: 6px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.16);
        border: 2px solid #a855f7;
        z-index: 12;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .fsc-tag-cursor {
        width: 6px;
        height: 12px;
        background: #a855f7;
    }

    .fsc-body {
        padding: 24px;
        flex: 1;
    }

    .fsc-title {
        font-size: 19px;
        font-weight: 800;
        color: #0f172a;
        line-height: 1.3;
        margin-bottom: 10px;
        font-family: 'Outfit', sans-serif;
    }

    .fsc-desc {
        font-size: 14px;
        color: #475569;
        line-height: 1.65;
        font-family: 'Inter', sans-serif;
        margin: 0;
    }

    .fsc-desc strong {
        color: #0f172a;
        font-weight: 700;
    }

    @media (max-width: 990px) {
        .feature-showcase-cards {
            grid-template-columns: 1fr;
            margin-top: -60px;
        }
        .feature-showcase-dark-card {
            padding-bottom: 100px;
        }
    }

    /* Features Grid */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .feature-card {
        background: white;
        border: 1px solid #e2e8f0;
        border-radius: 20px;
        padding: 32px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    }

    .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.15);
        border-color: #cbd5e1;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
        color: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        margin-bottom: 20px;
    }

    .feature-card h3 {
        font-size: 20px;
        color: #0f172a;
        margin-bottom: 12px;
    }

    .feature-card p {
        font-size: 14px;
        color: #64748b;
        line-height: 1.6;
    }

    /* Business Showcase & Image Gallery */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .poster-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.06);
        position: relative;
        transition: all 0.3s ease;
    }

    .poster-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    }

    .poster-img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        display: block;
    }

    .poster-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
        padding: 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .poster-title {
        color: white;
        font-weight: 600;
        font-size: 14px;
    }

    .btn-sm-edit {
        background: var(--primary);
        color: white;
        padding: 6px 14px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 600;
    }

    /* 🏢 Business Categories Auto Horizontal Scroll Carousel */
    .business-section-container {
        padding: 70px 0;
        background: transparent;
        overflow: hidden;
    }

    .business-scroll-wrapper {
        width: 100%;
        overflow: hidden;
        position: relative;
        padding: 20px 0;
        margin-top: 20px;
    }

    .business-scroll-wrapper::before,
    .business-scroll-wrapper::after {
        content: "";
        position: absolute;
        top: 0;
        width: 120px;
        height: 100%;
        z-index: 10;
        pointer-events: none;
    }

    .business-scroll-wrapper::before {
        left: 0;
        background: linear-gradient(to right, #ffffff 0%, transparent 100%);
    }

    .business-scroll-wrapper::after {
        right: 0;
        background: linear-gradient(to left, #ffffff 0%, transparent 100%);
    }

    .business-scroll-track {
        display: flex;
        gap: 24px;
        width: max-content;
        animation: scrollHorizontal 35s linear infinite;
    }

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

    @keyframes scrollHorizontal {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    .business-cat-card {
        width: 240px;
        height: 330px;
        border-radius: 28px;
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(226, 232, 240, 0.8);
        display: block;
    }

    .business-cat-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 35px -5px rgba(37, 99, 235, 0.25);
    }

    .business-cat-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

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

    .business-cat-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 55%, transparent 100%);
        padding: 24px 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        color: white;
    }

    .business-cat-name {
        font-size: 20px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 6px;
        font-family: 'Outfit', sans-serif;
    }

    .business-cat-desc {
        font-size: 12px;
        color: #cbd5e1;
        line-height: 1.4;
        margin-bottom: 16px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .business-cat-btn {
        background: rgba(255, 255, 255, 0.92);
        color: #0f172a;
        font-size: 13px;
        font-weight: 700;
        padding: 10px;
        border-radius: 50px;
        text-align: center;
        backdrop-filter: blur(8px);
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .business-cat-card:hover .business-cat-btn {
        background: var(--primary, #2563eb);
        color: white;
    }

    /* 📲 Download App CTA Section — matches reference image */
    .download-cta-wrapper {
        padding: 40px 24px 80px;
        max-width: 1320px;
        margin: 0 auto;
        position: relative;
    }

    .download-cta-card {
        background: linear-gradient(135deg, #f0f7ff 0%, #edf5ff 60%, #e0eefe 100%);
        border-radius: 36px;
        padding: 56px 64px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(59, 130, 246, 0.15);
        box-shadow: 0 20px 45px -15px rgba(59, 130, 246, 0.12);
    }

    .download-glow {
        position: absolute;
        right: 40px;
        top: -60px;
        width: 540px;
        height: 540px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(147, 197, 253, 0.50) 0%, rgba(219, 234, 254, 0.20) 55%, transparent 75%);
        pointer-events: none;
    }

    .download-text-side {
        max-width: 520px;
        position: relative;
        z-index: 5;
    }

    .download-text-side h2 {
        font-size: clamp(28px, 3.6vw, 44px);
        font-weight: 800;
        color: #0f172a;
        font-family: 'Outfit', sans-serif;
        line-height: 1.2;
        margin-bottom: 16px;
        letter-spacing: -0.02em;
    }

    .download-text-side p {
        font-size: 16px;
        color: #475569;
        line-height: 1.65;
        margin-bottom: 32px;
        font-family: 'Inter', sans-serif;
    }

    .download-buttons-row {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .btn-dl-ios {
        background: #0f172a;
        color: #ffffff !important;
        padding: 14px 28px;
        border-radius: 9999px;
        font-weight: 700;
        font-size: 14.5px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        font-family: 'Outfit', sans-serif;
        box-shadow: 0 10px 25px rgba(15, 23, 42, 0.20);
        transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    }

    .btn-dl-ios:hover {
        background: #1e293b;
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(15, 23, 42, 0.30);
    }

    .btn-dl-android {
        background: #ffffff;
        color: #0f172a !important;
        padding: 14px 28px;
        border-radius: 9999px;
        font-weight: 700;
        font-size: 14.5px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        font-family: 'Outfit', sans-serif;
        border: 1px solid #e2e8f0;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    }

    .btn-dl-android:hover {
        background: #f8fafc;
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10);
    }

    /* Right side: Mobile Frame & App Poster Grid Screenshot */
    .download-phone-side {
        position: relative;
        z-index: 5;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

    .phone-device-frame {
        width: 320px;
        height: 500px;
        background: #0f172a;
        border-radius: 46px;
        padding: 9px;
        box-shadow: 
            0 30px 70px -10px rgba(15, 23, 42, 0.45),
            inset 0 0 0 2px #94a3b8,
            inset 0 0 0 4px #1e293b;
        position: relative;
        margin-bottom: -220px;
    }

    /* Left Hardware Side Buttons */
    .phone-device-frame::before {
        content: '';
        position: absolute;
        left: -5px;
        top: 80px;
        width: 4px;
        height: 32px;
        background: #94a3b8;
        border-radius: 3px 0 0 3px;
        box-shadow: 0 45px 0 #94a3b8, 0 85px 0 #94a3b8;
    }

    .phone-notch {
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 140px;
        height: 20px;
        background: #000000;
        border-radius: 0 0 14px 14px;
        z-index: 30;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .phone-notch-speaker {
        width: 40px;
        height: 3px;
        background: #27272a;
        border-radius: 2px;
    }

    .phone-notch-camera {
        width: 8px;
        height: 8px;
        background: #18181b;
        border-radius: 50%;
        border: 1.5px solid #3f3f46;
    }

    .phone-screen {
        width: 100%;
        height: 100%;
        background: #e2e8f0;
        border-radius: 38px;
        overflow: hidden;
        position: relative;
        padding-top: 18px;
    }

    /* 2-Column Poster Grid inside Phone */
    .phone-posters-viewport {
        height: 100%;
        overflow-y: auto;
        padding: 6px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .phone-posters-viewport::-webkit-scrollbar {
        display: none;
    }

    .phone-posters-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .phone-poster-card {
        background: #ffffff;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        aspect-ratio: 1/1;
        display: flex;
        flex-direction: column;
    }

    .phone-poster-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Top Right Crown & Free Badges matching reference image */
    .phone-badge-crown {
        position: absolute;
        top: 5px;
        right: 5px;
        width: 22px;
        height: 22px;
        background: #000000;
        border: 1.5px solid #facc15;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #facc15;
        font-size: 11px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.4);
        z-index: 10;
    }

    .phone-badge-free {
        position: absolute;
        top: 5px;
        right: 5px;
        background: #000000;
        border: 1.5px solid #ffffff;
        border-radius: 5px;
        color: #ffffff;
        font-size: 8px;
        font-weight: 900;
        padding: 2px 4px;
        letter-spacing: 0.05em;
        box-shadow: 0 2px 6px rgba(0,0,0,0.4);
        z-index: 10;
    }

    /* Custom CSS Poster Designs when sample images loop */
    .phone-poster-inner {
        width: 100%;
        height: 100%;
        padding: 8px 6px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .ppi-1 { background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 50%, #fed7aa 100%); }
    .ppi-2 { background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #bae6fd 100%); }
    .ppi-3 { background: linear-gradient(135deg, #fffbeb 0%, #fef08a 50%, #fde047 100%); }
    .ppi-4 { background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #86efac 100%); }
    .ppi-5 { background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 50%, #fbcfe8 100%); }
    .ppi-6 { background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #a7f3d0 100%); }

    .ppi-svg-icon {
        width: 38px;
        height: 38px;
        margin: 2px auto;
        flex-shrink: 0;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.12));
    }

    .ppi-sub {
        font-size: 6.5px;
        color: #475569;
        font-weight: 700;
        line-height: 1.15;
    }

    .ppi-title {
        font-size: 10px;
        font-weight: 900;
        color: #991b1b;
        margin: 2px 0;
        line-height: 1.15;
        font-family: 'Outfit', sans-serif;
    }

    @media (max-width: 900px) {
        .download-cta-card {
            flex-direction: column;
            padding: 40px 24px;
            text-align: center;
        }
        .download-text-side p {
            margin-left: auto;
            margin-right: auto;
        }
        .download-buttons-row {
            justify-content: center;
        }
        .phone-device-frame {
            margin-bottom: 0;
            transform: none;
        }
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .hero-main-title {
            font-size: 48px;
        }
        .festival-cards-grid {
            grid-template-columns: repeat(3, 1fr);
        }
        .features-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .gallery-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 640px) {
        .hero-main-title {
            font-size: 36px;
        }
        .festival-cards-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .features-grid, .gallery-grid {
            grid-template-columns: 1fr;
        }
        .download-cta-section {
            flex-direction: column;
            text-align: center;
            gap: 24px;
        }
    }

    /* 🌟 Testimonials Infinite Auto-Scroll Masonry Section */
    .testimonials-section {
        padding: 80px 24px 100px;
        background: transparent;
        position: relative;
        overflow: hidden;
    }

    .testimonials-header {
        text-align: center;
        margin-bottom: 48px;
        position: relative;
        z-index: 2;
    }

    .testimonials-header h2 {
        font-size: clamp(28px, 3.5vw, 42px);
        font-weight: 800;
        color: #0f172a;
        font-family: 'Outfit', sans-serif;
        line-height: 1.25;
        margin: 16px 0 12px;
        letter-spacing: -0.02em;
    }

    .testimonials-header p {
        font-size: 16px;
        color: #64748b;
        font-family: 'Inter', sans-serif;
        max-width: 620px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .testimonials-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #e2e8f0;
        padding: 6px 16px;
        border-radius: 9999px;
        font-size: 13px;
        font-weight: 600;
        color: #334155;
        font-family: 'Inter', sans-serif;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }

    .badge-star-circle {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #3b82f6;
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
    }

    .testimonials-viewport {
        max-width: 1240px;
        margin: 0 auto;
        height: 640px;
        position: relative;
        overflow: hidden;
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
        mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        height: 100%;
    }

    .testimonials-column {
        display: flex;
        flex-direction: column;
        gap: 20px;
        will-change: transform;
    }

    .col-anim-1 {
        animation: scrollUpLoop 18s linear infinite;
    }

    .col-anim-2 {
        animation: scrollUpLoop 22s linear infinite;
    }

    .col-anim-3 {
        animation: scrollUpLoop 20s linear infinite;
    }

    .testimonials-viewport:hover .testimonials-column {
        animation-play-state: paused;
    }

    @keyframes scrollUpLoop {
        0% {
            transform: translateY(0);
        }
        100% {
            transform: translateY(-50%);
        }
    }

    .testimonial-card {
        background: #ffffff;
        border-radius: 18px;
        padding: 24px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        border: 1px solid #f1f5f9;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .testimonial-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        border-color: #e2e8f0;
    }

    .testimonial-quote {
        font-size: 14.5px;
        line-height: 1.6;
        color: #1e293b;
        font-weight: 600;
        margin-bottom: 20px;
        font-family: 'Inter', sans-serif;
    }

    .testimonial-user {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .testimonial-avatar {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        object-fit: cover;
        flex-shrink: 0;
        border: 1px solid #e2e8f0;
    }

    .testimonial-info {
        display: flex;
        flex-direction: column;
    }

    .testimonial-name {
        font-size: 14px;
        font-weight: 700;
        color: #0f172a;
        font-family: 'Outfit', sans-serif;
        line-height: 1.2;
    }

    .testimonial-role {
        font-size: 12px;
        color: #64748b;
        font-family: 'Inter', sans-serif;
        line-height: 1.3;
        margin-top: 2px;
    }

/* ==========================================================================
   DARK MODE HEADINGS & DIGITAL BUSINESS CARDS UPGRADED STYLES
   ========================================================================== */

/* Dark Mode Section Headings Fix */
.section-title h2 {
    font-size: 36px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 12px !important;
    font-family: 'Outfit', sans-serif !important;
    letter-spacing: -0.5px !important;
}
.section-title p {
    font-size: 15.5px !important;
    color: #94a3b8 !important;
    max-width: 680px !important;
    margin: 0 auto !important;
    line-height: 1.6 !important;
}

:root[data-theme="light"] .section-title h2 {
    color: #0f172a !important;
}
:root[data-theme="light"] .section-title p {
    color: #64748b !important;
}

/* Digital Business Cards Section UI */
.biz-cards-section {
    padding: 60px 0 80px;
    background: transparent;
    position: relative;
}
.biz-cards-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}
.vcard-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(168, 85, 247, 0.15));
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #a5b4fc;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.biz-cards-horizontal-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 20px 8px 32px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(99, 102, 241, 0.4) transparent;
}
.biz-cards-horizontal-scroll::-webkit-scrollbar {
    height: 8px;
}
.biz-cards-horizontal-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}
.biz-cards-horizontal-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 10px;
}

.biz-card-item {
    flex: 0 0 280px;
    max-width: 280px;
}
@media (min-width: 768px) {
    .biz-card-item {
        flex: 0 0 320px;
        max-width: 320px;
    }
}

.biz-card-inner {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #141522;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    aspect-ratio: 4 / 5;
    display: flex;
    flex-direction: column;
}
.biz-card-inner:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.25), 0 8px 20px rgba(0, 0, 0, 0.4);
}

.biz-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}
.biz-card-inner:hover .biz-card-img {
    transform: scale(1.06);
}

.biz-card-badge-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #e2e8f0;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
}
.biz-card-badge-tag i {
    color: #f59e0b;
}

.biz-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 20%, rgba(15, 23, 42, 0.92) 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    z-index: 2;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}
.biz-card-inner:hover .biz-card-overlay {
    opacity: 1;
}

.biz-card-title {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff !important;
    margin: 0 0 12px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    line-height: 1.3;
}

.btn-biz-card-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 12px;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
    transition: all 0.25s ease;
}
.btn-biz-card-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.6);
    color: #ffffff !important;
}



/* ==========================================================================
   FAQ, CATEGORY, PRICING & ALL PAGES UNIFIED STYLES
   ========================================================================== */

/* FAQ Page */
.faq-hero {
    text-align: center;
    padding: 60px 24px 40px;
    max-width: 800px;
    margin: 0 auto;
}
.faq-hero h1 {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-main, #ffffff) !important;
    margin-bottom: 12px;
}
:root[data-theme="light"] .faq-hero h1 {
    color: #0f172a !important;
}
.faq-hero p {
    font-size: 15.5px;
    color: var(--text-sub, #94a3b8) !important;
    margin-bottom: 24px;
}

.faq-search-wrap {
    max-width: 520px;
    margin: 0 auto;
    position: relative;
}
.faq-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}
.faq-search-input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    background: var(--bg-surface, #141522) !important;
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.12)) !important;
    border-radius: 50px !important;
    color: var(--text-main, #ffffff) !important;
    font-size: 14.5px !important;
    outline: none !important;
    transition: all 0.25s ease;
}
:root[data-theme="light"] .faq-search-input {
    background: #ffffff !important;
    border-color: #cbd5e1 !important;
    color: #0f172a !important;
}

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 900px;
    margin: 0 auto 36px;
    padding: 0 24px;
}
.faq-cat-pill {
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    background: var(--bg-surface-elevated, #1a1b2c);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    color: var(--text-sub, #94a3b8);
    cursor: pointer;
    transition: all 0.2s ease;
}
:root[data-theme="light"] .faq-cat-pill {
    background: #f1f5f9 !important;
    border-color: #e2e8f0 !important;
    color: #475569 !important;
}
.faq-cat-pill.active {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) !important;
    color: #ffffff !important;
    border-color: #6366f1 !important;
}

.faq-main {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px 80px;
}
.faq-group-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main, #ffffff) !important;
    margin: 24px 0 12px;
}
:root[data-theme="light"] .faq-group-label {
    color: #0f172a !important;
}
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--bg-surface, #141522) !important;
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1)) !important;
    border-radius: 16px !important;
    overflow: hidden;
    transition: all 0.25s ease;
}
:root[data-theme="light"] .faq-item {
    background: #ffffff !important;
    border-color: #e2e8f0 !important;
}
.faq-question {
    width: 100%;
    padding: 18px 24px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    color: var(--text-main, #ffffff) !important;
    font-weight: 600;
    font-size: 15px;
}
:root[data-theme="light"] .faq-question {
    color: #0f172a !important;
}
.faq-answer {
    padding: 0 24px 20px;
    font-size: 14.5px;
    color: var(--text-sub, #94a3b8) !important;
    line-height: 1.6;
}
:root[data-theme="light"] .faq-answer {
    color: #475569 !important;
}

/* Category View Page */
.cat-page-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}
.cat-header-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    background: var(--bg-surface, #141522) !important;
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1)) !important;
    border-radius: 20px;
    padding: 20px 24px;
}
:root[data-theme="light"] .cat-header-container {
    background: #ffffff !important;
    border-color: #e2e8f0 !important;
}
.cat-header-back-btn {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main, #ffffff);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
}
.cat-header-icon-box {
    width: 54px; height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(168,85,247,0.2));
    border: 1px solid rgba(99,102,241,0.3);
    color: #a5b4fc;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    overflow: hidden;
}
.cat-header-icon-box img {
    width: 100%; height: 100%; object-fit: cover;
}
.cat-header-badge {
    font-size: 11px;
    font-weight: 700;
    color: #818cf8;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.cat-header-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main, #ffffff) !important;
    margin: 2px 0 0;
}
:root[data-theme="light"] .cat-header-title {
    color: #0f172a !important;
}

.cat-filter-pills {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 12px;
    margin-bottom: 28px;
}

/* Pricing Page Hero & Comparison */
.pricing-hero {
    text-align: center;
    padding: 60px 24px 40px;
    max-width: 800px;
    margin: 0 auto;
}
.pricing-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(99,102,241,0.15));
    border: 1px solid rgba(245,158,11,0.3);
    color: #f59e0b;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}
.pricing-hero-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-main, #ffffff) !important;
    margin-bottom: 12px;
}
:root[data-theme="light"] .pricing-hero-title {
    color: #0f172a !important;
}
.pricing-hero-subtitle {
    font-size: 16px;
    color: var(--text-sub, #94a3b8) !important;
    max-width: 620px;
    margin: 0 auto;
}
.pricing-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 80px;
}


/* Category Posters Grid & Modern Poster Cards */
.cat-posters-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 1200px) {
    .cat-posters-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 991px) {
    .cat-posters-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}
@media (max-width: 576px) {
    .cat-posters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.category-card-modern {
    display: block;
    text-decoration: none !important;
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
    background: var(--bg-surface-elevated, #181928);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
    position: relative;
}

:root[data-theme="light"] .category-card-modern {
    background: #ffffff !important;
    border-color: #e2e8f0 !important;
}

.category-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.35), 0 8px 16px rgba(0, 0, 0, 0.2);
    border-color: rgba(99, 102, 241, 0.5) !important;
}

.category-card-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 18px;
}

.category-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card-modern:hover .category-card-thumb img {
    transform: scale(1.08);
}

.category-edit-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.category-card-modern:hover .category-edit-badge {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-color: #6366f1;
    transform: scale(1.1) rotate(10deg);
}

.custom-pagination .page-item .page-link {
    background: var(--bg-surface-elevated, #181928) !important;
    border-color: var(--border-color, rgba(255, 255, 255, 0.1)) !important;
    color: var(--text-main, #ffffff) !important;
    border-radius: 10px;
    margin: 0 3px;
}
.custom-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
    border-color: #6366f1 !important;
    color: #ffffff !important;
}
