/* ============================================================
   Ketpy Digital - Dark Premium Design System
   Theme: Black/Charcoal + Red Accents + White Text
   ============================================================ */

:root {
  --primary: #e50000;
  --primary-dark: #b80000;
  --primary-light: #ff3333;
  --secondary: #ffffff;
  --accent: #e50000;
  --accent2: #ff4444;
  --dark: #0a0a0a;
  --dark2: #111111;
  --dark3: #1a1a1a;
  --dark4: #222222;
  --card-bg: rgba(26,26,26,0.9);
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.1);
  --text: #e8e8e8;
  --text-muted: #999999;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #e50000 0%, #ff4444 100%);
  --gradient2: linear-gradient(135deg, #e50000 0%, #cc0000 100%);
  --glow: 0 0 30px rgba(229,0,0,0.2);
  --glow-strong: 0 0 60px rgba(229,0,0,0.3);
  --font-main: 'Inter', 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  background-color: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--white); }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }
p { color: var(--text-muted); line-height: 1.8; }

/* ===== UTILITIES ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.text-center { text-align: center; }
.text-gradient { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.badge { display: inline-block; padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; background: rgba(229,0,0,0.1); border: 1px solid rgba(229,0,0,0.3); color: var(--primary); margin-bottom: 16px; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-48 { margin-bottom: 48px; }
.flex-wrap { flex-wrap: wrap; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ===== BACKGROUND EFFECTS ===== */
.bg-grid {
  background-image: linear-gradient(rgba(229,0,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229,0,0,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.bg-dots {
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
  pointer-events: none;
}
.orb-blue { background: var(--primary); }
.orb-purple { background: #333; }
.orb-green { background: var(--primary); }
.orb-red { background: var(--primary); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 0 20px rgba(229,0,0,0.2);
}
.btn-primary:hover {
  box-shadow: 0 0 40px rgba(229,0,0,0.4);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: rgba(229,0,0,0.1);
  box-shadow: var(--glow);
  transform: translateY(-2px);
}
.btn-ghost {
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(229,0,0,0.1); color: var(--primary); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* ===== CARDS ===== */
.card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(20px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card:hover {
  border-color: rgba(229,0,0,0.4);
  box-shadow: var(--glow);
  transform: translateY(-4px);
}
.card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: rgba(229,0,0,0.1);
  border: 1px solid rgba(229,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}
.card:hover .card-icon {
  background: var(--gradient);
  color: white;
  border-color: transparent;
  box-shadow: var(--glow);
}
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
}

/* ===== SECTION HEADER ===== */
.section-header { margin-bottom: 60px; }
.section-header.text-center { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; color: var(--text-muted); }
.divider {
  width: 60px;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
  margin: 16px auto;
}
.divider-left { margin: 16px 0; }

/* ===== TOP BAR ===== */
.topbar {
  background: rgba(10,10,10,0.98);
  border-bottom: 1px solid var(--glass-border);
  padding: 8px 0;
  font-size: 0.85rem;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.topbar a { color: var(--text-muted); display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--primary); }
.topbar-social a { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--glass-border); display: inline-flex; align-items: center; justify-content: center; font-size: 0.75rem; }
.topbar-social a:hover { border-color: var(--primary); background: rgba(229,0,0,0.1); }

/* ===== HEADER / NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.8);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 40px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text span {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--white);
}
.nav-logo-text small {
  display: block;
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== MEGA MENU ===== */
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: rgba(229,0,0,0.08); }
.nav-link .arrow { font-size: 0.7rem; transition: transform 0.3s; }
.nav-item:hover .arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown, .mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: rgba(17,17,17,0.98);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(30px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  z-index: 999;
}
.nav-item:hover > .dropdown,
.nav-item:hover > .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown { min-width: 230px; padding: 12px; }
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--text-muted);
  font-size: 0.88rem;
  border-radius: 8px;
}
.dropdown a:hover { color: var(--primary); background: rgba(229,0,0,0.08); }
.dropdown a i { width: 20px; color: var(--primary); font-size: 0.9rem; }

/* Mega Menu */
.mega-menu {
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: min(900px, 95vw);
  padding: 32px;
}
.nav-item:hover > .mega-menu {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mega-col h6 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--glass-border);
}
.mega-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-radius: 6px;
}
.mega-col a:hover { color: var(--primary); padding-left: 6px; }
.mega-col a i { font-size: 0.8rem; color: var(--primary); width: 16px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  overflow-y: auto;
  padding: 24px;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-menu-header img { height: 32px; }
.mobile-close { font-size: 1.5rem; cursor: pointer; color: var(--text); }
.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--glass-border);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}
.mobile-nav a:hover { color: var(--primary); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--dark2);
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-canvas { position: absolute; inset: 0; }
.hero-content { position: relative; z-index: 2; padding: 120px 0 80px; width: 100%; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(229,0,0,0.1);
  border: 1px solid rgba(229,0,0,0.3);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.hero-label .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); animation: pulse 2s infinite; }
