:root {
  --bg: #030712;
  --bg-2: #050816;
  --panel: rgba(15, 23, 42, 0.78);
  --panel-strong: rgba(15, 23, 42, 0.96);
  --line: rgba(148, 163, 184, 0.2);
  --line-strong: rgba(249, 115, 22, 0.42);
  --text: #f8fafc;
  --muted: #a8b3c7;
  --orange: #f97316;
  --amber: #fbbf24;
  --red: #ef4444;
  --green: #22c55e;
  --radius: 24px;
  --radius-sm: 16px;
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(249, 115, 22, 0.16), transparent 32%),
    radial-gradient(circle at 85% 5%, rgba(239, 68, 68, 0.16), transparent 35%),
    radial-gradient(circle at 55% 90%, rgba(251, 191, 36, 0.12), transparent 32%),
    linear-gradient(145deg, #020617, #050816 45%, #080b14);
}

.glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.35;
  animation: floatGlow 10s ease-in-out infinite;
}

.glow-one {
  left: -120px;
  top: 120px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.55), transparent 67%);
}

.glow-two {
  right: -130px;
  bottom: 90px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.5), transparent 68%);
  animation-delay: -4s;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

@keyframes floatGlow {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(30px, -22px, 0) scale(1.08); }
}

.container {
  width: min(1160px, calc(100% - 36px));
  margin-inline: auto;
}

.section-pad {
  padding: 96px 0;
}

.top-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  min-height: 38px;
  padding: 8px 18px;
  color: #fde68a;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(67, 20, 7, 0.96), rgba(15, 23, 42, 0.98));
  border-bottom: 1px solid rgba(251, 191, 36, 0.22);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.top-strip a {
  color: #fff7ed;
  transition: color 0.2s ease;
}

.top-strip a:hover {
  color: var(--amber);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 14px 0;
  backdrop-filter: blur(18px);
  background: rgba(3, 7, 18, 0.76);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.nav-wrap {
  width: min(1160px, calc(100% - 36px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  overflow: hidden;
  background: #111827;
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.35);
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}

.brand-name,
.brand-line {
  display: block;
}

.brand-name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-line {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #dbe5f5;
  font-size: 14px;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.nav-links .nav-cta {
  color: #111827;
  font-weight: 800;
  background: linear-gradient(135deg, var(--amber), var(--orange), var(--red));
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.26);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.9);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 999px;
  transition: 0.2s ease;
}

.hero {
  padding-top: 92px;
  min-height: calc(100vh - 112px);
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 64px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px;
  color: #fed7aa;
  border: 1px solid rgba(249, 115, 22, 0.28);
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.08);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.9);
}

.hero h1,
.section-head h2,
.about-copy h2,
.contact-copy h2 {
  margin-top: 20px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.hero h1 {
  max-width: 810px;
}

.hero-text {
  max-width: 680px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  transition: 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #111827;
  background: linear-gradient(135deg, #fef3c7, var(--amber), var(--orange), var(--red));
  box-shadow: 0 20px 50px rgba(249, 115, 22, 0.28);
}

.btn-outline {
  color: #fff;
  background: rgba(15, 23, 42, 0.75);
  border-color: rgba(148, 163, 184, 0.3);
}

.btn-outline:hover {
  border-color: rgba(249, 115, 22, 0.55);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-row span,
.service-list span {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.62);
  color: #dbe5f5;
  font-size: 13px;
}

.hero-panel {
  position: relative;
  min-height: 540px;
}

.pulse-orbit {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, transparent, rgba(249, 115, 22, 0.5), transparent, rgba(239, 68, 68, 0.45), transparent);
  filter: blur(0.3px);
  animation: spin 12s linear infinite;
  opacity: 0.75;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero-photo-card {
  position: absolute;
  inset: 54px 28px 38px 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  overflow: hidden;
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(3, 7, 18, 0.82));
}

.photo-badge {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  padding: 16px;
  border-radius: 20px;
  background: rgba(3, 7, 18, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.photo-badge strong,
.photo-badge span {
  display: block;
}

.photo-badge strong {
  font-size: 18px;
}

.photo-badge span {
  margin-top: 4px;
  color: var(--muted);
}

.mini-card {
  position: absolute;
  z-index: 3;
  display: flex;
  gap: 12px;
  align-items: center;
  width: min(310px, 88%);
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.mini-one {
  left: -10px;
  top: 108px;
}

.mini-two {
  right: -8px;
  bottom: 70px;
}

.mini-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  color: #111827;
  font-weight: 900;
}

.mini-card strong,
.mini-card small {
  display: block;
}

.mini-card small {
  margin-top: 4px;
  color: var(--muted);
}

.stats-strip {
  padding: 26px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.56);
  backdrop-filter: blur(18px);
}

.stats-grid div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  font-size: 20px;
}

.stats-grid span {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.55;
}

.section-head {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-head h2,
.about-copy h2,
.contact-copy h2 {
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.02;
}

.section-head p:not(.section-kicker),
.about-copy > p,
.contact-copy > p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 284px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 0, rgba(249, 115, 22, 0.12), transparent 36%),
    rgba(15, 23, 42, 0.7);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: 0 25px 70px rgba(249, 115, 22, 0.12);
}

