/* ============================================================
   CSS VARIABLES & RESET
============================================================ */
:root {
  --gold:        #C8972A;
  --gold-light:  #E8B84B;
  --gold-dark:   #9A7020;
  --navy:        #0B1628;
  --navy-mid:    #122040;
  --navy-soft:   #1A2E52;
  --white:       #FFFFFF;
  --off-white:   #F8F5EE;
  --text-main:   #1A1A2E;
  --text-muted:  #5A6480;
  --border:      rgba(200,151,42,0.18);
  --card-bg:     rgba(255,255,255,0.97);
  --shadow-card: 0 8px 40px rgba(11,22,40,0.10);
  --shadow-hover:0 16px 56px rgba(11,22,40,0.18);
  --radius:      18px;
  --radius-sm:   10px;
  --transition:  0.32s cubic-bezier(0.4,0,0.2,1);
  --font-main:   'Tajawal', sans-serif;
  --font-display:'Playfair Display', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--off-white);
  color: var(--text-main);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ============================================================
   LANGUAGE SWITCHING
============================================================ */
[data-lang="en"] { display: none; }
html[lang="en"] [data-lang="en"] { display: revert; }
html[lang="en"] [data-lang="ar"] { display: none; }

/* ============================================================
   HEADER / NAV
============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--navy);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text .brand {
  font-size: 17px;
  font-weight: 900;
  color: var(--gold-light);
  letter-spacing: 0.01em;
}

.logo-text .tagline {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
}

.lang-btn {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-main);
  color: rgba(255,255,255,0.5);
  border: none;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.05em;
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-radius: 30px;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 13px;
  padding: 9px 20px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,151,42,0.4);
}

/* ============================================================
   HERO
============================================================ */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 50%, #0D1F3C 100%);
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(200,151,42,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(200,151,42,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(200,151,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,151,42,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,151,42,0.12);
  border: 1px solid rgba(200,151,42,0.35);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 28px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero h1 .accent {
  color: var(--gold-light);
  display: inline-block;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255,255,255,0.70);
  max-width: 580px;
  margin: 0 auto 36px;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(200,151,42,0.30);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(200,151,42,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.30);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-3px);
}

/* Hero stats strip */
.hero-stats {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  padding: 16px 32px;
  border-right: 1px solid rgba(255,255,255,0.10);
  text-align: center;
}

.stat-item:last-child { border-right: none; }

html[lang="en"] .stat-item { border-right: none; border-left: 1px solid rgba(255,255,255,0.10); }
html[lang="en"] .stat-item:last-child { border-left: none; }

.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   SECTION GENERAL
============================================================ */
section {
  padding: 80px 24px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
  position: relative;
  padding: 0 20px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.section-eyebrow::before { right: 100%; margin-right: -14px; }
.section-eyebrow::after  { left: 100%;  margin-left:  -14px; }

html[lang="en"] .section-eyebrow::before { right: auto; left: 100%; margin-left: -14px; margin-right: 0; }
html[lang="en"] .section-eyebrow::after  { left: auto;  right: 100%; margin-right: -14px; margin-left: 0; }

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.3;
}

.section-title .accent { color: var(--gold); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 12px auto 0;
}

/* ============================================================
   SERVICES GRID
============================================================ */
#services { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px 28px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

