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

:root {
  --red: #C9A84C;
  --red-light: #E8C96A;
  --red-dark: #A07830;
  --black: #0A0A0A;
  --black-2: #111111;
  --black-3: #181818;
  --black-4: #222222;
  --white: #FFFFFF;
  --white-dim: #F0EDE8;
  --gray: #888888;
  --gray-light: #BBBBBB;
  --border: rgba(201,168,76,0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ===== SELECTION ===== */
::selection { background: var(--red); color: var(--white); }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.gold { color: var(--red); }
.gold-gradient {
  background: linear-gradient(135deg, var(--red-light), var(--red), var(--red-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-light);
  border: 1px solid var(--border);
  background: rgba(201,168,76,0.08);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.tag::before { content: ''; width: 6px; height: 6px; background: var(--red); border-radius: 50%; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 18px;
  color: var(--gray-light);
  max-width: 580px;
  line-height: 1.7;
}
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red-light), var(--red));
  color: var(--white);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #f0d880, var(--red-light));
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red-light);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--red-light);
  padding: 0;
  font-size: 15px;
}
.btn-ghost:hover { gap: 16px; }
.btn svg { flex-shrink: 0; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo image */
.logo-wrap { display: flex; align-items: center; text-decoration: none; }
.site-logo { height: 52px; width: auto; display: block; }

/* Text logo fallback (footer) */
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.5px;
}
.logo span { color: var(--red-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-light);
  text-decoration: none;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
/* Mobile overlay */
.mm-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 998;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.mm-overlay.show { display: block; }

/* Mobile slide-in panel */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(300px, 88vw);
  background: #0c0c0c;
  border-left: 1px solid rgba(201,168,76,0.12);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

/* Header */
.mm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.mm-logo { font-size: 18px; }
.mobile-close {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--white);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.mobile-close:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.3);
}

/* Nav links */
.mm-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 12px 0;
}
.mm-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding: 14px 22px;
  border-left: 3px solid transparent;
  transition: all 0.2s;
}
.mm-nav a::after {
  content: '›';
  font-size: 18px;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s;
  color: #C9A84C;
}
.mm-nav a:hover {
  color: #fff;
  background: rgba(255,255,255,0.03);
  border-left-color: #C9A84C;
  padding-left: 26px;
}
.mm-nav a:hover::after { opacity: 1; transform: translateX(0); }
.mm-nav-highlight { color: #E8C96A !important; }

/* CTA buttons */
.mm-cta {
  padding: 16px 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mm-btn-full {
  width: 100% !important;
  justify-content: center !important;
  padding: 13px 18px !important;
  font-size: 14px !important;
}

/* Language buttons */
.mm-langs {
  padding: 14px 18px 24px;
  display: flex;
  gap: 8px;
  justify-content: center;
}
.mm-lang-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 11px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  flex: 1;
}
.mm-lang-btn:hover,
.mm-lang-btn.mm-lang-active {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.4);
  color: #E8C96A;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 50%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at center, black, transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--red-light);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 10px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease both;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.hero-h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--red-light), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-p {
  font-size: 19px;
  color: var(--gray-light);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 44px;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  animation: fadeInUp 0.6s ease 0.4s both;
  flex-wrap: wrap;
}
.stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { color: var(--red-light); }
.stat-label { font-size: 13px; color: var(--gray); font-weight: 500; }

/* ===== CLIENTS STRIP ===== */
#clients {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.clients-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 32px;
}
.clients-track {
  display: flex;
  gap: 60px;
  animation: scroll 25s linear infinite;
  width: max-content;
}
.clients-track-wrapper { overflow: hidden; }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-logo {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray);
  white-space: nowrap;
  letter-spacing: 1px;
  transition: var(--transition);
}
.client-logo:hover { color: var(--red-light); }

