/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #ffffff;
  --bg-alt: #f7f7f7;
  --navy: #1a1a1a;
  --navy-deep: #0a0a0a;
  --footer-bg: #141414;
  --gold: #F5B82E;
  --gold-hover: #e0a51d;
  --text: #3a3a3a;
  --text-dim: #707070;
  --heading: #1a1a1a;
  --card-bg: #ffffff;
  --border: #ececec;
  --nav-bg: rgba(255, 255, 255, 0.96);
  --step-num: rgba(245, 184, 46, 0.14);
  --contact-icon-bg: #fff4d9;
  --table-hover: #fafafa;
  --radius-card: 0;
  --radius-btn: 0;
  --shadow-card: 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 14px 30px rgba(0, 0, 0, 0.08);
}

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

/* ===== Screen Reader Only ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Skip Link ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  padding: 12px 24px;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

/* ===== Focus Styles ===== */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Highlight word inside headings (e.g. "...You Need") */
.hl {
  color: var(--gold);
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.2;
}

.logo-en {
  font-size: 19px;
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -0.4px;
}

.logo-en::first-letter,
.logo-en {
  /* keep solid heading colour; the orange identity comes through accents */
}

.logo-np {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.2px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

/* ===== Language Toggle ===== */
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 2px;
  cursor: pointer;
  gap: 0;
}

.lang-opt {
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dim);
  transition: all 0.2s;
  line-height: 1;
}

.lang-opt.active {
  background: var(--gold);
  color: #fff;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

/* ===== Hero (dark-only section) ===== */
.hero {
  padding: 170px 0 140px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  background: #0f0f0f;
  overflow: hidden;
  color: #e0e0e0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/banner.png') center calc(100% + 40px) / contain no-repeat;
  opacity: 0.85;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #0f0f0f 0%, transparent 28%, transparent 55%, #0f0f0f 100%);
  pointer-events: none;
}

.hero-content {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  padding: 7px 18px;
  background: rgba(245, 184, 46, 0.12);
  border: 1px solid rgba(245, 184, 46, 0.35);
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 28px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 60px;
  font-weight: 900;
  line-height: 1.05;
  color: #ffffff;
  letter-spacing: -1.8px;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .btn-outline {
  color: #ffffff;
  border-color: #ffffff;
}

.hero .btn-outline:hover {
  background: #ffffff;
  color: #0f0f0f;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 6px 18px rgba(245, 184, 46, 0.30);
}

.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(245, 184, 46, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--heading);
  border: 1.5px solid var(--heading);
}

.btn-outline:hover {
  background: var(--heading);
  color: #fff;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 12px;
  width: 100%;
  margin-top: 10px;
}

/* ===== Section ===== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background: var(--bg-alt);
}

/* Light panel — How It Works (chevron cards) */
#howItWorks {
  background: var(--bg-alt);
  position: relative;
}

.section-title {
  font-size: 40px;
  font-weight: 900;
  color: var(--heading);
  text-align: center;
  letter-spacing: -1px;
  margin-bottom: 14px;
  position: relative;
  padding-top: 18px;
}

.section-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 4px;
  background: var(--gold);
}

.section-sub {
  font-size: 15px;
  color: var(--text-dim);
  text-align: center;
  margin-bottom: 60px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Equipment Grid ===== */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.eq-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

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

.eq-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.eq-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.eq-card:hover .eq-img img {
  transform: scale(1.06);
}

.eq-body {
  padding: 22px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.eq-avail {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd2dd;
}

.dot.green {
  background: #22c55e;
}

.eq-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.eq-desc {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}

.eq-price {
  font-size: 24px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 4px;
  letter-spacing: -0.4px;
}

.eq-price span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
}

/* ===== Rates Table (modern) ===== */
.rates-table-wrap {
  overflow-x: auto;
  background: var(--card-bg);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
}

.rates-table th {
  text-align: left;
  padding: 22px 28px;
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
}

.rates-table th:nth-child(2),
.rates-table td:nth-child(2) {
  text-align: right;
}

.rates-table th:last-child,
.rates-table td:last-child {
  text-align: right;
}

.rates-table td {
  padding: 22px 28px;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background 0.2s ease, color 0.2s ease;
}

.rates-table tbody tr:last-child td {
  border-bottom: none;
}

.rates-table tbody tr {
  transition: background 0.2s ease;
}

/* Equipment name column: bold + left gold bar on hover */
.rates-table tbody td:first-child {
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.1px;
}

.rates-table tbody td:first-child::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 60%;
  background: var(--gold);
  transition: transform 0.25s ease;
  transform-origin: center;
}

.rates-table tbody tr:hover td:first-child::before {
  transform: translateY(-50%) scaleY(1);
}

.rates-table tbody tr:hover {
  background: rgba(245, 184, 46, 0.05);
}

/* Unit column — dimmer, lighter weight */
.rates-table tbody td:last-child {
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 500;
}