.hero h1 { margin-bottom: 24px; }
.hero h1 span { display: block; }
.hero p { font-size: 1.1rem; margin-bottom: 40px; max-width: 500px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--glass-border);
  flex-wrap: wrap;
}
.hero-stat-item h3 { color: var(--primary); font-size: 1.8rem; }
.hero-stat-item p { font-size: 0.8rem; color: var(--text-muted); }
.hero-visual { position: relative; }
.hero-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glow-strong);
}
.hero-img-wrap img { width: 100%; display: block; }
.hero-floating-card {
  position: absolute;
  background: rgba(17,17,17,0.95);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-float-1 { bottom: -20px; left: -20px; animation: float 4s ease-in-out infinite; }
.hero-float-2 { top: 20px; right: -20px; animation: float 4s ease-in-out infinite 2s; }
.hfc-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--gradient); display: flex; align-items: center; justify-content: center; color: white; font-size: 1rem; }
.hfc-text h5 { font-size: 0.9rem; color: white; }
.hfc-text p { font-size: 0.75rem; color: var(--text-muted); }
.tech-stack { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 32px; }
.tech-badge {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
}
.tech-badge:hover { border-color: var(--primary); color: var(--primary); }

/* ===== SCROLLING MARQUEE ===== */
.marquee-section {
  background: var(--dark3);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 20px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}
.marquee-item i { color: var(--primary); }
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--primary); }

/* ===== SERVICES ===== */
.services-section { position: relative; }
.service-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  justify-content: center;
}
.service-tab {
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.service-tab.active, .service-tab:hover {
  background: var(--gradient);
  border-color: transparent;
  color: white;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { border-color: rgba(229,0,0,0.4); box-shadow: var(--glow); transform: translateY(-4px); }
.service-number { font-size: 0.75rem; color: var(--primary); font-weight: 700; letter-spacing: 2px; margin-bottom: 16px; }
.service-card h4 { margin-bottom: 10px; color: white; }
.service-card p { font-size: 0.88rem; margin-bottom: 20px; }
.service-link { color: var(--primary); font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.service-link:hover { gap: 10px; }

/* ===== STATS ===== */
.stats-section {
  background: var(--dark3);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.stats-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--glass-border); }
.stat-item {
  background: var(--dark3);
  padding: 40px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
}
.stat-item:hover::before { opacity: 0.05; }
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-display);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.stat-icon { font-size: 1.5rem; color: var(--primary); opacity: 0.3; margin-bottom: 12px; }

/* ===== ABOUT ===== */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--glass-border); }
.about-img-main img { width: 100%; display: block; }
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  color: white;
}
.about-badge h3 { font-size: 2rem; line-height: 1; }
.about-badge p { font-size: 0.8rem; opacity: 0.85; }
.about-checks { display: flex; flex-direction: column; gap: 16px; margin: 32px 0; }
.about-check { display: flex; gap: 14px; align-items: flex-start; }
.about-check-icon { width: 24px; height: 24px; border-radius: 50%; background: rgba(229,0,0,0.1); border: 1px solid rgba(229,0,0,0.3); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 0.7rem; flex-shrink: 0; margin-top: 2px; }
.about-check h5 { font-size: 0.95rem; margin-bottom: 4px; }
.about-check p { font-size: 0.85rem; }

/* ===== PROCESS ===== */
.process-section { background: var(--dark2); }
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--glass-border);
  position: relative;
}
.process-step:last-child { border-bottom: none; }
.step-number {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: transparent;
  -webkit-text-stroke: 1px rgba(229,0,0,0.2);
  line-height: 1;
  flex-shrink: 0;
}
.process-step:hover .step-number { -webkit-text-stroke-color: var(--primary); }
.step-content h4 { margin-bottom: 8px; color: white; font-size: 1.2rem; }
.step-content p { font-size: 0.9rem; }

