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

:root {
  --bg-dark: #160c07;
  --espresso: #2a1710;
  --espresso-soft: #3c2418;
  --cream: #f6ead8;
  --cream-soft: rgba(246, 234, 216, 0.78);
  --cream-dim: rgba(246, 234, 216, 0.58);
  --glass: rgba(255, 248, 238, 0.045);
  --glass-strong: rgba(255, 248, 238, 0.07);
  --glass-border: rgba(246, 234, 216, 0.12);
  --white: #fffaf2;
  --text-soft: rgba(255, 248, 238, 0.78);
  --text-dim: rgba(255, 248, 238, 0.58);
  --blue: #f6ead8;
  --orange: #c48246;
  --gold: #e0aa64;
  --shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
  --radius: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  background: var(--bg-dark);
  color: var(--white);
  overflow-x: hidden;
  position: relative;
}

/* BACKGROUND */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(196, 130, 70, 0.22), transparent 26%),
    radial-gradient(circle at 82% 8%, rgba(224, 170, 100, 0.14), transparent 30%),
    linear-gradient(135deg, #110804 0%, #2b170e 48%, #0f0704 100%);
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 8, 4, 0.08) 0%, rgba(16, 8, 4, 0.38) 100%),
    radial-gradient(circle at center, rgba(246, 234, 216, 0.025), transparent 55%);
}

/* COMMON GLASS */
.glass-box {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

/* NAVBAR */
.navbar {
  padding: 6px 0 0;
}

.nav-shell {
  width: min(96%, 1700px);
  min-height: 78px;
  margin: 0 auto;
  padding: 6px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  box-shadow: none;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 88px;
  width: auto;
  max-width: 245px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(224, 170, 100, 0.26));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  transition: 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
}

.nav-btn {
  text-decoration: none;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #111;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: 0 8px 16px rgba(196, 130, 70, 0.16);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.22rem;
  cursor: pointer;
}

/* PAGE WRAPPERS */
.page {
  width: min(1120px, 94%);
  margin: 0 auto;
}

.page-home {
  padding: 6px 0 28px;
}

.standard-page {
  padding: 24px 0 24px;
}

/* HERO */
.hero-grid {
  min-height: calc(100vh - 150px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 34px;
  margin-bottom: 16px;
}

.mini-pill {
  display: inline-block;
  padding: 8px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  border: 1px solid rgba(224, 170, 100, 0.18);
  background: rgba(224, 170, 100, 0.07);
  color: #fff1dc;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-left h1,
.page-hero-box h1 {
  font-size: clamp(1.85rem, 2.8vw, 3rem);
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 14px;
  max-width: 650px;
  letter-spacing: -1px;
}

.accent-blue {
  color: var(--cream);
}

.accent-orange {
  color: var(--orange);
}

.hero-text,
.page-hero-box p,
.feature-card p,
.service-mini-card p,
.mini-step p,
.contact-info-box p,
.machine-content p,
.cta-panel p,
.footer-shell p {
  color: var(--text-soft);
  line-height: 1.72;
  font-size: 0.93rem;
}

.hero-text {
  max-width: 540px;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.center-actions {
  justify-content: center;
}

.btn {
  text-decoration: none;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.91rem;
  transition: 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #111;
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(224, 170, 100, 0.16);
  background: rgba(224, 170, 100, 0.06);
}

.small-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 9px 13px;
  font-size: 0.78rem;
}


/* HERO INFO CARD */
.hero-info-card {
  padding: 28px 26px;
  background: rgba(255, 248, 238, 0.048);
}

.hero-card-pill {
  margin-bottom: 12px;
}

.hero-info-card h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
  max-width: 440px;
}

.hero-info-card p {
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 0.95rem;
  max-width: 470px;
}

.hero-highlights {
  display: grid;
  gap: 10px;
  margin: 20px 0 22px;
}

.hero-highlights div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 14px;
  background: rgba(255, 248, 238, 0.055);
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-highlights i {
  color: var(--orange);
  font-size: 0.92rem;
}

.hero-card-btn {
  display: inline-block;
}

/* STATS */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.stat-box {
  padding: 13px 15px;
  min-width: 118px;
  background: rgba(255, 248, 238, 0.035);
}

.stat-box strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 6px;
}

.stat-box span {
  color: var(--text-soft);
  font-size: 0.78rem;
}

/* FORM CARD */
.compact-form-card {
  padding: 22px 20px;
  background: rgba(255, 248, 238, 0.048);
}

