/* ================================================
   NDAKAARU DIGITAL SERVICES — Design System
   Dark Mode Premium + Senegalese Accents
   ================================================ */

/* ---- CSS Custom Properties (Design Tokens) ---- */
:root {
    /* Core Dark Palette */
    --bg-primary: #0a0e1a;
    --bg-secondary: #111827;
    --bg-card: #1a1f2e;
    --bg-card-hover: #232838;
    --bg-glass: rgba(26, 31, 46, 0.65);
    --bg-glass-border: rgba(255, 255, 255, 0.06);

    /* Text */
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-accent: #ffffff;

    /* Tech Pole Colors */
    --tech-primary: #0ea5e9;
    --tech-secondary: #8b5cf6;
    --tech-gradient: linear-gradient(135deg, #0ea5e9, #8b5cf6);

    /* Print Pole Colors (Senegalese flag-inspired) */
    --print-primary: #10b981;
    --print-secondary: #f59e0b;
    --print-gradient: linear-gradient(135deg, #10b981, #f59e0b);
    --print-red: #ef4444;

    /* Accent & UI */
    --accent-gradient: linear-gradient(135deg, #0ea5e9, #10b981);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
    --shadow-glow-tech: 0 0 30px rgba(14, 165, 233, 0.15);
    --shadow-glow-print: 0 0 30px rgba(16, 185, 129, 0.15);

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Typography */
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.5rem;
    --font-size-6xl: 4.5rem;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 150ms;
    --duration-normal: 300ms;
    --duration-slow: 500ms;

    /* Z-index */
    --z-navbar: 1000;
    --z-dropdown: 1010;
    --z-modal: 1050;
    --z-whatsapp: 900;
}

/* ================================================
   NANO BANANA LIGHT MODE THEME OVERRIDES
   ================================================ */
html.light-mode,
body.light-mode {
    --bg-primary: #fbfbfe;
    --bg-secondary: #f3f4f8;
    --bg-card: #ffffff;
    --bg-card-hover: #f7f8fd;
    --bg-glass: rgba(255, 255, 255, 0.85);
    --bg-glass-border: rgba(245, 158, 11, 0.15);

    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-accent: #020617;

    --border-subtle: rgba(245, 158, 11, 0.12);
    --border-light: rgba(245, 158, 11, 0.25);

    --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 12px 32px -8px rgba(245, 158, 11, 0.12);
    --shadow-lg: 0 24px 48px -12px rgba(15, 23, 42, 0.08);
    --shadow-glow-tech: 0 0 30px rgba(14, 165, 233, 0.12);
    --shadow-glow-print: 0 0 30px rgba(245, 158, 11, 0.2);

    --accent-gradient: linear-gradient(135deg, #facc15, #f59e0b);
}

/* Light mode specific overrides for deep elements across all pages */
body.light-mode .navbar {
    background: rgba(251, 251, 254, 0.85);
    backdrop-filter: blur(16px);
}

body.light-mode .navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(245, 158, 11, 0.15);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.08);
}

body.light-mode .hero,
body.light-mode .page-hero,
body.light-mode .service-hero,
body.light-mode .blog-hero,
body.light-mode .article-header {
    background: radial-gradient(circle at 50% -20%, rgba(250, 204, 21, 0.18), transparent 70%),
                linear-gradient(180deg, #fbfbfe 0%, #f1f3fa 100%);
}

body.light-mode .hero-title span,
body.light-mode .page-hero-title span {
    background: linear-gradient(135deg, #d97706 0%, #ca8a04 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.light-mode .nav-links {
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

body.light-mode .btn-primary {
    background: linear-gradient(135deg, #facc15, #f59e0b);
    color: #0f172a;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

body.light-mode .btn-primary:hover {
    box-shadow: 0 12px 28px rgba(245, 158, 11, 0.45);
    transform: translateY(-2px);
}

body.light-mode .detail-card,
body.light-mode .service-card,
body.light-mode .spec-card,
body.light-mode .feature-card,
body.light-mode .pricing-card,
body.light-mode .tracking-card,
body.light-mode .step-card,
body.light-mode .article-content,
body.light-mode .info-card,
body.light-mode .sim-card {
    background: #ffffff;
    border-color: rgba(245, 158, 11, 0.15);
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.05);
}

body.light-mode input:not([type="checkbox"]):not([type="radio"]),
body.light-mode select,
body.light-mode textarea {
    background: #ffffff;
    color: #0f172a;
    border-color: rgba(0, 0, 0, 0.15);
}

body.light-mode input:focus,
body.light-mode select:focus,
body.light-mode textarea:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

body.light-mode #mkpCanvas {
    background: #ffffff;
    border-color: rgba(245, 158, 11, 0.2);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.03);
}

body.light-mode .cart-overlay {
    background: rgba(15, 23, 42, 0.4);
}

body.light-mode .cart-sidebar,
body.light-mode .cart-drawer {
    background: #ffffff;
    border-left-color: rgba(245, 158, 11, 0.2);
    box-shadow: -10px 0 40px rgba(15, 23, 42, 0.15);
}

body.light-mode .cookie-banner-wrapper .cookie-card {
    background: #ffffff;
    border-color: rgba(245, 158, 11, 0.2);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

body.light-mode .footer {
    background: #f1f3f9;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Theme toggle button */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1.1rem;
    transition: all var(--duration-fast) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: scale(1.05);
}

.theme-toggle .theme-icon {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
}

body.light-mode .theme-toggle .theme-icon {
    transform: rotate(180deg);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--duration-normal) var(--ease-out);
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

/* ---- Container ---- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-accent);
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    white-space: nowrap;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
}

.btn:hover::before {
    opacity: 1;
}

.btn-sm {
    padding: 8px 20px;
    font-size: var(--font-size-sm);
}

.btn-md {
    padding: 12px 28px;
    font-size: var(--font-size-base);
}

.btn-lg {
    padding: 16px 36px;
    font-size: var(--font-size-lg);
}

.btn-primary {
    background: var(--tech-gradient);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.45);
}

.btn-outline {
    border: 2px solid var(--border-light);
    color: var(--text-primary);
    background: transparent;
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    border-color: var(--print-primary);
    color: var(--print-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-print);
}

.btn-text {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--font-size-sm);
    transition: color var(--duration-fast), background var(--duration-fast);
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
}

.btn-text:hover {
    color: var(--print-red);
    background: rgba(239, 68, 68, 0.08);
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-navbar);
    padding: var(--space-md) 0;
    transition: all var(--duration-normal) var(--ease-out);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-subtle);
    padding: var(--space-sm) 0;
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: var(--z-dropdown);
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: var(--font-size-xl);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--duration-fast) var(--ease-out);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--tech-gradient);
    border-radius: var(--radius-full);
    transition: width var(--duration-normal) var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-accent);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    z-index: var(--z-dropdown);
}

/* Language Toggle */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
}

.lang-toggle:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.lang-flag {
    font-size: 1.1em;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: var(--z-dropdown);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--duration-normal) var(--ease-out);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ================================================
   HERO SECTION (Phase 2 — Enhanced)
   ================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(14, 165, 233, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 60%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(14, 165, 233, 0.3), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(139, 92, 246, 0.2), transparent),
        radial-gradient(1px 1px at 60% 20%, rgba(16, 185, 129, 0.3), transparent),
        radial-gradient(1px 1px at 80% 50%, rgba(245, 158, 11, 0.2), transparent),
        radial-gradient(2px 2px at 10% 80%, rgba(14, 165, 233, 0.15), transparent),
        radial-gradient(1px 1px at 90% 90%, rgba(139, 92, 246, 0.15), transparent);
    animation: particlesDrift 20s linear infinite alternate;
}

@keyframes particlesDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-30px, -20px); }
}

