/* ============================================================
   INFINITY ORGANIZATION — Premium Dark Neon Theme
   assets/css/style.css
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── CSS Variables ── */
:root {
  --bg:          #000000;
  --bg-2:        #0a0a0a;
  --bg-3:        #111111;
  --surface:     rgba(255,255,255,0.04);
  --surface-2:   rgba(255,255,255,0.07);
  --orange:      #ff6a00;
  --orange-dim:  #cc5500;
  --orange-glow: rgba(255,106,0,0.35);
  --orange-soft: rgba(255,106,0,0.12);
  --white:       #ffffff;
  --gray-1:      #e8e8e8;
  --gray-2:      #a0a0a0;
  --gray-3:      #505050;
  --border:      rgba(255,255,255,0.08);
  --border-o:    rgba(255,106,0,0.4);
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --font-head:   'Syne', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-o:    0 0 30px rgba(255,106,0,0.25), 0 0 60px rgba(255,106,0,0.1);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.6), 0 1px 0 rgba(255,255,255,0.05);
  --navbar-h:    72px;
  --topbar-h:    40px;
}

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

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

body {
  background: var(--bg);
  color: var(--gray-1);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--orange-dim); border-radius: 10px; }

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: var(--font-body); }

::selection { background: var(--orange); color: #000; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: #050505;
  border-bottom: 1px solid var(--border);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 200;
}

.top-bar__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar__socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-bar__socials a {
  color: var(--gray-2);
  font-size: 14px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all var(--transition);
}
.top-bar__socials a:hover {
  color: var(--orange);
  background: var(--orange-soft);
}
.top-bar__socials a svg { width: 14px; height: 14px; fill: currentColor; }

.top-bar__contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar__contact a {
  color: var(--gray-2);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.top-bar__contact a:hover { color: var(--orange); }
.top-bar__contact a svg { width: 13px; height: 13px; fill: currentColor; opacity: 0.7; }

.top-bar__divider {
  width: 1px;
  height: 14px;
  background: var(--border);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,106,0,0.08);
}

.navbar {
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 32px;
}

/* Logo */
.navbar__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.navbar__logo img {
  height: 36px;
  width: auto;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--orange), #ff9a00);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #000;
  box-shadow: 0 0 16px var(--orange-glow);
  flex-shrink: 0;
}

.navbar__logo span { color: var(--orange); }

/* Nav Menu */
.navbar__menu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* WordPress nav menu override */
.navbar__menu .menu,
.navbar__menu > ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar__menu .menu > li,
.navbar__menu > ul > li {
  position: relative;
}

.navbar__menu .menu > li > a,
.navbar__menu > ul > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-2);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.navbar__menu .menu > li > a:hover,
.navbar__menu > ul > li > a:hover,
.navbar__menu .menu > li.current-menu-item > a,
.navbar__menu .menu > li.current_page_item > a,
.navbar__menu > ul > li.current-menu-item > a {
  color: var(--orange);
  background: var(--orange-soft);
}

.navbar__menu .menu > li.current-menu-item > a,
.navbar__menu .menu > li.current_page_item > a {
  color: var(--orange);
  text-shadow: 0 0 12px var(--orange-glow);
}

/* Dropdown arrow */
.navbar__menu .menu-item-has-children > a::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.6;
  transition: transform var(--transition);
}

.navbar__menu .menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

/* Dropdown */
.navbar__menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: rgba(12,12,12,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(255,106,0,0.05);
}

.navbar__menu .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.navbar__menu .sub-menu li a {
  display: block;
  padding: 9px 14px;
  font-size: 13.5px;
  color: var(--gray-2);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.navbar__menu .sub-menu li a:hover {
  color: var(--orange);
  background: var(--orange-soft);
  padding-left: 18px;
}

/* Nav Actions */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background var(--transition);
  background: none;
  border: none;
}
.hamburger:hover { background: var(--surface); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-1);
  border-radius: 2px;
  transition: all var(--transition);
}
.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); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(30px);
  z-index: 99;
  padding: 100px 32px 32px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav .menu,
.mobile-nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav .menu > li {
  border-bottom: 1px solid var(--border);
}

.mobile-nav .menu > li > a {
  display: block;
  padding: 16px 0;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-1);
  transition: color var(--transition);
}

.mobile-nav .menu > li > a:hover,
.mobile-nav .menu > li.current-menu-item > a { color: var(--orange); }

.mobile-nav .sub-menu {
  list-style: none;
  padding: 0 0 8px 16px;
}

.mobile-nav .sub-menu li a {
  display: block;
  padding: 8px 0;
  font-size: 1rem;
  color: var(--gray-2);
}

