:root {
  --bg: #060716;
  --panel: #0b1222;
  --panel-2: #121c36;
  --text: #eef2ff;
  --muted: #a3b5d1;
  --gold: #e8b554;
  --gold-soft: rgba(232, 181, 84, 0.16);
  --cyan: #56c4ff;
  --green: #22c16f;
  --orange: #ff915f;
  --green-2: #4cbf95;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --surface: rgba(255,255,255,0.05);
  --surface-strong: rgba(255,255,255,0.1);
  --border: rgba(232, 181, 84, 0.18);
  --link: #cfd9f3;
  --link-hover: #ffffff;
  --hero-bg: #060716;
  --hero-gradient: linear-gradient(160deg, #060716 0%, #101a35 45%, #161f41 100%);
}

body.light-theme {
  --bg: #f8fafc;
  --panel: #ffffff;
  --panel-2: #eef2ff;
  --text: #111827;
  --muted: #55657c;
  --gold: #c78b1f;
  --gold-soft: rgba(199, 139, 31, 0.14);
  --cyan: #0f7ab8;
  --green: #137647;
  --orange: #d67a34;
  --green-2: #2e8f64;
  --shadow: 0 24px 64px rgba(15, 23, 42, 0.08);
  --surface: rgba(255,255,255,1);
  --surface-strong: rgba(226,232,240,0.9);
  --border: rgba(138,156,182,0.22);
  --link: #1f2937;
  --link-hover: #111827;
  --hero-bg: #eef2ff;
  --hero-gradient: linear-gradient(160deg, #e8f2ff 0%, #d2e4ff 50%, #b9d4ff 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Tahoma, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  direction: rtl;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font: inherit; }

.page-shell {
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(4,4,14,1) 0%, rgba(8,8,22,1) 100%);
}
.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6,6,16,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,175,55,0.12);
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(212,175,55,0.08);
  font-size: 0.88rem;
  color: var(--muted);
}
.topbar .contact-links,
.topbar .badges {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.topbar a, .topbar span { display: inline-flex; align-items: center; gap: 0.45rem; }
.topbar .divider { width: 1px; height: 0.9rem; background: rgba(255,255,255,0.12); }
.topbar .gold { color: var(--gold); }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.brand { display: flex; align-items: center; gap: 0.8rem; }
.brand-badge {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  font-weight: 900; color: white; background: linear-gradient(135deg, #0f0f20, var(--gold));
  border: 1px solid rgba(212,175,55,0.3);
}
.brand-text .title { font-size: 1rem; font-weight: 900; }
.brand-text .subtitle { font-size: 0.8rem; color: var(--gold); }
.nav-links { display: flex; gap: 0.4rem; align-items: center; }
.nav-links a {
  padding: 0.7rem 1rem; border-radius: 999px; color: #cbd5e1; font-size: 0.95rem;
  transition: 0.3s ease;
}
.nav-links a:hover { background: rgba(255,255,255,0.06); color: white; }
.header-actions { display: flex; gap: 0.7rem; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  padding: 0.8rem 1.15rem; border-radius: 999px; font-weight: 800; border: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: #1a1a2e; }
.btn-green { background: linear-gradient(135deg, #128C7E, var(--green)); color: white; box-shadow: 0 0 20px rgba(37,211,102,0.18); }
.menu-btn { display: none; background: transparent; border: 0; color: white; font-size: 1.4rem; }

.hero {
  position: relative;
  padding: 7rem 0 5rem;
  overflow: hidden;
  background: linear-gradient(160deg, #060716 0%, #0f1f3a 45%, #192347 100%);
}
.hero::before, .hero::after {
  content: "";
  position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none;
  opacity: 0.3;
}
.hero::before { width: 22rem; height: 22rem; background: radial-gradient(circle, var(--gold), transparent); top: 7rem; right: 18%; }
.hero::after { width: 16rem; height: 16rem; background: radial-gradient(circle, var(--cyan), transparent); bottom: 8rem; left: 12%; }
.hero-grid {
  position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(212,175,55,0.5) 1px, transparent 1px); background-size: 60px 60px; opacity: 0.15; pointer-events: none;
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 1000px; margin: 0 auto; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.7rem 1rem; border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.25); background: rgba(212,175,55,0.08); color: var(--gold); font-size: 0.84rem; font-weight: 800; margin-bottom: 1.2rem;
}
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.7rem); line-height: 1.1; margin: 0 0 1rem; font-weight: 900; }
.hero h1 .gradient { display: inline-block; background: linear-gradient(90deg, #b8960a, #d4af37, #f5d060, #d4af37, #b8960a); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: shimmer 3s linear infinite; }
.hero .lead { font-size: clamp(1.1rem, 2.2vw, 1.55rem); color: #d2d8e3; margin-bottom: 0.8rem; }
.hero .subtext { font-size: 1rem; color: var(--muted); max-width: 760px; margin: 0 auto 2rem; }
.hero .hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; margin-top: 1.4rem; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.65rem 0.9rem; border-radius: 999px; border: 1px solid rgba(212,175,55,0.25); background: rgba(212,175,55,0.07); color: #e8d48b; font-size: 0.8rem; font-weight: 700;
}
.page-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.5rem auto 0;
  max-width: 900px;
}
.page-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #e2e8f0;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}
.page-links a:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-1px);
}

.stats-section, .services-section, .why-section, .process-section, .reviews-section, .coverage-section, .final-cta, .footer {
  padding: 5rem 0;
}
.stats-section { background: #06060f; border-top: 1px solid rgba(212,175,55,0.08); border-bottom: 1px solid rgba(212,175,55,0.08); }
.grid-4, .grid-3, .grid-2 { display: grid; gap: 1rem; }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.stat-card, .service-card, .feature-card, .review-card, .step-card {
  border: 1px solid rgba(212,175,55,0.12); border-radius: var(--radius); padding: 1.4rem; background: rgba(255,255,255,0.03); box-shadow: var(--shadow);
}
.stat-card { text-align: center; }
.stat-card .value { font-size: 2rem; font-weight: 900; color: white; margin-bottom: 0.3rem; }
.stat-card .label { color: var(--muted); font-size: 0.93rem; }
.stat-card .icon { font-size: 1.7rem; color: var(--gold); margin-bottom: 0.7rem; }

.section-head { text-align: center; margin-bottom: 2rem; }
.section-head .eyebrow { display: inline-block; padding: 0.55rem 0.9rem; border-radius: 999px; border: 1px solid rgba(212,175,55,0.15); background: rgba(212,175,55,0.08); color: var(--gold); font-weight: 800; font-size: 0.8rem; margin-bottom: 0.9rem; }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 0 0 0.6rem; color: white; }
.section-head p { color: var(--muted); margin: 0; }

.about-section { padding: 5rem 0; background: #06060f; }
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 1.6rem; align-items: center; }
.about-copy h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); color: white; margin: 0 0 1rem; }
.about-copy p { color: var(--muted); margin: 0 0 1.2rem; }
.check-list { display: grid; gap: 0.7rem; margin-bottom: 1.2rem; }
.check-item { display: flex; align-items: center; gap: 0.45rem; color: #dbe3ef; font-weight: 600; }
.faq-section { padding: 5rem 0; background: rgba(255,255,255,0.03); }
.faq-grid { display: grid; gap: 1rem; }
.faq-item { border: 1px solid rgba(212,175,55,0.15); border-radius: 24px; overflow: hidden; background: rgba(255,255,255,0.04); }
.faq-question { width: 100%; text-align: right; background: rgba(255,255,255,0.05); padding: 1.2rem 1.4rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: 1rem; font-weight: 700; color: white; border: none; cursor: pointer; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; color: #cbd5e1; padding: 0 1.4rem; }
.faq-item.open .faq-answer { max-height: 420px; padding: 1rem 1.4rem 1.4rem; }
.faq-chevron { width: 30px; height: 30px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; background: rgba(212,175,55,0.16); color: #d4af37; transition: transform 0.3s ease; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.about-media img, .service-thumb, .gallery-card img { width: 100%; height: 240px; object-fit: cover; border-radius: 20px; border: 1px solid rgba(212,175,55,0.18); box-shadow: var(--shadow); }
.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.gallery-card { position: relative; overflow: hidden; border-radius: 24px; border: 1px solid rgba(212,175,55,0.16); background: rgba(255,255,255,0.03); box-shadow: var(--shadow); }
.gallery-card img { height: 270px; border-radius: 0; border: 0; box-shadow: none; }
.gallery-card span { position: absolute; inset: auto 0 0 0; padding: 0.9rem 1rem; background: linear-gradient(180deg, transparent, rgba(4,4,14,0.92)); color: white; font-weight: 700; }

.services-section { background: #07070f; }
.service-card { position: relative; overflow: hidden; transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; }
.service-card:hover { transform: translateY(-3px); border-color: rgba(212,175,55,0.35); }
.service-card .topline { display: flex; justify-content: space-between; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.service-icon { width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center; font-size: 1.45rem; }
.service-card h3 { margin: 0 0 0.5rem; font-size: 1.2rem; color: white; }
.service-card p { color: var(--muted); margin: 0 0 1rem; font-size: 0.95rem; }
.service-card ul { list-style: none; padding: 0; margin: 0 0 1.2rem; display: grid; gap: 0.45rem; }
.service-card li { display: flex; gap: 0.45rem; align-items: center; color: #cbd5e1; font-size: 0.9rem; }
.service-card .badge { padding: 0.45rem 0.7rem; border-radius: 999px; font-size: 0.74rem; font-weight: 800; }
.service-card .footer-line { display: flex; justify-content: space-between; align-items: center; font-weight: 800; color: var(--gold); }
.service-card .footer-line span:last-child { color: white; }
.service-card .glow { position: absolute; inset: auto -2rem -2rem auto; width: 9rem; height: 9rem; border-radius: 50%; filter: blur(44px); opacity: 0.22; pointer-events: none; }

.why-section { background: #050510; }
.feature-card { text-align: center; }
.feature-card .icon { width: 56px; height: 56px; margin: 0 auto 1rem; border-radius: 18px; display: grid; place-items: center; font-size: 1.35rem; background: rgba(212,175,55,0.1); color: var(--gold); }
.feature-card h3 { font-size: 1.08rem; color: white; margin: 0 0 0.5rem; }
.feature-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }

.process-section { background: #080816; }
.step-card { position: relative; text-align: center; }
.step-card .step-number { font-size: 0.8rem; font-weight: 900; color: var(--gold); margin-bottom: 0.4rem; }
.step-card h3 { margin: 0 0 0.4rem; color: white; }
.step-card p { color: var(--muted); margin: 0; font-size: 0.92rem; }
.step-icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 18px; margin: 0 auto 0.9rem; font-size: 1.35rem; }

.reviews-section { background: #060610; }
.review-card { height: 100%; }
.review-card .stars { color: var(--gold); margin-bottom: 0.8rem; }
.review-card .text { color: #cbd5e1; font-size: 0.95rem; margin-bottom: 1rem; }
.review-card .person { display: flex; align-items: center; gap: 0.7rem; }
.review-card .avatar { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; font-weight: 900; color: white; }
.review-card .person strong { display: block; color: white; }
.review-card .person span { color: var(--muted); font-size: 0.84rem; }

.coverage-section { background: #04040c; }
.coverage-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; margin-top: 1.5rem; }
.tag { display: inline-block; padding: 0.55rem 0.8rem; border-radius: 999px; border: 1px solid rgba(212,175,55,0.2); color: var(--gold); background: rgba(212,175,55,0.05); font-size: 0.84rem; }

.final-cta { background: linear-gradient(160deg, #0d1328, #152845); text-align: center; }
.final-box {
  max-width: 760px; margin: 0 auto; padding: 2.4rem; border-radius: 28px; border: 1px solid rgba(212,175,55,0.16); background: rgba(255,255,255,0.03); box-shadow: var(--shadow);
}
.final-box .logo { width: 82px; height: 82px; margin: 0 auto 1rem; border-radius: 24px; display: grid; place-items: center; font-size: 1.55rem; font-weight: 900; color: white; background: linear-gradient(135deg, #0f0f20, var(--gold)); border: 1px solid rgba(212,175,55,0.3); }

.final-box h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); margin: 0 0 1rem; color: white; }
.final-box p { color: var(--muted); margin: 0 0 1.5rem; }
.final-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 1.2rem; }
.contact-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.2rem; color: var(--muted); font-size: 0.95rem; }

.footer { background: #020208; border-top: 1px solid rgba(212,175,55,0.08); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 1.2rem; margin-bottom: 1.25rem; }
.footer h3 { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.9rem; }
.footer p, .footer li, .footer a { color: #8b95a8; font-size: 0.88rem; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.footer .icon-row { display: flex; gap: 0.7rem; margin-top: 0.8rem; }
.footer .icon-row a { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: rgba(37,211,102,0.12); border: 1px solid rgba(37,211,102,0.2); }
.footer .footer-bottom { border-top: 1px solid rgba(212,175,55,0.08); padding-top: 1rem; text-align: center; color: #6b7280; font-size: 0.8rem; }

.scroll-top, .floating-cta-toggle, .floating-cta-menu a {
  border: none;
  box-shadow: var(--shadow);
}

.scroll-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--panel);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 999;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-cta {
  position: fixed;
  right: 1.25rem;
  bottom: 5.5rem;
  display: grid;
  gap: 0.65rem;
  z-index: 999;
}

.floating-cta-menu {
  display: grid;
  gap: 0.65rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.floating-cta.open .floating-cta-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-cta-menu a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.14);
  background: var(--panel);
}

.floating-cta-menu a.phone {
  background: linear-gradient(135deg, #111827, #1f2937);
}

.floating-cta-menu a.whatsapp {
  background: linear-gradient(135deg, #06d755, #25d366);
}

.floating-cta-toggle {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #25d366);
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.floating-cta-toggle:hover {
  transform: translateY(-2px);
}

body.light-theme .scroll-top,
body.light-theme .floating-cta-menu a,
body.light-theme .floating-cta-toggle {
  border-color: rgba(15,23,42,0.1);
}

body.light-theme .floating-cta-menu a.phone {
  background: linear-gradient(135deg, #334155, #475569);
}

body.light-theme .floating-cta-menu a.whatsapp {
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

body.light-theme .hero {
  background: var(--hero-gradient) !important;
}

.scroll-top {
  position: fixed; left: 1.2rem; bottom: 1.2rem; width: 47px; height: 47px; border-radius: 50%;
  background: rgba(212,175,55,0.95); color: #1a1a2e; font-size: 1.3rem; font-weight: 900;
  display: grid; place-items: center; opacity: 0; pointer-events: none; transform: translateY(8px); transition: 0.3s ease;
}
.scroll-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.floating-cta {
  position: fixed; left: 1.2rem; bottom: 4.8rem; z-index: 130;
}
.floating-cta-toggle {
  width: 58px; height: 58px; border-radius: 50%; background: linear-gradient(135deg, #128C7E, var(--green)); color: white; font-size: 1.55rem; display: grid; place-items: center; box-shadow: 0 10px 35px rgba(37,211,102,0.25);
}
.floating-cta-menu {
  position: absolute; left: 0; bottom: 76px; display: flex; flex-direction: column; gap: 0.65rem; opacity: 0; transform: translateY(10px); pointer-events: none; transition: 0.25s ease;
}
.floating-cta.open .floating-cta-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
.floating-cta-menu a {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; color: white; font-size: 1.1rem; font-weight: 900;
}
.floating-cta-menu a.phone { background: linear-gradient(135deg, #1a1a2e, #2d2d5a); }
.floating-cta-menu a.whatsapp { background: linear-gradient(135deg, #128C7E, var(--green)); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes shimmer { 0%{background-position:0% center} 100%{background-position:200% center} }

@media (max-width: 1040px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .topbar { display: none; }
  .nav-links, .header-actions .btn-green { display: none; }
  .menu-btn { display: inline-flex; }
  .mobile-nav {
    display: none; position: absolute; top: 100%; right: 0; left: 0; background: rgba(6,6,16,0.98); border-bottom: 1px solid rgba(212,175,55,0.12); padding: 0.8rem 1rem 1rem; flex-direction: column; gap: 0.6rem;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 5.5rem; }
  .hero .hero-actions, .final-actions { flex-direction: column; align-items: stretch; }
  .contact-list { flex-direction: column; align-items: center; }
  .floating-cta { left: 0.8rem; bottom: 4.2rem; }
  .scroll-top { left: 0.8rem; bottom: 0.8rem; }
}