.top-accent-line {
  width: 82px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cream), var(--orange));
  margin-bottom: 14px;
}

.compact-form-card h3 {
  font-size: 1.22rem;
  margin-bottom: 7px;
  font-weight: 800;
}

.compact-form-card p {
  color: var(--text-soft);
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 0.9rem;
}

.travel-form {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-group label {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--white);
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(246, 234, 216, 0.11);
  background: rgba(255, 248, 238, 0.06);
  color: var(--white);
  padding: 12px 13px;
  outline: none;
  font-size: 0.9rem;
}

.field-group input,
.field-group select {
  height: 46px;
}

.field-group textarea {
  resize: vertical;
  min-height: 110px;
}

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: rgba(255, 248, 238, 0.46);
}

.field-group select option {
  color: #111;
}

.submit-btn {
  height: 47px;
  border: none;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #111;
  font-weight: 900;
  font-size: 0.92rem;
  cursor: pointer;
  margin-top: 4px;
  transition: 0.25s ease;
}

/* PAGE HERO - NO BOX */
.page-hero-box {
  text-align: center;
  padding: 10px 6px 4px;
  margin-bottom: 24px;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
}

.compact-title {
  margin-bottom: 20px;
}

.page-hero-box h1 {
  margin: 0 auto 10px;
  max-width: 780px;
}

.page-hero-box p {
  max-width: 720px;
  margin: 0 auto;
}

.about-section {
  padding-top: 8px;
  padding-bottom: 12px;
}

/* MACHINE GRID - ONLY PLACE WHERE MACHINE IMAGES APPEAR */
.machine-section {
  padding-top: 16px;
  padding-bottom: 22px;
}

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

.machine-card {
  overflow: hidden;
  background: rgba(255, 248, 238, 0.048);
  transition: 0.25s ease;
}

.machine-card:hover,
.service-mini-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 170, 100, 0.32);
}

.machine-image {
  height: 150px;
  overflow: hidden;
  background: rgba(246, 234, 216, 0.1);
}

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

.machine-content {
  padding: 14px 14px 16px;
}

.machine-content h3 {
  font-size: 0.96rem;
  font-weight: 850;
  margin-bottom: 6px;
}

.machine-content p {
  font-size: 0.82rem;
  line-height: 1.55;
  min-height: 40px;
}

/* WHY CHOOSE */
.three-card-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 8px;
  margin-bottom: 38px;
}

.service-mini-card,
.feature-card {
  padding: 20px 16px;
  background: rgba(255, 248, 238, 0.04);
}

.icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
  background: rgba(224, 170, 100, 0.12);
  color: var(--orange);
  font-size: 0.96rem;
}

.service-mini-card h3,
.feature-card h3,
.contact-info-box h3 {
  font-size: 0.94rem;
  font-weight: 800;
  margin-bottom: 9px;
}

/* CONTACT */
.contact-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  margin-bottom: 34px;
}

.contact-info-box {
  padding: 22px 18px;
  background: rgba(255, 248, 238, 0.045);
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 13px;
  margin-top: 10px;
  border-radius: 12px;
  background: rgba(255, 248, 238, 0.06);
  color: var(--text-soft);
  line-height: 1.45;
}

.contact-line i {
  color: var(--orange);
  min-width: 18px;
}

/* FOOTER */
.footer-bar {
  padding: 8px 0 18px;
}

.footer-shell {
  width: min(1120px, 94%);
  margin: 0 auto;
  padding: 18px 4px 0;
  border-top: 1px solid rgba(246, 234, 216, 0.08);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.footer-shell strong {
  display: inline-block;
  margin-bottom: 6px;
}

.footer-shell a {
  color: var(--text-soft);
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-dim);
  font-size: 0.88rem;
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: var(--white);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .three-card-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .machine-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .nav-shell {
    width: min(94%, 94%);
    min-height: auto;
    padding: 12px 16px;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    width: 100%;
    order: 3;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 8px;
    margin-left: 0;
    padding: 10px 0 0;
    border-radius: 0;
    background: transparent;
    border: none;
  }

  .nav-menu.show {
    display: flex;
  }

  .field-row,
  .machine-grid,
  .three-card-row {
    grid-template-columns: 1fr;
  }

  .hero-left {
    text-align: center;
  }

  .hero-left h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .stats-row {
    justify-content: center;
  }

  .machine-image {
    height: 160px;
  }

  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .nav-btn {
    display: none;
  }

  .logo img {
    height: 70px;
  }

  .hero-left h1,
  .page-hero-box h1 {
    font-size: 1.68rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