.mobile-nav .sub-menu li a:hover { color: var(--orange); }

.mobile-nav__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-1);
  font-size: 20px;
  cursor: pointer;
  transition: all var(--transition);
}
.mobile-nav__close:hover { background: var(--orange-soft); color: var(--orange); border-color: var(--border-o); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #ff9a00);
  color: #000;
  font-weight: 700;
  box-shadow: 0 0 20px var(--orange-glow), 0 4px 16px rgba(0,0,0,0.4);
}
.btn-primary:hover {
  box-shadow: 0 0 35px rgba(255,106,0,0.5), 0 8px 24px rgba(0,0,0,0.5);
  transform: translateY(-1px);
  color: #000;
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  box-shadow: 0 0 12px var(--orange-glow), inset 0 0 12px rgba(255,106,0,0.04);
}
.btn-outline:hover {
  background: var(--orange-soft);
  box-shadow: 0 0 24px var(--orange-glow), 0 0 48px rgba(255,106,0,0.15);
  transform: translateY(-1px);
  color: var(--orange);
}

.btn-ghost {
  background: var(--surface);
  color: var(--gray-1);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--surface-2);
  border-color: var(--border-o);
  color: var(--orange);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 15px;
}

.btn-sm {
  padding: 7px 16px;
  font-size: 13px;
}

/* ============================================================
   HERO / CONTACT SECTION
   ============================================================ */
.hero-contact {
  min-height: calc(100vh - var(--topbar-h) - var(--navbar-h));
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Background ambient */
.hero-contact::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,106,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-contact::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,106,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Grid lines decoration */
.hero-contact__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,106,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,106,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-contact__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left Content */
.hero-contact__content { }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--orange-soft);
  border: 1px solid var(--border-o);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--orange);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 4px var(--orange); opacity: 1; }
  50% { box-shadow: 0 0 14px var(--orange), 0 0 24px var(--orange-glow); opacity: 0.7; }
}

.hero-contact__heading {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-contact__heading .line-white { color: var(--white); display: block; }

.hero-contact__heading .line-orange {
  color: var(--orange);
  display: block;
  text-shadow: 0 0 40px rgba(255,106,0,0.5), 0 0 80px rgba(255,106,0,0.25);
  position: relative;
}

.hero-contact__desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-2);
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-contact__meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-2);
}

.meta-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--orange-soft);
  border: 1px solid var(--border-o);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.meta-icon svg { width: 15px; height: 15px; fill: var(--orange); }

.meta-item strong { color: var(--white); font-weight: 500; }

/* ============================================================
   CONTACT FORM CARD — Glassmorphism
   ============================================================ */
.contact-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(255,106,0,0.04), inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,106,0,0.5), transparent);
}

.contact-card::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,106,0,0.08), transparent 70%);
  pointer-events: none;
}

.contact-card__title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.contact-card__sub {
  font-size: 13.5px;
  color: var(--gray-2);
  margin-bottom: 32px;
}

/* Form Fields */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-3);
  margin-bottom: 8px;
  transition: color var(--transition);
}

.form-group:focus-within label { color: var(--orange); }

.form-control {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--white);
  outline: none;
  transition: all var(--transition);
  appearance: none;
}

.form-control::placeholder { color: var(--gray-3); }

.form-control:focus {
  border-color: var(--orange);
  background: rgba(255,106,0,0.05);
  box-shadow: 0 0 0 3px rgba(255,106,0,0.1), 0 0 20px rgba(255,106,0,0.08);
}

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

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

.btn-submit {
  width: 100%;
  margin-top: 4px;
  padding: 15px;
  font-size: 15px;
}

/* Form status messages */
.form-status {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 13.5px;
  font-weight: 500;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(0,200,80,0.1);
  border: 1px solid rgba(0,200,80,0.3);
  color: #4ade80;
}

.form-status.error {
  display: block;
  background: rgba(255,60,60,0.1);
  border: 1px solid rgba(255,60,60,0.3);
  color: #f87171;
}

/* ============================================================
   GENERIC PAGE HERO
   ============================================================ */
.page-hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,106,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.page-hero__title span { color: var(--orange); text-shadow: 0 0 30px var(--orange-glow); }

.page-hero__desc {
  font-size: 1.05rem;
  color: var(--gray-2);
  line-height: 1.75;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
  content: '';
  height: 1px;
  width: 24px;
  background: var(--orange);
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title span { color: var(--orange); }

.section-desc {
  font-size: 1rem;
  color: var(--gray-2);
  line-height: 1.8;
  max-width: 540px;
}

.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }
.text-center .section-label { justify-content: center; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.card:hover {
  border-color: var(--border-o);
  background: var(--surface-2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,106,0,0.1);
}

.card-glass {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
}

/* Service card icon */
.card-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-soft);
  border: 1px solid var(--border-o);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}
