* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #111214;
  --bg-soft: #1a1c20;
  --panel: #202329;
  --panel-2: #262a31;
  --text: #f4f4f4;
  --muted: #c7c7c7;
  --border: rgba(255, 255, 255, 0.08);
  --accent: #e74c3c;
  --accent-dark: #c0392b;
  --shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  --radius: 18px;
  --radius-sm: 12px;
  --max-width: 1100px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background:
    radial-gradient(
      circle at top left,
      rgba(231, 76, 60, 0.12),
      transparent 24%
    ),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(17, 18, 20, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

/* Logo */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

.brand img {
  display: block;
  width: 210px;
  height: 62px;
  object-fit: contain;
  object-position: left center;

  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

/* =========================
   NAVIGATION
========================= */

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.desktop-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: bold;
  padding: 10px 16px;
  border-radius: 999px;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  background: rgba(231, 76, 60, 0.16);
  color: #fff;
}

.desktop-nav a:hover {
  transform: translateY(-1px);
}

/* =========================
   TEXT
========================= */

h1,
h2,
h3 {
  color: #fff;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
}

.badge {
  display: inline-block;
  color: #fff;
  background: rgba(231, 76, 60, 0.16);
  border: 1px solid rgba(231, 76, 60, 0.32);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 16px;
}

/* =========================
   HERO
========================= */

.hero {
  padding: 60px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.hero-copy p {
  max-width: 680px;
  font-size: 1.05rem;
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn,
.btn-outline {
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  padding: 12px 18px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.btn {
  background: var(--accent);
  color: #fff;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline:hover {
  background: rgba(231, 76, 60, 0.14);
  border-color: rgba(231, 76, 60, 0.35);
}

.hero-panel {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-panel > p {
  margin-bottom: 18px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.stat-box h3 {
  color: #fff;
  font-size: 1rem;
}

.stat-box p {
  font-size: 0.92rem;
}

/* =========================
   SECTIONS
========================= */

.section {
  padding: 30px 0;
}

.section-title {
  margin-bottom: 12px;
}

.section-subtitle {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: 1.02rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.info-card p,
.service-card p {
  color: var(--muted);
}

.service-card .icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* =========================
   QUOTE BANNER
========================= */

.highlight-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.highlight-banner p {
  max-width: 700px;
}

.quote-section {
  padding-top: 10px;
}

/* =========================
   TABLES
========================= */

table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
  border: 1px solid var(--border);
  background-color: #2a2d33;
  overflow: hidden;
  border-radius: 14px;
}

th,
td {
  padding: 14px 16px;
  text-align: left;
  border: 1px solid var(--border);
}

th {
  background-color: #333842;
}

tbody tr:nth-child(even) {
  background-color: #31353d;
}

tbody tr:nth-child(odd) {
  background-color: #292d34;
}

.price {
  color: #fff;
  font-weight: bold;
}

/* =========================
   GALLERY
========================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.gallery-card {
  padding: 14px;
  overflow: hidden;
}

.gallery-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #111;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid var(--border);
}

.gallery-image img,
.gallery-image video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #111;
}

/* =========================
   CONTACT
========================= */

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-item span {
  display: block;
  color: #fff;
  font-weight: bold;
  margin-bottom: 4px;
}

.contact-item a {
  color: var(--accent);
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: #fff;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--border);
  background: #181a1f;
  color: #fff;
  padding: 12px;
  border-radius: var(--radius-sm);
  font: inherit;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: rgba(231, 76, 60, 0.7);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}

.contact-form button {
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  margin-top: 30px;
  background-color: #181a1f;
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-wrap p {
  color: var(--muted);
}

/* =========================
   TABLET
========================= */

@media (max-width: 900px) {
  .hero-grid,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .highlight-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .brand img {
    width: 185px;
    height: 58px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {
  .site-header {
    position: sticky;
    top: 0;
  }

  .nav-wrap {
    min-height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px 0 14px;
    gap: 10px;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .brand img {
    width: 190px;
    height: 58px;
    object-fit: contain;
    object-position: center;
    border: none;
    border-radius: 0;
    background: transparent;
  }

  .desktop-nav {
    width: 100%;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
  }

  .desktop-nav a {
    padding: 8px 12px;
    font-size: 0.92rem;
  }

  .hero {
    padding: 38px 0 24px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  .hero-stats,
  .grid-3,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .hero-panel {
    padding: 20px;
  }

  .gallery-card {
    padding: 12px;
  }

  .gallery-image {
    width: 100%;
    height: 260px;
    aspect-ratio: unset;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .gallery-image img,
  .gallery-image video {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  table th,
  table td {
    font-size: 14px;
    padding: 10px;
  }

  .footer-wrap {
    text-align: center;
    justify-content: center;
  }
}