@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..700;1,9..144,300..700&family=Inter:wght@300..800&display=swap");

:root {
  --ink-950: #07070b;
  --ink-900: #0c0c12;
  --ink-800: #13131c;
  --ink-700: #1c1c28;

  --gold-200: #f3e5c0;
  --gold-300: #ecd9a8;
  --gold-400: #ddbe7a;
  --gold-500: #c9a24b;
  --gold-600: #a9832f;

  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background-color: var(--ink-950);
  color: #f4f4f6;
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }

::selection { background: var(--gold-500); color: #0c0c12; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0c0c12; }
::-webkit-scrollbar-thumb { background: #2a2a38; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-600); }

.font-display { font-family: var(--font-display); }

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 640px) { .wrap { padding: 0 32px; } }

.wrap-narrow { max-width: 960px; }
.wrap-narrower { max-width: 768px; }

/* ---------------- Skip link ---------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: -9999px;
  z-index: 999;
  background: var(--gold-500);
  color: var(--ink-950);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* ---------------- Navbar ---------------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  padding: 20px 0;
  background: transparent;
  transition: all 0.5s ease;
}
.site-header.scrolled {
  padding: 12px 0;
  background: rgba(7, 7, 11, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 40px rgba(0,0,0,0.45);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  display: flex; align-items: center; justify-content: center;
  height: 40px; width: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  box-shadow: 0 10px 25px -8px rgba(201,162,75,0.4);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.logo:hover .logo-mark { transform: scale(1.05); }
.logo-text { line-height: 1.15; }
.logo-text .name { display: block; font-family: var(--font-display); font-size: 18px; font-weight: 600; letter-spacing: -0.02em; color: #fff; }
.logo-text .name em { color: var(--gold-400); font-style: normal; }
.logo-text .tag { display: block; font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.18em; color: #9a9aa5; }

.logo-image {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover .logo-image {
  transform: scale(1.05);
}

.site-footer .logo-image {
  height: 200px;
}

.nav-links { display: none; align-items: center; gap: 4px; }
.nav-links a {
  position: relative;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #c9c9d1;
  transition: color 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a::after {
  content: "";
  position: absolute; bottom: 2px; left: 50%;
  height: 1px; width: 0;
  background: var(--gold-400);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 24px; }

.nav-right { display: none; align-items: center; gap: 12px; }
.nav-phone { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: #c9c9d1; transition: color 0.3s ease; }
.nav-phone:hover { color: var(--gold-300); }

.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
  color: var(--ink-950);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  box-shadow: 0 10px 30px -10px rgba(201,162,75,0.4);
  transition: all 0.3s ease;
  border: none;
}
.btn-gold:hover { filter: brightness(1.1); box-shadow: 0 10px 34px -8px rgba(201,162,75,0.6); }
.btn-gold:active { transform: scale(0.98); }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.btn-ghost:hover { border-color: rgba(221,190,122,0.4); background: rgba(255,255,255,0.1); }
.btn-ghost:active { transform: scale(0.98); }

.nav-toggle {
  display: flex; align-items: center; justify-content: center;
  height: 44px; width: 44px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #fff;
  backdrop-filter: blur(10px);
}
.burger { position: relative; height: 14px; width: 20px; }
.burger span {
  position: absolute; left: 0; height: 2px; width: 100%;
  background: currentColor; transition: all 0.3s ease;
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 6px; }
.burger span:nth-child(3) { top: 12px; }
.nav-toggle.open .burger span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.nav-toggle.open .burger span:nth-child(2) { opacity: 0; }
.nav-toggle.open .burger span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

.mobile-menu {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.22,1,0.36,1);
}
.mobile-menu.open { max-height: 520px; opacity: 1; }
.mobile-menu-inner {
  margin: 12px 16px 0;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(12,12,18,0.95);
  padding: 16px;
  backdrop-filter: blur(24px);
}
.mobile-menu ul { border-top: 1px solid rgba(255,255,255,0.05); }
.mobile-menu li { border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-menu a { display: block; padding: 14px 8px; font-size: 16px; font-weight: 500; color: #e4e4e7; }
.mobile-menu a:hover { color: var(--gold-300); }
.mobile-menu .btn-gold { display: block; margin-top: 16px; text-align: center; padding: 12px; }

@media (min-width: 1024px) {
  .nav-links, .nav-right { display: flex; }
  .nav-toggle, .mobile-menu { display: none; }
}

/* ---------------- WhatsApp button ---------------- */
.whatsapp-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 50;
  display: flex; align-items: center;
  border-radius: 999px;
  background: #25D366;
  padding: 16px;
  box-shadow: 0 20px 50px -12px rgba(37,211,102,0.35);
  transition: all 0.3s ease;
  overflow: hidden;
}
.whatsapp-btn:hover { transform: scale(1.05); box-shadow: 0 20px 50px -8px rgba(37,211,102,0.55); }
.whatsapp-btn .ring {
  position: absolute; inset: 0; border-radius: 999px; background: #25D366;
  animation: pulse-ring 2.2s cubic-bezier(0.4,0,0.6,1) infinite;
}
.whatsapp-btn svg { position: relative; height: 28px; width: 28px; }
.whatsapp-btn .label {
  position: relative; max-width: 0; overflow: hidden; white-space: nowrap;
  font-size: 14px; font-weight: 600; color: #fff;
  transition: all 0.5s ease;
}
.whatsapp-btn:hover .label { margin-left: 8px; max-width: 140px; }