/* SVG Geometric Pattern Overlay */
.hero-geo-pattern {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.8;
    animation: fadeIn 1.5s var(--ease-out) 0.5s both;
}

/* Floating SVG shapes */
.hero-shape {
    animation-duration: 15s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.hero-shape-1 {
    animation-name: floatShape1;
}

.hero-shape-2 {
    animation-name: floatShape2;
}

.hero-shape-3 {
    animation-name: floatShape3;
}

.hero-shape-4 {
    animation-name: floatShape4;
}

@keyframes floatShape1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -15px) rotate(10deg); }
}

@keyframes floatShape2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-15px, 20px) rotate(-8deg); }
}

@keyframes floatShape3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10px, 10px) scale(1.15); }
}

@keyframes floatShape4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-10px, -15px) scale(0.9); }
}

/* Floating Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.hero-orb-1 {
    width: 300px;
    height: 300px;
    background: rgba(14, 165, 233, 0.07);
    top: 10%;
    left: -5%;
    animation: orbFloat1 18s infinite;
}

.hero-orb-2 {
    width: 250px;
    height: 250px;
    background: rgba(139, 92, 246, 0.06);
    top: 50%;
    right: -5%;
    animation: orbFloat2 22s infinite;
}

.hero-orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(16, 185, 129, 0.06);
    bottom: 5%;
    left: 30%;
    animation: orbFloat3 20s infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(40px, 30px); }
    66% { transform: translate(-20px, 50px); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-30px, -40px); }
    66% { transform: translate(20px, -20px); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -20px); }
    66% { transform: translate(-30px, 30px); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--bg-glass-border);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--text-secondary);
    animation: fadeInDown 0.8s var(--ease-out) both;
}

/* Two-line hero title */
.hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.hero-title-line {
    display: block;
    font-size: clamp(2.5rem, 6vw, var(--font-size-6xl));
    background: linear-gradient(135deg, var(--text-accent) 0%, var(--text-secondary) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-accent {
    background: var(--tech-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s var(--ease-out) 0.35s both;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, var(--font-size-3xl));
    font-weight: 700;
    background: var(--print-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: -8px;
    animation: fadeInUp 0.8s var(--ease-out) 0.45s both;
}

.hero-desc {
    font-size: var(--font-size-lg);
    color: var(--text-muted);
    max-width: 600px;
    animation: fadeInUp 0.8s var(--ease-out) 0.55s both;
}

.hero-ctas {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s var(--ease-out) 0.65s both;
}

/* Hero Stats — with dividers */
.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
    padding: var(--space-lg) var(--space-xl);
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--radius-xl);
    animation: fadeInUp 0.8s var(--ease-out) 0.8s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: var(--font-size-4xl);
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--tech-primary);
}

.stat-label {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 1s var(--ease-out) 1.2s both;
    z-index: 1;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--border-light);
    border-radius: 13px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--tech-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

.scroll-text {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* ================================================
   SECTIONS COMMON
   ================================================ */
.section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    color: var(--tech-primary);
    font-size: var(--font-size-sm);
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
}

.badge-print {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
    color: var(--print-primary);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, var(--font-size-4xl));
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.section-desc {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Alternate section backgrounds */
.section-tech {
    background: var(--bg-secondary);
}

.section-print {
    background: var(--bg-primary);
}

.section-gallery {
    background: var(--bg-secondary);
}

.section-testimonials {
    background: var(--bg-primary);
}

/* ---- Testimonials Carousel ---- */
.testimonials-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform var(--duration-slow) var(--ease-out);
}

.testimonial-card {
    flex: 0 0 calc(33.333% - var(--space-md));
    margin: 0 calc(var(--space-md) / 2);
    background: var(--bg-card);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    transition: transform var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-normal);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: var(--font-size-lg);
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.7;
    flex: 1;
    font-style: italic;
}

.testimonial-text::before {
    content: '"';
    font-size: 2rem;
    color: var(--tech-primary);
    font-family: Georgia, serif;
    line-height: 0;
    margin-right: 4px;
    vertical-align: -0.3em;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-subtle);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: var(--font-size-sm);
    flex-shrink: 0;
}

.testimonial-name {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

/* ---- Carousel Navigation ---- */
.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.testi-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast) var(--ease-out);
}

.testi-btn:hover {
    background: var(--tech-primary);
    color: #fff;
    border-color: var(--tech-primary);
    transform: scale(1.1);
}

.testi-dots {
    display: flex;
    gap: var(--space-sm);
}

.testi-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: var(--border-light);
    cursor: pointer;
    transition: all var(--duration-fast);
    border: none;
    padding: 0;
}

.testi-dot.active {
    width: 28px;
    background: var(--accent-gradient);
}

/* ---- Testimonials Responsive ---- */
@media (max-width: 767px) {
    .testimonial-card {
        flex: 0 0 calc(100% - var(--space-md));
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .testimonial-card {
        flex: 0 0 calc(50% - var(--space-md));
    }
}

/* ================================================
   FAQ SECTION
   ================================================ */
.section-faq {
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    overflow: hidden;
    background: var(--bg-card);
    transition: border-color var(--duration-fast),
                box-shadow var(--duration-fast);
}

.faq-item:hover {
    border-color: var(--border-light);
}

.faq-item.open {
    border-color: var(--tech-primary);
    box-shadow: var(--shadow-glow-tech);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-primary);
    transition: color var(--duration-fast);
}

.faq-question:hover {
    color: var(--tech-primary);
}

.faq-icon {
    font-size: var(--font-size-xl);
    font-weight: 300;
    color: var(--text-muted);
    transition: transform var(--duration-normal) var(--ease-out),
                color var(--duration-fast);
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--tech-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-normal) var(--ease-out),
                padding var(--duration-normal) var(--ease-out);
    padding: 0 var(--space-xl);
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 var(--space-xl) var(--space-lg);
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.7;
}

/* ================================================
   FOOTER (Enhanced)
   ================================================ */
.footer-desc {
    color: var(--text-muted);
    font-size: var(--font-size-xs);
    line-height: 1.6;
    margin-top: var(--space-sm);
}

.footer-contact a {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    text-decoration: none;
    transition: color var(--duration-fast);
}

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

.footer-hours {
    margin-top: var(--space-md);
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    padding: 4px 12px;
    background: rgba(14, 165, 233, 0.08);
    border-radius: var(--radius-full);
    display: inline-block;
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.back-to-top {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: var(--font-size-xs);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
}

.back-to-top:hover {
    background: var(--accent-gradient);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

.section-contact {
    background: var(--bg-primary);
}

/* ================================================
   SERVICE CARDS (Glass Morphism)
   ================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.service-card {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--tech-gradient);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-glow-tech);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.print-card::before {
    background: var(--print-gradient);
}

.service-card.print-card:hover {
    box-shadow: var(--shadow-glow-print);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: var(--space-md);
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.15);
}

.print-card .service-icon {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.15);
}

.service-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.service-desc {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.service-price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--font-size-sm);
    color: var(--print-secondary);
}

/* Card link arrow */
.service-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-card .card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: var(--space-md);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--tech-primary);
    transition: all var(--duration-fast) var(--ease-out);
}

