:root {
  --navy-deep: #060e24;
  --navy-dark: #0a1628;
  --navy-mid: #0f2042;
  --navy-card: #0d1e3e;
  --gold: #c9a227;
  --gold-light: #e8b93a;
  --gold-soft: rgba(201, 162, 39, 0.12);
  --gold-glow: rgba(201, 162, 39, 0.25);
  --text-primary: #f0f2fa;
  --text-muted: #8a9bc0;
  --text-dim: #5a6e9a;
  --shadow-gold: 0 8px 32px rgba(201, 162, 39, 0.22);
  --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 16px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-padding-top: 80px; scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--navy-dark);
  color: var(--text-primary);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin: 0 0 10px; }

.container { width: min(1200px, 92vw); margin: 0 auto; }
.section { padding: 96px 0; position: relative; overflow: hidden; scroll-margin-top: 80px; }
.narrow { max-width: 860px; }

h1 { font-size: clamp(2.4rem, 4vw, 3.6rem); letter-spacing: -0.03em; line-height: 1.15; color: #fff; }
h2 { font-size: clamp(1.8rem, 2.8vw, 2.4rem); letter-spacing: -0.02em; color: #fff; }
h3 { font-size: 1.05rem; color: #fff; }
.lead { font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; }
.muted { color: var(--text-muted); }

.section h2 { display: inline-block; position: relative; padding-bottom: 10px; margin-bottom: 8px; }
.section h2::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  height: 3px; width: 55%;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 999px;
}

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 15px; border-radius: 999px;
  background: var(--gold-soft);
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: var(--gold-light);
  font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.8px; text-transform: uppercase;
  margin-bottom: 18px;
}

/* ── AMBIENT BACKGROUND ── */
.ambient {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 45% 45% at 85% 10%, rgba(201,162,39,0.07), transparent),
    radial-gradient(ellipse 55% 55% at 10% 85%, rgba(22,32,80,0.5), transparent);
  animation: floatAmbient 22s ease-in-out infinite alternate;
}

/* ── HEADER ── */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6, 14, 36, 0.94);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: clamp(52px, 7vw, 68px); width: auto; display: block; }

.nav-links { display: flex; gap: 2px; }
.nav-links a {
  padding: 9px 14px; border-radius: 8px;
  font-weight: 600; font-size: 0.93rem; color: var(--text-primary);
  transition: background .18s, color .18s;
}
.nav-links a:hover { background: var(--gold-soft); color: var(--gold-light); }

.cta-top .call-now {
  background: linear-gradient(135deg, var(--gold-light), #a87d10);
  color: var(--navy-deep);
  padding: 10px 18px; border-radius: 10px;
  font-weight: 800; font-size: 0.9rem;
  white-space: nowrap;
  transition: transform .18s, box-shadow .18s;
  box-shadow: var(--shadow-gold);
}
.cta-top .call-now:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(201,162,39,0.38); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  cursor: pointer; padding: 8px; border: none; background: none;
  border-radius: 8px; transition: background .18s; min-width: 40px; min-height: 40px;
}
.hamburger:hover { background: var(--gold-soft); }
.hamburger span { width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all .3s ease; display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero { padding-top: 72px; padding-bottom: 80px; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 55% 55% at 75% 50%, rgba(201,162,39,0.07), transparent),
    radial-gradient(ellipse 70% 60% at 15% 80%, rgba(15,32,66,0.7), transparent),
    linear-gradient(155deg, #060e24 0%, #0a1628 55%, #0e1e3a 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; min-height: 72vh;
}
.hero-copy { max-width: 580px; }
.hero-copy h1 { margin: 0 0 18px; }
.hero-copy h1 em { font-style: normal; color: var(--gold-light); }
.hero-lead { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 28px; line-height: 1.7; }
.hero-locations {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px;
}
.hero-locations span {
  padding: 5px 12px; border-radius: 999px;
  background: rgba(201,162,39,0.07); border: 1px solid rgba(201,162,39,0.18);
  color: var(--text-muted); font-size: 0.82rem;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; border-radius: 12px;
  font-weight: 700; font-size: 0.97rem;
  cursor: pointer; border: none;
  transition: transform .18s, box-shadow .18s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep); box-shadow: var(--shadow-gold);
}
.btn-primary:hover { box-shadow: 0 16px 44px rgba(201,162,39,0.42); }
.btn-outline {
  background: transparent;
  border: 1px solid rgba(201,162,39,0.35);
  color: var(--gold-light);
}
.btn-outline:hover { background: var(--gold-soft); border-color: var(--gold); }
.btn-secondary {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-primary);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); }
.whatsapp { background: #25d366; color: #fff; }
.whatsapp:hover { box-shadow: 0 12px 36px rgba(37,211,102,0.4); }

/* Hero media */
.hero-media { position: relative; }
.glass-frame {
  position: relative; border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(201,162,39,0.22);
  box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,162,39,0.08);
}
.glass-frame img { width: 100%; height: 480px; object-fit: cover; display: block; }
.glass-frame::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6,14,36,0.55) 100%);
  z-index: 1; pointer-events: none;
}
.hero-badge {
  position: absolute; bottom: 20px; left: 20px; right: 20px; z-index: 2;
  background: rgba(6,14,36,0.88); backdrop-filter: blur(14px);
  border: 1px solid rgba(201,162,39,0.22); border-radius: 14px; padding: 16px 18px;
  display: flex; align-items: center; gap: 14px;
}
.hero-badge-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: grid; place-items: center; flex-shrink: 0; font-size: 22px;
}
.hero-badge strong { color: #fff; display: block; font-size: 0.9rem; margin-bottom: 2px; }
.hero-badge span { color: var(--text-muted); font-size: 0.8rem; }

/* ── STATS BAR ── */
.stats-bar {
  background: linear-gradient(135deg, #0d1e3e, #0a1628);
  border-top: 1px solid rgba(201,162,39,0.12);
  border-bottom: 1px solid rgba(201,162,39,0.12);
  padding: 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  text-align: center; padding: 40px 20px;
  border-right: 1px solid rgba(201,162,39,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: 8px;
  display: block;
}
.stat-label { color: var(--text-muted); font-size: 0.9rem; font-weight: 600; }

/* ── CARDS ── */
.card {
  background: rgba(13, 30, 62, 0.75);
  border: 1px solid rgba(201,162,39,0.1);
  border-radius: var(--radius); backdrop-filter: blur(12px);
  position: relative; overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-6px); border-color: rgba(201,162,39,0.28); box-shadow: var(--shadow-dark); }
.card::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201,162,39,0.1));
  opacity: 0; transition: opacity .25s;
}
.card:hover::before { opacity: 1; }

