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

:root {
  --bg:         #162626;
  --bg-mid:     #1a2e2e;
  --bg-light:   #1e3838;
  --gold:       #C9A464;
  --gold-light: #E6D0A5;
  --gold-dim:   #64491D;
  --gold-fill:  #203434;
  --white:      #ffffff;
  --font:       'Lato', Arial, sans-serif;
  --font-body:  'Merriweather', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--gold-light);
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }

/* ── Navigation ───────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(22, 38, 38, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gold-dim);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-logo img { height: 40px; width: auto; }
.nav-logo-text {
  font-size: 17px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1.2;
}
.nav-logo-text span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  border: 1.5px solid var(--gold) !important;
  border-radius: 4px;
  padding: 8px 20px !important;
  color: var(--gold) !important;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--bg) !important;
}

/* Hamburger (mobile) */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--gold); margin: 5px 0;
  transition: 0.3s;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--bg);
}
.btn-gold:hover { background: var(--gold-light); }

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

/* ── Section base ─────────────────────────────────────────────────────────── */
.section {
  padding: 90px 40px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-alt { background: var(--bg-light); }

.section-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: 38px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-sub {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--gold-light);
  max-width: 640px;
  line-height: 1.85;
  margin-bottom: 48px;
}
.divider {
  border: none;
  border-top: 1px solid var(--gold-dim);
  margin: 0 0 48px;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22,38,38,0.5) 0%, rgba(22,38,38,0.1) 100%);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 700px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 40px;
  letter-spacing: 2px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Page hero (inner pages) ──────────────────────────────────────────────── */
.page-hero {
  padding: 140px 40px 70px;
  background: var(--bg-mid);
  border-bottom: 1px solid var(--gold-dim);
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.page-hero h1 {
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 16px;
  font-weight: 300;
  color: var(--gold-light);
  max-width: 560px;
}

/* ── Icon grid ────────────────────────────────────────────────────────────── */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 0;
}
.icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--gold-dim);
  border-radius: 8px;
  background: var(--gold-fill);
  transition: border-color 0.25s, transform 0.25s;
}
.icon-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.icon-card img {
  margin: 0 auto 20px;
  height: 60px;
  width: auto;
}
.icon-card h3 {
  font-size: 16px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 10px;
}
.icon-card p {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1.7;
}

/* ── Stat boxes ───────────────────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.stat-box {
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  background: var(--gold-fill);
  padding: 32px 24px;
  text-align: center;
}
.stat-big {
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 14px;
  color: var(--gold-light);
  line-height: 1.5;
}

/* ── Brand strip ──────────────────────────────────────────────────────────── */
.brand-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.brand-chip {
  border: 1.5px solid var(--gold-dim);
  border-radius: 6px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 400;
  color: var(--gold);
  transition: border-color 0.2s;
}
.brand-chip:hover { border-color: var(--gold); }

/* ── Services detail ──────────────────────────────────────────────────────── */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--gold-dim);
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-fill);
  border: 1px solid var(--gold-dim);
  border-radius: 12px;
  padding: 60px;
}
.service-icon-wrap img { height: 100px; width: auto; margin: 0 auto; }
.service-text h2 {
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 16px;
}
.service-text p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1.85;
  margin-bottom: 24px;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gold-light);
  padding-left: 20px;
  position: relative;
  line-height: 1.7;
}
.service-list li::before {
  content: '—';
  color: var(--gold);
  position: absolute;
  left: 0;
}

/* ── CTA band ─────────────────────────────────────────────────────────────── */
.cta-band {
  background: var(--gold-fill);
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  padding: 70px 40px;
  text-align: center;
}
.cta-band h2 {
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 14px;
}
.cta-band p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 32px;
}

/* ── Contact form ─────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--gold-fill);
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  padding: 12px 16px;
  color: var(--gold-light);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--bg-mid); }
.form-group textarea { min-height: 140px; resize: vertical; }

.contact-info h3 {
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 24px;
}
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-detail-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 15px;
  color: var(--gold-light);
}
.schedule-box {
  margin-top: 40px;
  border: 1px solid var(--gold-dim);
  border-radius: 8px;
  padding: 28px;
  background: var(--gold-fill);
  text-align: center;
}
.schedule-box h4 {
  font-size: 18px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 10px;
}
.schedule-box p {
  font-size: 14px;
  color: var(--gold-light);
  margin-bottom: 20px;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer {
  background: #0f1e1e;
  border-top: 1px solid var(--gold-dim);
  padding: 60px 40px 30px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo img { height: 36px; }
.footer-logo-name {
  font-size: 16px;
  font-weight: 300;
  color: var(--gold);
}
.footer-tagline {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--gold-light);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--gold-dim);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--gold-dim);
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .icon-grid { grid-template-columns: repeat(2, 1fr); }
  .service-block { grid-template-columns: 1fr; gap: 40px; }
  .service-block.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: rgba(22,38,38,0.98); padding: 20px 40px; gap: 20px; border-bottom: 1px solid var(--gold-dim); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .icon-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 36px; }
  .section { padding: 60px 24px; }
  .page-hero { padding: 120px 24px 50px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}
