/* ═══════════════════════════════════════════════════════════════
   MALA ELEVATION — Pixel-Exact Replica of malaelevation.com
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --orange:        #f25019;
  --orange-hover:  #d8430f;
  --nav-bg:        #ffffff;
  --dark-navy:     #0b1726;
  --navy-card:     #102235;
  --card-border:   rgba(255, 255, 255, 0.08);
  --text-dark:     #0f172a;
  --text-muted:    #64748b;
  --bg-light:      #f8fafc;
  --border-light:  #e2e8f0;
  --font-main:     'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── CONTAINER ─────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

[id] { scroll-margin-top: 80px; }

/* ── HEADER & NAVIGATION ────────────────────────── */
header.header-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 84px;
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

header .nav-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo exact replica */
.brand-logo {
  display: flex;
  text-decoration: none;
}

.logo-box {
  position: relative;
  padding: 8px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 24px; height: 24px;
  border-top: 3px solid var(--orange);
  border-left: 3px solid var(--orange);
}

.logo-box::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 24px; height: 24px;
  border-bottom: 3px solid var(--orange);
  border-right: 3px solid var(--orange);
}

.logo-text-mala {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 9px;
  color: #000000;
  text-transform: uppercase;
  line-height: 1;
  padding-left: 9px;
}

.logo-line {
  width: 100%;
  height: 2px;
  background: var(--orange);
  margin: 4px 0 5px 0;
}

.logo-text-elevation {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 7px;
  color: var(--orange);
  text-transform: uppercase;
  line-height: 1;
  padding-left: 7px;
}

/* Nav links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-menu a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #334155;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.btn-header-cta {
  background: var(--orange);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none;
  display: inline-block;
}

.btn-header-cta:hover {
  background: var(--orange-hover);
}

/* ── HERO SECTION ───────────────────────────────── */
#home {
  position: relative;
  min-height: 100vh;
  margin-top: 84px;
  background: var(--dark-navy);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.hero-wrapper {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('../images/hero.jpg') center right / cover no-repeat;
  z-index: 1;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0b1726 40%, rgba(11, 23, 38, 0.75) 65%, rgba(11, 23, 38, 0.2) 100%);
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 40px;
}

.hero-main-title {
  font-size: clamp(34px, 4.8vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  max-width: 620px;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-main-title .highlight-orange {
  color: var(--orange);
}

.hero-orange-bar {
  width: 50px;
  height: 4px;
  background: var(--orange);
  margin-bottom: 24px;
  border-radius: 2px;
}

.hero-description {
  font-size: 16px;
  line-height: 1.65;
  color: #cbd5e1;
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 400;
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-hero-cta:hover {
  background: var(--orange-hover);
}

/* Hero Bottom Stats */
.hero-bottom-bar {
  position: relative;
  z-index: 3;
  background: rgba(4, 10, 18, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 40px;
}

.hero-bottom-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}

.stat-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.stat-badge svg {
  width: 18px;
  height: 18px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
}

/* ── SERVICES SECTION ───────────────────────────── */
#services {
  padding: 100px 0;
  background: #ffffff;
}

.section-tag-top {
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}

.section-heading-centered {
  text-align: center;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 800;
  color: #0f172a;
  max-width: 650px;
  margin: 0 auto 60px auto;
  line-height: 1.2;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card-service {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 36px 28px 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.card-service:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  border-color: #cbd5e1;
}

.card-service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
}

.card-service-icon svg {
  width: 38px;
  height: 38px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.75;
}

.card-service h3 {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.card-service p {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 28px;
}

.card-service .card-arrow {
  color: var(--orange);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

/* ── ABOUT SECTION ──────────────────────────────── */
#about {
  padding: 100px 0;
  background: #ffffff;
}

.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.about-heading-large {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.15;
  color: #0f172a;
  letter-spacing: -0.5px;
}

.about-quote-box {
  border-left: 4px solid var(--orange);
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-quote-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

/* ── INDUSTRIES SECTION ─────────────────────────── */
#industries {
  padding: 90px 0;
  background: var(--dark-navy);
}

.industries-title {
  text-align: center;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 56px;
}

.industries-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.industry-icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-icon-wrap svg {
  width: 38px;
  height: 38px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.8;
}

.industry-label {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

/* ── WHY CHOOSE SECTION ─────────────────────────── */
#why {
  padding: 90px 0 110px 0;
  background: var(--dark-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.why-title {
  text-align: center;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.why-subtitle {
  text-align: center;
  font-size: 15px;
  color: #94a3b8;
  margin-bottom: 54px;
}

.why-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card-box {
  background: var(--navy-card);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 32px 28px;
  transition: transform 0.2s, border-color 0.2s;
}

.why-card-box:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 80, 25, 0.4);
}

.why-card-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
}

.why-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
}

.why-card-box h3 {
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.why-card-box p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #94a3b8;
}

/* ── REQUEST A QUOTE SECTION ────────────────────── */
#quote {
  padding: 100px 0;
  background: #f8fafc;
}

.quote-title {
  text-align: center;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 10px;
}

.quote-subtitle {
  text-align: center;
  font-size: 15px;
  color: #64748b;
  margin-bottom: 48px;
}

.quote-card-form {
  max-width: 820px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 44px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.04);
  border: 1px solid #e2e8f0;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-field label {
  font-size: 12px;
  font-weight: 800;
  color: #1e293b;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  color: #0f172a;
  outline: none;
  background: #ffffff;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 80, 25, 0.1);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-full-width {
  grid-column: 1 / -1;
}

