:root {
  --blue: #007aff;
  --blue-dark: #0066d6;
  --black: #000000;
  --charcoal: #111111;
  --panel: #1a1a1a;
  --card: #242424;
  --muted: #9b9b9b;
  --text: #1d1d1b;
  --white: #ffffff;
  --radius: 10px;
  --max: 1200px;
  --display: "Orbitron", "Rajdhani", system-ui, sans-serif;
  --body: "Poppins", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  color: #ddd;
  background: var(--black);
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.display {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Top bar */
.topbar {
  background: #0a0a0a;
  border-bottom: 1px solid #1f1f1f;
  font-size: 0.85rem;
  color: #cfcfcf;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 0;
  flex-wrap: wrap;
}

.topbar-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.topbar a:hover {
  color: var(--blue);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 18, 18, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #222;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  line-height: 1.05;
}

.logo-bars {
  display: grid;
  gap: 4px;
  width: 28px;
}

.logo-bars i {
  display: block;
  height: 3px;
  border-radius: 2px;
}

.logo-bars i:nth-child(1) {
  background: var(--blue);
  width: 100%;
}
.logo-bars i:nth-child(2) {
  background: #fff;
  width: 78%;
}
.logo-bars i:nth-child(3) {
  background: var(--blue);
  width: 56%;
}

.logo-text strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--white);
}

.logo-text span {
  display: block;
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--blue);
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: var(--blue);
  color: var(--white);
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.8rem 1.25rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.btn-dark {
  background: #1a1a1a;
}

.btn-dark:hover {
  background: #000;
}

.btn-ghost {
  background: #2a2a2a;
  color: #ddd;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid #444;
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.72)),
    url("https://images.unsplash.com/photo-1618843479313-40f8afb4b4d8?auto=format&fit=crop&w=1800&q=80")
      center / cover;
  color: var(--white);
  padding: 5rem 1rem;
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 5.5vw, 3.6rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.15;
  max-width: 16ch;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
}

/* CTA strip */
.cta-strip {
  background: var(--blue);
  color: var(--white);
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  flex-wrap: wrap;
}

.cta-strip p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Trust stats */
.trust {
  background: var(--charcoal);
  border-bottom: 1px solid #1f1f1f;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 2.25rem 0;
  text-align: center;
}

.trust-item {
  display: grid;
  gap: 0.55rem;
  justify-items: center;
}

.trust-icon {
  width: 52px;
  height: 52px;
  color: var(--blue);
}

.trust-item p {
  margin: 0;
  font-size: 0.92rem;
  color: #ddd;
}

.stars {
  color: var(--blue);
  letter-spacing: 0.12em;
  font-size: 1.1rem;
}

/* About split */
.about-split {
  background: var(--black);
  padding: 4.5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-photo {
  border-radius: 4px;
  overflow: hidden;
  min-height: 420px;
  background:
    linear-gradient(160deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.35)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1100&q=80")
      center / cover;
}

.about-copy h2 {
  margin: 0 0 1.1rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: 0.08em;
  color: var(--white);
}

.about-copy p {
  color: #a8a8a8;
  margin: 0 0 1rem;
}

/* Services */
.services {
  background: var(--panel);
  padding: 4.5rem 0;
}

.section-title {
  margin: 0 0 2.25rem;
  text-align: center;
  font-family: var(--display);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card {
  background: var(--card);
  border-radius: 8px;
  padding: 1.75rem 1.25rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
  border: 1px solid #2e2e2e;
}

.service-card svg {
  width: 48px;
  height: 48px;
  margin-inline: auto;
  color: var(--blue);
}

.service-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--white);
}

.service-card p {
  margin: 0;
  color: #b5b5b5;
  font-size: 0.92rem;
  flex: 1;
}

.service-card .btn {
  margin-top: 0.5rem;
  align-self: center;
}

/* Reviews */
.reviews {
  background: var(--white);
  color: var(--text);
  padding: 3.5rem 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: start;
}

.rating-box {
  text-align: left;
}

.rating-score {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.rating-stars {
  color: #fbbc04;
  letter-spacing: 0.08em;
  margin: 0.35rem 0;
}

.rating-box p {
  margin: 0 0 1rem;
  color: #555;
  font-size: 0.9rem;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.review-card {
  background: #f6f6f6;
  border-radius: 8px;
  padding: 1.15rem;
  font-size: 0.9rem;
  color: #333;
}

.review-card strong {
  display: block;
  margin-top: 0.75rem;
  color: var(--blue);
  font-size: 0.85rem;
}

/* Recent work */
.recent {
  background: var(--charcoal);
  padding: 4rem 0;
}

.ig-handle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin: -1rem 0 1.75rem;
  color: var(--blue);
  font-weight: 600;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.35rem;
}

.work-grid a {
  aspect-ratio: 1;
  overflow: hidden;
  background: #222 center / cover;
  transition: opacity 0.2s ease;
}

.work-grid a:hover {
  opacity: 0.85;
}

.recent-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

/* Bottom CTA */
.bottom-cta {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.82)),
    url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1600&q=80")
      center / cover;
  text-align: center;
  padding: 4.5rem 1rem;
}

