/* ============================
   CHAMAKA INFOTECH - MAIN CSS
   Light default, Dark toggle
   ============================ */

:root {
  /* LIGHT MODE */
  --bg: #FAFAF8;
  --bg-2: #F3F1EC;
  --bg-3: #ECEAE3;
  --surface: #FFFFFF;
  --surface-2: #F7F5F0;
  --text: #18181B;
  --text-muted: #71717A;
  --text-light: #A1A1AA;
  --border: #E4E4E7;
  --border-2: #D4D4D8;
  --gold: #B8860B;
  --gold-bg: #FEF3C7;
  --gold-mid: #D97706;
  --gold-dark: #92400E;
  --accent: #1E40AF;
  --accent-bg: #EFF6FF;
  --green: #15803D;
  --green-bg: #F0FDF4;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 16px rgba(0,0,0,0.07), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 72px;
}

[data-theme="dark"] {
  --bg: #0F0F12;
  --bg-2: #18181D;
  --bg-3: #1F1F26;
  --surface: #1A1A22;
  --surface-2: #22222C;
  --text: #F4F4F5;
  --text-muted: #A1A1AA;
  --text-light: #71717A;
  --border: #27272A;
  --border-2: #3F3F46;
  --gold: #F59E0B;
  --gold-bg: rgba(245,158,11,0.12);
  --gold-mid: #FBBF24;
  --gold-dark: #FDE68A;
  --accent: #60A5FA;
  --accent-bg: rgba(96,165,250,0.1);
  --green: #4ADE80;
  --green-bg: rgba(74,222,128,0.08);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow: 0 4px 16px rgba(0,0,0,0.3);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
}

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

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; color: var(--text); }
.display-1 { font-size: clamp(2.4rem, 6vw, 4.5rem); letter-spacing: -0.02em; }
.display-2 { font-size: clamp(1.8rem, 4vw, 3.2rem); letter-spacing: -0.02em; }
.display-3 { font-size: clamp(1.4rem, 3vw, 2.2rem); letter-spacing: -0.01em; }
p { color: var(--text-muted); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-mid);
  font-family: var(--font-body);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--gold-mid);
  border-radius: 2px;
}
.gold-text { color: var(--gold-mid); }
.italic-serif { font-style: italic; }

/* ===== SECTION ===== */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-label { justify-content: center; }
.section-subtitle { font-size: 17px; color: var(--text-muted); line-height: 1.75; margin-top: 12px; max-width: 600px; }
.section-header.center .section-subtitle { margin: 12px auto 0; }