.service-card:hover .card-arrow {
    gap: 10px;
}

.card-arrow svg {
    transition: transform var(--duration-fast) var(--ease-out);
}

.service-card:hover .card-arrow svg {
    transform: translateX(4px);
}

/* ================================================
   DETAIL PAGES (Phase 3 — Service Pages)
   ================================================ */

/* Page Hero Banner */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-top: 80px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-primary) 0%, rgba(10, 14, 26, 0.6) 40%, rgba(10, 14, 26, 0.3) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    padding-bottom: var(--space-3xl);
}

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.page-hero-breadcrumb a {
    color: var(--tech-primary);
    transition: color var(--duration-fast);
}

.page-hero-breadcrumb a:hover {
    color: var(--text-accent);
}

.page-hero-title {
    font-size: clamp(2rem, 5vw, var(--font-size-5xl));
    font-weight: 900;
    margin-bottom: var(--space-md);
}

.page-hero-desc {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 700px;
    line-height: 1.7;
}

.page-hero-price-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    padding: 8px 20px;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--print-secondary);
}

/* Feature Grid */
.detail-section {
    padding: var(--space-3xl) 0;
}

.detail-section:nth-child(even) {
    background: var(--bg-secondary);
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.detail-feature {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all var(--duration-normal) var(--ease-out);
}

.detail-feature:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-glow-tech);
}

.detail-feature-icon {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.detail-feature h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.detail-feature p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Pricing Table */
.pricing-table {
    margin-top: var(--space-xl);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--bg-glass-border);
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: var(--space-md) var(--space-xl);
    align-items: center;
    border-bottom: 1px solid var(--bg-glass-border);
    transition: background var(--duration-fast);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row:hover {
    background: var(--bg-glass);
}

.pricing-row-header {
    background: var(--bg-card);
}

.pricing-row-header span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.pricing-item {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.pricing-value {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--print-secondary);
    text-align: right;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.process-step {
    text-align: center;
    padding: var(--space-xl);
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--tech-gradient);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-md);
}

.process-step h4 {
    font-size: var(--font-size-base);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.process-step p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Banner */
.detail-cta {
    padding: var(--space-3xl) 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(139, 92, 246, 0.05));
}

.detail-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.detail-cta h3 {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.detail-cta p {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.detail-cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Detail Gallery */
.detail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.detail-gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--bg-glass-border);
    aspect-ratio: 16/10;
}

.detail-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

.detail-gallery-item:hover img {
    transform: scale(1.05);
}

/* Back to top link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--tech-primary);
    font-weight: 600;
    font-size: var(--font-size-sm);
    transition: all var(--duration-fast);
}

.back-link:hover {
    gap: 10px;
    color: var(--text-accent);
}

@media (max-width: 767px) {
    .page-hero {
        min-height: 40vh;
    }
    
    .pricing-row {
        grid-template-columns: 1fr;
        gap: var(--space-xs);
    }
    
    .pricing-value {
        text-align: left;
    }
}

/* ================================================
   CAMERA QUOTE SIMULATOR (Phase 3)
   ================================================ */
.simulator {
    margin-top: var(--space-3xl);
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.simulator-header {
    text-align: center;
    padding: var(--space-xl) var(--space-xl) var(--space-md);
}

.simulator-title {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    margin-top: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.simulator-desc {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.simulator-body {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0;
}

.simulator-controls {
    padding: var(--space-lg) var(--space-xl) var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.sim-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.sim-label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-secondary);
    font-family: var(--font-heading);
}

/* Range Slider */
.sim-range-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.sim-range {
    -webkit-appearance: none;
    appearance: none;
    flex: 1;
    height: 6px;
    background: var(--bg-card);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

.sim-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--tech-gradient);
    cursor: pointer;
    border: 3px solid var(--bg-primary);
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.4);
    transition: transform var(--duration-fast);
}

.sim-range::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.sim-range::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--tech-primary);
    cursor: pointer;
    border: 3px solid var(--bg-primary);
}

.sim-range-value {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--tech-primary);
    min-width: 36px;
    text-align: center;
}

/* Option Buttons */
.sim-options {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.sim-option {
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
}

.sim-option:hover {
    border-color: var(--border-light);
    color: var(--text-primary);
}

.sim-option.active {
    background: var(--tech-gradient);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 2px 10px rgba(14, 165, 233, 0.3);
}

/* Result Panel */
.simulator-result {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(139, 92, 246, 0.05));
    border-left: 1px solid var(--bg-glass-border);
}

.result-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.result-label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading);
}

.result-price {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
}

.result-amount {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, var(--font-size-4xl));
    font-weight: 900;
    background: var(--tech-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all var(--duration-normal);
}

.result-currency {
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-secondary);
}

.result-note {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    font-style: italic;
}

.sim-cta {
    margin-top: var(--space-sm);
    width: 100%;
}

/* Simulator responsive */
@media (max-width: 767px) {
    .simulator-body {
        grid-template-columns: 1fr;
    }
    
    .simulator-result {
        border-left: none;
        border-top: 1px solid var(--bg-glass-border);
    }
}

/* ================================================
   BTN-PRINT (Phase 4 — Print CTA)
   ================================================ */
.btn-print {
    background: var(--print-gradient);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-print:hover {
    box-shadow: 0 6px 30px rgba(16, 185, 129, 0.5);
    transform: translateY(-2px);
}

/* ================================================
   MOCKUP VISUALIZER (Phase 4)
   ================================================ */
.mockup-visualizer {
    margin-top: var(--space-3xl);
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

/* Subtle green top bar — mirrors the print pole */
.mockup-visualizer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--print-gradient);
}

.mockup-header {
    text-align: center;
    padding: var(--space-xl) var(--space-xl) var(--space-md);
}

.mockup-title {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    margin-top: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.mockup-desc {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

/* Body: controls | canvas */
.mockup-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

/* ---- Controls ---- */
.mockup-controls {
    padding: var(--space-lg) var(--space-xl) var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    border-right: 1px solid var(--bg-glass-border);
}

.mkp-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.mkp-label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Product buttons */
.mkp-products {
    display: flex;
    gap: var(--space-sm);
}

.mkp-product-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: var(--space-md) var(--space-sm);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 2px solid var(--border-subtle);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-spring);
    font-family: var(--font-heading);
}

.mkp-product-btn:hover {
    border-color: var(--border-light);
    color: var(--text-primary);
    transform: translateY(-3px);
}

.mkp-product-btn.active {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--print-primary);
    color: var(--print-primary);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
    transform: translateY(-3px);
}

.mkp-product-icon {
    font-size: 1.6rem;
    line-height: 1;
}

.mkp-product-name {
    font-size: var(--font-size-xs);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Custom Color Picker & Grid */
.mkp-custom-color-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: var(--print-secondary);
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--duration-fast);
}

.mkp-custom-color-label:hover {
    background: rgba(245, 158, 11, 0.22);
    transform: translateY(-1px);
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.3);
}

.mkp-color-input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
    pointer-events: none;
}

.mkp-sliders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.mkp-label-sm {
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    display: block;
}

