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

:root {
  --gold: #A57B00;
  --gold-soft: #c69b2e;
  --bg: #f4f5f7;
  --text-main: #1f2933;
  --text-muted: #6b7280;
  --card-bg: #ffffff;
  --border-subtle: #e5e7eb;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-main);
  background-color: var(--bg);
  line-height: 1.6;
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Topbar */

.topbar {
  background: #111827;
  color: #f9fafb;
  font-size: 12px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar a {
  color: #e5e7eb;
}

.topbar .dot {
  color: #6b7280;
}

/* Navbar */

.navbar {
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 46px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.brand-subtitle {
  font-size: 11px;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero */

.hero {
  position: relative;
  min-height: 520px;
  height: 80vh;
  max-height: 720px;
  color: #ffffff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center bottom;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s ease, transform 9s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.65), rgba(0,0,0,0.15), rgba(244,245,247,1));
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 640px;
}

.hero-kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e5e7eb;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 40px;
  font-weight: 600;
  margin: 0 0 12px;
}

.hero-subtitle {
  font-size: 15px;
  color: #e5e7eb;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-stats {
  display: flex;
  gap: 24px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-weight: 600;
  font-size: 18px;
}

.stat-label {
  font-size: 12px;
  color: #e5e7eb;
}

.hero-bottom-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(244,245,247,0), rgba(244,245,247,1));
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.08s ease;
}

.btn-primary {
  background: var(--gold);
  color: #ffffff;
}

.btn-primary:hover {
  background: #8a6400;
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  background: #ffffff;
  color: var(--gold);
}

.btn-small {
  padding: 8px 18px;
  font-size: 13px;
}

.btn-light {
  background: #ffffff;
  color: var(--gold);
}

.btn-light:hover {
  background: #fdf7e7;
}

.btn-outline-gold {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

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

.btn.wide {
  width: 100%;
}

/* Sections */

.section {
  padding: 70px 0;
}

.section-alt {
  background: #ffffff;
}

.section-muted {
  background: #f9fafb;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 26px;
  margin-bottom: 6px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 14px;
}

/* Layouts */

.layout-two {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
}

.key-points h3 {
  margin-bottom: 10px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
  color: var(--gold);
}

.regions-list ul {
  list-style: none;
  padding: 0;
  margin-top: 8px;
}

.regions-list li {
  padding: 6px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 14px;
}

/* Projects grid */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.project-card {
  background: var(--card-bg);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(15,23,42,0.08);
  display: flex;
  flex-direction: column;
}

.project-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(0,0,0,0.74);
  color: #f9fafb;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
}

.project-body {
  padding: 18px 18px 20px;
  flex: 1;
}

.project-body h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.project-location {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.project-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.project-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.label-pill {
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  padding: 4px 10px;
  font-size: 11px;
  color: var(--text-muted);
  background: #f9fafb;
}

/* Steps grid */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 18px 20px;
  box-shadow: 0 12px 30px rgba(15,23,42,0.06);
}

.step-badge {
  display: inline-block;
  border-radius: 999px;
  background: #fdf7e7;
  color: var(--gold);
  padding: 4px 12px;
  font-size: 11px;
  margin-bottom: 8px;
}

.step-card h3 {
  font-size: 15px;
  margin: 0 0 6px;
}

.step-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Page hero */

.page-hero {
  padding: 70px 0 40px;
  background: linear-gradient(135deg, #fff7dd, #ffffff);
  border-bottom: 1px solid var(--border-subtle);
}

.page-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: var(--gold);
  margin-bottom: 6px;
}

.page-hero h1 {
  font-size: 30px;
  margin: 0 0 10px;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 520px;
  font-size: 14px;
}

/* Projects list rows */

.projects-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.project-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.4fr);
  gap: 24px;
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(15,23,42,0.08);
  overflow: hidden;
}

.project-row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-row-body {
  padding: 22px 22px 24px;
}

.project-row-body h2 {
  margin: 0 0 4px;
  font-size: 20px;
}

.project-row-body p {
  font-size: 14px;
}

.project-row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 14px;
}

.project-row-actions {
  display: flex;
  gap: 10px;
}

/* Values grid */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
}

.contact-form-wrapper h2 {
  margin: 0 0 12px;
}

.contact-form {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 20px 22px;
  box-shadow: 0 14px 40px rgba(15,23,42,0.08);
}

.form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-form input,
.contact-form textarea,
.select-input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  font-size: 14px;
  font-family: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.select-input {
  background: #ffffff;
}

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}

.contact-details h2 {
  margin-top: 0;
  margin-bottom: 12px;
}

.contact-details p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* CTA */

.cta-section {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #ffffff;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-text h2 {
  margin: 0 0 8px;
}

.cta-text p {
  margin: 0;
  max-width: 520px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.cta-link {
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Footer */

.footer {
  background: #111827;
  color: #e5e7eb;
  padding-top: 32px;
  margin-top: 40px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  padding-bottom: 20px;
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-logo {
  height: 40px;
}

.footer h4 {
  margin: 0 0 4px;
}

.footer h5 {
  margin: 0 0 10px;
  font-size: 14px;
}

.footer p {
  margin: 2px 0;
  font-size: 13px;
  color: #d1d5db;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  padding: 10px 0;
  font-size: 12px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #9ca3af;
}

/* Responsive */

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 32px;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 18px;
  }
  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .layout-two,
  .projects-list .project-row,
  .contact-layout,
  .footer-main {
    grid-template-columns: minmax(0, 1fr);
  }
  .project-row-image {
    max-height: 260px;
  }
}

@media (max-width: 720px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .nav-links {
    gap: 16px;
    font-size: 13px;
    flex-wrap: wrap;
  }
  .hero {
    height: auto;
    min-height: 480px;
  }
  .hero-content {
    padding: 40px 0 80px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-stats {
    flex-wrap: wrap;
  }
  .projects-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }
}


/* ==== CLEAN PROFESSIONAL OVERRIDES ==== */
:root {
  --gold: #A57B00;
  --gold-soft: #c69b2e;
  --bg: #f4f5f7;
  --text-main: #1f2933;
  --text-muted: #6b7280;
  --card-bg: #ffffff;
  --border-subtle: #e5e7eb;
}

/* Hero clean look: neutral overlay, mostly grey/white */
.hero-clean {
  height: 82vh;
  max-height: 720px;
}
.hero-overlay-clean {
  background: linear-gradient(180deg, rgba(0,0,0,0.70), rgba(0,0,0,0.25), rgba(244,245,247,1));
}
.accent-gold {
  color: var(--gold-soft);
}
.hero-stats-outline {
  margin-top: 18px;
  display: inline-flex;
  gap: 24px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(249,250,251,0.55);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
}

/* Intro card & cards: minimal, white */
.clean-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 26px rgba(15,23,42,0.05);
}
.intro-layout p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Project hover - subtle scale and shadow only */
.project-hover-clean {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.project-hover-clean:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15,23,42,0.12);
}

/* Steps & value cards hover */
.hover-card-clean {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.hover-card-clean:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15,23,42,0.10);
}

/* Remove earlier multi-colour sections from previous versions */
.section-gradient,
.strip-highlights {
  display: none;
}

/* CTA: keep simple gold band */
.cta-section {
  background: #A57B00;
  color: #ffffff;
}

/* Steps clean spacing */
.steps-clean .step-card p {
  font-size: 13px;
}

/* Ensure general body background remains light neutral */
body {
  background-color: #f4f5f7;
}