.card:hover .card-icon {
  background: rgba(255,106,0,0.2);
  box-shadow: 0 0 20px var(--orange-glow);
}
.card-icon svg { width: 22px; height: 22px; fill: var(--orange); }

.card-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.card-desc {
  font-size: 14px;
  color: var(--gray-2);
  line-height: 1.75;
}

/* ============================================================
   BLOG CARD
   ============================================================ */
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.blog-card:hover {
  border-color: var(--border-o);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.blog-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-card__body { padding: 24px; }

.blog-card__category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.blog-card__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 12px;
  transition: color var(--transition);
}

.blog-card:hover .blog-card__title { color: var(--orange); }

.blog-card__meta {
  font-size: 12.5px;
  color: var(--gray-3);
  display: flex;
  gap: 12px;
}

/* ============================================================
   STATS / NUMBERS
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  background: var(--bg-2);
  padding: 36px 28px;
  text-align: center;
  transition: background var(--transition);
}

.stat-item:hover { background: var(--bg-3); }

.stat-number {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--orange);
  text-shadow: 0 0 24px var(--orange-glow);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--gray-2);
  font-weight: 500;
}

/* ============================================================
   DIVIDER
   ============================================================ */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.footer-brand {}

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand__logo span { color: var(--orange); }

.footer-brand__desc {
  font-size: 13.5px;
  color: var(--gray-2);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-2);
  transition: all var(--transition);
}
.footer-social-btn:hover {
  background: var(--orange-soft);
  border-color: var(--border-o);
  color: var(--orange);
  box-shadow: 0 0 12px var(--orange-glow);
}
.footer-social-btn svg { width: 15px; height: 15px; fill: currentColor; }

.footer-col__title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 13.5px;
  color: var(--gray-2);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--orange); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--gray-2);
  margin-bottom: 14px;
}
.footer-contact-item svg { width: 14px; height: 14px; fill: var(--orange); flex-shrink: 0; margin-top: 2px; }

/* Widget area */
.footer-widgets {}
.footer-widgets .widget { margin-bottom: 24px; }
.footer-widgets .widget-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

/* Footer bottom */
.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom__copy {
  font-size: 13px;
  color: var(--gray-3);
}

.footer-bottom__copy a { color: var(--orange); }
.footer-bottom__copy a:hover { text-shadow: 0 0 8px var(--orange-glow); }

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

.footer-bottom__links a {
  font-size: 13px;
  color: var(--gray-3);
  transition: color var(--transition);
}

.footer-bottom__links a:hover { color: var(--orange); }

/* ============================================================
   CONTENT AREA
   ============================================================ */
.site-main { min-height: 50vh; }

.entry-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px;
}

.entry-content h1, .entry-content h2, .entry-content h3,
.entry-content h4, .entry-content h5, .entry-content h6 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  margin: 2em 0 0.75em;
  line-height: 1.2;
}

.entry-content p { margin-bottom: 1.4em; color: var(--gray-2); line-height: 1.8; }
.entry-content a { color: var(--orange); }
.entry-content a:hover { text-shadow: 0 0 10px var(--orange-glow); }
.entry-content ul, .entry-content ol { margin-bottom: 1.4em; padding-left: 24px; color: var(--gray-2); }
.entry-content li { margin-bottom: 6px; }
.entry-content blockquote {
  border-left: 3px solid var(--orange);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--orange-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--gray-1);
  font-style: italic;
}

/* ============================================================
   404 / ARCHIVE PAGES
   ============================================================ */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px var(--orange-glow); }
  50% { box-shadow: 0 0 40px rgba(255,106,0,0.5), 0 0 80px rgba(255,106,0,0.2); }
}

.fade-in-up { animation: fadeInUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-orange { color: var(--orange); }
.glow-text { text-shadow: 0 0 24px var(--orange-glow); }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-12 { gap: 12px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-contact { padding: 60px 0; }

  .navbar__menu { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
}

@media (max-width: 640px) {
  :root {
    --navbar-h: 64px;
    --topbar-h: 36px;
  }

  .top-bar__contact { display: none; }

  .contact-card { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom__links { flex-wrap: wrap; justify-content: center; }

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

  .hero-contact__heading { font-size: clamp(2.5rem, 10vw, 3.5rem); }
}

@media (max-width: 400px) {
  .navbar { padding: 0 16px; gap: 16px; }
  .container { padding: 0 16px; }
  .contact-card { padding: 22px 16px; }
}