/* Color swatches */
.mkp-colors {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.mkp-color {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.mkp-color:hover {
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}

.mkp-color.active {
    border-color: #facc15;
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.4);
    transform: scale(1.25);
}

/* Upload zone */
.mkp-upload-zone {
    display: block;
    cursor: pointer;
    border: 2px dashed rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--duration-normal) var(--ease-out);
    background: rgba(16, 185, 129, 0.03);
}

.mkp-upload-zone:hover {
    border-color: var(--print-primary);
    background: rgba(16, 185, 129, 0.06);
}

.mkp-upload-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    pointer-events: none;
}

.mkp-upload-icon {
    font-size: 1.8rem;
}

.mkp-upload-text {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--print-primary);
}

.mkp-upload-sub {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

/* Scale slider — reuse sim-range but with print colour */
.mkp-range::-webkit-slider-thumb {
    background: var(--print-gradient) !important;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.4) !important;
}

.mkp-scale-val {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--print-primary);
    min-width: 44px;
    text-align: center;
}

/* CTA button */
.mkp-cta {
    width: 100%;
    justify-content: center;
    margin-top: var(--space-sm);
}

/* ---- Canvas Preview ---- */
.mockup-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.04), rgba(245, 158, 11, 0.04));
}

.mkp-canvas-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
}

#mkpCanvas {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    display: block;
    background: #f8f9fa;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

/* Placeholder overlay shown before upload */
.mkp-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    border-radius: var(--radius-lg);
    border: 2px dashed rgba(16, 185, 129, 0.2);
    background: rgba(16, 185, 129, 0.03);
    transition: opacity var(--duration-normal);
    pointer-events: none;
}

.mkp-placeholder.hidden {
    opacity: 0;
}

.mkp-placeholder-icon {
    font-size: 3rem;
    opacity: 0.4;
}

.mkp-placeholder-text {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    text-align: center;
}

.mkp-product-label {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
}

/* Responsive mockup */
@media (max-width: 900px) {
    .mockup-body {
        grid-template-columns: 1fr;
    }
    .mockup-controls {
        border-right: none;
        border-bottom: 1px solid var(--bg-glass-border);
    }
}

@media (max-width: 480px) {
    .mkp-products {
        flex-direction: column;
    }
    .mkp-product-btn {
        flex-direction: row;
        justify-content: center;
    }
}

/* ================================================
   GALLERY / PORTFOLIO (Phase 5)
   ================================================ */

/* ---- Filter Buttons ---- */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-3xl);
}

.gallery-filter {
    padding: 9px 22px;
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    font-family: var(--font-heading);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    letter-spacing: 0.3px;
}

.gallery-filter:hover {
    border-color: var(--border-light);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.gallery-filter.active {
    background: var(--tech-gradient);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.35);
    transform: translateY(-2px);
}

/* ---- Masonry Grid ---- */
.gallery-grid {
    columns: 3;
    column-gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

@media (max-width: 900px) {
    .gallery-grid { columns: 2; }
}
@media (max-width: 540px) {
    .gallery-grid { columns: 1; }
}

/* ---- Gallery Item ---- */
.gallery-item {
    break-inside: avoid;
    margin-bottom: var(--space-md);
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-normal) var(--ease-out);
}

.gallery-item.hidden {
    display: none;
}

/* Tall item spans more vertical space */
.gallery-item--tall .gallery-item-inner img {
    aspect-ratio: 3/4;
}

/* Wide item forces a wider column span (only on 3-col layout) */
@media (min-width: 901px) {
    .gallery-item--wide {
        column-span: all;
    }
    .gallery-item--wide .gallery-item-inner img {
        aspect-ratio: 16/7;
    }
}

.gallery-item-inner {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid var(--bg-glass-border);
}

.gallery-item-inner img {
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

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

.gallery-item:hover .gallery-item-inner img {
    transform: scale(1.07);
}

/* ---- Overlay on hover ---- */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(10, 14, 26, 0.92) 0%,
        rgba(10, 14, 26, 0.55) 50%,
        transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-category-tag {
    display: inline-block;
    padding: 3px 12px;
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(14, 165, 233, 0.2);
    border: 1px solid rgba(14, 165, 233, 0.35);
    color: var(--tech-primary);
    margin-bottom: var(--space-sm);
    width: fit-content;
}

.gallery-category-tag.badge-print {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.35);
    color: var(--print-primary);
}

.gallery-item-title {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.3;
}

.gallery-item-desc {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ---- Gallery CTA ---- */
.gallery-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-2xl);
    text-align: center;
    background: var(--bg-glass);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--radius-xl);
    margin-top: var(--space-xl);
}

.gallery-cta p {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
}

/* ---- Lightbox ---- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(5, 8, 18, 0.96);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration-normal) var(--ease-out);
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
    transition: transform var(--duration-normal) var(--ease-out);
}

.lightbox-caption {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    text-align: center;
    padding: 6px 20px;
    background: var(--bg-glass);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--radius-full);
}

/* Nav / close buttons */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background: var(--bg-glass);
    border: 1px solid var(--bg-glass-border);
    color: var(--text-primary);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast) var(--ease-out);
    backdrop-filter: blur(8px);
}

.lightbox-close {
    top: var(--space-lg);
    right: var(--space-lg);
    font-size: 1rem;
}

.lightbox-prev {
    left: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--tech-primary);
    border-color: var(--tech-primary);
    color: #fff;
    transform: scale(1.1);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-size: var(--font-size-sm);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links li,
.footer-contact li {
    margin-bottom: var(--space-sm);
}

.footer-links a,
.footer-contact li {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    transition: color var(--duration-fast);
}

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

.social-icons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: var(--text-secondary);
    transition: all var(--duration-fast) var(--ease-out);
}

.social-icon:hover {
    background: var(--tech-primary);
    color: #ffffff;
    border-color: var(--tech-primary);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.footer-bottom p {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin: 0;
}

.legal-link {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--duration-fast);
    cursor: pointer;
}

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

/* ================================================
   LEGAL / GENERIC MODAL
   ================================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    pointer-events: none;
    opacity: 0;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, opacity 0.4s ease;
}

.modal.active {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    pointer-events: auto;
    opacity: 1;
}

.modal-content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    max-width: 560px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.05) inset;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--border-subtle);
    border-radius: 3px;
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-subtle);
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast) var(--ease-out);
}

.modal-close:hover {
    background: var(--tech-primary);
    border-color: var(--tech-primary);
    color: #fff;
    transform: scale(1.1);
}

.modal-content h3 {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: 800;
    margin-bottom: var(--space-lg);
    padding-right: var(--space-2xl);
    background: var(--tech-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-body h4 {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--text-accent);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-xs);
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xs);
}

@media (max-width: 767px) {
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .footer-bottom-left {
        flex-direction: column;
        gap: var(--space-xs);
    }

    .modal-content {
        padding: var(--space-lg);
        max-height: 85vh;
    }
}

/* ================================================
   WHATSAPP FLOATING BUTTON
   ================================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: var(--z-whatsapp);
    transition: all var(--duration-normal) var(--ease-out);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* ---- Scroll Arrows Widget ---- */
.scroll-arrows-widget {
    position: fixed;
    bottom: 96px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: var(--z-whatsapp);
}

.scroll-arrow {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-normal) var(--ease-out);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

.scroll-arrow.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-arrow:hover {
    background: var(--tech-primary);
    color: #fff;
    border-color: var(--tech-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-tech);
}

