/* ─── Google Fonts ─────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

/* ─── CSS Variables ─────────────────────────────── */
:root {
  --navy: #0D2B7A;
  --navy-dark: #071B52;
  --navy-light: #1A3D9E;
  --red: #C91F1F;
  --red-dark: #A51515;

  --bg: #FFFFFF;
  --bg-2: #F5F7FC;
  --bg-3: #EEF0F8;
  --card: #FFFFFF;
  --border: rgba(0,0,0,0.07);
  --border-2: rgba(0,0,0,0.12);

  --text: #0A1628;
  --text-2: #4B5563;
  --text-3: #9CA3AF;

  --shadow-sm: 0 2px 8px rgba(13,43,122,0.06);
  --shadow: 0 4px 24px rgba(13,43,122,0.08);
  --shadow-lg: 0 12px 48px rgba(13,43,122,0.12);

  --font: 'Sora', -apple-system, sans-serif;
  --mono: 'Space Mono', monospace;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --bg: #080D1A;
  --bg-2: #0E1525;
  --bg-3: #141C2E;
  --card: #0E1525;
  --border: rgba(255,255,255,0.06);
  --border-2: rgba(255,255,255,0.1);
  --text: #F0F4FF;
  --text-2: #A0AEC0;
  --text-3: #4A5568;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.5);
}

/* ─── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

/* ─── Scrollbar ─────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 3px; }

/* ─── Utilities ─────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--red); margin-bottom: 0.6rem; display: block;
}
.section-title { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.15; color: var(--text); margin-bottom: 1rem; }
.section-sub { font-size: 1rem; color: var(--text-2); line-height: 1.75; max-width: 560px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.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-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-navy { color: var(--navy); }
.hidden { display: none !important; }

/* ─── Animations ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.15); }
}
@keyframes slideRight {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.animate-up { animation: fadeUp 0.6s ease both; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ─── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius); border: none;
  font-size: 14px; font-weight: 600; transition: all var(--transition);
  white-space: nowrap; letter-spacing: 0.2px;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,31,31,0.35); }
.btn-navy { background: var(--navy-dark); color: #fff; }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(13,43,122,0.35); }
.btn-outline {
  background: transparent; color: var(--text); border: 1.5px solid var(--border-2);
}
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-white { background: #fff; color: var(--red); border: none; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.15); }
.btn-lg { padding: 15px 36px; font-size: 15px; border-radius: 14px; }
.btn-sm { padding: 8px 18px; font-size: 13px; border-radius: 8px; }
.btn-icon-only { width: 40px; height: 40px; padding: 0; border-radius: 10px; }

/* ─── NAVBAR ──────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 70px; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(7, 27, 82, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}
[data-theme="dark"] #navbar { background: rgba(8,13,26,0.95); }
#navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.25); }

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.logo svg { width: 140px; height: auto; }
.logo-text { color: white; font-size: 12px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.7; }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: rgba(255,255,255,0.75); font-size: 13.5px; font-weight: 500;
  padding: 7px 16px; border-radius: 8px; transition: all var(--transition);
  cursor: pointer; letter-spacing: 0.2px;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.1); }
.nav-links a.active { color: #fff; }

.nav-right { display: flex; align-items: center; gap: 10px; }

/* Theme toggle */
.theme-toggle {
  width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; transition: all var(--transition);
}
.theme-toggle:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25); }

.nav-cta { background: var(--red); color: #fff; padding: 9px 22px; border-radius: 10px; font-size: 13px; font-weight: 600; border: none; transition: all var(--transition); }
.nav-cta:hover { background: var(--red-dark); }

.menu-toggle { display: none; background: none; border: none; color: white; font-size: 22px; }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; top: 70px; left: 0; right: 0; z-index: 999;
  background: var(--navy-dark); padding: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: rgba(255,255,255,0.8); padding: 12px 16px; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all var(--transition); }
.mobile-nav a:hover { background: rgba(255,255,255,0.08); color: white; }