.btn-form-submit {
  width: 100%;
  padding: 16px;
  background: var(--orange);
  color: #ffffff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-form-submit:hover {
  background: var(--orange-hover);
}

/* ── FOOTER CTA BAR (Light Gray Strip) ────────── */
.footer-cta-strip {
  background: #f1f5f9;
  padding: 24px 40px;
  border-top: 1px solid #e2e8f0;
}

.footer-cta-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-left-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-phone-icon-circle {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.cta-phone-icon-circle svg {
  width: 20px;
  height: 20px;
  stroke: #0f172a;
  fill: none;
  stroke-width: 2;
}

.cta-strip-text-main {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
}

.cta-strip-contact-line {
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  margin-top: 2px;
}

.cta-strip-contact-line a {
  color: inherit;
  text-decoration: none;
}

.cta-strip-contact-line a:hover {
  color: var(--orange);
}

/* Orange dividing bar above dark footer */
.orange-divider-strip {
  width: 100%;
  height: 4px;
  background: var(--orange);
}

/* ── DARK FOOTER ───────────────────────────────── */
footer.site-footer {
  background: #0b1726;
  padding: 60px 0 30px 0;
  color: #94a3b8;
  font-size: 13.5px;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo-card {
  background: #ffffff;
  padding: 10px 16px;
  display: inline-block;
  border-radius: 4px;
  margin-bottom: 20px;
}

.footer-col-title {
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #94a3b8;
}

.footer-contact-row svg {
  width: 16px;
  height: 16px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.footer-copyright {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #64748b;
  font-size: 12px;
}

/* ── RESPONSIVE MEDIA QUERIES ───────────────────── */
@media (max-width: 1024px) {
  .services-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-row { grid-template-columns: repeat(3, 1fr); }
  .why-grid-layout { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  header.header-nav { height: 70px; }
  .nav-menu { display: none; }
  #home { margin-top: 70px; }
  .about-row { grid-template-columns: 1fr; }
  .services-cards-grid { grid-template-columns: 1fr; }
  .industries-row { grid-template-columns: repeat(2, 1fr); }
  .why-grid-layout { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer-columns { grid-template-columns: 1fr; }
  .footer-cta-inner { flex-direction: column; gap: 16px; text-align: center; }
}
