/* ============================================================
   DIGITAL MARKETING MANTRA — Premium Agency CSS
   Orange (#FF6B00) and Black palette
   ============================================================ */

/* ── Google Fonts ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
/* Legacy gold variable remapping — ensures all pages using var(--gold) display orange */
:root {
  --gold: #FF6B00;
  --gold-light: #FF8533;
  --gold-dark: #CC5500;
  --gold-pale: rgba(255, 107, 0, 0.1);
  --gold-glow: rgba(255, 107, 0, 0.3);
  --shadow-gold: 0 0 30px rgba(255, 107, 0, 0.3), 0 8px 32px rgba(0,0,0,0.5);
  --black-3: #1a1a1a;
  --black-4: #222222;
  --bg-soft: #111111;
  --white-dim: rgba(255,255,255,0.85);
}

:root {
  --orange: #FF6B00;
  --orange-light: #FF8533;
  --orange-dark: #CC5500;
  --orange-glow: rgba(255, 107, 0, 0.3);
  --orange-glow-strong: rgba(255, 107, 0, 0.6);
  --orange-pale: rgba(255, 107, 0, 0.1);
  --orange-border: rgba(255, 107, 0, 0.25);
  --orange-border-hover: rgba(255, 107, 0, 0.5);
  --black: #0a0a0a;
  --black-mid: #111111;
  --black-soft: #1a1a1a;
  --black-card: #141414;
  --black-border: rgba(255, 255, 255, 0.08);
  --white: #ffffff;
  --white-soft: #f5f5f5;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-20: rgba(255, 255, 255, 0.2);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-5: rgba(255, 255, 255, 0.05);
  --glass-bg: rgba(255, 107, 0, 0.05);
  --glass-border: rgba(255, 107, 0, 0.2);
  --gradient-primary: linear-gradient(135deg, #FF6B00 0%, #CC5500 100%);
  --gradient-hero: linear-gradient(135deg, #0a0a0a 0%, #1a0500 50%, #0a0a0a 100%);
  --shadow-orange: 0 0 30px rgba(255, 107, 0, 0.3), 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-orange-lg: 0 0 50px rgba(255, 107, 0, 0.4), 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --nav-height: 76px;
  --max-width: 1200px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* Selection */
::selection { background: var(--orange); color: var(--white); }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black-mid); }
::-webkit-scrollbar-thumb { background: var(--orange-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.05rem, 2vw, 1.3rem); }
h5 { font-size: 1.05rem; }
h6 { font-size: 0.9rem; }

p { color: var(--white-70); line-height: 1.8; }

.text-orange { color: var(--orange); }
.text-white { color: var(--white); }
.text-muted { color: var(--white-50); }
.text-center { text-align: center; }
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.bg-soft { background-color: var(--black-mid); }
.bg-card { background-color: var(--black-card); }

/* Section Header */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { margin: 14px 0 18px; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* Badge / Pill */
.section-badge, .badge {
  display: inline-block;
  padding: 6px 18px;
  background: var(--orange-pale);
  border: 1px solid var(--orange-border);
  border-radius: 100px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

/* Orange Divider */
.orange-divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
  margin: 20px auto;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }
.btn-lg { padding: 16px 38px; font-size: 1rem; }

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 0 20px var(--orange-glow);
}
.btn-primary:hover {
  box-shadow: 0 0 40px var(--orange-glow-strong);
  transform: translateY(-2px);
}

.btn-outline, .btn-secondary {
  background: transparent;
  border: 1.5px solid var(--orange);
  color: var(--orange);
}
.btn-outline:hover, .btn-secondary:hover {
  background: var(--orange-pale);
  box-shadow: 0 0 20px var(--orange-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--white-10);
  color: var(--white);
  border: 1px solid var(--white-20);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: var(--white-20);
  transform: translateY(-2px);
}

/* ── Glass Card ──────────────────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.glass-card:hover {
  border-color: var(--orange-border-hover);
  box-shadow: var(--shadow-orange);
  transform: translateY(-6px);
}

/* ── Navbar ──────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--white-10);
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(10, 10, 10, 0.97);
  border-bottom-color: var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.navbar-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}
.navbar-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.navbar-links li {
  display: flex;
  align-items: center;
}
.navbar-links a {
  display: block;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white-70);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.navbar-links a:hover, .navbar-links a.active {
  color: var(--orange);
  background: var(--orange-pale);
}
.navbar-cta { display: flex; align-items: center; gap: 12px; }

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 73px; left: 0; right: 0;
  background: rgba(10, 10, 10, 0.98);
  border-bottom: 1px solid var(--glass-border);
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  color: var(--white-70);
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: var(--transition);
}
.mobile-menu a:hover, .mobile-menu a.active {
  color: var(--orange);
  background: var(--orange-pale);
}
.mobile-menu .btn { margin-top: 12px; justify-content: center; }

/* ── Hero Section ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 107, 0, 0.12) 0%, transparent 60%),
    var(--black);
}
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  padding: 140px 24px 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-pale);
  border: 1px solid var(--orange-border);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease both;
}
.hero-badge .pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulseDot 1.5s ease infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.15s ease both;
}
.hero-title em {
  font-style: italic;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white-70);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeUp 0.7s 0.3s ease both;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.45s ease both;
}
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  animation: fadeUp 0.7s 0.6s ease both;
}
.scroll-indicator span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-50);
}
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-mouse::before {
  content: '';
  width: 3px;
  height: 8px;
  background: var(--orange);
  border-radius: 2px;
  animation: scrollDot 1.8s ease infinite;
}

/* ── Stats ────────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--white-10);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-card {
  background: var(--black-soft);
  padding: 40px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange-pale), transparent);
  opacity: 0;
  transition: var(--transition);
}
.stat-card:hover::before { opacity: 1; }
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--white-50);
  font-weight: 500;
}

/* ── Services Grid ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--black-soft);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-decoration: none;
  display: block;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--orange-border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-orange);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.5rem; margin-bottom: 20px; display: block; }
.service-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.service-desc { font-size: 0.9rem; color: var(--white-70); line-height: 1.6; margin-bottom: 20px; }
.service-link {
  font-size: 0.85rem;
  color: var(--orange);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.service-link::after { content: '→'; transition: transform 0.2s; }
.service-card:hover .service-link::after { transform: translateX(4px); }

/* ── Why Choose Grid ─────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--black-soft);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--orange-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-orange);
}
.why-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.why-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.why-desc { font-size: 0.9rem; color: var(--white-70); line-height: 1.6; }

/* ── Case Studies ────────────────────────────────────────────── */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.case-card {
  background: var(--black-soft);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.case-card:hover {
  border-color: var(--orange-border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-orange);
}
.case-header { padding: 28px 28px 0; }
.case-tag {
  display: inline-block;
  background: var(--orange-pale);
  border: 1px solid var(--orange-border);
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.case-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.case-desc { font-size: 0.875rem; color: var(--white-70); line-height: 1.6; }
.case-metrics {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--white-10);
  margin-top: 24px;
}
.case-metric {
  flex: 1;
  padding: 16px 12px;
  text-align: center;
  border-right: 1px solid var(--white-10);
}
.case-metric:last-child { border-right: none; }
.metric-value {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--orange);
  display: block;
}
.metric-label { font-size: 0.7rem; color: var(--white-50); text-transform: uppercase; letter-spacing: 0.08em; }
.case-cta { text-align: center; }

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials-wrap { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-slide { min-width: 100%; padding: 0 12px; }
.testimonial-card {
  background: var(--black-soft);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 32px;
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--orange);
  opacity: 0.25;
  line-height: 1;
  pointer-events: none;
}
.testimonial-stars { color: var(--orange); font-size: 1.1rem; margin-bottom: 20px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 1.05rem;
  color: var(--white-90);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 28px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--white); font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: var(--white-50); margin-top: 2px; }
