:root {
  --black: #0b0b0d;
  --panel: #141417;
  --panel-2: #1f2024;
  --text: #f7f7f7;
  --muted: #b8bcc5;
  --body: #555b66;
  --red: #d71920;
  --red-dark: #a90f15;
  --steel: #d7dbe2;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1d2026;
  background: #f4f5f7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 8, 10, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.navbar {
  width: min(1240px, calc(100% - 32px));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 142px;
  height: 62px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #ff454b;
}

.nav-cta {
  padding: 12px 18px;
  background: var(--red);
  border-radius: 4px;
  box-shadow: 0 12px 26px rgba(215, 25, 32, 0.32);
}

.nav-links .nav-cta:hover {
  color: #fff;
  background: #f0222a;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #070708 url("hero-bg.png") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.92) 0%, rgba(9, 9, 11, 0.72) 38%, rgba(9, 9, 11, 0.18) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.45));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - 1180px) / 2));
  padding: 136px 0 82px;
  color: #fff;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-text {
  max-width: 570px;
  margin: 22px 0 0;
  color: #e9ebef;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions,
.cta-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 34px rgba(215, 25, 32, 0.3);
}

.btn-primary:hover {
  background: #f0222a;
}

.btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
}

.btn-light {
  color: var(--black);
  background: #fff;
}

.btn-dark {
  color: #fff;
  background: var(--black);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-strip span {
  padding: 10px 14px;
  color: #f2f3f5;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: 92px 0;
}

.section-heading {
  width: min(740px, 100%);
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.about-content h2,
.cta-inner h2,
.contact-panel h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: 0;
}

.section-heading p:not(.section-kicker),
.about-content p,
.cta-inner p,
.contact-card p {
  color: var(--body);
  font-size: 17px;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  min-height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e4e8;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(16, 18, 24, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card-body {
  height: 100%;
  padding: 28px 24px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  color: var(--red);
  background: #fff1f2;
  border: 1px solid rgba(215, 25, 32, 0.14);
  border-radius: 8px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.card-icon svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.service-card:hover .card-icon {
  color: #fff;
  background: var(--red);
  transform: translateY(-3px);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.service-card p {
  margin: 0;
  color: var(--body);
  line-height: 1.6;
}

.why {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(10, 10, 12, 0.96), rgba(31, 32, 36, 0.98)),
    url("hero-bg.png") center / cover no-repeat;
}

.why .section-heading p:not(.section-kicker) {
  color: #c6cad2;
}

.why-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 50px;
  align-items: start;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.advantage {
  min-height: 132px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 8px;
}

.advantage strong {
  display: block;
  margin-bottom: 9px;
  font-size: 17px;
}

.advantage span {
  color: #c9cdd4;
  line-height: 1.55;
}

.about {
  background: #fff;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media::before {
  content: "";
  position: absolute;
  left: -18px;
  bottom: -18px;
  width: 46%;
  height: 42%;
  background: var(--red);
  border-radius: 8px;
}

.about-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.location-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 24px;
  padding: 16px;
  background: #f3f4f6;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  color: #252932;
  font-weight: 700;
  line-height: 1.5;
}

.location-note span {
  width: 13px;
  height: 13px;
  margin-top: 5px;
  background: var(--red);
  border-radius: 50%;
  flex: 0 0 auto;
}

.gallery {
  background: #f4f5f7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  border: 0;
  border-radius: 8px;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  opacity: 0.86;
}

.cta-band {
  padding: 64px 0;
  color: #fff;
  background: linear-gradient(135deg, var(--red-dark), var(--red) 44%, #17181d 44%);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-inner p {
  max-width: 640px;
  color: #fff;
}

.cta-inner .section-kicker {
  color: #fff;
}

.contact {
  background: #fff;
}

.contact-panel {
  padding: 36px;
  color: #fff;
  background: var(--panel);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-panel dl {
  margin: 26px 0 0;
}

.contact-panel div {
  margin-bottom: 18px;
}

.contact-panel dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-panel dd {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}

.contact-card {
  padding: 36px;
  border: 1px solid #e0e2e7;
  border-radius: 8px;
  background: #f8f9fb;
}

.contact-card img {
  width: min(340px, 100%);
  margin-bottom: 24px;
}

.map-section {
  width: 100vw;
  height: 30vh;
  min-height: 260px;
  margin-left: calc(50% - 50vw);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.site-footer {
  color: #e8eaee;
  background: #09090b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 42px;
  padding: 54px 0;
}

.footer-brand img {
  width: 170px;
  height: 84px;
  object-fit: contain;
}

.site-footer h2 {
  margin: 0 0 18px;
  font-size: 18px;
}

.site-footer p,
.site-footer a {
  color: #bfc3cc;
  line-height: 1.7;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
}

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

.footer-bottom {
  padding: 18px 20px;
  color: #aeb3bd;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fixed-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fixed-btn {
  min-width: 118px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.fixed-call {
  background: #111;
}

.fixed-whatsapp {
  background: #25d366;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 940px) {
  .navbar {
    height: 74px;
  }

  .brand img {
    width: 116px;
    height: 54px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 74px);
    padding: 12px 20px 20px;
    overflow-y: auto;
    background: rgba(8, 8, 10, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.is-open {
    display: flex;
  }

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

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    min-height: 760px;
    background-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 5, 6, 0.94), rgba(9, 9, 11, 0.6)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.64));
  }

  .hero-content {
    padding-top: 118px;
  }

  .service-grid,
  .why-layout,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .why-layout {
    gap: 32px;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 66px 0;
  }

  .hero {
    min-height: 690px;
    background-position: 66% center;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin-left: 14px;
    padding: 96px 0 56px;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .hero-actions,
  .cta-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .trust-strip span {
    flex: 1 1 100%;
    text-align: center;
  }

  .section-heading {
    margin-bottom: 30px;
  }

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

  .contact-panel,
  .contact-card {
    padding: 24px;
  }

  .fixed-actions {
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }

  .fixed-btn {
    min-width: 92px;
    padding: 10px 12px;
    font-size: 13px;
  }
}

@media (min-width: 641px) and (max-width: 940px) {
  .service-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