/* ─── HERO ────────────────────────────────────── */
#hero {
  min-height: 100vh; background: var(--navy-dark);
  display: flex; align-items: center; padding-top: 70px;
  position: relative; overflow: hidden;
}
.hero-bg-layer {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-dot-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
}
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.12;
}
.hero-glow-1 { width: 600px; height: 600px; background: var(--red); right: -100px; top: -100px; }
.hero-glow-2 { width: 400px; height: 400px; background: var(--navy-light); left: -80px; bottom: -80px; }
.hero-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.04);
  animation: float 6s ease-in-out infinite;
}
.hero-ring-1 { width: 480px; height: 480px; right: 5%; top: 10%; border-color: rgba(201,31,31,0.15); }
.hero-ring-2 { width: 320px; height: 320px; right: 12%; top: 22%; border-color: rgba(201,31,31,0.08); animation-delay: 1s; }

.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; padding: 5rem 0; position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,31,31,0.12); border: 1px solid rgba(201,31,31,0.35);
  color: #FF9090; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 1.5rem;
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: pulse 2s infinite; }

.hero-title { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.08; color: #fff; margin-bottom: 1.5rem; }
.hero-title em { color: var(--red); font-style: normal; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 2.5rem; max-width: 520px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats { display: flex; gap: 2.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
.hero-stat-num { font-family: var(--mono); font-size: 2rem; font-weight: 700; color: #fff; line-height: 1; }
.hero-stat-num em { color: var(--red); font-style: normal; }
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.45); font-weight: 500; margin-top: 5px; text-transform: uppercase; letter-spacing: 1px; }

/* Hero Visual */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-card-stack { position: relative; width: 390px; height: 420px; }
.h-float-card {
  position: absolute; border-radius: 18px; padding: 20px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}
.h-float-card:nth-child(1) { width: 240px; top: 0; right: 0; animation: float 5s ease-in-out infinite; }
.h-float-card:nth-child(2) { width: 200px; top: 130px; left: 0; animation: float 7s ease-in-out infinite 1s; }
.h-float-card:nth-child(3) { width: 220px; bottom: 18px; right: 30px; animation: float 6s ease-in-out infinite 0.5s; }
.h-card-icon { width: 42px; height: 42px; background: var(--red); border-radius: 11px; display: flex; align-items: center; justify-content: center; color: white; font-size: 18px; margin-bottom: 12px; }
.h-card-title { font-size: 13px; font-weight: 700; color: white; }
.h-card-sub { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 3px; }
.h-card-bar { height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; margin-top: 14px; overflow: hidden; }
.h-card-bar-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--red), #FF7070); }

/* ─── SERVICES TICKER ───────────────────────── */
.ticker-strip { background: var(--red); padding: 0.9rem 0; overflow: hidden; }
.ticker-inner { display: flex; align-items: center; gap: 2rem; animation: ticker 25s linear infinite; white-space: nowrap; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 600; }
.ticker-sep { color: rgba(255,255,255,0.3); font-size: 10px; }

/* ─── SERVICES ──────────────────────────────── */
#services { background: var(--bg-2); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.svc-card {
  background: var(--card); border-radius: var(--radius-lg); padding: 2rem;
  border: 1px solid var(--border); transition: all var(--transition);
  position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--navy-light));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.svc-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: white; margin-bottom: 1.25rem;
}
.svc-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 0.6rem; }
.svc-card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.7; }
.svc-features { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 1rem; }
.svc-feat-tag {
  background: var(--bg-3); border: 1px solid var(--border); color: var(--text-2);
  font-size: 10px; font-weight: 600; padding: 4px 10px; border-radius: 100px;
  letter-spacing: 0.3px;
}