/* ── ABOUT ── */
.about-wrap {
  background: linear-gradient(135deg, rgba(201,162,39,0.05), transparent 55%),
              linear-gradient(225deg, rgba(15,32,66,0.6), transparent 55%);
  border: 1px solid rgba(201,162,39,0.12);
  border-radius: 24px; padding: 56px;
}
.about-wrap p { margin-bottom: 14px; }
.about-wrap p:last-child { margin-bottom: 0; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; margin-top: 32px; }
.service-card .media img { height: 180px; width: 100%; object-fit: cover; display: block; }
.service-card .body { padding: 20px; }
.service-card .body h3 { margin-bottom: 8px; }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 32px; }
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer;
  border: 1px solid rgba(201,162,39,0.1);
  transition: border-color .25s;
}
.gallery-item:hover { border-color: rgba(201,162,39,0.3); }
.gallery-item img { height: 210px; width: 100%; object-fit: cover; transition: transform .4s ease; display: block; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-caption {
  position: absolute; inset: auto 0 0 0; padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(6,14,36,0.9));
  color: #fff; font-weight: 600; font-size: 0.88rem;
}

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 32px; }
.why-card { padding: 26px; }
.why-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(201,162,39,0.2), rgba(201,162,39,0.05));
  border: 1px solid rgba(201,162,39,0.25);
  display: grid; place-items: center; margin-bottom: 16px; font-size: 22px;
}
.why-card h3 { color: var(--gold-light); margin-bottom: 8px; }

/* ── PROCESS ── */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 32px; }
.step { padding: 26px; }
.step-number {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep); display: grid; place-items: center;
  font-weight: 900; font-size: 1.2rem; margin-bottom: 16px;
}