.scroll-arrow-down:hover {
    background: var(--print-primary);
    border-color: var(--print-primary);
    box-shadow: var(--shadow-glow-print);
}

/* ================================================
   SCROLL REVEAL ANIMATIONS
   ================================================ */
[data-scroll-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

[data-scroll-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Entry animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Shimmer effect for loading states */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.shimmer {
    background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* ================================================
   RESPONSIVE — Mobile First
   ================================================ */

.cart-sidebar {
    z-index: 99999;
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-secondary);
        border-left: 1px solid var(--border-subtle);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-2xl);
        padding: var(--space-2xl);
        transition: right var(--duration-slow) var(--ease-out);
        z-index: calc(var(--z-navbar) - 1);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        font-size: var(--font-size-xl);
    }

    .hamburger {
        display: flex;
    }

    .nav-actions {
        gap: 10px;
    }

    .nav-actions .btn {
        display: none;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-stats {
        gap: var(--space-xl);
    }

    .stat-number {
        font-size: var(--font-size-2xl);
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        padding: 0 var(--space-lg);
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .section {
        padding: var(--space-3xl) 0;
    }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .nav-links {
        gap: var(--space-md);
    }

    .nav-link {
        font-size: var(--font-size-xs);
    }

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

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

    .hero-stats {
        gap: var(--space-2xl);
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-2xl);
    }
}

/* Large screens */
@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }
}

/* ================================================
   CONTACT SECTION (Phase 6)
   ================================================ */
.section-contact {
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

/* ---- Form Wrapper ---- */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
}

/* ---- Progress Bar ---- */
.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border-subtle);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    min-width: 60px;
}

.progress-num {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--bg-secondary);
    border: 2px solid var(--border-light);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--font-size-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-normal) var(--ease-out);
}

.progress-step.active .progress-num,
.progress-step.completed .progress-num {
    background: var(--accent-gradient);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 16px rgba(14, 165, 233, 0.3);
}

.progress-step.completed .progress-num {
    background: var(--print-primary);
}

.progress-label {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    font-weight: 500;
    transition: color var(--duration-normal);
}

.progress-step.active .progress-label,
.progress-step.completed .progress-label {
    color: var(--text-primary);
}

.progress-line {
    flex: 1;
    height: 2px;
    background: var(--border-subtle);
    margin: 0 var(--space-sm);
    border-radius: 1px;
    overflow: hidden;
    position: relative;
    margin-bottom: 18px;
}

.progress-line-fill {
    display: block;
    height: 100%;
    width: 0;
    background: var(--accent-gradient);
    border-radius: 1px;
    transition: width var(--duration-slow) var(--ease-out);
}

/* ---- Form Steps ---- */
.form-step {
    display: none;
    animation: formFadeIn 0.4s var(--ease-out);
}

.form-step.active {
    display: block;
}

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

.form-step-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

/* ---- Service Type Cards (Step 1) ---- */
.service-type-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.service-type-card {
    cursor: pointer;
}

.service-type-card input[type="radio"] {
    display: none;
}

.stc-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    background: var(--bg-secondary);
    border: 2px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--duration-normal) var(--ease-out);
    gap: var(--space-sm);
}

.stc-inner:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.service-type-card input[type="radio"]:checked + .stc-tech {
    border-color: var(--tech-primary);
    background: rgba(14, 165, 233, 0.08);
    box-shadow: var(--shadow-glow-tech);
}

.service-type-card input[type="radio"]:checked + .stc-print {
    border-color: var(--print-primary);
    background: rgba(16, 185, 129, 0.08);
    box-shadow: var(--shadow-glow-print);
}

.service-type-card input[type="radio"]:checked + .stc-goodies {
    border-color: var(--print-secondary);
    background: rgba(245, 158, 11, 0.08);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.15);
}

.stc-icon {
    font-size: 2.5rem;
}

.stc-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--font-size-base);
    color: var(--text-primary);
}

.stc-desc {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    line-height: 1.4;
}

/* ---- Form Controls ---- */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--tech-primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' fill='none' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-input.error,
.form-select.error,
.form-textarea.error,
.stc-inner.error,
.urgency-tag.error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.35) !important;
}

/* ---- Conditional Fields ---- */
.conditional-fields {
    display: none;
}

.conditional-fields.visible {
    display: block;
    animation: formFadeIn 0.3s var(--ease-out);
}

/* ---- Urgency Options ---- */
.urgency-options {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.urgency-option {
    cursor: pointer;
}

.urgency-option input {
    display: none;
}

.urgency-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--duration-fast);
    cursor: pointer;
}

.urgency-option input:checked + .urgency-normal {
    background: rgba(16, 185, 129, 0.15);
    border-color: var(--print-primary);
    color: var(--print-primary);
}

.urgency-option input:checked + .urgency-urgent {
    background: rgba(245, 158, 11, 0.15);
    border-color: var(--print-secondary);
    color: var(--print-secondary);
}

.urgency-option input:checked + .urgency-critique {
    background: rgba(239, 68, 68, 0.15);
    border-color: var(--print-red);
    color: var(--print-red);
}

/* ---- Contact Preference ---- */
.contact-pref-options {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.contact-pref {
    cursor: pointer;
}

.contact-pref input {
    display: none;
}

.contact-pref-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--duration-fast);
    cursor: pointer;
}

.contact-pref input:checked + .contact-pref-tag {
    background: rgba(14, 165, 233, 0.12);
    border-color: var(--tech-primary);
    color: var(--tech-primary);
}

/* ---- Form Navigation ---- */
.form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-subtle);
}

/* ---- Recap Card (Step 4) ---- */
.recap-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
}

.recap-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    gap: var(--space-md);
}

.recap-row + .recap-row {
    border-top: 1px solid var(--border-subtle);
}

.recap-label {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    font-weight: 500;
    min-width: 100px;
    flex-shrink: 0;
}

.recap-value {
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    font-weight: 600;
    text-align: right;
    word-break: break-word;
}

.recap-divider {
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 1px;
    margin: var(--space-sm) 0;
}

/* ---- Submit Button Glow ---- */
.btn-submit {
    position: relative;
    overflow: hidden;
}

.btn-submit::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: translateX(-100%);
    animation: submitShimmer 2s infinite;
}

@keyframes submitShimmer {
    to { transform: translateX(100%); }
}

/* ---- Success State ---- */
.form-success {
    display: none;
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    animation: formFadeIn 0.5s var(--ease-out);
}

.form-success.visible {
    display: block;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
    animation: successBounce 0.6s var(--ease-spring);
}

@keyframes successBounce {
    0%   { transform: scale(0); }
    60%  { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.success-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--print-primary);
    margin-bottom: var(--space-sm);
}

.success-desc {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    margin-bottom: var(--space-xl);
}

/* ---- Error State ---- */
.form-error {
    display: none;
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    animation: formFadeIn 0.5s var(--ease-out);
}

.form-error.visible {
    display: block;
}

.error-icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
    animation: successBounce 0.6s var(--ease-spring);
}

.error-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: #ef4444;
    margin-bottom: var(--space-sm);
}

.error-desc {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    margin-bottom: var(--space-xl);
}

/* ---- Submit Button Loading Spinner ---- */
.btn-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btnSpin 0.7s linear infinite;
    vertical-align: middle;
    margin-right: 6px;
}

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