/* ===== NAV ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-height);
  background: rgba(250,250,248,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
[data-theme="dark"] .site-header {
  background: rgba(15,15,18,0.9);
}
.site-header.scrolled {
  box-shadow: var(--shadow);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #1E40AF, #2563EB);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: white;
  font-family: var(--font-body);
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: var(--font-display); font-size: 18px; font-weight: 400; color: var(--text); }
.logo-tag { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-mid); font-family: var(--font-body); font-weight: 600; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  background: var(--bg-2);
}
.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* THEME TOGGLE */
.theme-toggle {
  position: relative;
  width: 52px; height: 28px;
  background: var(--bg-3);
  border: 1.5px solid var(--border-2);
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 3px;
  transition: var(--transition);
  overflow: hidden;
}
.theme-toggle .toggle-sun,
.theme-toggle .toggle-moon {
  position: absolute;
  font-size: 13px;
  transition: var(--transition);
  line-height: 1;
}
.theme-toggle .toggle-sun { left: 6px; }
.theme-toggle .toggle-moon { right: 5px; opacity: 0.4; }
.theme-toggle .toggle-track {
  width: 20px; height: 20px;
  background: var(--surface);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  flex-shrink: 0;
  margin-left: auto;
}
[data-theme="dark"] .theme-toggle .toggle-track { transform: translateX(-24px); }
[data-theme="dark"] .theme-toggle .toggle-sun { opacity: 0.4; }
[data-theme="dark"] .theme-toggle .toggle-moon { opacity: 1; }
.theme-toggle:hover { border-color: var(--gold-mid); }

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-mid);
  color: white !important;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  border: none;
  white-space: nowrap;
  transition: var(--transition);
}
.btn-nav-cta:hover {
  background: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(217,119,6,0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  display: block;
  transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold-mid);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-body);
  border: none;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217,119,6,0.3);
  color: white;
}
.btn-primary.full-width { width: 100%; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-body);
  border: 1.5px solid var(--border-2);
  text-decoration: none;
  transition: var(--transition);
}
.btn-secondary:hover {
  border-color: var(--gold-mid);
  color: var(--gold-mid);
  transform: translateY(-2px);
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: white !important;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-body);
  border: none;
  text-decoration: none;
  transition: var(--transition);
}
.btn-wa:hover {
  background: #22BE5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

/* ===== CARDS ===== */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.card:hover {
  border-color: var(--border-2);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

/* ===== BADGE ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-body);
}
.badge-gold { background: var(--gold-bg); color: var(--gold-mid); }
.badge-blue { background: var(--accent-bg); color: var(--accent); }
.badge-green { background: var(--green-bg); color: var(--green); }

/* ===== HERO ===== */
.hero {
  padding-top: calc(var(--nav-height) + 72px);
  padding-bottom: 96px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(217,119,6,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(30,64,175,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content .hero-badge {
  margin-bottom: 20px;
}
.hero-content h1 {
  margin-bottom: 20px;
  color: var(--text);
}
.hero-content h1 em { font-style: italic; color: var(--gold-mid); }
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.trust-item strong { color: var(--text); font-weight: 600; }
.trust-stars { color: #F59E0B; letter-spacing: 1px; }

/* HERO STATS */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.hero-stat-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: rgba(217,119,6,0.3);
}
.hero-stat-card .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-mid);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-card .lbl { font-size: 12px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.5px; }

/* ===== PRICING CTA BANNER ===== */
.pricing-cta-banner {
  background: linear-gradient(135deg, var(--gold-mid) 0%, #B45309 100%);
  padding: 20px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 50%);
  background-size: 20px 20px;
}
.pricing-cta-banner .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
}
.pricing-cta-banner p { color: rgba(255,255,255,0.9); font-size: 15px; font-weight: 500; margin: 0; }
.pricing-cta-banner strong { color: white; font-size: 18px; }
.pricing-cta-banner .btn-banner {
  background: white;
  color: var(--gold-mid);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-body);
  white-space: nowrap;
  transition: var(--transition);
}
.pricing-cta-banner .btn-banner:hover { transform: scale(1.04); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }

/* ===== LOGO CAROUSEL ===== */
.logo-carousel-section {
  padding: 56px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.logo-carousel-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 28px;
  font-family: var(--font-body);
}
.carousel-track-wrap { overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 0;
  animation: scrollCarousel 30s linear infinite;
  width: max-content;
}
.carousel-track:hover { animation-play-state: paused; }
@keyframes scrollCarousel {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.tech-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 36px;
  opacity: 0.55;
  transition: var(--transition);
  cursor: default;
  border-right: 1px solid var(--border);
}
.tech-logo:hover { opacity: 1; }
.tech-logo img {
  width: 44px; height: 44px;
  object-fit: contain;
  filter: grayscale(20%);
}
.tech-logo span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  font-family: var(--font-body);
  white-space: nowrap;
}

/* ===== CLIENT LOGO CAROUSEL ===== */
.client-carousel-track {
  animation: scrollCarousel 22s linear infinite;
}
.client-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 44px;
  opacity: 0.45;
  transition: var(--transition);
  border-right: 1px solid var(--border);
  white-space: nowrap;
}
.client-logo:hover { opacity: 0.9; }
.client-dot { width: 8px; height: 8px; background: var(--gold-mid); border-radius: 50%; flex-shrink: 0; }
.client-logo span { font-size: 14px; font-weight: 600; color: var(--text); letter-spacing: 0.5px; }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-mid), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(217,119,6,0.25);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 48px; height: 48px;
  background: var(--gold-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  transition: var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-3deg); }