/* ===== ABOUT ===== */
#about { background: var(--black-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
}
.about-card-map { font-size: 80px; text-align: center; margin-bottom: 24px; line-height: 1; }
.about-locations { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.location-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-light);
  background: rgba(255,255,255,0.04);
  padding: 10px 14px;
  border-radius: 8px;
}
.location-dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; flex-shrink: 0; }
.about-badge {
  position: absolute;
  bottom: 20px; right: 20px;
  background: linear-gradient(135deg, var(--red-light), var(--red));
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}
.about-features { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.about-feature { display: flex; align-items: flex-start; gap: 16px; }
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.feature-text h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.feature-text p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.05), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: linear-gradient(135deg, rgba(201,168,76,0.25), rgba(201,168,76,0.1)); }
.service-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag {
  font-size: 11px; font-weight: 600;
  color: var(--red-light);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ===== WHY US ===== */
#why { background: var(--black-2); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.why-card {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex; gap: 24px; align-items: flex-start;
  transition: var(--transition);
}
.why-card:hover { border-color: var(--border); transform: translateY(-2px); }
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 800;
  color: rgba(201,168,76,0.15);
  line-height: 1; flex-shrink: 0; width: 56px;
}
.why-content h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.why-content p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ===== RESULTS ===== */
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.result-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px; text-align: center;
  position: relative; overflow: hidden;
}
.result-card::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.result-card .result-icon { font-size: 36px; margin-bottom: 16px; }
.result-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 800;
  background: linear-gradient(135deg, var(--red-light), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; margin-bottom: 8px;
}
.result-label { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.result-desc { font-size: 13px; color: var(--gray); line-height: 1.6; }
.case-studies { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case-card {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 28px; transition: var(--transition);
}
.case-card:hover { border-color: var(--border); transform: translateY(-3px); }
.case-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.case-industry {
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--red-light);
  background: rgba(201,168,76,0.08);
  padding: 4px 10px; border-radius: 100px;
}
.case-flag { font-size: 20px; }
.case-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.case-metrics { display: flex; gap: 20px; margin-bottom: 12px; }
.metric-val { font-size: 22px; font-weight: 800; color: var(--red-light); line-height: 1; margin-bottom: 2px; }
.metric-key { font-size: 11px; color: var(--gray); }
.case-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
#testimonials { background: var(--black-2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 24px;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--border); transform: translateY(-3px); }
.stars { display: flex; gap: 4px; }
.star { color: var(--red-light); font-size: 16px; }
.testimonial-text { font-size: 15px; color: var(--white-dim); line-height: 1.75; font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: var(--white);
  flex-shrink: 0;
}
.author-name { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.author-title { font-size: 12px; color: var(--gray); }

/* ===== CTA SECTION ===== */
#cta {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1500 50%, #0f0f0f 100%);
  position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-content .section-title { margin-bottom: 16px; }
.cta-content .section-subtitle { margin: 0 auto 40px; }
.cta-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-wa {
  background: #25D366; color: var(--white);
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 600;
  padding: 16px 32px; border-radius: 8px;
  text-decoration: none; transition: var(--transition);
}
.btn-wa:hover { background: #20bd5a; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(37,211,102,0.3); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
.contact-icon {
  width: 46px; height: 46px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-details h4 { font-size: 14px; font-weight: 600; color: var(--gray); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.contact-details p, .contact-details a { font-size: 15px; color: var(--white); text-decoration: none; line-height: 1.6; transition: var(--transition); }
.contact-details a:hover { color: var(--red-light); }
.contact-form {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form h3 { font-size: 22px; font-weight: 700; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--gray-light); letter-spacing: 0.5px; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black-4);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
.form-group select option { background: var(--black-3); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-note { text-align: center; font-size: 12px; color: var(--gray); margin-top: 12px; }

/* ===== FOOTER ===== */
footer { background: var(--black-2); border-top: 1px solid var(--border); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo-img { height: 44px; width: auto; display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; text-decoration: none;
  color: var(--gray-light);
  transition: var(--transition);
}
.social-btn:hover { background: rgba(201,168,76,0.1); border-color: var(--border); color: var(--red-light); }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: var(--gray); text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--red-light); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 13px; color: var(--gray); }
.footer-bottom a { color: var(--red-light); text-decoration: none; }

/* ===== WHATSAPP FLOAT ===== */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 900; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.wa-tooltip {
  background: var(--black-3);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 13px; font-weight: 500;
  padding: 10px 16px; border-radius: 8px;
  white-space: nowrap;
  opacity: 0; transform: translateX(10px);
  transition: var(--transition); pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
.wa-btn {
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: var(--transition); text-decoration: none;
  position: relative;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.5); }
.wa-btn svg { width: 28px; height: 28px; fill: white; }
.wa-ring { position: absolute; inset: -8px; border: 2px solid rgba(37,211,102,0.3); border-radius: 50%; animation: ring 2.5s ease infinite; }
@keyframes ring { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.5); opacity: 0; } }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s 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; }
.reveal-delay-4 { transition-delay: 0.4s; }

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

/* ===== DIVIDER ===== */
.gold-divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--red), transparent); margin-bottom: 20px; }
.gold-divider.center { margin: 0 auto 20px; }