/* Rate column — prominent, tight */
.rate-price {
  font-weight: 800;
  color: var(--gold);
  font-size: 17px;
  letter-spacing: -0.3px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.rates-note {
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
  margin-top: 28px;
  font-style: italic;
}

/* Mobile: convert table rows into stacked cards */
@media (max-width: 560px) {
  .rates-table,
  .rates-table thead,
  .rates-table tbody,
  .rates-table tr,
  .rates-table th,
  .rates-table td {
    display: block;
    width: 100%;
  }

  .rates-table thead {
    display: none;
  }

  .rates-table-wrap {
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .rates-table tbody tr {
    background: var(--card-bg);
    border: 1px solid var(--border);
    margin-bottom: 14px;
    padding: 4px 0;
    box-shadow: var(--shadow-card);
  }

  .rates-table tbody td {
    padding: 10px 20px;
    border-bottom: none;
    text-align: left !important;
  }

  .rates-table tbody td:first-child {
    padding-top: 20px;
    font-size: 17px;
    border-bottom: 1px dashed var(--border);
    padding-bottom: 14px;
    margin-bottom: 6px;
  }

  .rates-table tbody td:first-child::before {
    display: none;
  }

  .rates-table tbody td:not(:first-child)::before {
    content: attr(data-label);
    display: inline-block;
    width: 80px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
  }

  .rate-price {
    text-align: left;
    font-size: 18px;
  }

  .rates-table tbody td:last-child {
    padding-bottom: 20px;
  }
}

/* ===== Steps / How It Works (chevron layout) ===== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  align-items: stretch;
  margin-top: 8px;
}

.step-card {
  background: var(--card-bg);
  padding: 56px 50px;
  position: relative;
  text-align: center;
  border: none;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: filter 0.25s ease;
}

/* First card — only right edge slanted */
.step-card:nth-child(1) {
  clip-path: polygon(0 0, 100% 0, calc(100% - 36px) 100%, 0 100%);
  padding-right: 70px;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.14));
}

/* Middle card — parallelogram (active highlighted state) */
.step-card:nth-child(2) {
  background: var(--gold);
  color: #fff;
  transform: scale(1.05);
  width: calc(100% + 72px);
  margin: 0 -36px;
  clip-path: polygon(36px 0, 100% 0, calc(100% - 36px) 100%, 0 100%);
  z-index: 2;
  padding: 56px 70px;
  filter: drop-shadow(0 18px 36px rgba(245, 184, 46, 0.40));
}

/* Last card — only left edge slanted */
.step-card:nth-child(3) {
  clip-path: polygon(36px 0, 100% 0, 100% 100%, 0 100%);
  padding-left: 70px;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.14));
}

.step-card:nth-child(1):hover,
.step-card:nth-child(3):hover {
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.20));
}

.step-card:nth-child(2):hover {
  filter: drop-shadow(0 22px 44px rgba(245, 184, 46, 0.50));
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  font-size: 26px;
  font-weight: 800;
  color: var(--gold);
  background: rgba(245, 184, 46, 0.14);
  border-radius: 50%;
  margin-bottom: 24px;
  letter-spacing: 0;
  position: relative;
  pointer-events: auto;
  user-select: auto;
}

.step-card:nth-child(2) .step-num {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  text-align: center;
}

.step-card:nth-child(2) h3 {
  color: #fff;
}

.step-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
  text-align: center;
  max-width: 240px;
}

.step-card:nth-child(2) p {
  color: rgba(255, 255, 255, 0.95);
}

/* ===== Contact Grid ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 36px 26px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--contact-icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border-radius: 50%;
}

.contact-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.contact-card p {
  font-size: 13.5px;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.contact-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  transition: opacity 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-link:hover {
  opacity: 0.8;
}

/* ===== Footer ===== */
.footer {
  background: var(--footer-bg);
  padding: 40px 0 28px;
  color: rgba(216, 224, 236, 0.75);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.footer p {
  font-size: 13px;
  color: rgba(216, 224, 236, 0.75);
}

/* ===== Social Links ===== */
.social-section {
  margin-top: 56px;
  text-align: center;
}

.social-label {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  color: var(--text);
  background: var(--card-bg);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: all 0.2s;
}

.social-link:hover {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link-sm {
  padding: 0;
  width: 36px;
  height: 36px;
  justify-content: center;
  font-size: 0;
}

.social-link-sm span {
  display: none;
}

.social-link-sm svg {
  width: 18px;
  height: 18px;
}

.footer-np {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-right {
    gap: 12px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
  }

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

  .nav-link {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
  }

  .nav-link::after {
    display: none;
  }

  .hero {
    padding: 130px 0 220px;
    min-height: 85vh;
  }

  .hero::before {
    background-size: 160%;
    background-position: center bottom;
  }

  .hero h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-btns .btn {
    width: 100%;
    max-width: 280px;
  }

  .section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 30px;
  }

  .equipment-grid,
  .steps-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Disable chevron clip-paths on mobile so cards stack cleanly */
  .step-card,
  .step-card:nth-child(1),
  .step-card:nth-child(2),
  .step-card:nth-child(3) {
    clip-path: none;
    width: 100%;
    margin: 0;
    padding: 40px 32px;
    filter: none;
    box-shadow: var(--shadow-card);
  }

  .steps-grid {
    gap: 16px;
  }

  .footer-inner {
    gap: 14px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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