/* ---------------- Buttons of note badges ---------------- */
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  padding: 8px 16px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.02em;
  color: #dcdce2;
  backdrop-filter: blur(10px);
}
.badge .dot-wrap { position: relative; display: flex; height: 8px; width: 8px; }
.badge .dot-ping {
  position: absolute; inset: 0; border-radius: 999px;
  background: var(--gold-400); opacity: 0.6;
  animation: ping 1.6s cubic-bezier(0,0,0.2,1) infinite;
}
.badge .dot { position: relative; height: 8px; width: 8px; border-radius: 999px; background: var(--gold-400); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 999px; border: 1px solid rgba(201,162,75,0.25);
  background: rgba(201,162,75,0.1);
  padding: 6px 16px;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--gold-300);
}
.eyebrow .dot { height: 4px; width: 4px; border-radius: 999px; background: var(--gold-400); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { height: 100%; width: 100%; object-fit: cover; animation: slow-zoom 5s ease-in-out infinite alternate; filter: brightness(1.15); }
.hero-bg .grad-1 { position: absolute; inset: 0; background: linear-gradient(to right, rgba(7,7,11,0.95), rgba(7,7,11,0.75), rgba(7,7,11,0.3)); }
.hero-bg .grad-2 { position: absolute; inset: 0; background: linear-gradient(to top, var(--ink-950), transparent, rgba(7,7,11,0.6)); }
.hero-bg .glow { position: absolute; left: -160px; top: 33%; height: 480px; width: 480px; border-radius: 999px; background: rgba(201,162,75,0.1); filter: blur(140px); animation: float-slow 10s ease-in-out infinite; }

.hero-inner { position: relative; z-index: 10; margin: 0 auto; width: 100%; padding: 160px 0 150px; }
.hero-content { max-width: 640px; }
.hero-content h1 { margin: 24px 0 0; font-family: var(--font-display); font-weight: 500; font-size: 2.6rem; line-height: 1.06; letter-spacing: -0.02em; color: #fff; }
.hero-content h1 em { display: block; font-style: italic; background: linear-gradient(90deg, var(--gold-200), var(--gold-400), var(--gold-600)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-content p { margin-top: 24px; max-width: 560px; font-size: 16px; line-height: 1.7; color: #c9c9d1; }
.hero-cta { margin-top: 36px; display: flex; flex-direction: column; gap: 16px; }
.hero-avatars { margin-top: 32px; display: flex; align-items: center; gap: 16px; font-size: 14px; color: #9a9aa5; }
.avatar-stack { display: flex; }
.avatar-stack span {
  display: flex; align-items: center; justify-content: center;
  height: 36px; width: 36px; margin-left: -10px;
  border-radius: 999px; border: 2px solid var(--ink-950);
  background: linear-gradient(135deg, #1c1c28, #13131c);
  font-size: 10px; font-weight: 700; color: var(--gold-300);
}
.avatar-stack span:first-child { margin-left: 0; }
.hero-avatars strong { color: #fff; font-weight: 600; }

.stats-bar {
  position: absolute; inset-inline: 0; bottom: 0; z-index: 10;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
}
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); margin: 0 auto; max-width: 1280px; padding: 0 8px; }
.stats-grid > div { padding: 20px; text-align: center; border-left: 1px solid rgba(255,255,255,0.07); }
.stats-grid > div:first-child { border-left: none; }
.stats-grid .num { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--gold-300); }
.stats-grid .lbl { margin-top: 4px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: #9a9aa5; }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------------- Trust bar ---------------- */
.trust-bar { border-bottom: 1px solid rgba(255,255,255,0.06); background: var(--ink-900); padding: 40px 0; }
.trust-bar > .wrap > p { text-align: center; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.28em; color: #71717a; }
.marquee-mask { position: relative; margin-top: 28px; overflow: hidden; mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent); }
.marquee-track { display: flex; width: max-content; align-items: center; gap: 56px; padding-right: 56px; animation: marquee 34s linear infinite; }
.marquee-track span { white-space: nowrap; font-family: var(--font-display); font-size: 18px; font-weight: 500; letter-spacing: 0.02em; color: #71717a; transition: color 0.3s ease; }
.marquee-track span:hover { color: var(--gold-300); }

/* ---------------- Section shell ---------------- */
.section { position: relative; overflow: hidden; padding: 96px 0; background: var(--ink-950); }
.section.alt { background: var(--ink-900); }
.section .blob { position: absolute; pointer-events: none; border-radius: 999px; filter: blur(120px); background: rgba(201,162,75,0.07); }
@media (min-width: 640px) { .section { padding: 128px 0; } }

.section-heading { max-width: 640px; }
.section-heading.center { margin: 0 auto; text-align: center; }
.section-heading h2 { margin: 20px 0 0; font-family: var(--font-display); font-weight: 500; font-size: 30px; line-height: 1.12; letter-spacing: -0.02em; color: #fff; }
.section-heading h2 em { font-style: italic; background: linear-gradient(90deg, var(--gold-300), var(--gold-400), var(--gold-500)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-heading p { margin-top: 16px; font-size: 16px; line-height: 1.7; color: #9a9aa5; }
@media (min-width: 640px) { .section-heading h2 { font-size: 36px; } }
@media (min-width: 1024px) { .section-heading h2 { font-size: 44px; } }

/* ---------------- Cards ---------------- */
.grid-cards { display: grid; gap: 20px; margin-top: 56px; }
@media (min-width: 640px) { 
  .grid-cards.cols-2 { grid-template-columns: repeat(2, 1fr); } 
  .grid-cards.cols-4 { grid-template-columns: repeat(2, 1fr); justify-content: center; }
}
@media (min-width: 1024px) { 
  .grid-cards.cols-4 { grid-template-columns: repeat(3, 1fr); justify-content: center; } 
  .grid-cards.cols-3 { grid-template-columns: repeat(3, 1fr); } 
}

.service-card {
  position: relative; overflow: hidden; height: 100%;
  border-radius: 16px; border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  padding: 24px;
  transition: all 0.5s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(201,162,75,0.3); background: rgba(255,255,255,0.05); box-shadow: 0 30px 60px -20px rgba(201,162,75,0.07); }
.service-card .icon-wrap {
  display: flex; align-items: center; justify-content: center;
  height: 48px; width: 48px; border-radius: 12px;
  border: 1px solid rgba(201,162,75,0.2); background: rgba(201,162,75,0.1);
  color: var(--gold-300); transition: all 0.5s ease;
}
.service-card:hover .icon-wrap { transform: scale(1.1); background: rgba(201,162,75,0.2); }
.service-card h3 { margin-top: 20px; font-family: var(--font-display); font-size: 18px; font-weight: 600; color: #fff; }
.service-card p { margin-top: 10px; font-size: 14px; line-height: 1.65; color: #a1a1aa; }
.service-card .enquire {
  margin-top: 20px; display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--gold-400); opacity: 0; transition: opacity 0.5s ease;
}
.service-card:hover .enquire { opacity: 1; }

/* ---------------- Project filters + cards ---------------- */
.filter-row { margin-top: 40px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.filter-btn {
  border-radius: 999px; padding: 10px 20px; font-size: 14px; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.04);
  color: #c9c9d1; transition: all 0.3s ease;
}
.filter-btn:hover { border-color: rgba(201,162,75,0.3); color: #fff; }
.filter-btn.active { border: none; background: linear-gradient(90deg, var(--gold-400), var(--gold-600)); color: var(--ink-950); box-shadow: 0 10px 25px -8px rgba(201,162,75,0.4); }

.project-card { position: relative; overflow: hidden; border-radius: 16px; border: 1px solid rgba(255,255,255,0.07); }
.project-card img { aspect-ratio: 4/3; width: 100%; object-fit: cover; transition: transform 0.7s ease; }
.project-card:hover img { transform: scale(1.06); }
.project-card .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,7,11,0.95), rgba(7,7,11,0.25), transparent); opacity: 0.9; transition: opacity 0.5s ease; }
.project-card:hover .overlay { opacity: 1; }
.project-card .cat-tag {
  position: absolute; left: 16px; top: 16px;
  border-radius: 999px; border: 1px solid rgba(255,255,255,0.15);
  background: rgba(7,7,11,0.6); padding: 4px 12px;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gold-300); backdrop-filter: blur(10px);
}
.project-card figcaption { position: absolute; inset-inline: 0; bottom: 0; padding: 20px; transform: translateY(6px); transition: transform 0.5s ease; }
.project-card:hover figcaption { transform: translateY(0); }
.project-card figcaption h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: #fff; }
.project-card figcaption .place { margin-top: 4px; font-size: 14px; color: #d4d4d8; }
.project-card figcaption .area {
  margin-top: 8px; display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; color: var(--gold-300);
  opacity: 0; transition: opacity 0.5s ease 0.1s;
}
.project-card:hover figcaption .area { opacity: 1; }

/* ---------------- Before / After ---------------- */
.ba-track { position: relative; user-select: none; overflow: hidden; border-radius: 24px; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6); touch-action: none; margin-top: 48px; }
.ba-track img { aspect-ratio: 16/9; width: 100%; object-fit: cover; }
.ba-before { position: absolute; inset: 0; overflow: hidden; }
.ba-label { position: absolute; top: 16px; border-radius: 999px; padding: 6px 14px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; backdrop-filter: blur(10px); }
.ba-label.before { left: 16px; background: rgba(7,7,11,0.7); color: #fff; }
.ba-label.after { right: 16px; background: rgba(201,162,75,0.9); color: var(--ink-950); }
.ba-handle { position: absolute; inset-block: 0; z-index: 10; cursor: ew-resize; }
.ba-handle .line { position: absolute; inset-block: 0; left: -1px; width: 2px; background: rgba(255,255,255,0.9); box-shadow: 0 0 18px rgba(255,255,255,0.6); }
.ba-handle .grip {
  position: absolute; top: 50%; display: flex; align-items: center; justify-content: center;
  height: 48px; width: 48px; transform: translate(-50%, -50%);
  border-radius: 999px; border: 1px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3); backdrop-filter: blur(14px); transition: transform 0.2s ease;
}
.ba-handle:hover .grip { transform: translate(-50%, -50%) scale(1.1); }
.ba-stats { margin-top: 32px; display: grid; gap: 16px; text-align: center; }
.ba-stats > div { border-radius: 16px; border: 1px solid rgba(255,255,255,0.07); background: rgba(255,255,255,0.03); padding: 20px 16px; }
.ba-stats .v { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--gold-300); }
.ba-stats .l { margin-top: 4px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: #71717a; }
@media (min-width: 640px) { .ba-stats { grid-template-columns: repeat(3, 1fr); } }

/* ---------------- Why us ---------------- */
.whyus-grid { display: grid; align-items: center; gap: 56px; }
@media (min-width: 1024px) { .whyus-grid { grid-template-columns: 1fr 1fr; } }
.whyus-visual { position: relative; }
.whyus-visual img { width: 100%; border-radius: 24px; border: 1px solid rgba(255,255,255,0.1); object-fit: cover; box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5); }
.float-card {
  position: absolute; right: -12px; bottom: -24px; width: 224px;
  border-radius: 16px; border: 1px solid rgba(255,255,255,0.1); background: rgba(7,7,11,0.85);
  padding: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.4); backdrop-filter: blur(20px);
  animation: float 7s ease-in-out infinite;
}
.float-card .stars { display: flex; gap: 4px; color: var(--gold-300); }
.float-card .score { margin-top: 8px; font-family: var(--font-display); font-size: 24px; font-weight: 600; color: #fff; }
.float-card .sub { margin-top: 2px; font-size: 12px; color: #9a9aa5; }
.float-badge {
  position: absolute; left: -12px; top: -20px;
  display: flex; align-items: center; gap: 12px;
  border-radius: 16px; border: 1px solid rgba(201,162,75,0.25); background: rgba(7,7,11,0.85);
  padding: 12px 16px; box-shadow: 0 30px 60px rgba(0,0,0,0.4); backdrop-filter: blur(20px);
  animation: float-slow 10s ease-in-out infinite;
}
.float-badge .ic { display: flex; align-items: center; justify-content: center; height: 40px; width: 40px; border-radius: 999px; background: rgba(201,162,75,0.15); color: var(--gold-300); }
.float-badge .t1 { font-size: 14px; font-weight: 600; color: #fff; }
.float-badge .t2 { font-size: 11px; color: #9a9aa5; }

.benefit-list { margin-top: 40px; display: grid; gap: 20px; }
@media (min-width: 640px) { .benefit-list { grid-template-columns: repeat(2, 1fr); } }
.benefit-item { display: flex; gap: 14px; }
.benefit-item .check {
  margin-top: 2px; display: flex; flex-shrink: 0; align-items: center; justify-content: center;
  height: 28px; width: 28px; border-radius: 999px;
  border: 1px solid rgba(201,162,75,0.3); background: rgba(201,162,75,0.1); color: var(--gold-300);
}
.benefit-item h3 { font-size: 15px; font-weight: 600; color: #fff; }
.benefit-item p { margin-top: 4px; font-size: 14px; line-height: 1.6; color: #a1a1aa; }

.mini-stats { margin-top: 40px; display: flex; flex-wrap: wrap; align-items: center; gap: 32px; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 32px; }
.mini-stats .num { font-family: var(--font-display); font-size: 30px; font-weight: 600; color: var(--gold-300); }
.mini-stats .lbl { margin-top: 4px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: #71717a; }

/* ---------------- Process ---------------- */
.process-list { position: relative; margin-top: 64px; display: flex; flex-direction: column; gap: 40px; }
.process-list::before {
  content: ""; position: absolute; left: 27px; top: 8px; height: calc(100% - 24px); width: 1px;
  background: linear-gradient(to bottom, rgba(201,162,75,0.5), rgba(255,255,255,0.1), transparent);
}
.process-item { display: flex; gap: 24px; }
.process-num {
  position: relative; z-index: 10; display: flex; flex-shrink: 0; align-items: center; justify-content: center;
  height: 56px; width: 56px; border-radius: 16px;
  border: 1px solid rgba(201,162,75,0.25); background: var(--ink-900);
  font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--gold-300);
  box-shadow: 0 10px 20px rgba(0,0,0,0.4); transition: all 0.5s ease;
}
.process-item:hover .process-num { border-color: rgba(221,190,122,0.6); background: var(--gold-500); color: var(--ink-950); }
.process-body { flex: 1; border-radius: 16px; border: 1px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.025); padding: 20px 24px; transition: all 0.5s ease; }
.process-item:hover .process-body { border-color: rgba(201,162,75,0.2); background: rgba(255,255,255,0.045); }
.process-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px; }
.process-head h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: #fff; }
.process-tag { border-radius: 999px; border: 1px solid rgba(201,162,75,0.2); background: rgba(201,162,75,0.1); padding: 4px 12px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold-300); }
.process-body p { margin-top: 8px; font-size: 14px; line-height: 1.65; color: #a1a1aa; }

/* ---------------- Testimonials ---------------- */
.testimonial-card { display: flex; height: 100%; flex-direction: column; border-radius: 16px; border: 1px solid rgba(255,255,255,0.07); background: rgba(255,255,255,0.03); padding: 24px; transition: all 0.5s ease; }
.testimonial-card:hover { transform: translateY(-6px); border-color: rgba(201,162,75,0.25); background: rgba(255,255,255,0.05); }
.testimonial-card .stars { display: flex; gap: 4px; color: var(--gold-400); }
.testimonial-card p.quote { margin-top: 16px; flex: 1; font-size: 15px; line-height: 1.65; color: #d4d4d8; }
.testimonial-card footer { margin-top: 24px; display: flex; align-items: center; gap: 12px; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; }
.testimonial-card .initials { display: flex; align-items: center; justify-content: center; height: 44px; width: 44px; border-radius: 999px; background: linear-gradient(135deg, rgba(221,190,122,0.25), rgba(169,131,47,0.25)); font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--gold-300); box-shadow: inset 0 0 0 1px rgba(201,162,75,0.3); }
.testimonial-card cite { font-style: normal; font-size: 14px; font-weight: 600; color: #fff; }
.testimonial-card .role { font-size: 12px; color: #71717a; }

/* ---------------- Pricing ---------------- */
.pricing-grid { display: grid; align-items: stretch; gap: 24px; margin-top: 56px; }
@media (min-width: 640px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); justify-content: center; } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(2, 400px); justify-content: center; } }
.plan-card { position: relative; display: flex; height: 100%; flex-direction: column; border-radius: 24px; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03); padding: 28px; transition: all 0.5s ease; }
.plan-card:hover { transform: translateY(-8px); border-color: rgba(201,162,75,0.25); }
.plan-card.featured { border-color: rgba(201,162,75,0.4); background: linear-gradient(to bottom, rgba(201,162,75,0.12), rgba(255,255,255,0.03)); box-shadow: 0 40px 80px -20px rgba(201,162,75,0.1); }
.plan-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); white-space: nowrap; border-radius: 999px; background: linear-gradient(90deg, var(--gold-400), var(--gold-600)); padding: 6px 16px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-950); box-shadow: 0 10px 25px -6px rgba(201,162,75,0.4); }
.plan-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: #fff; }
.plan-card .tagline { margin-top: 6px; font-size: 14px; color: #a1a1aa; }
.plan-price { margin-top: 24px; display: flex; align-items: baseline; gap: 6px; }
.plan-price .amount { font-family: var(--font-display); font-size: 48px; font-weight: 600; letter-spacing: -0.02em; color: #fff; }
.plan-price .unit { font-size: 14px; color: #71717a; }
.plan-features { margin-top: 28px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #d4d4d8; }
.plan-features svg { margin-top: 2px; flex-shrink: 0; color: #71717a; }
.plan-card.featured .plan-features svg { color: var(--gold-400); }
.plan-cta { margin-top: 32px; display: block; border-radius: 999px; padding: 14px; text-align: center; font-size: 14px; font-weight: 600; transition: all 0.3s ease; }
.plan-cta.solid { background: linear-gradient(90deg, var(--gold-400), var(--gold-600)); color: var(--ink-950); box-shadow: 0 10px 30px -10px rgba(201,162,75,0.4); }
.plan-cta.solid:hover { filter: brightness(1.1); }
.plan-cta.outline { border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.04); color: #fff; }
.plan-cta.outline:hover { border-color: rgba(201,162,75,0.4); background: rgba(255,255,255,0.08); }
.pricing-note { margin-top: 32px; text-align: center; font-size: 14px; color: #71717a; }
.pricing-note a { font-weight: 600; color: var(--gold-300); text-underline-offset: 4px; }
.pricing-note a:hover { text-decoration: underline; }

/* ---------------- FAQ ---------------- */
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { overflow: hidden; border-radius: 16px; border: 1px solid rgba(255,255,255,0.07); background: rgba(255,255,255,0.025); transition: all 0.3s ease; }
.faq-item.open { border-color: rgba(201,162,75,0.3); background: rgba(255,255,255,0.045); }
.faq-q { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; text-align: left; background: none; border: none; }
.faq-q span.txt { font-size: 15px; font-weight: 600; color: #fff; transition: color 0.3s ease; }
.faq-item.open .faq-q span.txt { color: var(--gold-200); }
.faq-icon { display: flex; flex-shrink: 0; align-items: center; justify-content: center; height: 32px; width: 32px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.15); color: #a1a1aa; transition: all 0.3s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: rgba(201,162,75,0.4); background: rgba(201,162,75,0.15); color: var(--gold-300); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 24px 24px; font-size: 14px; line-height: 1.65; color: #a1a1aa; }

/* ---------------- Contact ---------------- */
.contact-grid { display: grid; gap: 56px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.15fr; } }
.contact-list { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.07); background: rgba(255,255,255,0.03); padding: 20px; transition: all 0.3s ease; }
.contact-item:hover { border-color: rgba(201,162,75,0.25); background: rgba(255,255,255,0.05); }
.contact-item .ic { display: flex; flex-shrink: 0; align-items: center; justify-content: center; height: 44px; width: 44px; border-radius: 12px; border: 1px solid rgba(201,162,75,0.2); background: rgba(201,162,75,0.1); color: var(--gold-300); transition: transform 0.3s ease; }
.contact-item:hover .ic { transform: scale(1.1); }
.contact-item .lbl { display: block; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; color: #71717a; }
.contact-item .val { display: block; margin-top: 4px; font-size: 14px; font-weight: 500; color: #e4e4e7; }
.contact-map { margin-top: 32px; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.07); }
.contact-map iframe { width: 100%; height: 320px; border: none; }

.contact-form-card { position: relative; border-radius: 24px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.035); padding: 24px; box-shadow: 0 40px 80px -20px rgba(0,0,0,0.4); backdrop-filter: blur(20px); }
.contact-form-card::before { content: ""; position: absolute; top: -1px; left: 40px; right: 40px; height: 1px; background: linear-gradient(90deg, transparent, rgba(221,190,122,0.6), transparent); }
.contact-form-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: #fff; }
.form-grid { display: grid; gap: 16px; margin-top: 16px; }
@media (min-width: 640px) { .form-grid.two { grid-template-columns: repeat(2, 1fr); } }
.form-field label { display: block; margin-bottom: 6px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: #a1a1aa; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.04);
  padding: 14px 16px; font-size: 14px; color: #fff; font-family: inherit; outline: none; transition: all 0.3s ease;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: #71717a; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: rgba(201,162,75,0.5); background: rgba(255,255,255,0.06); box-shadow: 0 0 0 3px rgba(201,162,75,0.2); }
.form-field select option { background: var(--ink-900); }
.form-field textarea { resize: none; }
.form-submit {
  margin-top: 16px; display: flex; width: 100%; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; background: linear-gradient(90deg, var(--gold-400), var(--gold-600)); border: none;
  padding: 16px; font-size: 14px; font-weight: 700; color: var(--ink-950);
  box-shadow: 0 20px 40px -12px rgba(201,162,75,0.25); transition: all 0.3s ease;
}
.form-submit:hover { filter: brightness(1.1); }
.form-submit:active { transform: scale(0.99); }
.form-note { margin-top: 14px; text-align: center; font-size: 12px; color: #71717a; }
.form-success { display: none; min-height: 420px; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.form-success.show { display: flex; }
.form-success .ic { display: flex; align-items: center; justify-content: center; height: 64px; width: 64px; border-radius: 999px; background: rgba(201,162,75,0.15); color: var(--gold-300); box-shadow: inset 0 0 0 1px rgba(201,162,75,0.4); }
.form-success h3 { margin-top: 24px; font-family: var(--font-display); font-size: 24px; font-weight: 600; color: #fff; }
.form-success p { margin-top: 12px; max-width: 380px; font-size: 14px; line-height: 1.65; color: #a1a1aa; }
.form-success .wa-link { margin-top: 28px; display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); padding: 12px 24px; font-size: 14px; font-weight: 600; color: #fff; transition: border-color 0.3s ease; }
.form-success .wa-link:hover { border-color: rgba(201,162,75,0.4); }
#request-form.hide { display: none; }

/* ---------------- Final CTA ---------------- */
.final-cta { position: relative; overflow: hidden; background: var(--ink-900); padding: 80px 20px; }
@media (min-width: 640px) { .final-cta { padding: 80px 32px; } }
.final-cta-inner {
  position: relative; overflow: hidden; margin: 0 auto; max-width: 960px; border-radius: 32px;
  border: 1px solid rgba(201,162,75,0.25);
  background: linear-gradient(135deg, rgba(201,162,75,0.16), var(--ink-800), var(--ink-900));
  padding: 56px 28px; text-align: center; box-shadow: 0 40px 80px -20px rgba(201,162,75,0.08);
}
@media (min-width: 640px) { .final-cta-inner { padding: 72px 56px; } }
.final-cta-inner .glow1 { position: absolute; left: -96px; top: -96px; height: 288px; width: 288px; border-radius: 999px; background: rgba(201,162,75,0.15); filter: blur(100px); animation: float-slow 10s ease-in-out infinite; }
.final-cta-inner .glow2 { position: absolute; right: -96px; bottom: -96px; height: 288px; width: 288px; border-radius: 999px; background: rgba(201,162,75,0.1); filter: blur(100px); animation: float 7s ease-in-out infinite; }
.final-cta-inner h2 { position: relative; margin: 24px auto 0; max-width: 640px; font-family: var(--font-display); font-weight: 500; font-size: 30px; line-height: 1.2; color: #fff; }
@media (min-width: 640px) { .final-cta-inner h2 { font-size: 46px; } }
.final-cta-inner h2 em { font-style: italic; background: linear-gradient(90deg, var(--gold-200), var(--gold-400), var(--gold-500)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.final-cta-inner p { position: relative; margin: 20px auto 0; max-width: 560px; font-size: 16px; color: #d4d4d8; }
.final-cta-buttons { position: relative; margin-top: 36px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
@media (min-width: 640px) { .final-cta-buttons { flex-direction: row; } }

/* ---------------- Footer ---------------- */
.site-footer { border-top: 1px solid rgba(255,255,255,0.06); background: var(--ink-950); padding-top: 64px; }
.footer-grid { display: grid; gap: 48px; padding-bottom: 56px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer-about p { margin-top: 20px; max-width: 320px; font-size: 14px; line-height: 1.65; color: #a1a1aa; }
.footer-social { margin-top: 24px; display: flex; gap: 12px; }
.footer-social a { display: flex; align-items: center; justify-content: center; height: 40px; width: 40px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.04); color: #a1a1aa; transition: all 0.3s ease; }
.footer-social a:hover { transform: translateY(-2px); border-color: rgba(201,162,75,0.4); color: var(--gold-300); }
.footer-col h3 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: #71717a; }
.footer-col ul { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.footer-col a { color: #a1a1aa; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--gold-300); }
.footer-col li.muted { color: #71717a; }
.footer-bottom { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 16px; border-top: 1px solid rgba(255,255,255,0.06); padding: 28px 0; font-size: 12px; color: #71717a; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-bottom .links { display: flex; gap: 24px; }
.footer-bottom a:hover { color: var(--gold-300); }

/* ---------------- Reveal animation ---------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------------- Buttons row ---------------- */
.btn-row { display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 640px) { .btn-row { flex-direction: row; align-items: center; } }

/* ---------------- Page header (inner pages) ---------------- */
.page-header { position: relative; overflow: hidden; padding: 160px 0 72px; background: var(--ink-950); border-bottom: 1px solid rgba(255,255,255,0.06); }
.page-header .glow { position: absolute; left: 50%; top: -20%; height: 380px; width: 640px; transform: translateX(-50%); border-radius: 999px; background: rgba(201,162,75,0.08); filter: blur(130px); }
.page-header .wrap { position: relative; text-align: center; }
.page-header h1 { margin-top: 20px; font-family: var(--font-display); font-size: 40px; font-weight: 500; letter-spacing: -0.02em; color: #fff; }
.page-header h1 em { font-style: italic; background: linear-gradient(90deg, var(--gold-300), var(--gold-400), var(--gold-500)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-header p { margin: 16px auto 0; max-width: 560px; font-size: 16px; line-height: 1.7; color: #9a9aa5; }
@media (min-width: 640px) { .page-header h1 { font-size: 56px; } }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: #71717a; }
.breadcrumb a { color: #a1a1aa; }
.breadcrumb a:hover { color: var(--gold-300); }

/* ---------------- Keyframes ---------------- */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes float-slow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes slow-zoom { from { transform: scale(1); } to { transform: scale(1.12); } }
@keyframes pulse-ring { 0% { transform: scale(1); opacity: 0.6; } 80%, 100% { transform: scale(1.7); opacity: 0; } }
@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

.developer-credit{
    text-align:center;
    margin-top:20px;
    font-size:14px;
    color:#888;
}

.developer-credit a{
    color:#af23f0;
    text-decoration:none;
    font-weight:600;
    transition:0.3s ease;
}

.developer-credit a:hover{
    color:#25eb3f;
    text-decoration:underline;
}
.hero-bannermain {
    width: 60%;
    margin: 0 auto;
    display: flex;
    flex-direction: column; /* Places text below image */
    align-items: center;
}

.hero-bannermain img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.area {
    margin-top: 12px;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
    animation: fadeUp 1.5s ease-in-out infinite alternate;
}

@keyframes fadeUp {
    from {
        opacity: 0.7;
        transform: translateY(0);
    }
    to {
        opacity: 1;
        transform: translateY(-4px);
    }
}