.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.testimonial-dots { display: flex; gap: 8px; align-items: center; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.dot.active { background: var(--orange); width: 24px; border-radius: 4px; }
.nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--black-soft);
  border: 1px solid var(--white-20);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.nav-btn:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-pale); }

/* ── Instagram / Behold Widget ───────────────────────────────── */
behold-widget { display: block; width: 100%; }

/* ── Instagram Glass Card ─────────────────────────────────────── */
.instagram-section {
  background: var(--black);
}
.instagram-glass-card {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 20px;
  padding: 28px;
  box-shadow:
    0 0 40px rgba(255, 107, 0, 0.12),
    0 0 80px rgba(255, 107, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  width: 100%;
}
.instagram-glass-card behold-widget {
  display: block;
  width: 100%;
}
@media (max-width: 768px) {
  .instagram-glass-card {
    padding: 16px;
    border-radius: 16px;
  }
}

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 107, 0, 0.05) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255, 107, 0, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-banner h2 em { font-style: italic; color: var(--orange); }
.cta-banner p { font-size: 1.05rem; color: var(--white-70); margin-bottom: 36px; }
.cta-banner .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--black-mid);
  border-top: 3px solid var(--orange);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--white-10);
}
.footer-brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 18px;
  display: block;
}
.footer-tagline { font-size: 0.9rem; color: var(--white-50); line-height: 1.6; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  width: 38px; height: 38px;
  background: var(--black-soft);
  border: 1px solid var(--white-10);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-50);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--orange-pale);
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--glass-border);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--white-50);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--orange); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.875rem;
  color: var(--white-50);
  align-items: flex-start;
}
.footer-contact-item i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: var(--white-50); text-decoration: none; }
.footer-contact-item a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.825rem;
  color: var(--white-50);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--orange); }