.service-card h3 { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 8px; font-family: var(--font-body); }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===== WHY GRID ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--border-2); }
.why-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--bg-3);
  line-height: 1;
  margin-bottom: 14px;
}
[data-theme="dark"] .why-num { color: var(--bg-3); }
.why-card h3 { font-size: 17px; font-weight: 600; color: var(--text); font-family: var(--font-body); margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ===== INDUSTRIES ===== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.industry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  transition: var(--transition);
}
.industry-card:hover {
  border-color: rgba(217,119,6,0.3);
  background: var(--gold-bg);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.industry-emoji { font-size: 2rem; display: block; margin-bottom: 10px; }
.industry-card h4 { font-size: 13px; font-weight: 600; color: var(--text); font-family: var(--font-body); }

/* ===== STATS ===== */
.stats-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold-mid);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 14px; color: var(--text-muted); font-weight: 500; }

/* ===== PORTFOLIO ===== */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.portfolio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.portfolio-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: rgba(217,119,6,0.2); }
.portfolio-img {
  height: 190px;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.portfolio-body { padding: 22px; }
.portfolio-tag { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-mid); font-weight: 600; display: block; margin-bottom: 8px; font-family: var(--font-body); }
.portfolio-body h3 { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 8px; font-family: var(--font-body); }
.portfolio-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.portfolio-link { font-size: 13px; color: var(--gold-mid); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; transition: var(--transition); }
.portfolio-link:hover { gap: 8px; }

/* ===== REVIEWS ===== */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); border-color: var(--border-2); }
.review-stars { color: #F59E0B; font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-mid), #F59E0B);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: 14px; color: var(--text); font-family: var(--font-body); }
.reviewer-biz { font-size: 12px; color: var(--text-light); }

/* ===== FAQ ===== */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  transition: var(--transition);
}
.faq-q:hover { color: var(--gold-mid); }
.faq-arrow { font-size: 18px; color: var(--gold-mid); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-q.open .faq-arrow { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
.faq-a.open { max-height: 200px; padding-bottom: 20px; }
.faq-a p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--surface) 50%, var(--bg-2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
  text-align: center;
}
.final-cta h2 { margin-bottom: 14px; }
.final-cta p { font-size: 17px; margin-bottom: 36px; color: var(--text-muted); }
.final-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== WA FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 18px;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: waPulse 3s ease-in-out infinite;
  text-decoration: none;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
  color: white;
}
.wa-label { font-size: 14px; font-weight: 600; white-space: nowrap; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 8px 32px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 48px rgba(37,211,102,0.65); }
}