/* ── SERVICE AREA ── */
.service-area-card {
  background: linear-gradient(135deg, rgba(201,162,39,0.06), rgba(15,32,66,0.5));
  border: 1px solid rgba(201,162,39,0.18); border-radius: 22px;
  padding: 48px; text-align: center;
}
.service-area-card p { color: var(--text-muted); margin-top: 12px; margin-bottom: 24px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.area-tag {
  padding: 8px 18px; border-radius: 999px;
  background: rgba(201,162,39,0.08); border: 1px solid rgba(201,162,39,0.2);
  color: var(--gold-light); font-weight: 600; font-size: 0.88rem;
  transition: background .18s;
}
.area-tag:hover { background: rgba(201,162,39,0.16); }

/* ── CLIENTS ── */
.clients-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-top: 32px; }
.client-card { padding: 24px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.client-logo-wrap {
  width: 140px; height: 100px; display: grid; place-items: center;
  padding: 14px; border-radius: 12px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(201,162,39,0.1);
}
.client-logo { max-width: 100%; max-height: 100%; object-fit: contain; }
.client-badge {
  padding: 4px 12px; border-radius: 999px;
  background: var(--gold-soft); border: 1px solid rgba(201,162,39,0.25);
  color: var(--gold-light); font-weight: 700; font-size: 0.8rem;
}

/* ── TESTIMONIALS ── */
.testimonials-wrap {
  background: rgba(13,30,62,0.5); border: 1px solid rgba(201,162,39,0.1);
  border-radius: 24px; padding: 48px;
}
.testimonials-wrap > h2 { margin-bottom: 8px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 24px; }
.testimonial-card { padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.quote-mark { font-size: 3rem; line-height: 0.8; color: var(--gold); font-weight: 900; opacity: 0.8; }
.testimonial-content { color: var(--text-primary); line-height: 1.65; font-size: 0.95rem; }
.testimonial-author { margin-top: auto; padding-top: 12px; border-top: 1px solid rgba(201,162,39,0.1); }
.testimonial-author strong { color: var(--gold-light); display: block; margin-bottom: 2px; }
.testimonial-role { color: var(--text-muted); font-size: 0.86rem; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h2 { margin-bottom: 12px; }
.contact-info .lead { margin-bottom: 0; }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0; }
.contact-detail {
  background: rgba(13,30,62,0.6); border: 1px solid rgba(201,162,39,0.12);
  border-radius: 14px; padding: 20px 22px;
}
.contact-detail p { margin: 6px 0; color: var(--text-muted); }
.contact-detail a { color: var(--gold-light); font-weight: 700; }
.contact-card { padding: 36px; }
.contact-card h3 { margin-bottom: 20px; font-size: 1.25rem; }
.process-mini { display: flex; flex-direction: column; gap: 12px; }
.process-step-mini {
  display: flex; align-items: center; gap: 14px;
  padding: 14px; border-radius: 12px;
  background: rgba(201,162,39,0.04); border: 1px solid rgba(201,162,39,0.1);
}
.step-dot {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep); display: grid; place-items: center;
  font-weight: 900; font-size: 0.88rem;
}
.step-dot-text { color: var(--text-primary); font-size: 0.9rem; font-weight: 600; }
.tag {
  display: inline-block; padding: 5px 12px; border-radius: 999px;
  background: var(--gold-soft); color: var(--gold-light);
  font-weight: 700; font-size: 0.82rem;
  border: 1px solid rgba(201,162,39,0.2);
}

/* ── FOOTER ── */
footer {
  background: #060e24;
  border-top: 1px solid rgba(201,162,39,0.12);
  padding: 60px 0 20px; position: relative; overflow: hidden;
}
footer::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 40% at 15% 0%, rgba(201,162,39,0.05), transparent),
    radial-gradient(ellipse 40% 50% at 85% 100%, rgba(22,32,80,0.4), transparent);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px; align-items: start; position: relative; z-index: 1;
}
footer a { color: var(--text-muted); transition: color .18s; }
footer a:hover { color: var(--gold-light); }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand .brand-logo {
  height: 62px; background: #fff; border-radius: 12px;
  padding: 8px 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.3); width: fit-content;
}
.footer-title { color: #fff; font-weight: 800; font-size: 1rem; margin-bottom: 4px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { color: #fff; font-size: 0.92rem; letter-spacing: 0.2px; margin-bottom: 4px; }
.footer-col span { color: var(--text-muted); font-size: 0.88rem; }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(201,162,39,0.08); border: 1px solid rgba(201,162,39,0.18);
  display: grid; place-items: center; color: var(--gold-light);
  transition: background .18s, transform .18s;
}
.social-icon:hover { background: rgba(201,162,39,0.2); transform: translateY(-2px); color: var(--gold-light); }
.social-icon svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom {
  text-align: center; margin-top: 48px; padding-top: 20px;
  border-top: 1px solid rgba(201,162,39,0.08);
  color: var(--text-dim); font-size: 0.88rem; position: relative; z-index: 1;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
  transition: transform .22s, box-shadow .22s;
  animation: pulse-wa 3.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 14px 42px rgba(37,211,102,0.55); animation: none; }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ── FADE-UP SCROLL ANIMATION ── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .08s; }
.fade-up:nth-child(3) { transition-delay: .16s; }
.fade-up:nth-child(4) { transition-delay: .24s; }
.fade-up:nth-child(5) { transition-delay: .32s; }
.fade-up:nth-child(6) { transition-delay: .40s; }

/* ── KEYFRAMES ── */
@keyframes floatAmbient {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 8px 44px rgba(37,211,102,0.65); }
}

/* ── MOBILE ── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; min-height: auto; }
  .hero-media { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-wrap { padding: 36px 28px; }
}
@media (max-width: 720px) {
  .hamburger { display: flex; }
  .nav { position: relative; flex-wrap: wrap; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: -4vw; right: -4vw;
    background: rgba(6,14,36,0.98); backdrop-filter: blur(20px);
    flex-direction: column; padding: 12px 16px 20px;
    border-bottom: 1px solid rgba(201,162,39,0.15); gap: 2px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 16px; border-radius: 10px; font-size: 1rem; }
  .btn { width: 100%; text-align: center; justify-content: center; }
  .hero-buttons { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 64px 0; }
  .about-wrap { padding: 28px 20px; }
  .testimonials-wrap { padding: 28px 20px; }
  .contact-actions { flex-direction: column; }
}