.footer-bottom a:hover { opacity: 0.75; }

/* ── Page Hero (inner pages) ──────────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 107, 0, 0.1) 0%, transparent 60%),
    var(--black);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 107, 0, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin: 16px 0 20px; }
.page-hero p { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--white-50);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--orange); }
.breadcrumb span { color: var(--white-30, rgba(255,255,255,0.3)); }

/* ── About Page ──────────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  padding: 32px 24px;
  text-align: center;
  background: var(--black-soft);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.value-card:hover {
  border-color: var(--orange-border-hover);
  box-shadow: var(--shadow-orange);
  transform: translateY(-4px);
}
.value-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--black-soft);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.team-card:hover { border-color: var(--orange-border-hover); transform: translateY(-4px); }
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-serif);
}
.team-card h4 { margin-bottom: 4px; font-size: 1rem; }
.team-card span { font-size: 0.82rem; color: var(--orange); }

/* ── Service Detail ──────────────────────────────────────────── */
.sd-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: start;
}
.sd-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 32px;
  background: var(--black-soft);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}
.sd-stat { text-align: center; padding: 20px; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.benefit-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--black-soft);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  transition: var(--transition);
}
.benefit-item:hover { border-color: var(--orange-border-hover); transform: translateX(4px); }
.benefit-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-pale);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.benefit-item h4 { margin-bottom: 6px; font-size: 0.95rem; }
.benefit-item p { font-size: 0.85rem; }

/* Process Steps */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex;
  gap: 28px;
  position: relative;
  padding-bottom: 40px;
}
.process-step:last-child { padding-bottom: 0; }
.process-step:last-child .step-line { display: none; }
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange-pale);
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-line {
  position: absolute;
  left: 26px;
  top: 52px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--orange-dark), transparent);
  transform: translateX(-50%);
}
.step-content { padding-top: 10px; }
.step-content h3 { margin-bottom: 8px; font-size: 1.1rem; }
.step-content p { font-size: 0.9rem; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--black-soft);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--orange-border-hover); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
  text-align: left;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--white-20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--orange);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--orange-pale); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--white-70);
  font-size: 0.9rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ── Contact ──────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 36px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--black-soft);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  transition: var(--transition);
}
.contact-info-item:hover { border-color: var(--orange-border-hover); }
.ci-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-pale);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--orange);
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-size: 0.85rem;
  color: var(--white-50);
  margin-bottom: 4px;
  font-family: var(--font-sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-info-item p { font-size: 0.95rem; color: var(--white); margin: 0; }
.contact-form { padding: 44px; }
.contact-form h3 { margin-bottom: 8px; }
.contact-form > p { margin-bottom: 32px; font-size: 0.9rem; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255, 255, 255, 0.3); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--orange-pale);
  box-shadow: 0 0 0 3px var(--orange-glow);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group select option { background: var(--black-soft); color: var(--white); }

