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

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #05070b;
  color: #f5f5f5;
  line-height: 1.6;
}

/* Layout helpers */
.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: 4rem 0;
}

.section-dark {
  background: radial-gradient(circle at top left, #222 0, #05070b 55%);
}

/* Top bar */
.top-bar {
  background: #111;
  color: #f5f5f5;
  font-size: 0.8rem;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-block: 0.4rem;
}

.top-bar-left span + span {
  margin-left: 0.75rem;
}

.top-bar-phone {
  color: #ff4b4b;
  text-decoration: none;
  font-weight: 600;
}

/* Nav */
.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 7, 11, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.7rem;
}

.nav-logo img {
  height: 42px;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

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

.nav-toggle {
  display: none;
  border: none;
  background: none;
  color: #fff;
  font-size: 1.5rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(120deg, #05070b 0%, #090d15 40%, #111 100%), url("assets/img/1.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 40, 40, 0.4), transparent 60%);
  mix-blend-mode: soft-light;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.hero-text h1 {
  font-size: clamp(2.4rem, 4.2vw, 3rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 0.25rem;
}

.hero-text h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
}

.hero-text h2 span {
  color: #ff4b4b;
}

.hero-text p {
  max-width: 36rem;
  color: #e3e3e3;
  font-size: 0.98rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #ff4b4b, #ff7b4b);
  color: #05070b;
  box-shadow: 0 12px 25px rgba(255, 75, 75, 0.35);
}

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

.btn.full {
  width: 100%;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4);
}

.hero-badges {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-badges span {
  font-size: 0.8rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 7, 11, 0.65);
}

/* Hero cards */
.hero-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.hero-card {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at top, rgba(255, 80, 80, 0.35), #05070b);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.65);
}

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

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: #d0d0d0;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #101218;
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: #ff4b4b;
  font-size: 1.1rem;
}

.service-card p,
.service-card li {
  font-size: 0.9rem;
  color: #d5d5d5;
}

.service-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

/* Benefits */
.benefits {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.benefits-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
}

.benefits-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: #ff7b4b;
  font-size: 0.9rem;
}

.benefits-location {
  font-size: 0.9rem;
  color: #f0f0f0;
}

.benefits-image img {
  width: 100%;
  border-radius: 1.5rem;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.7);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 1rem;
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0d0f15;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 1rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 960px;
  width: 100%;
  position: relative;
}

.lightbox img {
  width: 100%;
  border-radius: 1rem;
}

.lightbox-close {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background: #ff4b4b;
  color: #fff;
  border: none;
  border-radius: 999px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 1.4rem;
}

/* Video */
.video-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.video-text p {
  font-size: 0.95rem;
}

.video-note {
  font-size: 0.8rem;
  color: #d0d0d0;
}

.video-frame-wrapper {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.7);
  background: #000;
}

.video-iframe-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-iframe-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
  gap: 2.5rem;
}

.contact-info h2 {
  margin-top: 0;
}

.contact-list {
  list-style: none;
  padding: 0;
  font-size: 0.92rem;
}

.contact-list li + li {
  margin-top: 0.4rem;
}

.contact-list a {
  color: #ff7b4b;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.social-links h3 {
  margin-top: 1.4rem;
  margin-bottom: 0.5rem;
}

.social-links a {
  display: inline-block;
  margin-right: 0.8rem;
  font-size: 0.9rem;
}

/* Form */
.contact-form-wrapper {
  background: #0f1117;
  border-radius: 1.5rem;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.55);
}

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

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

label {
  font-size: 0.85rem;
  color: #f0f0f0;
}

input,
select,
textarea {
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.55rem 0.8rem;
  background: #05070b;
  color: #f5f5f5;
  font-family: inherit;
  font-size: 0.9rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #ff4b4b;
  box-shadow: 0 0 0 1px rgba(255, 75, 75, 0.3);
}

textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.8rem;
  color: #d0d0d0;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0 1.75rem;
  background: #05070b;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.8rem;
  color: #d0d0d0;
}

.footer a {
  color: #ff7b4b;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* WhatsApp button */
.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.4);
  z-index: 40;
}

.whatsapp-float span {
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 880px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: #05070b;
    flex-direction: column;
    padding: 0.75rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .nav-links.show {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .benefits,
  .video-section,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-content {
    padding-block: 2.75rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text h2 {
    font-size: 1.5rem;
  }

  .hero-cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-grid,
  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-form-wrapper {
    padding: 1.4rem;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
  }
}