/* ===== FORM SUCCESS ===== */
.form-success { display: none; text-align: center; padding: 40px; }
.form-success.show { display: block; }
.form-success .success-icon { font-size: 56px; margin-bottom: 16px; }
.form-success h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; color: var(--red-light); }
.form-success p { color: var(--gray-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; }
  .results-grid { grid-template-columns: repeat(3, 1fr); }
  .case-studies { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-links, .nav-cta .btn-outline { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 32px; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .site-logo { height: 42px; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-sw { position: relative; }

.lang-sw__btn {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff; padding: 8px 14px; border-radius: 8px;
  cursor: pointer; font-size: 13px; font-weight: 500;
  font-family: inherit; white-space: nowrap; outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.lang-sw__btn:hover,
.lang-sw.open .lang-sw__btn {
  border-color: rgba(201,168,76,0.55);
  background: rgba(201,168,76,0.08);
}
.lang-sw__arrow {
  opacity: 0.45; flex-shrink: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.lang-sw.open .lang-sw__arrow { transform: rotate(180deg); opacity: 1; }

/* Dropdown menu — animated via CSS, no display:none */
.lang-sw__menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 170px; list-style: none; margin: 0; padding: 6px;
  background: #141414;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.75), 0 0 0 1px rgba(255,255,255,0.03);
  z-index: 9999;
  opacity: 0;
  transform: translateY(-10px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.lang-sw.open .lang-sw__menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Items */
.lang-sw__item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px; cursor: pointer;
  color: rgba(255,255,255,0.55);
  font-size: 13.5px; list-style: none;
  transition: background 0.15s ease, color 0.15s ease;
  user-select: none;
}
.lang-sw__item:hover { background: rgba(255,255,255,0.05); color: #fff; }
.lang-sw__item.active {
  color: #E8C96A; font-weight: 600;
  background: rgba(201,168,76,0.07);
}
.lang-sw__check { margin-left: auto; flex-shrink: 0; opacity: 0; transition: opacity 0.15s; }
.lang-sw__item.active .lang-sw__check { opacity: 1; }

/* Mobile variant */
.lang-sw--mobile { width: 100%; margin-top: 8px; }
.lang-sw--mobile .lang-sw__btn {
  width: 100%; justify-content: space-between;
  padding: 13px 18px; font-size: 15px; border-radius: 10px;
}
.lang-sw__menu--mobile {
  position: relative; top: auto; right: auto;
  width: 100%; margin-top: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  transform: translateY(-6px) scale(0.98);
}
.lang-sw--mobile.open .lang-sw__menu--mobile {
  transform: translateY(0) scale(1);
}

/* RTL support */
[dir="rtl"] .lang-menu { right: auto; left: 0; }
[dir="rtl"] .lang-option { text-align: right; flex-direction: row-reverse; }
[dir="rtl"] .lang-option.active::after { margin-left: 0; margin-right: auto; }
[dir="rtl"] .nav-links { direction: rtl; }
[dir="rtl"] .hero-content { text-align: right; }
[dir="rtl"] .hero-cta { justify-content: flex-start; }
[dir="rtl"] .about-feature { flex-direction: row-reverse; }
[dir="rtl"] .feature-text { text-align: right; }
[dir="rtl"] .section-header:not(.center) { text-align: right; }
[dir="rtl"] .contact-item { flex-direction: row-reverse; }
[dir="rtl"] .contact-details { text-align: right; }
[dir="rtl"] .footer-brand p { text-align: right; }

/* Arabic font */
html[lang="ar"] body, html[lang="ar"] h1, html[lang="ar"] h2,
html[lang="ar"] h3, html[lang="ar"] h4, html[lang="ar"] p,
html[lang="ar"] a, html[lang="ar"] button, html[lang="ar"] label,
html[lang="ar"] input, html[lang="ar"] textarea,
html[lang="ar"] select, html[lang="ar"] span {
  font-family: 'Cairo', 'Inter', sans-serif;
}

/* ===== CONSULTATION SECTION ===== */
.consult-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: center;
}
.consult-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px 32px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.consult-card:hover {
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.consult-featured {
  background: linear-gradient(160deg, rgba(201,168,76,0.07) 0%, rgba(201,168,76,0.02) 100%);
  border-color: rgba(201,168,76,0.45);
  transform: scale(1.05);
  z-index: 1;
}
.consult-featured:hover { transform: scale(1.05) translateY(-5px); }
.consult-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--red-light), var(--red));
  color: #000; font-size: 10px; font-weight: 800;
  padding: 4px 16px; border-radius: 20px;
  white-space: nowrap; letter-spacing: 0.8px; text-transform: uppercase;
}
.consult-icon { font-size: 36px; margin-bottom: 16px; }
.consult-duration {
  font-size: 11px; font-weight: 700; color: var(--red);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px;
}
.consult-price {
  font-size: 52px; font-weight: 900; color: var(--white);
  line-height: 1; margin-bottom: 6px;
  font-family: 'Playfair Display', serif;
}
.consult-name {
  font-size: 15px; font-weight: 700; color: var(--white);
  margin-bottom: 10px;
}
.consult-desc {
  font-size: 13px; color: var(--gray); line-height: 1.65;
  margin-bottom: 22px;
}
.consult-features {
  list-style: none; margin-bottom: 28px; text-align: left;
  border-top: 1px solid var(--border); padding-top: 18px;
}
.consult-features li {
  font-size: 13px; color: var(--gray-light);
  padding: 5px 0; display: flex; align-items: center; gap: 9px;
}
.consult-features li::before {
  content: '✓'; color: var(--red); font-weight: 800; font-size: 11px; flex-shrink: 0;
}
.consult-btn { width: 100%; justify-content: center; margin-top: auto; }

@media (max-width: 900px) {
  .consult-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; gap: 20px; }
  .consult-featured { transform: scale(1); }
  .consult-featured:hover { transform: translateY(-5px); }
}

/* ===== PRICING CARDS (pc-*) ===== */
.pc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}
.pc-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.pc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  border-color: rgba(201,168,76,0.3);
}
.pc-featured {
  border-color: rgba(201,168,76,0.45);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.15);
  background: linear-gradient(145deg, #161610, #111);
}
.pc-featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.3);
}
.pc-badge {
  display: inline-block;
  background: linear-gradient(135deg, #E8C96A, #C9A84C);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  align-self: flex-start;
}
.pc-top { margin-bottom: 4px; }
.pc-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}
.pc-label-gold { color: #C9A84C; }
.pc-price {
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}
.pc-price sup {
  font-size: 22px;
  vertical-align: top;
  margin-top: 10px;
  display: inline-block;
  font-family: 'Inter', sans-serif;
  opacity: 0.7;
  font-weight: 700;
}
.pc-price-gold { color: #E8C96A; }
.pc-name {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.pc-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin-bottom: 20px;
}
.pc-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 20px;
}
.pc-divider-gold { background: rgba(201,168,76,0.2); }
.pc-features {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
}
.pc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  padding: 6px 0;
}
.pc-features li svg { width: 16px; height: 16px; flex-shrink: 0; }
.pc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  margin-top: auto;
  font-family: inherit;
  cursor: pointer;
  border: none;
}
.pc-btn-outline {
  border: 1.5px solid rgba(255,255,255,0.15);
  color: #fff;
  background: transparent;
}
.pc-btn-outline:hover {
  border-color: rgba(201,168,76,0.5);
  color: #E8C96A;
  background: rgba(201,168,76,0.06);
}
.pc-btn-gold {
  background: linear-gradient(135deg, #E8C96A, #C9A84C);
  color: #000;
  font-weight: 700;
  border: none;
}
.pc-btn-gold:hover {
  background: linear-gradient(135deg, #f0d880, #E8C96A);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.35);
}

@media (max-width: 900px) {
  .pc-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== CONSULTATION SECTION ===== */
.ns-consult-section { padding: 100px 0; background: #111; }

.ns-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 48px;
}

.ns-card {
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.ns-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.6);
  border-color: rgba(201,168,76,0.35);
}
.ns-card-featured {
  background: linear-gradient(160deg, #1a1800, #0f0f0f);
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.12);
}
.ns-card-featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.6), 0 0 40px rgba(201,168,76,0.08);
}
.ns-card-free {
  border-color: rgba(37,211,102,0.25);
  background: linear-gradient(160deg, #001a08, #0f0f0f);
}
.ns-card-free:hover {
  border-color: rgba(37,211,102,0.5);
  box-shadow: 0 28px 70px rgba(0,0,0,0.6), 0 0 30px rgba(37,211,102,0.06);
}

.ns-badge {
  display: inline-block;
  background: linear-gradient(135deg, #E8C96A, #C9A84C);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.ns-duration {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
}
.ns-duration-gold { color: #C9A84C; }
.ns-duration-wa   { color: #25D366; }

.ns-price {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  line-height: 1;
}
.ns-price span {
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  font-family: 'Playfair Display', serif;
}
.ns-price-gold span { color: #E8C96A; }
.ns-price-wa {
  font-size: 52px;
  font-weight: 900;
  color: #25D366;
  font-family: 'Playfair Display', serif;
}
.ns-currency {
  font-size: 20px;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}
.ns-plan  { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.ns-desc  { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.65; margin-bottom: 20px; }
.ns-divider { height: 1px; background: rgba(255,255,255,0.07); margin-bottom: 20px; }
.ns-divider-gold { background: rgba(201,168,76,0.25); }

.ns-features {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
}
.ns-features li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.65); }

.ns-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 13px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s ease;
  margin-top: auto;
  letter-spacing: 0.3px;
  cursor: pointer;
  font-family: inherit;
  border: none;
}
.ns-btn-outline {
  border: 1.5px solid rgba(255,255,255,0.15);
  color: #fff;
  background: transparent;
}
.ns-btn-outline:hover {
  border-color: #C9A84C;
  color: #E8C96A;
  background: rgba(201,168,76,0.07);
}
.ns-btn-gold {
  background: linear-gradient(135deg, #E8C96A, #C9A84C);
  color: #000;
  border: none;
}
.ns-btn-gold:hover {
  background: linear-gradient(135deg, #f5e080, #E8C96A);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.4);
}
.ns-btn-wa-green {
  background: #25D366;
  color: #fff;
  border: none;
}
.ns-btn-wa-green:hover {
  background: #1fba58;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.35);
}
.ns-btn-submit {
  padding: 15px 44px;
  font-size: 15px;
  border-radius: 12px;
  margin: 0 auto;
}

/* After-payment note */
.ns-after-payment {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}
.ns-ap-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  padding: 16px 24px;
  max-width: 440px;
  flex: 1;
}
.ns-ap-icon { font-size: 24px; flex-shrink: 0; }
.ns-ap-item p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.ns-ap-item strong { color: #E8C96A; }

/* Booking form */
.ns-booking-wrap {
  background: linear-gradient(135deg, #121212, #0d0d0d);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px;
  padding: 48px;
  margin-bottom: 56px;
}
.ns-booking-header {
  text-align: center;
  margin-bottom: 36px;
}
.ns-booking-header h3 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.ns-booking-header p { font-size: 14px; color: rgba(255,255,255,0.45); }
.ns-booking-header strong { color: #E8C96A; }

.ns-bf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.ns-bf-standalone { margin-bottom: 20px; }
.ns-bf-group { display: flex; flex-direction: column; gap: 8px; }

.ns-bf-group label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.ns-optional { color: rgba(255,255,255,0.3); font-weight: 400; }

.ns-bf-group input,
.ns-bf-group select,
.ns-bf-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14px;
  color: #fff;
  font-family: inherit;
  transition: border-color .25s, box-shadow .25s, background .25s;
  outline: none;
  width: 100%;
}
.ns-bf-group input::placeholder,
.ns-bf-group textarea::placeholder { color: rgba(255,255,255,0.22); }
.ns-bf-group input:focus,
.ns-bf-group select:focus,
.ns-bf-group textarea:focus {
  border-color: rgba(201,168,76,0.55);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
  background: rgba(255,255,255,0.06);
}
.ns-bf-group select { appearance: none; cursor: pointer; }
.ns-bf-group select option { background: #1a1a1a; color: #fff; }
.ns-bf-group textarea { height: 110px; resize: vertical; }

/* Plan pills */
.ns-plan-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 6px;
}
.ns-pill {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 18px 10px 14px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  font-family: inherit;
}
.ns-pill:hover {
  border-color: rgba(201,168,76,0.5);
  background: rgba(201,168,76,0.07);
  transform: translateY(-2px);
}
.ns-pill.active {
  border-color: #C9A84C;
  background: rgba(201,168,76,0.13);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.ns-pill-popular { border-color: rgba(201,168,76,0.3); }
.ns-pill-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #E8C96A, #C9A84C);
  color: #000;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.ns-pill-time {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}
.ns-pill-price {
  font-size: 22px;
  font-weight: 900;
  color: #E8C96A;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

/* Inline field errors */
.ns-field-err {
  display: none;
  font-size: 12px;
  color: #ff6b7a;
  margin-top: 4px;
}
.ns-req { color: #ff6b7a; margin-left: 2px; }

.ns-input-err {
  border-color: #ff4757 !important;
  box-shadow: 0 0 0 3px rgba(255,71,87,0.1) !important;
}

/* Booking header icon */
.ns-booking-icon { font-size: 32px; margin-bottom: 10px; }

.ns-bf-submit { text-align: center; margin-top: 20px; }
.ns-booking-note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-top: 12px;
}
.ns-booking-err {
  background: rgba(255,71,87,0.08);
  border: 1px solid rgba(255,71,87,0.3);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  color: #ff6b7a;
  margin-bottom: 24px;
  display: none;
  text-align: center;
}
.ns-booking-err.show { display: block; }

@media (max-width: 480px) {
  .ns-plan-pills { gap: 8px; }
  .ns-pill { padding: 16px 8px 12px; }
  .ns-pill-price { font-size: 20px; }
  .ns-pill-time { font-size: 12px; }
}

@media (max-width: 1100px) {
  .ns-pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .ns-pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .ns-bf-row { grid-template-columns: 1fr; }
  .ns-booking-wrap { padding: 28px 18px; }
}