/* ── Case Studies Filter ─────────────────────────────────────── */
.case-filter { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
.filter-btn {
  padding: 8px 22px;
  border-radius: 100px;
  border: 1px solid var(--white-10);
  color: var(--white-50);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-sans);
}
.filter-btn:hover { border-color: var(--orange); color: var(--orange); }
.filter-btn.active {
  background: var(--orange-pale);
  border-color: var(--orange);
  color: var(--orange);
}

/* ── Blog Cards ──────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--black-soft);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: var(--orange-border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-orange);
}
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--black-soft), var(--black-card));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--orange);
  flex-shrink: 0;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-category-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--orange-pale);
  border: 1px solid var(--orange-border);
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  margin-bottom: 12px;
  font-family: var(--font-sans);
}
.blog-date { font-size: 0.78rem; color: var(--white-50); margin-bottom: 10px; font-family: var(--font-sans); }
.blog-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color var(--transition);
}
.blog-card:hover h3 { color: var(--orange); }
.blog-card p { font-size: 0.875rem; color: var(--white-50); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.blog-read-more {
  font-size: 0.85rem;
  color: var(--orange);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
  margin-top: auto;
}
.blog-card:hover .blog-read-more { gap: 8px; }

/* Blog Archive */
.blog-search {
  position: relative;
  max-width: 520px;
  margin: 0 auto 32px;
}
.blog-search input {
  width: 100%;
  padding: 14px 50px 14px 20px;
  background: var(--black-soft);
  border: 1px solid var(--white-10);
  border-radius: 100px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  transition: var(--transition);
}
.blog-search input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}
.blog-search-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
}
.category-chips { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.category-chip {
  padding: 6px 18px;
  border-radius: 100px;
  border: 1px solid var(--white-10);
  color: var(--white-50);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  font-family: var(--font-sans);
}
.category-chip:hover { border-color: var(--orange); color: var(--orange); }
.category-chip.active { background: var(--orange-pale); border-color: var(--orange); color: var(--orange); }

/* Blog Post */
.blog-post-hero { position: relative; height: 480px; overflow: hidden; border-radius: var(--radius-lg); margin-bottom: 40px; }
.blog-post-hero img { width: 100%; height: 100%; object-fit: cover; }
.blog-post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
}
.blog-post-content { max-width: 760px; margin: 0 auto; }
.blog-post-content h1, .blog-post-content h2, .blog-post-content h3 { margin: 32px 0 16px; }
.blog-post-content p { margin-bottom: 20px; line-height: 1.85; }
.blog-post-content ul, .blog-post-content ol { padding-left: 24px; margin-bottom: 20px; }
.blog-post-content li { margin-bottom: 8px; color: var(--white-70); line-height: 1.7; list-style: disc; }
.blog-post-content blockquote {
  border-left: 4px solid var(--orange);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--orange-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--white-70);
}

/* Pagination */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; }
.page-btn {
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--white-10);
  color: var(--white-50);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  font-family: var(--font-sans);
}
.page-btn:hover { border-color: var(--orange); color: var(--orange); }
.page-btn.active { background: var(--orange); border-color: var(--orange); color: var(--white); }