/* ===== EXIT POPUP ===== */
.exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.exit-popup.show { display: flex; }
.popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
}
.popup-box {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.popup-close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 32px; height: 32px;
  font-size: 18px;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  line-height: 1;
}
.popup-close:hover { color: var(--text); background: var(--bg-3); }
.popup-icon { font-size: 3rem; margin-bottom: 12px; }
.popup-box h3 { font-family: var(--font-display); font-size: 1.7rem; color: var(--text); margin-bottom: 10px; }
.popup-box p { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; }
.popup-form input {
  width: 100%;
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 12px;
  outline: none;
  transition: var(--transition);
}
.popup-form input:focus { border-color: var(--gold-mid); background: var(--surface); }
.popup-form input::placeholder { color: var(--text-light); }
.popup-skip {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 13px;
  margin-top: 12px;
  text-decoration: underline;
  transition: var(--transition);
}
.popup-skip:hover { color: var(--text-muted); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 56px; margin-bottom: 56px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-name { font-family: var(--font-display); font-size: 18px; color: var(--text); }
.footer-logo-tag { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-mid); font-weight: 600; font-family: var(--font-body); }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.footer-brand p strong { color: var(--text); }
.social-links { display: flex; gap: 10px; }
.social-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.social-icon:hover { transform: translateY(-2px); color: white; border-color: transparent; }
.social-ig:hover { background: linear-gradient(135deg, #E1306C, #833AB4); }
.social-fb:hover { background: #1877F2; }
.social-yt:hover { background: #FF0000; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text); font-family: var(--font-body); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14px; color: var(--text-muted); }
.footer-col ul a:hover { color: var(--gold-mid); }
.footer-hours { margin-top: 16px; font-size: 13px; color: var(--text-muted); line-height: 1.9; }
.footer-hours strong { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-light);
}
.footer-tagline { font-weight: 600; color: var(--gold-mid); }

/* ===== BLOG ===== */
.blog-cats { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; justify-content: center; }
.blog-cat-btn {
  padding: 8px 18px;
  border: 1.5px solid var(--border-2);
  border-radius: 100px;
  background: var(--surface);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-body);
  transition: var(--transition);
}
.blog-cat-btn:hover, .blog-cat-btn.active {
  background: var(--gold-mid);
  border-color: var(--gold-mid);
  color: white;
}
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: rgba(217,119,6,0.2); }
.blog-card-img { height: 180px; background: var(--bg-3); display: flex; align-items: center; justify-content: center; font-size: 2.8rem; }
.blog-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-cat-tag { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-mid); font-weight: 600; display: block; margin-bottom: 10px; font-family: var(--font-body); }
.blog-body h3 { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 10px; font-family: var(--font-body); line-height: 1.4; }
.blog-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.blog-meta { font-size: 12px; color: var(--text-light); display: flex; gap: 10px; margin-bottom: 14px; }
.blog-read-link { font-size: 13px; color: var(--gold-mid); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; transition: var(--transition); }
.blog-read-link:hover { gap: 8px; }