/* ===== CLIENTS / WORK ===== */
.client-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.client-card:hover { border-color: rgba(229,0,0,0.4); box-shadow: var(--glow); transform: translateY(-4px); }
.client-card-header {
  background: var(--dark3);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--glass-border);
}
.client-logo {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}
.client-meta h4 { font-size: 1rem; margin-bottom: 4px; }
.client-meta span { font-size: 0.8rem; color: var(--primary); }
.client-card-body { padding: 24px; }
.client-card-body p { font-size: 0.88rem; margin-bottom: 16px; line-height: 1.7; }
.client-tech { display: flex; flex-wrap: wrap; gap: 6px; }
.client-tech span {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  background: rgba(229,0,0,0.08);
  border: 1px solid rgba(229,0,0,0.2);
  color: var(--primary);
}
.client-country { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 12px; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--dark2); }
.testimonial-slider { overflow: hidden; }
.testimonial-track { display: flex; gap: 24px; transition: transform 0.5s ease; }
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  flex-shrink: 0;
  width: calc(33.333% - 16px);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
}
.stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 16px; }
.testimonial-card p { font-size: 0.9rem; font-style: italic; margin-bottom: 24px; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--glass-border); padding-top: 20px; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.testimonial-author h5 { font-size: 0.9rem; color: white; }
.testimonial-author span { font-size: 0.78rem; color: var(--text-muted); }
.slider-controls { display: flex; justify-content: center; gap: 12px; margin-top: 40px; align-items: center; }
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.slider-btn:hover { background: var(--gradient); border-color: transparent; color: white; }
.slider-dots { display: flex; align-items: center; gap: 8px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--glass-border); cursor: pointer; transition: var(--transition); }
.slider-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* ===== TEAM ===== */
.team-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { border-color: rgba(229,0,0,0.4); transform: translateY(-4px); box-shadow: var(--glow); }
.team-img {
  height: 200px;
  background: var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-img-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  font-weight: 700;
}
.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(229,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s;
}
.team-card:hover .team-overlay { opacity: 1; }
.team-overlay a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 0.85rem;
}
.team-info { padding: 20px; }
.team-info h4 { font-size: 1rem; margin-bottom: 4px; }
.team-info span { font-size: 0.8rem; color: var(--primary); display: block; margin-bottom: 8px; }
.team-info p { font-size: 0.82rem; }

/* ===== FAQ ===== */
.faq-section { background: var(--dark2); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active { border-color: var(--primary); }
.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}
.faq-question h5 { font-size: 0.95rem; color: white; font-weight: 600; }
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--primary);
}
.faq-item.active .faq-icon { background: var(--primary); color: white; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 24px 20px; }
.faq-answer-inner p { font-size: 0.88rem; }

/* ===== BLOG ===== */
.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { border-color: rgba(229,0,0,0.4); transform: translateY(-4px); box-shadow: var(--glow); }
.blog-img { height: 200px; overflow: hidden; background: var(--dark3); }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-img-placeholder { height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--primary); opacity: 0.3; }
.blog-meta { padding: 20px; }
.blog-tags { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-tag { padding: 4px 10px; border-radius: 4px; font-size: 0.72rem; background: rgba(229,0,0,0.1); color: var(--primary); }
.blog-meta h4 { font-size: 1rem; margin-bottom: 10px; line-height: 1.4; }
.blog-meta h4 a { color: white; }
.blog-meta h4 a:hover { color: var(--primary); }
.blog-meta p { font-size: 0.85rem; margin-bottom: 16px; }
.blog-footer { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--text-muted); border-top: 1px solid var(--glass-border); padding-top: 14px; margin-top: 14px; }