/* ── Admin Panel ─────────────────────────────────────────────── */
body.admin-body {
  background: var(--black);
  min-height: 100vh;
}
.admin-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 107, 0, 0.1) 0%, transparent 60%),
    var(--black);
}
.admin-login-card {
  width: 100%;
  max-width: 440px;
  padding: 48px 40px;
  background: var(--black-soft);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.admin-login-logo { display: flex; justify-content: center; margin-bottom: 32px; }
.admin-login-logo img { height: 52px; }
.admin-login-card h2 {
  text-align: center;
  margin-bottom: 8px;
  font-size: 1.6rem;
}
.admin-login-card > p {
  text-align: center;
  color: var(--white-50);
  font-size: 0.9rem;
  margin-bottom: 32px;
}
.admin-login-error {
  display: none;
  padding: 12px 16px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: var(--radius);
  color: #f87171;
  font-size: 0.875rem;
  margin-bottom: 20px;
}
.admin-login-error.visible { display: block; }

/* Admin Nav (top bar) */
.admin-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  background: var(--black-mid);
  border-bottom: 3px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 100;
}
.admin-nav-logo { display: flex; align-items: center; gap: 12px; }
.admin-nav-logo img { height: 36px; }
.admin-nav-logo span {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.admin-nav-right { display: flex; align-items: center; gap: 16px; }
.admin-user-badge {
  padding: 6px 14px;
  background: var(--orange-pale);
  border: 1px solid var(--orange-border);
  border-radius: 100px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
}
.admin-logout-btn {
  padding: 6px 16px;
  background: transparent;
  border: 1px solid var(--white-20);
  border-radius: 8px;
  color: var(--white-50);
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
}
.admin-logout-btn:hover { border-color: #ef4444; color: #ef4444; }

/* Admin Sidebar */
.admin-sidebar {
  position: fixed;
  top: 64px;
  left: 0;
  width: 240px;
  height: calc(100vh - 64px);
  background: var(--black-mid);
  border-right: 1px solid var(--white-10);
  padding: 24px 16px;
  overflow-y: auto;
  z-index: 99;
}
.sidebar-section-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-30, rgba(255,255,255,0.3));
  padding: 0 12px;
  margin: 16px 0 8px;
}
.sidebar-section-title:first-child { margin-top: 0; }
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--white-50);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
  margin-bottom: 4px;
  text-decoration: none;
}
.sidebar-link:hover, .sidebar-link.active {
  background: var(--orange-pale);
  color: var(--orange);
}
.sidebar-link i { width: 18px; text-align: center; font-size: 0.9rem; }

/* Admin Main Content */
.admin-main {
  margin-left: 240px;
  padding-top: 64px;
  min-height: 100vh;
}
.admin-content { padding: 32px; }

/* Admin Cards */
.admin-card {
  background: var(--black-soft);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  transition: var(--transition);
}
.admin-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--white-10);
}
.admin-card-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-sans);
}

/* Stats mini cards */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.admin-stat-card {
  background: var(--black-soft);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  padding: 20px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
}
.admin-stat-card:hover { border-color: var(--orange-border); }
.admin-stat-icon {
  width: 42px;
  height: 42px;
  background: var(--orange-pale);
  border: 1px solid var(--orange-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--orange);
  flex-shrink: 0;
}
.admin-stat-info h4 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.admin-stat-info span { font-size: 0.78rem; color: var(--white-50); }

/* Table */
.admin-table-wrap { overflow-x: auto; }
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.admin-table th {
  background: var(--orange-pale);
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 12px 16px;
  text-align: left;
  white-space: nowrap;
  font-family: var(--font-sans);
}
.admin-table td {
  padding: 12px 16px;
  color: var(--white-70);
  border-bottom: 1px solid var(--white-5);
  vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--white-5); }

/* Status badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-sans);
}
.status-new {
  background: var(--orange-pale);
  border: 1px solid var(--orange-border);
  color: var(--orange);
}
.status-contacted {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}
.status-closed {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--white-20);
  color: var(--white-50);
}
.status-published {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}
.status-scheduled {
  background: rgba(250, 204, 21, 0.1);
  border: 1px solid rgba(250, 204, 21, 0.3);
  color: #facc15;
}
.status-draft {
  background: var(--white-5);
  border: 1px solid var(--white-10);
  color: var(--white-50);
}

/* Admin Action Buttons */
.admin-action-btn {
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  font-family: var(--font-sans);
}
.admin-action-btn.edit { background: var(--orange-pale); border-color: var(--orange-border); color: var(--orange); }
.admin-action-btn.edit:hover { background: var(--orange); color: var(--white); }
.admin-action-btn.delete { background: rgba(239, 68, 68, 0.1); border-color: rgba(239, 68, 68, 0.3); color: #ef4444; }
.admin-action-btn.delete:hover { background: #ef4444; color: var(--white); }
.admin-action-btn.view { background: var(--white-5); border-color: var(--white-10); color: var(--white-70); }
.admin-action-btn.view:hover { background: var(--white-10); color: var(--white); }

/* Modals */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--black-soft);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-header h3 {
  font-size: 1.2rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--white);
}
.modal-close {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--white-5);
  border: 1px solid var(--white-10);
  color: var(--white-70);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
}
.modal-close:hover { background: var(--white-10); color: var(--white); }
.modal-body { padding: 28px; }