.service-card h3 {
  margin-top: 48px;
  font-size: 23px;
  line-height: 1.15;
}

.service-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.service-card a {
  display: inline-flex;
  margin-top: 18px;
  color: #fed7aa;
  font-weight: 800;
}

.service-num {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  color: #111827;
  background: linear-gradient(135deg, #fde68a, var(--orange));
  font-weight: 900;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.dark-section {
  position: relative;
  background: rgba(2, 6, 23, 0.42);
  border-block: 1px solid rgba(148, 163, 184, 0.1);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  gap: 48px;
  align-items: start;
}

.about-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.about-points div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.62);
}

.about-points strong,
.about-points span {
  display: block;
}

.about-points span {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.6;
}

.process-card,
.quote-form {
  padding: 28px;
  border: 1px solid rgba(249, 115, 22, 0.24);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.15), transparent 38%),
    rgba(15, 23, 42, 0.82);
  box-shadow: var(--shadow);
}

.process-card h3 {
  font-size: 28px;
}

.process-card ol {
  display: grid;
  gap: 18px;
  margin: 24px 0;
  list-style: none;
}

.process-card li {
  display: flex;
  gap: 14px;
}

.process-card li span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: #111827;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  font-weight: 900;
}

.process-card p {
  color: var(--muted);
  line-height: 1.65;
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-btn {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #dbe5f5;
  background: rgba(15, 23, 42, 0.7);
  transition: 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  color: #111827;
  background: linear-gradient(135deg, #fde68a, var(--orange));
  border-color: transparent;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  height: 250px;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: #111827;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.gallery-item.hide {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.38s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 9px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(3, 7, 18, 0.72);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 800;
}

.quote-section {
  background:
    radial-gradient(circle at 85% 15%, rgba(249, 115, 22, 0.14), transparent 34%),
    rgba(15, 23, 42, 0.38);
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-cards a,
.contact-cards div {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.62);
}

.contact-cards span,
.contact-cards strong {
  display: block;
}

.contact-cards span {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-cards strong {
  margin-top: 6px;
  font-size: 19px;
}

.quote-form {
  display: grid;
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: #dbe5f5;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 16px;
  padding: 14px 15px;
  color: #fff;
  background: rgba(2, 6, 23, 0.68);
  outline: none;
  transition: 0.2s ease;
}

.quote-form select option {
  color: #111827;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(249, 115, 22, 0.75);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.form-note {
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 13px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.62);
  overflow: hidden;
}

.faq-list summary {
  padding: 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
}

.faq-list p {
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  padding: 60px 0 26px;
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 900;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  object-fit: contain;
  padding: 4px;
  background: #111827;
}

.site-footer p {
  margin-top: 14px;
  max-width: 430px;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: #fed7aa;
}

.site-footer a:not(.footer-brand) {
  display: block;
  margin-top: 9px;
  color: var(--muted);
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  width: min(1160px, calc(100% - 36px));
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  color: #06130a;
  background: linear-gradient(135deg, #86efac, #22c55e);
  box-shadow: 0 20px 55px rgba(34, 197, 94, 0.28);
  font-weight: 900;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: min(100%, 1050px);
  max-height: 78vh;
  border-radius: 22px;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.72);
}

.lightbox p {
  margin-top: 14px;
  color: #fff;
  font-weight: 850;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(15, 23, 42, 0.78);
  font-size: 34px;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .top-strip {
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 108px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(3, 7, 18, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 14px 16px;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 68px;
  }

  .hero-panel {
    min-height: 620px;
  }

  .stats-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .container,
  .nav-wrap,
  .footer-bottom {
    width: min(100% - 28px, 1160px);
  }

  .section-pad {
    padding: 72px 0;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .brand-name {
    font-size: 14px;
  }

  .brand-line {
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(39px, 13vw, 56px);
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-panel {
    min-height: 480px;
  }

  .hero-photo-card {
    inset: 34px 0 42px;
    border-radius: 26px;
  }

  .mini-card {
    width: calc(100% - 26px);
  }

  .mini-one {
    top: 0;
    left: 13px;
  }

  .mini-two {
    right: 13px;
    bottom: 0;
  }

  .stats-grid,
  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 280px;
  }

  .contact-cards strong {
    font-size: 16px;
  }

  .floating-whatsapp {
    left: 18px;
    right: 18px;
  }
}