/* ===== CONTACT ===== */
.contact-section { background: var(--dark2); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 40px; }
.contact-items { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(229,0,0,0.1);
  border: 1px solid rgba(229,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-item h5 { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.contact-item p, .contact-item a { font-size: 0.9rem; color: var(--text); }
.contact-item a:hover { color: var(--primary); }
.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(20px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; font-weight: 500; }
.form-control {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.9rem;
  font-family: var(--font-main);
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(229,0,0,0.1); background: rgba(229,0,0,0.03); }
.form-control::placeholder { color: rgba(148,163,184,0.5); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
select.form-control option { background: #1a1a1a; color: #e8e8e8; padding: 10px; }

/* Email cards */
.email-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; margin-bottom: 24px; }
.email-card {
  background: var(--dark3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 14px 16px;
  text-align: center;
}
.email-card h6 { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.email-card a { font-size: 0.85rem; color: var(--primary); font-weight: 600; }
.email-card a:hover { color: var(--primary-light); }

/* ===== CTA BANNER ===== */
.cta-section {
  background: var(--gradient);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner { position: relative; text-align: center; }
.cta-section h2 { color: white; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 40px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: white; color: var(--dark); }
.btn-white:hover { background: rgba(255,255,255,0.9); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.btn-white-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); }
.btn-white-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* ===== TRUST BADGES SLIDER ===== */
.trust-section {
  background: var(--dark3);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 40px 0;
  overflow: hidden;
}
.trust-section .section-label {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  font-weight: 600;
}
.trust-track {
  display: flex;
  gap: 60px;
  animation: marquee 40s linear infinite;
  width: max-content;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.trust-item:hover { opacity: 1; }
.trust-item img { height: 36px; width: auto; filter: brightness(0) invert(1); opacity: 0.6; }
.trust-item .trust-stars { color: #f59e0b; font-size: 0.7rem; }
.trust-badge-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
}
.trust-item-text { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--glass-border);
}
.footer-main { padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand p { margin: 20px 0 28px; font-size: 0.88rem; max-width: 300px; }
.footer-brand img { height: 36px; margin-bottom: 8px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gradient); color: white; border-color: transparent; }
.footer-col h5 {
  font-size: 0.85rem;
  color: white;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; }
.footer-contact-item i { color: var(--primary); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span, .footer-contact-item a { font-size: 0.82rem; color: var(--text-muted); }
.footer-contact-item a:hover { color: var(--primary); }
.footer-newsletter input {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.85rem;
  outline: none;
  margin-bottom: 10px;
}
.footer-newsletter input:focus { border-color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }
.footer-bottom a { color: var(--primary); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.82rem; color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--primary); }

/* ===== INDUSTRIES ===== */
.industry-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.industry-card:hover { border-color: var(--primary); background: rgba(229,0,0,0.05); transform: translateY(-4px); }
.industry-icon { font-size: 2.5rem; margin-bottom: 16px; }
.industry-card h4 { font-size: 0.95rem; margin-bottom: 8px; }
.industry-card p { font-size: 0.82rem; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 120px 0 80px;
  background: var(--dark2);
  border-bottom: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.1; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-sep { color: var(--glass-border); }

/* ===== ALERTS ===== */
.alert { padding: 16px 20px; border-radius: var(--radius); font-size: 0.9rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #22c55e; }
.alert-error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #f87171; }
.alert-info { background: rgba(229,0,0,0.1); border: 1px solid rgba(229,0,0,0.3); color: var(--primary); }

/* ===== LOADER ===== */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}
.loader-logo { display: flex; align-items: center; justify-content: center; }
.loader-logo img { height: 50px; width: auto; }
.loader-bar { width: 200px; height: 2px; background: var(--glass-border); border-radius: 2px; overflow: hidden; }
.loader-progress { width: 0; height: 100%; background: var(--gradient); border-radius: 2px; animation: loadProgress 1.5s ease forwards; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 900;
  box-shadow: var(--glow);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }

/* ===== WHATSAPP FLOAT (removed - replaced by live chat) ===== */
.whatsapp-float { display: none; }

/* ===== COOKIE CONSENT ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark3);
  border-top: 1px solid var(--glass-border);
  padding: 20px 24px;
  z-index: 10000;
  display: none;
  animation: slideUp 0.4s ease;
}
.cookie-banner.show { display: block; }
.cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 300px; }
.cookie-text p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.cookie-text a { color: var(--primary); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ===== LIVE CHAT ===== */
.live-chat-btn {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 998;
  box-shadow: 0 4px 20px rgba(229,0,0,0.4);
  transition: var(--transition);
}
.live-chat-btn:hover { transform: scale(1.1); }
.live-chat-btn .chat-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid var(--dark);
  font-size: 0;
}

.chat-widget {
  position: fixed;
  bottom: 160px;
  right: 30px;
  width: 380px;
  max-height: 520px;
  background: var(--dark2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
  z-index: 999;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.chat-widget.open { display: flex; }
.chat-header {
  background: var(--gradient);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}
.chat-header h4 { font-size: 0.95rem; }
.chat-header-info { display: flex; align-items: center; gap: 10px; }
.chat-header-info .online-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; }
.chat-close { background: none; border: none; color: white; cursor: pointer; font-size: 1.1rem; }
.chat-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  max-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.5;
}
.chat-msg.bot {
  background: var(--dark3);
  border: 1px solid var(--glass-border);
  align-self: flex-start;
  color: var(--text);
  border-bottom-left-radius: 4px;
}
.chat-msg.user {
  background: var(--gradient);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-msg .msg-time { font-size: 0.68rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.chat-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.chat-option-btn {
  background: var(--dark4);
  border: 1px solid var(--glass-border);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}
.chat-option-btn:hover { border-color: var(--primary); color: var(--primary); }
.chat-footer {
  padding: 12px 16px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  gap: 8px;
}
.chat-input {
  flex: 1;
  padding: 10px 14px;
  background: var(--dark3);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.85rem;
  outline: none;
}
.chat-input:focus { border-color: var(--primary); }
.chat-send {
  background: var(--gradient);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.chat-send:hover { opacity: 0.9; }
.chat-footer-links {
  padding: 10px 16px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  gap: 12px;
  justify-content: center;
}
.chat-footer-links a {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 4px 10px;
  border: 1px solid var(--glass-border);
  border-radius: 50px;
}
.chat-footer-links a:hover { color: var(--primary); border-color: var(--primary); }

/* Agent form */
.agent-form { padding: 16px; }
.agent-form .form-group { margin-bottom: 12px; }
.agent-form .form-group label { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 4px; display: block; }
.agent-form input, .agent-form textarea {
  width: 100%;
  padding: 10px 12px;
  background: var(--dark3);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.82rem;
  outline: none;
}
.agent-form textarea { min-height: 60px; resize: vertical; }
.agent-form input:focus, .agent-form textarea:focus { border-color: var(--primary); }

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229,0,0,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(229,0,0,0); }
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes loadProgress { to { width: 100%; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes slideUp { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ===== ADMIN PANEL ===== */
.admin-body { background: #0d1117; }
.admin-wrap { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px;
  background: #161b22;
  border-right: 1px solid #30363d;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; bottom: 0; left: 0;
  z-index: 100;
  overflow-y: auto;
  transition: transform 0.3s;
}
.admin-sidebar-header { padding: 24px 20px; border-bottom: 1px solid #30363d; }
.admin-sidebar-header h2 { font-size: 1.1rem; color: #e50000; }
.admin-sidebar-header p { font-size: 0.75rem; color: #8b949e; margin-top: 4px; }
.admin-nav { padding: 12px 0; flex: 1; }
.admin-nav-section { padding: 12px 20px 4px; font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #6e7681; }
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  color: #8b949e;
  font-size: 0.88rem;
  transition: var(--transition);
}
.admin-nav a:hover, .admin-nav a.active { color: #c9d1d9; background: rgba(229,0,0,0.08); border-right: 3px solid #e50000; }
.admin-nav a i { width: 16px; font-size: 0.85rem; }
.admin-main { margin-left: 260px; flex: 1; }
.admin-topbar {
  background: #161b22;
  border-bottom: 1px solid #30363d;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 99;
}
.admin-topbar h1 { font-size: 1.2rem; color: #c9d1d9; }
.admin-user { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: #8b949e; }
.admin-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; font-size: 0.8rem; }
.admin-content { padding: 32px 24px; }
.admin-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.admin-stat {
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 10px;
  padding: 20px;
}
.admin-stat h3 { font-size: 1.8rem; color: #e50000; }
.admin-stat p { font-size: 0.8rem; color: #8b949e; }
.admin-table-wrap {
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 10px;
  overflow: hidden;
}
.admin-table-header { padding: 16px 20px; border-bottom: 1px solid #30363d; display: flex; justify-content: space-between; align-items: center; }
.admin-table-header h3 { font-size: 1rem; color: #c9d1d9; }
table.admin-table { width: 100%; border-collapse: collapse; }
table.admin-table th { padding: 12px 16px; background: #0d1117; font-size: 0.78rem; color: #6e7681; text-transform: uppercase; letter-spacing: 1px; text-align: left; }
table.admin-table td { padding: 14px 16px; border-top: 1px solid #30363d; font-size: 0.88rem; color: #c9d1d9; }
table.admin-table tr:hover td { background: rgba(229,0,0,0.04); }
.badge-status { padding: 3px 10px; border-radius: 50px; font-size: 0.72rem; font-weight: 600; }
.badge-new { background: rgba(229,0,0,0.15); color: #e50000; }
.badge-published { background: rgba(63,185,80,0.15); color: #3fb950; }
.badge-draft { background: rgba(139,148,158,0.15); color: #8b949e; }
.badge-active { background: rgba(63,185,80,0.15); color: #3fb950; }
.badge-read { background: rgba(56,139,253,0.15); color: #388bfd; }
.badge-replied { background: rgba(63,185,80,0.15); color: #3fb950; }
.badge-archived { background: rgba(139,148,158,0.15); color: #8b949e; }
.admin-form-wrap { background: #161b22; border: 1px solid #30363d; border-radius: 10px; padding: 28px; }
.admin-form-group { margin-bottom: 20px; }
.admin-form-group label { display: block; font-size: 0.82rem; color: #8b949e; margin-bottom: 8px; font-weight: 500; }
.admin-form-control {
  width: 100%;
  padding: 10px 14px;
  background: #0d1117;
  border: 1px solid #30363d;
  border-radius: 6px;
  color: #c9d1d9;
  font-size: 0.88rem;
  font-family: var(--font-main);
  outline: none;
  transition: var(--transition);
}
.admin-form-control:focus { border-color: #e50000; box-shadow: 0 0 0 3px rgba(229,0,0,0.1); }
textarea.admin-form-control { min-height: 120px; resize: vertical; }
select.admin-form-control { cursor: pointer; }
.admin-btn { padding: 10px 20px; border-radius: 6px; font-size: 0.88rem; font-weight: 600; border: none; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; color: white; }
.admin-btn-primary { background: #e50000; }
.admin-btn-primary:hover { background: #ff3333; }
.admin-btn-blue { background: #1f6feb; }
.admin-btn-blue:hover { background: #388bfd; }
.admin-btn-danger { background: #da3633; }
.admin-btn-danger:hover { background: #f85149; }
.admin-btn-sm { padding: 6px 12px; font-size: 0.78rem; }
.admin-pagination { display: flex; gap: 8px; margin-top: 20px; justify-content: center; }
.admin-pagination a, .admin-pagination span {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.82rem;
  border: 1px solid #30363d;
  color: #8b949e;
}
.admin-pagination a:hover { border-color: #e50000; color: #e50000; }
.admin-pagination .current { background: #e50000; color: white; border-color: #e50000; }

/* Helper for image URL */
.img-url-help {
  font-size: 0.72rem;
  color: #6e7681;
  margin-top: 4px;
}
.img-url-help i { color: #e50000; margin-right: 4px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
  .section-pad { padding: 70px 0; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-img { display: none; }
  .contact-inner { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { width: calc(50% - 12px); }
  .mega-menu { width: 95vw; }
  .mega-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .admin-stats-grid { grid-template-columns: 1fr 1fr; }
  .process-step { grid-template-columns: 60px 1fr; gap: 20px; }
  .step-number { font-size: 2.2rem; }
  .grid-2 { gap: 40px; }
  .chat-widget { width: 340px; bottom: 140px; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .topbar-social { display: none; }
  .topbar .flex.gap-24 { gap: 12px; font-size: 0.78rem; }
  .hero { min-height: 100svh; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .testimonial-card { width: 100%; }
  .admin-sidebar { transform: translateX(-260px); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .admin-stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 20px; }
  .hero-stat-item h3 { font-size: 1.4rem; }
  .section-pad { padding: 60px 0; }
  .page-hero { padding: 100px 0 60px; }
  .cta-section { padding: 60px 0; }
  .email-cards { grid-template-columns: 1fr; }
  .chat-widget { width: calc(100vw - 32px); right: 16px; bottom: 130px; }
  .live-chat-btn { bottom: 80px; right: 20px; width: 50px; height: 50px; }
  .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-text { min-width: auto; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-pad { padding: 50px 0; }
  h2 { font-size: 1.6rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .admin-stats-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .tech-stack { justify-content: center; }
  .nav-inner { height: 60px; }
  .nav-logo img { height: 32px; }
  .topbar { display: none; }
}