.btn-loading {
    pointer-events: none;
    opacity: 0.85;
}

/* ---- Payment Method Selector ---- */
.payment-method-section {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--bg-glass-border);
}

.payment-method-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.payment-option {
    cursor: pointer;
}

.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.payment-option-inner {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    border: 2px solid var(--bg-glass-border);
    background: var(--bg-card);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
}

.payment-option-inner::before {
    content: '';
    position: absolute;
    top: 12px;
    right: 16px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--bg-glass-border);
    transition: all var(--duration-fast) var(--ease-out);
}

.payment-option input[type="radio"]:checked + .payment-option-inner {
    border-color: var(--accent-primary);
    background: rgba(59, 130, 246, 0.06);
    box-shadow: 0 0 0 1px var(--accent-primary), 0 4px 16px rgba(59, 130, 246, 0.12);
}

.payment-option input[type="radio"]:checked + .payment-option-inner::before {
    border-color: var(--accent-primary);
    background: var(--accent-primary);
    box-shadow: inset 0 0 0 3px var(--bg-card);
}

.payment-option-inner:hover {
    border-color: var(--accent-primary);
    transform: translateY(-1px);
}

.payment-option-icons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.payment-icon-wave,
.payment-icon-om,
.payment-icon-free {
    font-size: var(--font-size-sm);
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.02em;
}

.payment-icon-wave {
    background: rgba(59, 130, 246, 0.12);
    color: #3b82f6;
}

.payment-icon-om {
    background: rgba(249, 115, 22, 0.12);
    color: #f97316;
}

.payment-icon-free {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
}

.payment-option-icon-single {
    font-size: 1.5rem;
}

.payment-option-label {
    font-family: var(--font-heading);
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--text-primary);
}

.payment-option-desc {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

/* Payment ref display on success page */
.payment-ref-display {
    font-family: var(--font-mono, monospace);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    background: var(--bg-glass);
    border: 1px solid var(--bg-glass-border);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.05em;
}

/* ---- Contact Info Sidebar ---- */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.ci-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    text-decoration: none;
    color: inherit;
    transition: transform var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-normal),
                border-color var(--duration-fast);
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-light);
}

.ci-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.ci-icon-location { background: rgba(14, 165, 233, 0.12); }
.ci-icon-phone    { background: rgba(168, 85, 247, 0.12); }
.ci-icon-whatsapp { background: rgba(37, 211, 102, 0.12); }
.ci-icon-email    { background: rgba(245, 158, 11, 0.12); }

.ci-body {
    min-width: 0;
}

.ci-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    margin-bottom: 2px;
}

.ci-text {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin-bottom: 2px;
    word-break: break-word;
}

.ci-link {
    color: var(--tech-primary);
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.ci-whatsapp {
    color: #25d366;
}

.ci-sub {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

/* ---- Google Maps ---- */
.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--bg-glass-border);
}

.contact-map iframe {
    display: block;
    filter: brightness(0.85) contrast(1.1) saturate(0.8);
    transition: filter var(--duration-normal);
}

.contact-map:hover iframe {
    filter: brightness(1) contrast(1) saturate(1);
}

/* ---- Contact Responsive ---- */
@media (max-width: 767px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: var(--space-lg);
    }

    .service-type-cards {
        grid-template-columns: 1fr;
    }

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

    .form-progress {
        gap: 0;
    }

    .progress-label {
        display: none;
    }

    .progress-num {
        width: 30px;
        height: 30px;
        font-size: var(--font-size-xs);
    }

    .recap-row {
        flex-direction: column;
        gap: 2px;
    }

    .recap-value {
        text-align: left;
    }

    .contact-info-sidebar {
        order: -1;
    }

    .ci-cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-sm);
    }

    .contact-info-card {
        padding: var(--space-md);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-sidebar {
        order: -1;
    }

    .ci-cards-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-sm);
    }
}

/* ================================================
   UTILITY CLASSES
   ================================================ */
.text-gradient-tech {
    background: var(--tech-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-print {
    background: var(--print-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ================================================
   SHOPPING CART SYSTEM (Phase B)
   ================================================ */
.nav-cart-btn {
    position: relative;
    background: transparent;
    border: 1px solid var(--bg-glass-border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-right: var(--space-sm);
}

.nav-cart-btn:hover {
    border-color: var(--tech-primary);
    background: rgba(14, 165, 233, 0.08);
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.2);
    transform: translateY(-2px);
}

.nav-cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--print-red);
    color: var(--text-accent);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-primary);
    box-shadow: var(--shadow-sm);
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-cart-badge.active {
    transform: scale(1);
}

/* Cart Sidebar Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 26, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: rgba(10, 14, 26, 0.95);
    border-left: 1px solid var(--bg-glass-border);
    backdrop-filter: blur(20px);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-sidebar.active {
    transform: translateX(-420px);
}

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

.cart-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.cart-close-btn {
    background: transparent;
    border: none;
    font-size: 20px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.cart-close-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.cart-empty-msg {
    margin: auto;
    text-align: center;
    color: var(--text-muted);
}

.cart-empty-icon {
    font-size: 48px;
    margin-bottom: var(--space-sm);
}

/* Cart Item card */
.cart-item {
    background: var(--bg-card);
    border: 1px solid var(--bg-glass-border);
    border-radius: 12px;
    padding: var(--space-md);
    display: flex;
    gap: var(--space-md);
    position: relative;
    transition: all 0.3s ease;
}

.cart-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.cart-item-img-wrap {
    width: 60px;
    height: 60px;
    background: var(--bg-secondary);
    border: 1px solid var(--bg-glass-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-item-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.cart-item-options {
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
    line-height: 1.3;
}

.cart-item-price {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--tech-primary);
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.cart-item-remove-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 2px;
}

.cart-item-remove-btn:hover {
    color: var(--print-red);
}

.cart-item-qty-wrap {
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    border: 1px solid var(--bg-glass-border);
    border-radius: 6px;
    padding: 2px;
}

.cart-item-qty-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 12px;
}

.cart-item-qty-btn:hover {
    color: var(--tech-primary);
}

.cart-item-qty-val {
    font-size: 12px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
    color: var(--text-primary);
}

.cart-footer {
    padding: var(--space-lg);
    border-top: 1px solid var(--bg-glass-border);
    background: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

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

.cart-total-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
}

.cart-total-val {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
}

.cart-footer-btns {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-sm);
}

.cart-clear-btn {
    border-color: var(--bg-glass-border);
    color: var(--text-muted);
}

.cart-clear-btn:hover {
    border-color: var(--print-red);
    color: var(--print-red);
    background: rgba(239, 68, 68, 0.05);
}

/* Animations and tweaks */
@media (max-width: 480px) {
    .cart-sidebar {
        max-width: 100%;
        right: -100%;
    }
    .cart-sidebar.active {
        transform: translateX(-100%);
    }
}

/* ================================================
   BLOG & ARTICLES SYSTEM
   ================================================ */

.blog-hero {
    padding: var(--space-4xl) 0 var(--space-2xl);
    text-align: center;
    background: radial-gradient(circle at 50% 30%, rgba(245, 158, 11, 0.12), transparent 60%);
}

.blog-hero .page-hero-desc {
    max-width: 950px;
    margin: 0 auto;
    font-size: var(--font-size-base);
    color: var(--text-secondary);
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.blog-filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    cursor: pointer;
    font-weight: 500;
    transition: all var(--duration-normal) var(--ease-out);
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
    background: var(--tech-gradient);
    color: var(--text-accent);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-4xl);
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 20px 40px -15px rgba(245, 158, 11, 0.15), var(--shadow-md);
}