/* ─── PRODUCTS ──────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.prod-card {
  background: var(--card); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); transition: all var(--transition);
}
.prod-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.prod-banner {
  height: 170px; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 10px; position: relative;
}
.prod-banner i { font-size: 3rem; color: rgba(255,255,255,0.9); }
.prod-banner h3 { color: white; font-size: 1rem; font-weight: 700; text-align: center; padding: 0 1rem; }
.prod-category-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,0.15); color: white;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; backdrop-filter: blur(4px);
}
.prod-body { padding: 1.5rem; }
.prod-body p { font-size: 0.875rem; color: var(--text-2); line-height: 1.7; margin-bottom: 1rem; }
.prod-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.prod-tag { background: var(--bg-3); border: 1px solid var(--border); color: var(--text-2); font-size: 10px; font-weight: 600; padding: 4px 10px; border-radius: 100px; }

/* ─── REQUEST DEMO BUTTON (WHATSAPP) ─────────── */
.prod-cta {
  width: 100%; margin-top: 1.25rem; padding: 11px; border-radius: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white; border: none; font-size: 13px; font-weight: 600;
  transition: all var(--transition); display: flex; align-items: center; justify-content: center; gap: 6px;
}
.prod-cta:hover { transform: scale(1.02); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }

/* ─── WHY US ─────────────────────────────────── */
#why { background: var(--navy-dark); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-left .section-label { color: rgba(255,100,100,0.9); }
.why-left .section-title { color: white; }
.why-left .section-sub { color: rgba(255,255,255,0.55); }
.why-items { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-num {
  font-family: var(--mono); font-size: 11px; font-weight: 700; color: var(--red);
  background: rgba(201,31,31,0.1); border: 1px solid rgba(201,31,31,0.25);
  width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.why-item h4 { font-size: 0.95rem; font-weight: 700; color: white; margin-bottom: 4px; }
.why-item p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.65; }
.why-right { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-xl); padding: 2rem; }
.stat-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-box { background: rgba(201,31,31,0.07); border: 1px solid rgba(201,31,31,0.18); border-radius: 14px; padding: 1.25rem; }
.stat-box-num { font-family: var(--mono); font-size: 2rem; font-weight: 700; color: white; line-height: 1; }
.stat-box-num em { color: var(--red); font-style: normal; }
.stat-box-label { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 6px; font-weight: 500; }
.tech-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin: 1.5rem 0 0.75rem; }
.tech-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-pill { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.65); font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 8px; font-family: var(--mono); }

/* ─── ABOUT MODERN (NEW ATTRACTIVE) ──────────── */
.about-grid-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-stats-modern {
  display: flex;
  gap: 2.5rem;
  margin: 25px 0;
}

.about-stats-modern .stat-item {
  display: flex;
  flex-direction: column;
}

.about-stats-modern .stat-number {
  font-size: 32px;
  font-weight: 900;
  color: #00d4ff;
  font-family: 'Space Mono', monospace;
}

.about-stats-modern .stat-label {
  font-size: 13px;
  color: #c8d0e0;
  font-weight: 500;
}