/* SINGLE BLOG POST */
.blog-post-header {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 48px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.blog-post-hero-emoji { font-size: 4rem; margin-bottom: 20px; display: block; }
.blog-back { font-size: 14px; color: var(--text-muted); display: inline-flex; align-items: center; gap: 6px; margin-bottom: 24px; transition: var(--transition); }
.blog-back:hover { color: var(--gold-mid); }
.blog-post-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin: 16px 0; font-size: 13px; color: var(--text-muted); }
.blog-post-body {
  padding: 60px 0 80px;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.85;
}
.blog-post-body h2 {
  font-size: 1.7rem;
  color: var(--text);
  margin: 40px 0 16px;
  font-family: var(--font-display);
}
.blog-post-body h3 {
  font-size: 1.3rem;
  color: var(--text);
  margin: 32px 0 12px;
  font-family: var(--font-body);
  font-weight: 600;
}
.blog-post-body p { margin-bottom: 20px; }
.blog-post-body ul, .blog-post-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.blog-post-body ul { list-style: disc; }
.blog-post-body ol { list-style: decimal; }
.blog-post-body li { margin-bottom: 8px; }
.blog-post-body strong { color: var(--text); font-weight: 600; }
.blog-callout {
  background: var(--gold-bg);
  border-left: 3px solid var(--gold-mid);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.blog-callout p { color: var(--gold-dark) !important; margin: 0; font-weight: 500; }
[data-theme="dark"] .blog-callout p { color: var(--gold-mid) !important; }
.blog-stat-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.blog-stat-box .bsb-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.blog-stat-box .bsb-num { font-family: var(--font-display); font-size: 2rem; color: var(--gold-mid); }
.blog-stat-box .bsb-label { font-size: 13px; color: var(--text-muted); margin: 0; }

/* ===== ABOUT ===== */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.value-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; transition: var(--transition); }
.value-card:hover { border-color: rgba(217,119,6,0.3); box-shadow: var(--shadow); }
.value-card h4 { font-size: 14px; font-weight: 700; color: var(--gold-mid); font-family: var(--font-body); margin-bottom: 6px; }
.value-card p { font-size: 13px; line-height: 1.6; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; transition: var(--transition); }
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: rgba(217,119,6,0.2); }
.team-avatar { width: 68px; height: 68px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-mid), #F59E0B); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 20px; color: white; margin: 0 auto 14px; }
.team-card h4 { font-size: 15px; font-weight: 600; color: var(--text); font-family: var(--font-body); margin-bottom: 4px; }
.team-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ===== SERVICES PAGE ===== */
.service-full-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; margin-bottom: 20px; transition: var(--transition); position: relative; overflow: hidden; }
.service-full-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold-mid), transparent); opacity: 0; transition: var(--transition); }
.service-full-card:hover { border-color: rgba(217,119,6,0.2); box-shadow: var(--shadow); }
.service-full-card:hover::before { opacity: 1; }
.service-full-header { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 24px; }
.service-full-icon { width: 52px; height: 52px; background: var(--gold-bg); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.service-full-card h3 { font-size: 20px; font-weight: 600; color: var(--text); font-family: var(--font-body); margin-bottom: 6px; }
.service-full-card .sfc-desc { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.service-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 20px; }
.sf-item { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.sf-item::before { content: '✓'; color: var(--gold-mid); font-weight: 700; flex-shrink: 0; }

/* ===== JOBS ===== */
.job-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; margin-bottom: 16px; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; transition: var(--transition); }
.job-card:hover { border-color: rgba(217,119,6,0.2); box-shadow: var(--shadow); }
.job-title { font-size: 19px; font-weight: 600; color: var(--text); font-family: var(--font-body); margin-bottom: 10px; }
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.job-tag { padding: 5px 12px; background: var(--bg-2); border: 1px solid var(--border); border-radius: 100px; font-size: 12px; color: var(--text-muted); font-family: var(--font-body); }
.job-reqs { list-style: none; }
.job-reqs li { font-size: 14px; color: var(--text-muted); padding: 4px 0; display: flex; align-items: baseline; gap: 8px; }
.job-reqs li::before { content: '→'; color: var(--gold-mid); flex-shrink: 0; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; }
.contact-form label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; font-family: var(--font-body); }
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text);
  margin-bottom: 16px;
  outline: none;
  transition: var(--transition);
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold-mid); background: var(--surface); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-light); }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.contact-icon { width: 42px; height: 42px; background: var(--gold-bg); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-info-item h4 { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); font-family: var(--font-body); margin-bottom: 3px; }
.contact-info-item p { font-size: 15px; color: var(--text); font-weight: 500; margin: 0; }
.contact-info-item a { color: var(--gold-mid); }
.contact-info-item a:hover { text-decoration: underline; }

/* ===== PAGE HEADER ===== */
.page-header {
  padding-top: calc(var(--nav-height) + 64px);
  padding-bottom: 56px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== DIVIDER ===== */
.section-divider { height: 1px; background: var(--border); margin: 0; }

/* ===== FORM SUCCESS ===== */
.form-success {
  display: none;
  background: var(--green-bg);
  border: 1px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--green);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-top: 8px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin-bottom: 16px; flex-wrap: wrap; }
.breadcrumb a { color: var(--gold-mid); }
.breadcrumb span { color: var(--text-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(4, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .service-features { grid-template-columns: repeat(2, 1fr); }
  .job-card { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .nav-links { display: none; flex-direction: column; gap: 4px; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    box-shadow: var(--shadow);
    z-index: 100;
  }
  .hamburger { display: flex; }
  .btn-nav-cta { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .service-features { grid-template-columns: 1fr; }
  .service-full-header { flex-direction: column; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-secondary, .btn-wa { width: 100%; }
  .blog-stat-box { grid-template-columns: 1fr; }
  .blog-post-meta { flex-wrap: wrap; gap: 8px; }
}

/* ===== CONTACT FORM - REDESIGNED ===== */

.contact-form-wrapper {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 6px;
}

.contact-form-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  position: relative;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.contact-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.2px;
}

.contact-form label .required {
  color: #EF4444;
  font-size: 14px;
}

.contact-form label .field-icon {
  font-size: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text);
  outline: none;
  transition: all 0.2s ease;
  line-height: 1.5;
  -webkit-appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-light);
  font-size: 14px;
}

/* Focus state — gold border glow */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold-mid);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.12);
}