html[lang="en"] .service-card::before { transform-origin: left; }
html[lang="ar"] .service-card::before { transform-origin: right; }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(200,151,42,0.35);
}

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

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.card-icon.gold    { background: linear-gradient(135deg,#FFF3D0,#FFE099); color: var(--gold-dark); }
.card-icon.navy    { background: linear-gradient(135deg,#D0DEFF,#B0C4FF); color: var(--navy); }
.card-icon.green   { background: linear-gradient(135deg,#D0F5E3,#A8EDCC); color: #0E6E40; }
.card-icon.blue    { background: linear-gradient(135deg,#D0EEFF,#A8D8FF); color: #0B5EA8; }
.card-icon.red     { background: linear-gradient(135deg,#FFD8D0,#FFC0B0); color: #B82020; }
.card-icon.teal    { background: linear-gradient(135deg,#D0F5F5,#A8E8E8); color: #0B7878; }
.card-icon.purple  { background: linear-gradient(135deg,#EAD8FF,#D4B8FF); color: #5520B8; }
.card-icon.orange  { background: linear-gradient(135deg,#FFE8C0,#FFD098); color: #9A5500; }

.card-content {}

.card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.card-cta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.card-cta i { transition: transform 0.2s; }
.service-card:hover .card-cta i { transform: translateX(-5px); }
html[lang="en"] .service-card:hover .card-cta i { transform: translateX(5px); }

/* ============================================================
   SERVICE DETAIL OVERLAY
============================================================ */
.detail-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(11,22,40,0.72);
  backdrop-filter: blur(4px);
  overflow-y: auto;
  animation: fadeIn 0.25s ease;
}

.detail-overlay.open { display: flex; align-items: flex-start; justify-content: center; padding: 40px 16px; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.detail-panel {
  background: var(--white);
  border-radius: 24px;
  max-width: 780px;
  width: 100%;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
  animation: slideUp 0.32s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}

@keyframes slideUp { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.detail-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 40px 40px 36px;
  position: relative;
}

.detail-close {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

html[lang="en"] .detail-close { left: auto; right: 20px; }

.detail-close:hover { background: rgba(255,255,255,0.1); color: white; }

.detail-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 20px;
}

.detail-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}

.detail-subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
}

.detail-body {
  padding: 36px 40px;
}

.detail-section-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--off-white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-section-title i { color: var(--gold); }

.detail-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.detail-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-main);
}

.detail-features li i {
  color: var(--gold);
  font-size: 13px;
  margin-top: 3px;
  flex-shrink: 0;
}

.detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-whatsapp:hover { background: #1DA851; transform: translateY(-2px); }

.btn-call {
  background: var(--navy);
  color: white;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-call:hover { background: var(--navy-soft); transform: translateY(-2px); }

/* ============================================================
   WHY US SECTION
============================================================ */
#why-us {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
}

#why-us .section-title { color: var(--white); }
#why-us .section-subtitle { color: rgba(255,255,255,0.55); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  background: rgba(200,151,42,0.08);
  border-color: rgba(200,151,42,0.25);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(200,151,42,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold-light);
  margin: 0 auto 16px;
}

.feature-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ============================================================
   CTA BAND
============================================================ */
#contact-cta {
  background: var(--off-white);
  padding: 70px 24px;
}

.cta-band {
  max-width: 860px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  border-radius: 28px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(11,22,40,0.18);
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(200,151,42,0.22) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
}

.cta-band p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-bottom: 36px;
  position: relative;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--navy);
  padding: 48px 24px 28px;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  margin-bottom: 36px;
}

.footer-brand .brand-name {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.footer-brand p { font-size: 0.9rem; max-width: 340px; line-height: 1.6; }

.footer-contact { text-align: right; }
html[lang="en"] .footer-contact { text-align: left; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  justify-content: flex-end;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}

html[lang="en"] .footer-contact-item { justify-content: flex-start; }

.footer-contact-item:hover { color: var(--gold-light); }
.footer-contact-item i { color: var(--gold); font-size: 14px; }

.footer-divider {
  max-width: 1200px;
  margin: 0 auto;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
}

.footer-bottom .gold { color: var(--gold-light); }

/* ============================================================
   FLOATING BUTTONS
============================================================ */
.floating-actions {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

html[lang="en"] .floating-actions { left: auto; right: 28px; align-items: flex-end; }

.fab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 22px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  position: relative;
}

.fab:hover { transform: scale(1.12); }

.fab-label {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--navy);
  color: white;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-main);
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

html[lang="en"] .fab-label { right: auto; left: calc(100% + 12px); }

.fab:hover .fab-label { opacity: 1; }

.fab-whatsapp { background: #25D366; color: white; }
.fab-whatsapp:hover { background: #1DA851; box-shadow: 0 8px 28px rgba(37,211,102,0.45); }

.fab-call { background: var(--gold); color: var(--navy); }
.fab-call:hover { background: var(--gold-light); box-shadow: 0 8px 28px rgba(200,151,42,0.50); }

/* Pulse ring */
.fab-whatsapp::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ============================================================
   ADMIN DASHBOARD
============================================================ */
#admin-panel {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a0f1e;
  overflow-y: auto;
  font-family: var(--font-main);
}

.admin-bar {
  background: linear-gradient(90deg, #0B1628, #122040);
  border-bottom: 1px solid rgba(200,151,42,0.25);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
}

.admin-bar h1 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-bar h1 i { font-size: 1rem; }

.admin-close-btn {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  padding: 7px 18px;
  border-radius: 20px;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.admin-close-btn:hover { background: rgba(255,255,255,0.13); color: white; }

.admin-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}

.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,151,42,0.15);
  border-radius: 16px;
  padding: 24px 22px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(200,151,42,0.07);
  border-color: rgba(200,151,42,0.35);
  transform: translateY(-3px);
}

.stat-card .s-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.stat-card .s-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-card .s-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.stat-card.highlight {
  border-color: rgba(200,151,42,0.40);
  background: rgba(200,151,42,0.07);
}

.stat-card.highlight .s-num { color: #fff; }

.admin-section-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(200,151,42,0.15);
}

.log-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
}

.log-table th {
  text-align: right;
  padding: 10px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(200,151,42,0.18);
}

html[lang="en"] .log-table th { text-align: left; }

.log-table td {
  padding: 11px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: middle;
}

.log-table tr:hover td { background: rgba(255,255,255,0.03); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}

.badge-wa  { background: rgba(37,211,102,0.15); color: #25D366; }
.badge-call{ background: rgba(200,151,42,0.15); color: var(--gold-light); }

.admin-reset-btn {
  background: rgba(200,30,30,0.12);
  border: 1px solid rgba(200,30,30,0.3);
  color: #ff7070;
  padding: 9px 22px;
  border-radius: 20px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.admin-reset-btn:hover { background: rgba(200,30,30,0.22); }

.admin-export-btn {
  background: rgba(200,151,42,0.12);
  border: 1px solid rgba(200,151,42,0.3);
  color: var(--gold-light);
  padding: 9px 22px;
  border-radius: 20px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 10px;
}

.admin-export-btn:hover { background: rgba(200,151,42,0.22); }

.admin-actions-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* Bar chart mini */
.bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.bar-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  width: 120px;
  flex-shrink: 0;
  text-align: right;
}

html[lang="en"] .bar-label { text-align: left; }

.bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 8px;
  transition: width 0.6s ease;
}

.bar-fill.wa   { background: linear-gradient(90deg, #25D366, #1DA851); }
.bar-fill.call { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

.bar-count {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  width: 30px;
  text-align: right;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 700px) {
  nav { height: 62px; }
  .logo-text .tagline { display: none; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 9px 14px; }

  .hero { padding: 70px 20px 60px; }
  .stat-item { padding: 12px 18px; }

  .detail-features { grid-template-columns: 1fr; }
  .detail-body { padding: 24px; }
  .detail-header { padding: 28px 24px 24px; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-contact { text-align: right; }
  html[lang="en"] .footer-contact { text-align: left; }

  .cta-band { padding: 36px 24px; }
  section { padding: 56px 16px; }

  .admin-body { padding: 24px 16px 40px; }
  .log-table { font-size: 0.78rem; }
  .log-table th, .log-table td { padding: 8px 8px; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 1.7rem; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}
