/* 
   Lexa Bilişim Stylesheet
   Created with premium modern aesthetics: Outfit & Inter fonts, custom variables, 
   glassmorphism, subtle grid patterns, glowing accents, and smooth transitions.
*/

@font-face {
    font-family: 'Ethnocentric';
    src: url('../fonts/Ethnocentric.woff') format('woff'),
         url('../fonts/Ethnocentric.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ----------------------------------------------------
   DESIGN TOKENS & ROOT VARIABLES
---------------------------------------------------- */
:root {
    /* Color Palette - Premium Light/Tech Aesthetic */
    --primary: #2563eb; /* Royal Blue (similar to Senyorsoft blue) */
    --primary-hover: #1d4ed8;
    --primary-rgb: 37, 99, 235;
    
    --secondary: #06b6d4; /* Teal 500 */
    --secondary-hover: #0891b2;
    --secondary-rgb: 6, 182, 212;
    
    --accent-purple: #8b5cf6; /* Violet 500 */
    
    --dark: #0f172a; /* Slate 900 */
    --dark-hover: #1e293b; /* Slate 800 */
    
    --text-dark: #0f172a; /* Slate 900 - main body text is dark now */
    --text-muted: #64748b; /* Slate 500 for muted text */
    --text-light: #ffffff; /* White text on dark buttons/elements */
    
    --bg-light: #ffffff; /* Clean White Background */
    --bg-gray: #f8fafc; /* Very light slate background for panels */
    --bg-grid-color: rgba(37, 99, 235, 0.03); /* Soft blue grid */
    
    --border-color: #e2e8f0; /* Light Slate 200 */
    --border-light: #f1f5f9; /* Slate 100 */
    
    --success: #10b981; /* Emerald 500 */
    --success-bg: rgba(16, 185, 129, 0.08);
    
    --warning: #f59e0b; /* Amber 500 */
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout Details */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-pill: 50px;
    
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.08);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----------------------------------------------------
   BASE STYLES & RESET
---------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

button {
    font-family: inherit;
    font-size: inherit;
    border: none;
    background: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* ----------------------------------------------------
   UTILITY BARS
---------------------------------------------------- */

/* Topmost Dark Bar */
.top-bar-dark {
    background-color: var(--dark);
    color: #94a3b8; /* Slate 400 */
    font-size: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-family: var(--font-body);
    font-weight: 500;
}

.top-bar-dark-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left, .top-bar-right, .top-bar-center {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-indicator {
    color: #34d399; /* Emerald 400 */
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: inherit;
    border-radius: 50%;
    top: 0;
    left: 0;
    animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(2.2); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

.divider {
    color: rgba(255, 255, 255, 0.15);
}

.badge-new {
    background-color: var(--success);
    color: var(--text-light);
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

.promo-text {
    color: var(--text-light);
    font-size: 11.5px;
}

.phone-link {
    color: var(--text-light);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.phone-link:hover {
    color: var(--primary);
}

/* Secondary Light Bar */
.top-bar-light {
    background-color: var(--bg-light);
    color: var(--text-muted);
    font-size: 13px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-weight: 500;
}

.top-bar-light-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.light-bar-left, .light-bar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.light-bar-left a:hover, .light-bar-right a:hover {
    color: var(--primary);
}

.light-bar-left a i, .light-bar-right a i {
    margin-right: 4px;
    font-size: 14px;
}

.login-link {
    font-weight: 600;
    color: var(--text-dark);
}

.register-link {
    background-color: #f1f5f9;
    color: var(--text-dark);
    padding: 6px 14px;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.register-link i {
    font-size: 9px;
    transition: transform var(--transition-fast);
}

.register-link:hover {
    background-color: var(--dark);
    color: var(--text-light);
}

.register-link:hover i {
    transform: translateX(2px);
}

/* ----------------------------------------------------
   MAIN HEADER / NAVIGATION
---------------------------------------------------- */
.main-header {
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 20px;
    z-index: 100;
    padding: 12px 24px;
    margin: 0 auto 10px;
    width: calc(100% - 48px);
    max-width: 1280px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 101;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform var(--transition-smooth);
}

.logo:hover .logo-img {
    transform: rotate(10deg) scale(1.05);
}

.logo-img-large {
    height: 75px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-img-footer {
    height: 30px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Ethnocentric', sans-serif;
    font-size: 19px;
    font-weight: normal;
    letter-spacing: 0.5px;
    color: var(--text-dark);
}

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

.logo-text.light {
    color: var(--text-dark);
}

.logo-text.light span {
    color: var(--primary);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    background-color: #f1f5f9;
    padding: 6px;
    border-radius: var(--border-radius-pill);
    border: 1px solid var(--border-color);
}

.nav-item {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: var(--border-radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-fast);
}

.nav-item:hover {
    color: var(--text-dark);
    background-color: rgba(15, 23, 42, 0.05);
}

.nav-item.active {
    background-color: var(--dark);
    color: var(--text-light);
}

.nav-badge-new {
    background-color: #ef4444; /* Red 500 */
    color: var(--text-light);
    font-size: 8px;
    font-weight: 800;
    padding: 1px 4px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* CTA Buttons */
.btn {
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--border-radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
    box-shadow: 0 4px 14px rgba(0, 136, 255, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 255, 0.35);
}

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

.btn-teklif i {
    font-size: 11px;
    transition: transform var(--transition-fast);
}

.btn-teklif:hover i {
    transform: translateX(3px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 22px;
    color: var(--text-dark);
    padding: 8px;
    z-index: 101;
}

/* ----------------------------------------------------
   HERO SECTION
---------------------------------------------------- */.hero-section {
    position: relative;
    padding: 100px 0 120px;
    background-color: var(--bg-light);
    overflow: hidden;
}

/* Radial Gradient Grid Background */
.grid-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-size: 32px 32px;
    background-image: 
        radial-gradient(circle, var(--bg-grid-color) 1.5px, transparent 1.5px);
    mask-image: radial-gradient(circle, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle, black, transparent 80%);
}

/* Glowing Accent Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background-color: var(--primary);
    top: -150px;
    left: -150px;
}

.glow-2 {
    width: 600px;
    height: 600px;
    background-color: var(--secondary);
    bottom: -200px;
    right: -150px;
}

/* Large Glowing Watermark Logo in Background */
.bg-watermark-logo {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 650px;
    height: 650px;
    pointer-events: none;
    z-index: 0;
}

.bg-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.035; /* Faint watermark */
    filter: brightness(0); /* Turn into black silhouette */
    pointer-events: none;
}

/* Split Hero Container */
.hero-container-split {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.hero-content-left {
    flex: 1.1;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-visual-right {
    flex: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Delivery Badge */
.delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--success-bg);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 8px 18px;
    border-radius: var(--border-radius-pill);
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 28px;
}

.delivery-badge .green-dot {
    width: 7px;
    height: 7px;
    background-color: var(--success);
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.delivery-badge .green-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: inherit;
    border-radius: 50%;
    top: 0;
    left: 0;
    animation: pulseDot 2s infinite ease-in-out;
}

/* Hero Title */
.hero-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    text-align: left;
}

.hero-title strong {
    color: var(--primary);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Underline SVG Highlight */
.underline-highlight {
    position: relative;
    display: inline-block;
}

.stroke-underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 16px;
    z-index: -1;
    pointer-events: none;
}

/* Subtitle */
.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.7;
    text-align: left;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
}

.btn-dark-capsule {
    background-color: var(--dark);
    color: var(--text-light);
    font-weight: 700;
    padding: 16px 32px;
    border-radius: var(--border-radius-pill);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-dark-capsule:hover {
    background-color: var(--dark-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.25);
}

.btn-dark-capsule i {
    font-size: 11px;
    transition: transform var(--transition-fast);
}

.btn-dark-capsule:hover i {
    transform: translateX(3px);
}

.btn-text-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: var(--border-radius-pill);
}

.btn-text-link:hover {
    background-color: rgba(15, 23, 42, 0.05);
    color: var(--primary);
}

.btn-text-link i {
    font-size: 10px;
    transition: transform var(--transition-fast);
}

.btn-text-link:hover i {
    transform: translateX(3px);
}

/* Trust Signals */
.trust-signals {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    padding: 16px 0;
    border-top: 1px dashed rgba(15, 23, 42, 0.12);
    width: 100%;
    max-width: 600px;
    flex-wrap: wrap;
}

/* Premium Visual Right Column Styling */
/* Premium Visual Right Column Styling (3D Overlapping Card Stack) */
.hero-visual-stack {
    position: relative;
    width: 420px;
    height: 380px;
    perspective: 1000px;
}

.hero-stack-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
    top: 30px;
    left: 70px;
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}

.stack-card {
    position: absolute;
    width: 280px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--border-radius-md);
    padding: 16px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    z-index: 2;
}

.stack-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 8px;
}

.stack-card-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

/* Card coordinates positioning */
.card-b2b {
    top: 20px;
    left: 80px;
    transform: rotate(-3deg) translateZ(30px);
    z-index: 5;
}

.card-stok {
    top: 100px;
    left: 20px;
    transform: rotate(4deg) translateZ(10px);
    z-index: 4;
}

.card-saha {
    top: 180px;
    left: 90px;
    transform: rotate(-2deg) translateZ(-10px);
    z-index: 3;
}

/* 3D hover fan-out effect */
.hero-visual-stack:hover .card-b2b {
    transform: rotate(-1deg) translate(-10px, -20px) translateZ(50px);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.1);
}

.hero-visual-stack:hover .card-stok {
    transform: rotate(1deg) translate(-30px, 10px) translateZ(20px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.hero-visual-stack:hover .card-saha {
    transform: rotate(-1deg) translate(10px, 30px) translateZ(0px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.06);
}

/* ----------------------------------------------------
   SLIDER & CATEGORIES SECTION (SPLIT SIDEBAR LAYOUT)
---------------------------------------------------- */
.slider-section {
    padding: 60px 0 80px;
    background-color: var(--bg-gray);
    border-top: 1px solid var(--border-light);
}

.showcase-wrapper-split {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    background-color: #ffffff;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 40px;
}

.showcase-sidebar {
    background-color: #f8fafc;
    border-right: 1px solid var(--border-color);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-header {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-menu-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Sidebar pill styles override */
.showcase-sidebar .slider-pill {
    padding: 12px 16px;
    border-radius: var(--border-radius-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    background-color: transparent;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    text-align: left;
    width: 100%;
    transition: all var(--transition-fast);
}

.showcase-sidebar .slider-pill i {
    font-size: 14px;
}

.showcase-sidebar .slider-pill:hover {
    color: var(--text-dark);
    background-color: rgba(15, 23, 42, 0.04);
}

.showcase-sidebar .slider-pill.active {
    background-color: var(--dark);
    color: var(--text-light);
    border-color: var(--dark);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
}

/* Showcase details container style override */
.slider-section .showcase-container {
    background-color: #ffffff;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 40px;
    min-height: 420px;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.metrics-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.metrics-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.metrics-val {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.2;
}

.metrics-sub {
    font-size: 11px;
    color: var(--text-muted);
}

.pulse-dot-green {
    width: 6px;
    height: 6px;
    background-color: var(--success);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--success);
}

.active-bolt {
    color: var(--warning);
    font-size: 11px;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

@keyframes pulseRing {
    0% { transform: scale(0.85); opacity: 0.6; }
    100% { transform: scale(1.35); opacity: 0; }
}

.animate-fade-in-slow {
    animation: fadeIn 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in-delay {
    opacity: 0;
    animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

/* Customer Avatars */
.customer-avatars {
    display: flex;
    align-items: center;;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    border: 2.5px solid #ffffff;
    margin-right: -10px;
    box-shadow: var(--shadow-sm);
}

.avatar-1 { background-color: #3b82f6; }
.avatar-2 { background-color: #a855f7; }
.avatar-3 { background-color: #ec4899; }
.avatar-4 { background-color: #fbbf24; }

.avatar-count {
    margin-left: 20px;
    font-weight: 600;
    font-size: 13.5px;
    color: var(--text-dark);
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: var(--warning);
    display: flex;
    gap: 3px;
    font-size: 13px;
}

.rating-value {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
}

.support-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 13.5px;
    color: var(--success);
}

/* ----------------------------------------------------
   SLIDER & CATEGORIES SECTION
---------------------------------------------------- */
.slider-section {
    padding: 20px 0 80px;
    background-color: var(--bg-gray);
    border-top: 1px solid var(--border-light);
}

.slider-wrapper {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    padding: 10px 14px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

/* Slider Controls */
.slider-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
    z-index: 5;
}

.slider-arrow:hover {
    background-color: var(--dark);
    color: var(--text-light);
    border-color: var(--dark);
}

/* Scrollable Track */
.slider-track {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 4px;
    margin: 0 10px;
    width: 100%;
}

.slider-track::-webkit-scrollbar {
    display: none; /* Hide scrollbar in webkit browsers */
}
.slider-track {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Pills */
.slider-pill {
    padding: 12px 20px;
    border-radius: var(--border-radius-pill);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-muted);
    background-color: transparent;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.slider-pill i {
    font-size: 15px;
}

.slider-pill:hover {
    color: var(--text-dark);
    background-color: var(--bg-gray);
    border-color: var(--border-color);
}

.slider-pill.active {
    background-color: var(--dark);
    color: var(--text-light);
    border-color: var(--dark);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

/* ----------------------------------------------------
   INTERACTIVE SHOWCASE CONTAINERS
---------------------------------------------------- */
.showcase-container {
    background-color: #ffffff; /* Set explicit white background */
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    padding: 40px;
    box-shadow: var(--shadow-md);
    min-height: 380px;
    position: relative;
    overflow: hidden;
}

.showcase-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 136, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Dynamic Content Grid Layout */
.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp var(--transition-smooth) forwards;
}

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

.showcase-text-col h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 16px;
}

.showcase-text-col p {
    font-size: 15.5px;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

.showcase-feature-grid {
    display: grid;
    grid-template-columns: 1fr; /* Change to 1-column layout to prevent text cutoff */
    gap: 12px;
    margin-bottom: 32px;
}

.showcase-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.showcase-feature-item i {
    color: var(--primary);
    font-size: 15px;
    margin-top: 3px;
}

.showcase-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Card Visual Mockups */
.showcase-visual-col {
    background-color: var(--bg-gray);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    position: relative;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.01);
}

/* Interactive Card layout */
.interactive-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    padding: 24px;
    width: 100%;
    max-width: 380px;
    box-shadow: var(--shadow-md);
    transform: translateY(0);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.interactive-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    background-color: rgba(0, 136, 255, 0.1);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: var(--border-radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.card-details {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
}

.card-price span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

/* Live Speed Comparison Widget */
.speed-test-widget {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.speed-bar-container {
    width: 100%;
}

.speed-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
}

.speed-bar-bg {
    height: 12px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-pill);
    overflow: hidden;
    position: relative;
}

.speed-bar-fill {
    height: 100%;
    border-radius: var(--border-radius-pill);
    width: 0;
    transition: width 1.2s cubic-bezier(0.1, 0.8, 0.3, 1);
}

.speed-bar-fill.before {
    background-color: #ef4444;
}

.speed-bar-fill.after {
    background-color: var(--success);
}

.speed-score {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-top: 10px;
}

/* ----------------------------------------------------
   ABOUT / CORPORATE SECTION
---------------------------------------------------- */
.corporate-section {
    padding: 100px 0;
    background-color: var(--bg-gray);
    border-top: 1px solid var(--border-color);
}

.corporate-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    padding: 50px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-md);
    background-color: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-info h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.feature-info p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Dashboard Mockup Graphics */
.corporate-image-wrapper {
    display: flex;
    justify-content: center;
}

.dashboard-mockup {
    width: 100%;
    max-width: 440px;
    background-color: #ffffff;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    background-color: #f8fafc;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.dot-red { background-color: #ef4444; }
.dot-yellow { background-color: #f59e0b; }
.dot-green { background-color: #10b981; }

.mockup-search {
    background-color: #e2e8f0;
    color: var(--text-muted);
    font-size: 10px;
    padding: 3px 12px;
    border-radius: var(--border-radius-pill);
    margin-left: 20px;
    width: 160px;
}

.mockup-body {
    flex-grow: 1;
    display: flex;
}

.mockup-sidebar {
    width: 50px;
    background-color: #f1f5f9;
    border-right: 1px solid var(--border-color);
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.sidebar-item {
    width: 22px;
    height: 22px;
    background-color: #e2e8f0;
    border-radius: 6px;
}

.sidebar-item.active {
    background-color: var(--primary);
}

.mockup-content {
    flex-grow: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.stat-card {
    background-color: #f8fafc;
    border: 1px solid var(--border-color);
    height: 50px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: flex-end;
    padding: 6px;
}

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

.mockup-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.table-row {
    height: 12px;
    background-color: #f1f5f9;
    border-radius: 4px;
}

.table-row.header {
    height: 18px;
    background-color: #e2e8f0;
}

/* ----------------------------------------------------
   FOOTER SECTION
---------------------------------------------------- */
/* ----------------------------------------------------
   FOOTER SECTION (OBSIDIAN DARK SAAS STYLE)
---------------------------------------------------- */
.footer {
    background-color: #ffffff; /* Clean White */
    color: var(--text-muted); /* Slate 500 */
    padding: 80px 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--text-dark); /* Obsidian Dark title text */
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-col.brand p {
    margin: 20px 0 24px;
    font-size: 14px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-gray); /* Soft light gray circle */
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 1px solid var(--border-color);
}

.social-links a:hover {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    font-size: 14.5px;
    color: var(--text-muted);
}

.footer-col ul a:hover {
    color: var(--primary); /* hover blue */
    padding-left: 4px;
}

.footer-col.contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    margin-bottom: 16px;
}

.footer-col.contact i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 3px;
}

.footer-col.contact a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

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

/* Specific styling for company name inside footer */
.footer .logo-text {
    color: var(--text-dark);
}

.footer .logo-text span {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
    font-size: 13.5px;
    color: var(--text-muted);
}

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

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

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

/* ----------------------------------------------------
   MODAL / POPUP DIALOG
---------------------------------------------------- */
.modal {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.4); /* Softer overlay */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: #ffffff; /* White background */
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 600px;
    padding: 40px;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f1f5f9;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.modal-close:hover {
    background-color: #ef4444;
    color: #ffffff;
}

.modal-header {
    margin-bottom: 28px;
    text-align: center;
}

.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 14.5px;
    color: var(--text-muted);
}

.teklif-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.teklif-form.hidden {
    display: none;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input, .form-group select, .form-group textarea {
    font-family: var(--font-body);
    font-size: 14.5px;
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    background-color: var(--bg-light);
    color: var(--text-dark);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.form-group input:hover, .form-group select:hover, .form-group textarea:hover {
    border-color: #94a3b8;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 136, 255, 0.15);
    cursor: text;
}

.btn-submit {
    justify-content: center;
    margin-top: 10px;
    padding: 14px;
}

/* Success Message inside modal */
.form-success-msg {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
}

.form-success-msg.active {
    display: flex;
}

.success-icon {
    font-size: 64px;
    color: var(--success);
    margin-bottom: 20px;
    animation: scaleUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleUp {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.form-success-msg h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-success-msg p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 400px;
}

/* ----------------------------------------------------
   ANIMATION KEYFRAMES
---------------------------------------------------- */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-up-delay-1 {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.animate-slide-up-delay-2 {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.animate-slide-up-delay-3 {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

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

/* ----------------------------------------------------
   RESPONSIVE DESIGN (MEDIA QUERIES)
---------------------------------------------------- */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 46px;
    }
    
    .corporate-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 24px;
    }
    
    .corporate-image-wrapper {
        order: -1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Top bar adjustments */
    .top-bar-dark-container {
        justify-content: center;
        text-align: center;
    }
    .top-bar-light {
        display: none; /* Hide light utility bar on smaller screens */
    }
    
    /* Main Header & Hamburg menu */
    .main-header {
        padding: 12px 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 24px;
        right: 24px;
        background-color: #ffffff;
        border: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border-radius: var(--border-radius-md);
        display: none; /* Toggled via JS */
        z-index: 99;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-item {
        padding: 12px 18px;
        border-radius: var(--border-radius-sm);
    }
    
    .header-cta {
        display: none; /* Hide header CTA, show inside mobile nav or fallback */
    }
    
    /* Hero section */
    .hero-section {
        padding: 60px 0 80px;
    }
    
    .hero-container-split {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content-left {
        align-items: center;
        text-align: center;
    }
    
    .hero-visual-right {
        width: 100%;
        justify-content: center;
    }
    
    .hero-visual-stack {
        width: 100%;
        max-width: 320px;
        height: 280px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .btn-dark-capsule, .btn-text-link {
        width: 100%;
        justify-content: center;
    }
    
    .trust-signals {
        gap: 20px;
        flex-direction: column;
    }
    
    /* Interactive showcase */
    .showcase-container {
        padding: 24px;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .showcase-text-col h3 {
        font-size: 24px;
    }
    
    .showcase-feature-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-content {
        padding: 24px;
    }
}

/* ----------------------------------------------------
   HOMEPAGE SOLUTIONS GRID
---------------------------------------------------- */
.solutions-grid-section {
    padding: 80px 0 100px;
    background-color: var(--bg-gray);
    border-top: 1px solid var(--border-light);
}

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

.solution-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.2);
}

.solution-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.solution-card h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.solution-card p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.solution-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform var(--transition-fast);
}

.solution-link i {
    font-size: 11px;
    transition: transform var(--transition-fast);
}

.solution-card:hover .solution-link i {
    transform: translateX(4px);
}

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

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

/* Brand Card styling in hero stack */
.card-brand {
    top: 90px;
    left: 70px;
    transform: rotate(-1deg) translateZ(20px);
    z-index: 5;
    padding: 24px;
}

.hero-visual-stack:hover .card-brand {
    transform: rotate(1deg) translateY(-10px) translateZ(40px);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.12);
}

/* Premium Developer Grid & Mesh Glows */
.tech-grid-bg {
    position: relative;
    background-color: #ffffff;
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px), 
        linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center top;
    overflow-x: hidden;
}

.mesh-glow-blue {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(59, 130, 246, 0.02) 50%, transparent 100%);
    top: -200px;
    left: calc(50% - 300px);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.mesh-glow-purple {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.07) 0%, rgba(139, 92, 246, 0.01) 60%, transparent 100%);
    top: 10%;
    right: -100px;
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
}

.mesh-glow-green {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, rgba(16, 185, 129, 0.01) 60%, transparent 100%);
    top: 30%;
    left: -100px;
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
}

.text-gradient-primary {
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gradient-purple {
    background: linear-gradient(135deg, var(--text-dark) 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gradient-green {
    background: linear-gradient(135deg, var(--text-dark) 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.glass-card-premium {
    background: rgba(255, 255, 255, 0.82) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    box-shadow: 
        0 4px 30px rgba(15, 23, 42, 0.02), 
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 20px 45px rgba(15, 23, 42, 0.06) !important;
    position: relative;
    z-index: 2;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.glass-card-premium:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 10px 30px rgba(15, 23, 42, 0.04), 
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 30px 60px rgba(37, 99, 235, 0.08) !important;
}

/* Infinite Scrolling Top Bar Marquee styling */
.top-bar-marquee {
    flex: 1;
    max-width: 320px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(37, 99, 235, 0.05);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px dashed rgba(37, 99, 235, 0.2);
    margin: 0 15px;
}

.top-bar-marquee-track {
    display: inline-flex;
    gap: 15px;
    animation: top-bar-marquee-scroll 18s linear infinite;
}

.top-bar-marquee-track span {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
}

@keyframes top-bar-marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Hide on mobile for cleanliness */
@media (max-width: 768px) {
    .top-bar-marquee {
        display: none;
    }
}

/* ----------------------------------------------------
   CUSTOMER PANEL (DARK THEME) STYLES
---------------------------------------------------- */
body.panel-body-theme {
    background-color: #f8fafc;
    color: #334155;
    font-family: var(--font-body);
    overflow-y: auto;
}

.panel-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.panel-menu-wrapper {
    display: flex;
    flex: 1;
    justify-content: space-between;
    align-items: center;
    margin-left: 40px;
}

.panel-menu-toggle {
    display: none !important;
}

/* Top Navbar Styling */
.panel-navbar {
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 48px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}

.panel-navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.panel-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.panel-brand .logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.panel-brand .brand-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.panel-brand .brand-text span {
    color: var(--primary);
}

.panel-navigation {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.panel-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: var(--border-radius-md);
    color: #64748b;
    font-size: 14.5px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.panel-nav-link i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.panel-nav-link:hover {
    color: var(--primary);
    background-color: #f1f5f9;
}

.panel-nav-link.active {
    color: var(--primary);
    background-color: rgba(37, 99, 235, 0.08);
    position: relative;
}

.panel-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 16px;
    right: 16px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px 3px 0 0;
}

.panel-navbar-right {
    display: flex;
    align-items: center;
}

.panel-logout-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--border-radius-md);
    color: #ef4444;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.panel-logout-btn:hover {
    background-color: #fee2e2;
    color: #dc2626;
}

/* Main Content Area */
.panel-main-content {
    flex: 1;
    margin-left: 0;
    padding: 48px;
    background-color: #f8fafc;
    min-height: calc(100vh - 80px);
    position: relative;
    overflow: visible;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Background Ambient Glows - disabled for cleaner light theme */
.panel-glow-1 {
    display: none;
}

.panel-glow-2 {
    display: none;
}

.panel-header-section {
    position: relative;
    z-index: 5;
    margin-bottom: 40px;
    text-align: center;
}

.panel-welcome-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -0.8px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.panel-welcome-subtitle {
    font-size: 15.5px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.welcome-line-accent {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    margin: 16px auto 0;
}

.panel-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    border: 1px solid rgba(37, 99, 235, 0.12);
}

/* Statistics Grid */
.panel-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
    z-index: 5;
}

.panel-stat-card-dark {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-lg);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.panel-stat-card-dark:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: var(--shadow-md);
}

.panel-stat-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.panel-stat-label {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.panel-stat-value {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
}

.panel-stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.panel-stat-badge .green-dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
}

.panel-stat-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.panel-stat-icon-wrapper.blue {
    background-color: rgba(37, 99, 235, 0.1);
    color: #3b82f6;
}

.panel-stat-icon-wrapper.purple {
    background-color: rgba(139, 92, 246, 0.1);
    color: #a78bfa;
}

.panel-stat-icon-wrapper.emerald {
    background-color: rgba(16, 185, 129, 0.1);
    color: #34d399;
}

/* Two Column Content Layout */
.panel-content-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 24px;
    position: relative;
    z-index: 5;
}

.panel-card-dark {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.panel-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 16px;
}

.panel-card-header i {
    font-size: 18px;
    color: var(--primary);
}

.panel-card-header h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

/* License Key Card Detail */
.panel-product-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.license-display-section {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: var(--border-radius-md);
    padding: 20px;
    text-align: center;
    position: relative;
}

.license-display-label {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.license-key-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.license-key-code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 18px;
    font-weight: 700;
    color: #2563eb;
    letter-spacing: 1.5px;
    background: rgba(37, 99, 235, 0.05);
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.btn-copy-key {
    background-color: var(--primary);
    color: #ffffff;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-fast);
}

.btn-copy-key:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

.license-details-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 10px;
}

.license-detail-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 10px;
}

.license-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.license-detail-label {
    color: #64748b;
}

.license-detail-value {
    color: #334155;
    font-weight: 600;
}

.license-detail-value.active-status {
    color: #10b981;
}

/* Account Info Profile Table */
.panel-info-table {
    width: 100%;
    border-collapse: collapse;
}

.panel-info-table tr {
    border-bottom: 1px solid #e2e8f0;
}

.panel-info-table tr:last-child {
    border-bottom: none;
}

.panel-info-table td {
    padding: 16px 0;
    font-size: 14px;
}

.panel-info-table td.label-col {
    color: #64748b;
    font-weight: 500;
    width: 45%;
}

.panel-info-table td.value-col {
    color: #0f172a;
    font-weight: 600;
    text-align: right;
}

.panel-info-text {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
}

/* Profile Form Styling */
.profile-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.profile-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 10px;
    margin-bottom: 8px;
}

.profile-section-title i {
    font-size: 16px;
}

.profile-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.profile-form-grid.full-width {
    grid-template-columns: 1fr;
}

.profile-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-input-group label {
    font-size: 13.5px;
    font-weight: 600;
    color: #475569;
}

.profile-input-group input, 
.profile-input-group select, 
.profile-input-group textarea {
    font-family: var(--font-body);
    font-size: 14.5px;
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid #cbd5e1;
    background-color: #ffffff;
    color: #0f172a;
    transition: all var(--transition-fast);
    width: 100%;
    cursor: pointer;
}

.profile-input-group input:hover, 
.profile-input-group select:hover, 
.profile-input-group textarea:hover {
    border-color: #94a3b8;
}

.profile-input-group input:focus, 
.profile-input-group select:focus, 
.profile-input-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    cursor: text;
}

.profile-input-group input:disabled, 
.profile-input-group select:disabled, 
.profile-input-group textarea:disabled {
    background-color: #f1f5f9;
    color: #64748b;
    cursor: not-allowed;
    border-color: #e2e8f0;
}

.profile-input-subtext {
    font-size: 12px;
    font-weight: 500;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.profile-input-subtext.muted {
    color: #64748b;
}

.profile-input-subtext.warning {
    color: #d97706; /* amber-600 */
}

.profile-input-subtext i {
    font-size: 11px;
}

.btn-save-profile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--primary);
    color: #ffffff;
    font-size: 14.5px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
    transition: all var(--transition-fast);
    border: none;
    align-self: flex-start;
}

.btn-save-profile:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-save-profile:disabled {
    background-color: #93c5fd;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsive Panel styling */
@media (max-width: 1024px) {
    .panel-content-layout {
        grid-template-columns: 1fr;
    }
    .panel-navbar {
        padding: 16px 24px;
    }
}

@media (max-width: 768px) {
    .panel-navbar {
        padding: 12px 16px;
        position: relative;
    }
    
    .panel-navbar-container {
        position: relative;
    }

    .panel-brand .brand-text {
        display: block !important;
    }

    .panel-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        font-size: 22px;
        color: #0f172a;
        cursor: pointer;
        padding: 8px;
        border-radius: 8px;
        transition: background-color var(--transition-fast);
    }
    .panel-menu-toggle:hover {
        background-color: #f1f5f9;
    }

    .panel-menu-wrapper {
        display: none;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: 100%;
        left: -16px;
        right: -16px;
        background-color: #ffffff;
        border-bottom: 1px solid #cbd5e1;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
        z-index: 1000;
        margin-left: 0;
    }

    .panel-menu-wrapper.active {
        display: flex;
    }
    
    .panel-navigation {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        width: 100%;
    }
    
    .panel-nav-link {
        width: 100%;
        justify-content: flex-start;
        border-radius: var(--border-radius-md);
        padding: 12px 16px;
        height: auto;
    }
    
    .panel-nav-link.active::after {
        display: none;
    }
    
    .panel-nav-link span,
    .panel-logout-btn span {
        display: inline !important;
    }
    
    .panel-navbar-right {
        border-top: 1px solid #cbd5e1;
        padding-top: 16px;
        width: 100%;
    }

    .panel-logout-btn {
        width: 100%;
        justify-content: flex-start;
        border-radius: var(--border-radius-md);
        padding: 12px 16px;
        height: auto;
    }
    
    .panel-main-content {
        margin-left: 0;
        padding: 30px 20px;
    }
    
    .panel-stats-grid {
        grid-template-columns: 1fr;
    }

    .profile-form-grid {
        grid-template-columns: 1fr;
    }
}

/* ----------------------------------------------------
   PROFILE TWO-COLUMN GRID LAYOUT
---------------------------------------------------- */
.profile-grid-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    align-items: start;
    max-width: 1400px;
    width: 100%;
    margin-bottom: 40px;
}

.profile-avatar-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 24px;
    position: relative;
    overflow: hidden;
}

.profile-avatar-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.profile-avatar-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    font-family: var(--font-heading);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
    border: 4px solid #ffffff;
    z-index: 2;
    position: relative;
}

.profile-avatar-glow {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    filter: blur(10px);
    opacity: 0.6;
    z-index: 1;
    animation: pulse-avatar-glow 3s infinite alternate;
}

@keyframes pulse-avatar-glow {
    0% { opacity: 0.4; transform: scale(0.98); }
    100% { opacity: 0.8; transform: scale(1.04); }
}

.profile-avatar-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.profile-role-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background-color: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    border-radius: 30px;
    font-size: 12.5px;
    font-weight: 700;
    margin-bottom: 28px;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.profile-quick-stats {
    width: 100%;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
}

.quick-stat-item .stat-lbl {
    color: #64748b;
    font-weight: 500;
}

.quick-stat-item .stat-val {
    color: #0f172a;
    font-weight: 700;
}

.profile-verification-status {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.verification-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: var(--border-radius-sm);
}

.verification-item.verified {
    background-color: rgba(16, 185, 129, 0.06);
    color: #10b981;
}

.verification-item.pending {
    background-color: rgba(245, 158, 11, 0.06);
    color: #d97706;
}

@media (max-width: 1024px) {
    .profile-grid-container {
        grid-template-columns: 1fr;
    }
}

/* Catalog Horizontal Slider */
.catalog-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.catalog-slider-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px;
    scrollbar-width: none; /* Firefox */
}

.catalog-slider-track::-webkit-scrollbar {
    display: none; /* Safari & Chrome */
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all var(--transition-fast);
    opacity: 0;
    pointer-events: none;
}

.catalog-slider-container:hover .slider-arrow {
    opacity: 1;
    pointer-events: auto;
}

.slider-arrow:hover {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.05);
}

.slider-arrow.prev-arrow {
    left: 10px;
}

.slider-arrow.next-arrow {
    right: 10px;
}

/* Vertical Watermark Branding */
.vertical-watermark {
    position: fixed;
    left: 60px;
    top: 200px;
    transform: rotate(90deg);
    transform-origin: left top;
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 900;
    color: rgba(37, 99, 235, 0.035);
    text-transform: uppercase;
    letter-spacing: 12px;
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    user-select: none;
    transition: all var(--transition-fast);
}

@media (max-width: 1500px) {
    .vertical-watermark {
        opacity: 0;
        pointer-events: none;
    }
}

/* Cookie consent banner mobile styles */
@media (max-width: 576px) {
    #cookie-consent-banner > div {
        gap: 12px !important;
    }
    #cookie-consent-banner > div > div:last-child {
        flex-direction: column !important;
        width: 100% !important;
        align-items: stretch !important;
    }
    #cookie-consent-banner button {
        width: 100% !important;
        text-align: center !important;
    }
}