/* Valid filled state */
.contact-form input:not(:placeholder-shown):not(:focus),
.contact-form textarea:not(:placeholder-shown):not(:focus) {
  border-color: var(--border-2);
  background: var(--surface);
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.7;
}

/* Input with leading icon */
.input-with-icon {
  position: relative;
}

.input-with-icon .input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  pointer-events: none;
  z-index: 1;
}

.input-with-icon input {
  padding-left: 42px;
}

/* Character count for textarea */
.char-count {
  font-size: 11px;
  color: var(--text-light);
  text-align: right;
  margin-top: 5px;
}

/* Form divider */
.form-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0 24px;
}

/* Submit buttons row */
.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

/* Primary submit button */
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold-mid);
  color: white;
  padding: 15px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.2px;
  position: relative;
  overflow: hidden;
}

.btn-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.btn-submit:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.35);
}

.btn-submit:hover::after { opacity: 1; }

.btn-submit:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Loading state */
.btn-submit.loading {
  pointer-events: none;
  opacity: 0.8;
}

.btn-submit.loading .btn-text { display: none; }
.btn-submit .btn-loading { display: none; }
.btn-submit.loading .btn-loading { display: flex; align-items: center; gap: 8px; }

/* Trust note under form */
.form-trust-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
}

.form-trust-note span { color: var(--text-light); }

/* Success message */
.form-success {
  display: none;
  background: #F0FDF4;
  border: 1.5px solid #86EFAC;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-top: 16px;
  text-align: center;
}

[data-theme="dark"] .form-success {
  background: rgba(74, 222, 128, 0.08);
  border-color: rgba(74, 222, 128, 0.3);
}

.form-success p {
  color: #15803D;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

[data-theme="dark"] .form-success p { color: #4ADE80; }

/* ===== CONTACT INFO SIDE ===== */

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info-header {
  margin-bottom: 32px;
}

.contact-info-header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 6px;
}

.contact-info-header p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-item:hover { background: var(--bg-2); }

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.contact-info-item:hover .contact-icon { transform: scale(1.08); }

.contact-info-item h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  font-family: var(--font-body);
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

.contact-info-item a {
  color: var(--gold-mid);
  font-weight: 600;
  transition: color 0.2s;
}

.contact-info-item a:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* Social row inside contact card */
.contact-social-row {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.contact-social-row p {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}

.contact-social-icons {
  display: flex;
  gap: 10px;
}

.contact-social-icons a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.contact-social-icons a:hover { transform: translateY(-2px); color: white; border-color: transparent; }
.contact-social-icons .s-ig:hover { background: linear-gradient(135deg, #E1306C, #833AB4); }
.contact-social-icons .s-fb:hover { background: #1877F2; }
.contact-social-icons .s-yt:hover { background: #FF0000; }

/* Map box */
.contact-map-box {
  margin-top: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: border-color 0.2s;
}

.contact-map-box:hover { border-color: rgba(217,119,6,0.3); }

.contact-map-box .map-pin { font-size: 2.2rem; display: block; margin-bottom: 10px; }

.contact-map-box p {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 12px;
}

.contact-map-box a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gold-mid);
  font-weight: 600;
  transition: gap 0.2s;
}

.contact-map-box a:hover { gap: 10px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .contact-form-wrapper { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-actions { grid-template-columns: 1fr; }
}