.bottom-cta h2 {
  margin: 0 0 1.25rem;
  font-family: var(--display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

/* Page hero */
.page-hero {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.8)),
    url("https://images.unsplash.com/photo-1618843479313-40f8afb4b4d8?auto=format&fit=crop&w=1600&q=80")
      center / cover;
  padding: 4.5rem 0 3.5rem;
  text-align: center;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.page-hero p {
  margin: 0 auto;
  max-width: 50ch;
  color: #ccc;
}

.content {
  padding: 3.5rem 0;
  background: var(--panel);
}

.content.light {
  background: var(--white);
  color: var(--text);
}

.prose {
  max-width: 70ch;
  margin-inline: auto;
}

.prose h2 {
  font-family: var(--display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-card {
  background: var(--card);
  border: 1px solid #2e2e2e;
  border-radius: 8px;
  padding: 1.75rem;
}

.contact-card h3 {
  margin-top: 0;
  font-family: var(--display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--blue);
  font-weight: 500;
}

.contact-card a.btn,
a.btn[data-phone],
a.btn[data-whatsapp] {
  color: #ffffff !important;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.95rem 1.4rem;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 1px solid #3a3a3a;
  border-radius: 6px;
  background: #151515;
  color: var(--white);
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

/* Footer */
.site-footer {
  background: #070707;
  border-top: 1px solid #1c1c1c;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer h4 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.site-footer a:hover {
  color: var(--blue);
}

.site-footer li + li {
  margin-top: 0.4rem;
}

.site-footer p {
  color: #9a9a9a;
}

.footer-bottom {
  border-top: 1px solid #1c1c1c;
  padding-top: 1.1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #777;
}

.back-top {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 50;
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  left: 1.1rem;
  bottom: 1.1rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #25d366;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s ease, background 0.15s ease;
}

.whatsapp-float:hover {
  background: #1ebe57;
  transform: translateY(-2px);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
}

/* Remap finder */
.finder {
  background: var(--charcoal);
  padding: 4rem 0;
  border-top: 1px solid #1f1f1f;
}

.finder-card {
  background: var(--card);
  border: 1px solid #2e2e2e;
  border-radius: 10px;
  padding: 1.75rem;
  max-width: 820px;
  margin-inline: auto;
}

.finder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.finder-grid label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.finder-grid .full {
  grid-column: 1 / -1;
}

.finder-grid input,
.finder-grid select {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 1px solid #3a3a3a;
  border-radius: 6px;
  background: #151515;
  color: var(--white);
}

.finder-actions-row {
  margin-top: 1rem;
}

#finder-result {
  margin-top: 1.25rem;
  padding: 1.25rem;
  border-radius: 8px;
  background: #151515;
  border: 1px solid #007aff55;
}

#finder-result h3 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1rem;
}

#finder-result .finder-rec {
  color: #ddd;
  margin: 0 0 0.65rem;
}

#finder-result .finder-note {
  color: #888;
  font-size: 0.88rem;
  margin: 0 0 1rem;
}

.finder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* FAQ */
.faq {
  background: var(--panel);
  padding: 4rem 0;
}

.faq-list {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid #2e2e2e;
  border-radius: 8px;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--white);
  font: inherit;
  font-weight: 500;
  padding: 1rem 1.15rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq-item button span {
  color: var(--blue);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item .faq-body {
  display: none;
  padding: 0 1.15rem 1.1rem;
  color: #a8a8a8;
}

.faq-item.open .faq-body {
  display: block;
}

.faq-item.open button span {
  transform: rotate(45deg);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

@media (max-width: 980px) {
  .services-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .review-cards {
    grid-template-columns: 1fr;
  }

  .finder-grid,
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #121212;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-bottom: 1px solid #2a2a2a;
    gap: 0.85rem;
  }

  .nav.open {
    display: flex;
  }

  .header-inner .btn-cta {
    display: none;
  }

  .trust-grid,
  .services-grid,
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-photo {
    min-height: 280px;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .back-top {
    bottom: 4.5rem;
  }
}

@media (max-width: 480px) {
  .trust-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
}