.blog-card-img-link {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

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

.blog-card-body {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-tags {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.blog-tag {
    font-size: var(--font-size-xs);
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-tag-tech {
    background: rgba(14, 165, 233, 0.12);
    color: var(--tech-primary);
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.blog-tag-security {
    background: rgba(139, 92, 246, 0.12);
    color: var(--tech-secondary);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.blog-tag-print {
    background: rgba(245, 158, 11, 0.12);
    color: var(--print-secondary);
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.blog-read-time {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    font-weight: 600;
}

.blog-card-meta {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    display: flex;
    gap: var(--space-md);
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: var(--space-sm);
}

.blog-card-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--duration-fast);
}

.blog-card-title a:hover {
    color: var(--print-secondary);
}

.blog-card-excerpt {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.5;
    margin-bottom: var(--space-lg);
    flex-grow: 1;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-subtle);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--text-secondary);
}

.blog-author-avatar {
    font-size: 1.1rem;
}

.blog-card-link {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--print-secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    transition: all var(--duration-fast);
}

.blog-card-link:hover {
    color: var(--text-accent);
    transform: translateX(3px);
}

/* Single Article Layout */
.article-header {
    padding: var(--space-4xl) 0 var(--space-2xl);
    text-align: center;
    background: linear-gradient(180deg, rgba(14, 165, 233, 0.05) 0%, transparent 100%);
}

.article-header-meta {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.article-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-4xl);
    font-weight: 900;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto var(--space-lg);
    color: var(--text-primary);
}

.article-hero-wrapper {
    max-width: 900px;
    margin: 0 auto var(--space-3xl);
    aspect-ratio: 21/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.article-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-container {
    max-width: 760px;
    margin: 0 auto var(--space-4xl);
    padding: 0 var(--space-md);
}

.article-content {
    font-size: var(--font-size-base);
    line-height: 1.8;
    color: var(--text-secondary);
}

.article-content h2,
.article-content h3 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin: var(--space-2xl) 0 var(--space-md);
    font-weight: 700;
}

.article-content h2 {
    font-size: var(--font-size-2xl);
}

.article-content h3 {
    font-size: var(--font-size-xl);
}

.article-content p {
    margin-bottom: var(--space-lg);
}

.article-content ul,
.article-content ol {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-xl);
}

.article-content li {
    margin-bottom: var(--space-xs);
}

.article-content blockquote {
    border-left: 4px solid var(--tech-primary);
    padding: var(--space-sm) 0 var(--space-sm) var(--space-lg);
    margin: var(--space-xl) 0;
    background: rgba(14, 165, 233, 0.03);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--text-primary);
}

.article-content blockquote p {
    margin-bottom: 0;
}

/* Call to Action Inside Article */
.article-cta {
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.95), rgba(17, 24, 39, 0.95));
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-3xl) 0;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.article-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.article-cta-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: 800;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.article-cta-desc {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.article-cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .article-title {
        font-size: var(--font-size-2xl);
    }
    .article-hero-wrapper {
        aspect-ratio: 16/9;
        margin-bottom: var(--space-xl);
    }
    .article-content {
        font-size: 0.95rem;
    }
}

/* ================================================
   REVIEWS & RATING SYSTEM
   ================================================ */

.star-rating {
    display: flex;
    gap: 8px;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    user-select: none;
    margin-top: 4px;
}

.star-rating .star-input {
    transition: transform var(--duration-fast) var(--ease-out), color var(--duration-fast);
}

.star-rating .star-input.active {
    color: var(--print-secondary);
    text-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
}

.star-rating .star-input:hover {
    transform: scale(1.2);
}

.testimonials-cta {
    margin-top: var(--space-xl);
    text-align: center;
}

/* ============================================================ */
/* SEARCH BAR SYSTEM (Point 7)                                  */
/* ============================================================ */
.search-bar-container {
    background: linear-gradient(135deg, rgba(13, 20, 42, 0.9), rgba(22, 32, 60, 0.85));
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1.5px solid rgba(0, 230, 184, 0.35);
    padding: 18px 30px;
    border-radius: var(--radius-full);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.5), 
                0 0 30px rgba(0, 230, 184, 0.15),
                inset 0 1px 1px rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 16px;
    width: 98%;
    max-width: 1050px;
    margin: 36px auto 0 auto;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: fadeInUp 0.8s var(--ease-out) 0.75s both;
    position: relative;
    z-index: 99;
}

.search-bar-container:hover {
    border-color: rgba(0, 230, 184, 0.65);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.55), 
                0 0 35px rgba(0, 230, 184, 0.28),
                inset 0 1px 2px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.search-bar-container:focus-within {
    border-color: #00e6b8;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.65), 
                0 0 45px rgba(0, 230, 184, 0.45),
                0 0 15px rgba(0, 230, 184, 0.3),
                inset 0 1px 2px rgba(255, 255, 255, 0.25);
    transform: translateY(-4px) scale(1.01);
    background: linear-gradient(135deg, rgba(16, 26, 50, 0.96), rgba(28, 40, 75, 0.92));
}

.search-icon {
    font-size: 1.6rem;
    color: var(--tech-primary);
    filter: drop-shadow(0 0 8px rgba(0, 230, 184, 0.6));
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-bar-container:focus-within .search-icon {
    transform: scale(1.2) rotate(-8deg);
}

#serviceSearchInput {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.015em;
    outline: none;
    width: 100%;
}

#serviceSearchInput::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

#clearSearchBtn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.95rem;
    width: 32px;
    height: 32px;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.2s ease;
}

#clearSearchBtn:hover {
    background: rgba(255, 77, 109, 0.25);
    border-color: var(--print-red);
    color: var(--print-red);
    transform: scale(1.1);
}

.search-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(0, 230, 184, 0.15), rgba(77, 171, 247, 0.15));
    border: 1px solid rgba(0, 230, 184, 0.35);
    color: #00e6b8;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    user-select: none;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 230, 184, 0.1);
}

@media (max-width: 768px) {
    .search-badge {
        display: none;
    }
    .search-bar-container {
        padding: 14px 20px;
        width: 100%;
    }
    #serviceSearchInput {
        font-size: 1.05rem;
    }
}

/* Empty state styling */
.services-grid .empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.01);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

/* Hide scroll indicator on short viewports or mobile to prevent overlap */
@media (max-height: 780px), (max-width: 768px) {
    .scroll-indicator {
        display: none !important;
    }
}