/* Rich text editor area */
.blog-editor-area {
  min-height: 300px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  padding: 16px;
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.75;
  outline: none;
  font-family: var(--font-sans);
  resize: vertical;
  width: 100%;
}
.blog-editor-area:focus { border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-glow); }
.editor-toolbar {
  display: flex;
  gap: 4px;
  padding: 8px;
  background: var(--black-mid);
  border: 1px solid var(--white-10);
  border-bottom: none;
  border-radius: var(--radius) var(--radius) 0 0;
  flex-wrap: wrap;
}
.editor-toolbar-btn {
  padding: 6px 10px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--white-50);
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
  font-weight: 600;
}
.editor-toolbar-btn:hover { background: var(--white-10); color: var(--white); }

/* 404 */
.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.not-found-num {
  font-family: var(--font-serif);
  font-size: clamp(6rem, 15vw, 12rem);
  color: var(--orange);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -20px;
}

/* Scroll-to-top button */
#scrollTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 20px var(--orange-glow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 900;
}
#scrollTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#scrollTop:hover { box-shadow: 0 0 30px var(--orange-glow-strong); transform: translateY(-2px); }

/* ── 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% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px var(--orange-glow); }
  50% { box-shadow: 0 0 40px var(--orange-glow-strong); }
}
@keyframes scrollDot {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.3; transform: translateY(8px); }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Utility Classes ─────────────────────────────────────────── */
.mb-0 { margin-bottom: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.gap-16 { gap: 16px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.w-full { width: 100%; }

/* ── Responsive: 1024px ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap img { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .sd-intro { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; }
}

/* ── Responsive: 768px ────────────────────────────────────────── */
@media (max-width: 768px) {
  .navbar-links, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .sd-stats { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .testimonial-card { padding: 28px; }
  .cta-banner { padding: 40px 24px; }
  .contact-form { padding: 28px 20px; }
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 64px 0; }
}

/* ── Responsive: 480px ────────────────────────────────────────── */
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .admin-stats-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .hero-content { padding: 120px 16px 60px; }
  #scrollTop { bottom: 20px; right: 20px; }
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}


/* ===== CUSTOM BLOG SECTION ===== */

.custom-blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  margin-top:60px;
}

.custom-blog-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:24px;
  overflow:hidden;
  transition:0.4s ease;
  backdrop-filter:blur(14px);
  height:100%;
  display:flex;
  flex-direction:column;
}

.custom-blog-card:hover{
  transform:translateY(-10px);
  border-color:rgba(255,107,0,0.4);
  box-shadow:0 20px 40px rgba(0,0,0,0.4);
}

.custom-blog-image{
  height:220px;
  background:linear-gradient(135deg,#1a0500,#ff6b00);
  display:flex;
  align-items:center;
  justify-content:center;
}

.custom-blog-image i{
  font-size:4rem;
  color:white;
  opacity:0.9;
}

.custom-blog-content{
  padding:28px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.blog-category{
  display:inline-block;
  padding:6px 14px;
  background:rgba(255,107,0,0.12);
  color:#ff6b00;
  border-radius:100px;
  font-size:0.8rem;
  font-weight:600;
  margin-bottom:18px;
}

.custom-blog-content h3{
  font-size:1.35rem;
  color:white;
  margin-bottom:16px;
  line-height:1.4;
}

.custom-blog-content p{
  color:rgba(255,255,255,0.7);
  line-height:1.7;
  margin-bottom:24px;
  flex:1;
}

.blog-btn{
  color:#ff6b00;
  font-weight:600;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:0.3s ease;
}

.blog-btn:hover{
  gap:14px;
}

/* ===== RESPONSIVE ===== */

@media(max-width:992px){

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

}

@media(max-width:768px){

  .custom-blog-grid{
    grid-template-columns:1fr;
    gap:24px;
  }

  .custom-blog-image{
    height:200px;
  }

  .custom-blog-content{
    padding:22px;
  }

  .custom-blog-content h3{
    font-size:1.2rem;
  }

}