.about-badges-modern {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.about-badges-modern .badge {
  background: rgba(0, 212, 255, 0.15);
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: #00d4ff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about-right .about-icon-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
}

.about-right .about-icon-box i {
  font-size: 64px;
  color: #00d4ff;
  margin-bottom: 20px;
}

.about-right .about-icon-box h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.about-right .about-icon-box p {
  color: #c8d0e0;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  text-align: left;
}

.about-features span {
  color: #c8d0e0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ─── POSTS MODERN (NO IMAGES) ──────────────── */
.posts-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.post-card-modern {
  background: var(--card);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.post-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), #00d4ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.post-card-modern:hover::before {
  transform: scaleX(1);
}

.post-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.post-card-modern .post-number {
  font-size: 48px;
  font-weight: 900;
  color: rgba(201, 31, 31, 0.08);
  font-family: 'Space Mono', monospace;
  line-height: 1;
  margin-bottom: 5px;
}

.post-card-modern .post-date-modern {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.post-card-modern .post-title-modern {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.post-card-modern .post-excerpt-modern {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

.post-card-modern .post-tag {
  display: inline-block;
  background: rgba(201, 31, 31, 0.08);
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 12px;
}

/* ─── CONTACT ────────────────────────────────── */
#contact { }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; margin-top: 3rem; }
.contact-info h3 { font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: 0.75rem; }
.contact-info > p { font-size: 0.92rem; color: var(--text-2); line-height: 1.75; margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon { width: 46px; height: 46px; background: var(--navy-dark); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; font-size: 16px; flex-shrink: 0; }
[data-theme="dark"] .contact-icon { background: rgba(13,43,122,0.5); border: 1px solid rgba(13,43,122,0.8); }
.contact-item-body h5 { font-size: 13px; font-weight: 700; color: var(--text); }
.contact-item-body p { font-size: 13px; color: var(--text-2); margin-top: 2px; }
.contact-item-body p a { color: #25D366; font-weight: 700; }
.contact-socials { display: flex; gap: 0.75rem; margin-top: 2rem; }
.social-btn { width: 42px; height: 42px; border-radius: 11px; background: var(--bg-3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-2); font-size: 15px; transition: all var(--transition); }
.social-btn:hover { background: var(--navy-dark); color: white; border-color: var(--navy-dark); }

.contact-form { background: var(--card); border-radius: var(--radius-xl); padding: 2.5rem; border: 1px solid var(--border); box-shadow: var(--shadow); }
.contact-form h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--text-2); letter-spacing: 0.5px; margin-bottom: 7px; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  border: 1.5px solid var(--border-2); font-size: 14px;
  background: var(--bg-2); color: var(--text); outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--navy); background: var(--bg);
  box-shadow: 0 0 0 3px rgba(13,43,122,0.08);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; padding: 14px; background: var(--navy-dark); color: white;
  border: none; border-radius: 11px; font-size: 15px; font-weight: 700;
  transition: all var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(13,43,122,0.3); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* ─── CTA SECTION ────────────────────────────── */
.cta-section { background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%); padding: 5rem 0; text-align: center; }
.cta-section h2 { font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 800; color: white; margin-bottom: 0.75rem; }
.cta-section p { font-size: 1rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; }

/* ─── FOOTER ──────────────────────────────────── */
footer {
  background: var(--navy-dark); padding: 4rem 0 0;
  border-top: 2px solid var(--red);
}
[data-theme="dark"] footer { background: #050A14; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-logo { margin-bottom: 1rem; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.8; max-width: 280px; }
.footer-socials { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.footer-social { width: 34px; height: 34px; border-radius: 9px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); font-size: 13px; transition: all var(--transition); }
.footer-social:hover { background: var(--red); border-color: var(--red); color: white; }
.footer-col h5 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.35); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 0.6rem; cursor: pointer; transition: color var(--transition); }
.footer-col a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-copy span { color: var(--red); }

/* ─── LOADING ────────────────────────────────── */
.page-loader { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; padding: 3rem; }
.loader-spin { width: 36px; height: 36px; border: 3px solid var(--border); border-top-color: var(--navy); border-radius: 50%; animation: spin 0.8s linear infinite; }
.loading-text { font-size: 13px; color: var(--text-3); }

/* Empty state */
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--text-3); }
.empty-state i { font-size: 3rem; margin-bottom: 1rem; opacity: 0.25; }
.empty-state p { font-size: 14px; }

/* Toast */
#toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  background: var(--navy-dark); color: white; padding: 14px 22px;
  border-radius: 12px; font-size: 14px; font-weight: 600;
  border-left: 3px solid var(--red); box-shadow: var(--shadow-lg);
  transform: translateY(80px); opacity: 0; transition: all var(--transition);
  max-width: 320px;
}
#toast.show { transform: translateY(0); opacity: 1; }
#toast.success { border-left-color: #22c55e; }
#toast.error { border-left-color: var(--red); }

/* ─── WHATSAPP BUTTON STYLES ────────────────── */
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
}
.whatsapp-link:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}
.whatsapp-link i {
  font-size: 18px;
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { gap: 3rem; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-grid-modern { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .posts-grid-modern { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 3.5rem 0; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-title { font-size: 2.4rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .services-grid, .products-grid { grid-template-columns: 1fr; }
  .posts-grid-modern { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-stats { padding-top: 2rem; }
  .about-stats-modern { flex-wrap: wrap; gap: 1.5rem; }
  .about-features { grid-template-columns: 1fr; }
  .about-right .about-icon-box { padding: 2rem; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-badge { font-size: 10px; }
  .section-title { font-size: 1.8rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
}