/* =============================== */
/* SEARCH SUGGESTIONS DROPDOWN     */
/* =============================== */
.search-suggestions-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: rgba(14, 20, 38, 0.96);
    border: 1.5px solid rgba(0, 230, 184, 0.3);
    border-radius: 20px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.65), 0 0 30px rgba(0, 230, 184, 0.15);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    z-index: 9999;
    overflow: hidden;
    max-height: 380px;
    overflow-y: auto;
    padding: 8px 0;
}
.search-suggestions-dropdown.active {
    display: block;
    animation: fadeInDown 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px) scale(0.99); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.suggestion-category {
    padding: 12px 20px 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--tech-primary);
    opacity: 0.85;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.suggestion-category:first-child {
    border-top: none;
}
.suggestion-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 22px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    border-left: 3px solid transparent;
}
.suggestion-item:hover,
.suggestion-item.focused {
    background: rgba(0, 230, 184, 0.12);
    border-left-color: #00e6b8;
    padding-left: 26px;
}
.suggestion-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}
.suggestion-text {
    flex: 1;
    min-width: 0;
}
.suggestion-title {
    display: block;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.suggestion-title mark {
    background: rgba(0, 230, 184, 0.25);
    color: #00e6b8;
    font-weight: 800;
    padding: 0 4px;
    border-radius: 4px;
}
.suggestion-desc {
    display: block;
    color: var(--text-muted);
    font-size: 0.78rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}
.suggestion-price {
    font-size: 0.78rem;
    color: #00e6b8;
    font-weight: 600;
    flex-shrink: 0;
    background: rgba(0, 230, 184, 0.1);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(0, 230, 184, 0.2);
}
.suggestion-no-result {
    padding: 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* ============================================================ */
/* ORDER TRACKING SYSTEM — DESIGN ÉPURÉ & MODERNE               */
/* ============================================================ */
.track-main-section {
    padding: 140px 0 80px 0;
    min-height: 80vh;
    background: radial-gradient(circle at 50% 20%, rgba(14, 165, 233, 0.05), transparent 70%);
}

.track-container {
    max-width: 860px;
    margin: 0 auto;
}

.track-header {
    text-align: center;
    margin-bottom: 36px;
}

.track-pill-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 230, 184, 0.08);
    border: 1px solid rgba(0, 230, 184, 0.2);
    border-radius: var(--radius-full);
    color: #00e6b8;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.track-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.track-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
}

/* BARRE DE RECHERCHE ÉPURÉE */
.track-search-box {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    margin-bottom: 40px;
    transition: border-color 0.3s ease;
}

.track-search-box:focus-within {
    border-color: rgba(0, 230, 184, 0.5);
}

.track-search-field {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(10, 14, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    padding: 6px 8px 6px 20px;
    transition: all 0.3s ease;
}

.track-search-field:focus-within {
    border-color: #00e6b8;
    box-shadow: 0 0 20px rgba(0, 230, 184, 0.2);
}

.track-search-icon {
    font-size: 1.2rem;
    color: var(--text-muted);
}

#trackOrderInput {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
}

#trackOrderInput::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.track-btn-submit {
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
}

.track-demo-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    font-size: 0.85rem;
}

.demo-label {
    color: var(--text-muted);
}

.demo-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #00e6b8;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.demo-pill:hover {
    background: rgba(0, 230, 184, 0.15);
    border-color: #00e6b8;
}

/* RÉSULTAT ÉPURÉ */
.track-result-wrapper {
    animation: fadeInUp 0.4s ease;
}

.track-card {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.track-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.track-ref-code {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.02em;
    font-family: var(--font-heading);
}

.track-ref-meta {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* STEPPER ÉPURÉ */
.track-stepper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 40px 0;
    position: relative;
}

.track-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.track-step-line {
    position: absolute;
    top: 18px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.track-step:last-child .track-step-line {
    display: none;
}

.track-step.completed .track-step-line {
    background: #00e6b8;
}

.step-node {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0a0e1a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.track-step.active .step-node {
    border-color: #00e6b8;
    background: rgba(0, 230, 184, 0.15);
    color: #00e6b8;
    box-shadow: 0 0 20px rgba(0, 230, 184, 0.4);
}

.track-step.completed .step-node {
    border-color: #00e6b8;
    background: #00e6b8;
    color: #0a0e1a;
    font-weight: 800;
}

.step-title {
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.track-step.active .step-title,
.track-step.completed .step-title {
    color: #ffffff;
}

.step-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* DÉTAILS DE COMMANDE ÉPURÉS */
.track-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    background: rgba(10, 14, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px 24px;
    margin-top: 28px;
}

.track-detail-col label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.track-detail-col span {
    font-size: 0.98rem;
    font-weight: 600;
    color: #ffffff;
}

/* BADGES DE STATUT ÉPURÉS */
.status-pill {
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-pill-pending {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

.status-pill-paid {
    background: rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(14, 165, 233, 0.3);
    color: #0ea5e9;
}

.status-pill-in_progress {
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #a78bfa;
}

.status-pill-completed {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

/* ============================================================ */
/* FIXES FOR LOGO IMAGES & CART DRAWER OVERLAY                  */
/* ============================================================ */
.nav-logo-img,
.footer-logo-img {
    height: 38px !important;
    max-height: 38px !important;
    width: auto !important;
    max-width: 160px !important;
    object-fit: contain !important;
    display: inline-block;
    vertical-align: middle;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 26, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.cart-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #0e1426;
    border-left: 1px solid rgba(0, 230, 184, 0.25);
    z-index: 99999;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
}
.cart-drawer.active {
    transform: translateX(0);
}

/* ============================================================ */
/* COOKIE CONSENT BANNER (RGPD / CDP SÉNÉGAL)                   */
/* ============================================================ */
.cookie-banner-wrapper {
    position: fixed;
    bottom: 24px;
    left: 20px;
    right: 20px;
    max-width: 640px;
    margin: 0 auto;
    z-index: 99990;
    opacity: 0;
    transform: translateY(30px) scale(0.96);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner-wrapper.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.cookie-banner-card {
    background: rgba(14, 20, 38, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 230, 184, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 230, 184, 0.15);
    border-radius: 20px;
    padding: 24px;
    color: var(--text-primary);
}

.cookie-banner-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cookie-banner-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.cookie-banner-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.cookie-banner-badge {
    background: rgba(0, 230, 184, 0.12);
    border: 1px solid rgba(0, 230, 184, 0.3);
    color: #00e6b8;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: auto;
}

.cookie-banner-body {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 20px;
}

.cookie-banner-body a {
    color: var(--tech-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.cookie-banner-body a:hover {
    color: #00e6b8;
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #00e6b8 0%, #0ea5e9 100%);
    color: #0a0e1a;
    box-shadow: 0 4px 15px rgba(0, 230, 184, 0.3);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 230, 184, 0.45);
}

.cookie-btn-decline {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

/* FLOATING COOKIE RE-OPEN BUTTON */
.cookie-trigger-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(14, 20, 38, 0.9);
    border: 1px solid rgba(0, 230, 184, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #00e6b8;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99980;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.cookie-trigger-btn:hover {
    transform: scale(1.1) rotate(15deg);
    border-color: #00e6b8;
    box-shadow: 0 0 20px rgba(0, 230, 184, 0.4);
}

@media (max-width: 576px) {
    .cookie-banner-wrapper {
        bottom: 12px;
        left: 12px;
        right: 12px;
    }
    .cookie-banner-card {
        padding: 18px;
    }
    .cookie-banner-actions {
        flex-direction: column;
        width: 100%;
    }
    .cookie-btn {
        width: 100%;
    }
    .cookie-trigger-btn {
        bottom: 16px;
        left: 16px;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* ---- FORM FIELD VALIDATION ERROR HIGHLIGHTING ---- */
.form-input.error,
.form-select.error,
.form-textarea.error,
select.error,
input.error,
textarea.error,
.service-type-cards.error,
.urgency-options.error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3) !important;
    outline: none !important;
}


