/* -------------------------------------------------------------
   MJ INFRA SOLUTIONS - HIGH-END MINIMALIST ARCHITECTURAL DESIGN
   Theme: Pure White Canvas, Charcoal Typography, Muted Gold Accents
   Typography: Inter (Clean Body) & Outfit (Sharp Architectural Headings)
------------------------------------------------------------- */

:root {
  --bg-white: #ffffff;
  --bg-offwhite: #f9fafb;
  --bg-subtle: #f3f4f6;
  
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  
  --accent-gold: #c5a059;
  --accent-gold-dark: #a3813c;
  --accent-gold-light: #fef9ee;
  
  --border-light: #e5e7eb;
  --border-subtle: #f3f4f6;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
  color: var(--text-secondary);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

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

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.gold-text {
  color: var(--accent-gold);
}

.section-header {
  margin-bottom: 56px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
}

/* Header & Nav (No links) */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 96px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
  transition: var(--transition);
}

.btn-wa:hover {
  background: #20ba59;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  padding: 80px 0 100px;
  background: var(--bg-white);
}

.hero-content {
  max-width: 860px;
  margin: 0 auto 60px;
}

.hero-heading {
  font-size: 3.8rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.hero-subhead {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--text-primary);
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--accent-gold);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: var(--bg-offwhite);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  font-weight: 600;
  border-radius: 30px;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--border-light);
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-floating-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-light);
}

.badge-icon {
  width: 42px;
  height: 42px;
  background: var(--accent-gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.2rem;
}

.hero-floating-badge strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.hero-floating-badge span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Minimal Stats Bar */
.stats-bar {
  padding: 50px 0;
  background: var(--bg-offwhite);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* Story / About Section */
.about-section {
  padding: 110px 0;
  background: var(--bg-white);
}

.grid-2col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.lead-p {
  font-size: 1.15rem;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 16px;
}

.body-p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.h-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

.h-item i {
  color: var(--accent-gold);
}

.about-images {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.img-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.main-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.img-row img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

/* Capabilities (What We Build) */
.capabilities-section {
  padding: 110px 0;
  background: var(--bg-offwhite);
}

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

.cap-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
}

.cap-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-gold);
}

.cap-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.cap-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.cap-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Portfolio Highlights Grid */
.portfolio-section {
  padding: 110px 0;
  background: var(--bg-white);
}

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

.p-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

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

.p-img {
  position: relative;
  height: 230px;
}

.p-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-gold-dark);
}

.p-info {
  padding: 24px;
}

.p-info h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.p-scope {
  font-size: 0.88rem;
  color: var(--accent-gold-dark);
  font-weight: 600;
  margin-bottom: 10px;
}

.p-loc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* On-site Section */
.onsite-section {
  padding: 100px 0;
  background: var(--bg-offwhite);
}

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

.onsite-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
}

.onsite-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.onsite-caption {
  padding: 20px;
}

.onsite-caption strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.onsite-caption span {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* Leadership Section */
.leadership-section {
  padding: 110px 0;
  background: var(--bg-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-card {
  background: var(--bg-offwhite);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px 28px;
}

.team-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 2px solid var(--accent-gold);
  box-shadow: var(--shadow-soft);
  background: var(--bg-white);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo-1 img {
  object-position: center 20%;
  transform: scale(1.15);
}

.team-photo-2 img {
  object-position: center 85%;
  transform: scale(1.45);
}

.team-photo-3 img {
  object-position: center 85%;
  transform: scale(1.45);
}

.team-initials {
  width: 50px;
  height: 50px;
  background: var(--accent-gold-light);
  border: 1px solid var(--accent-gold);
  border-radius: 50%;
  color: var(--accent-gold-dark);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.team-card h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.team-role {
  display: block;
  font-size: 0.85rem;
  color: var(--accent-gold-dark);
  font-weight: 600;
  margin-bottom: 16px;
}

.team-bio {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Client Endorsements */
.reviews-section {
  padding: 100px 0;
  background: var(--bg-offwhite);
}

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

.review-box {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-primary);
  line-height: 1.65;
  margin-bottom: 24px;
  font-style: italic;
}

.review-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--accent-gold-dark);
}

.review-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* CTA Banner */
.cta-banner {
  padding: 100px 0;
  background: var(--text-primary);
  color: #fff;
}

.cta-title {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 16px;
}

.cta-desc {
  color: #9ca3af;
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 40px;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 35px;
  transition: var(--transition);
}

.btn-cta-wa:hover {
  background: #20ba59;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-cta-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 35px;
  transition: var(--transition);
}

.btn-cta-call:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Minimal Off-White Footer */
.footer {
  padding: 40px 0;
  background: var(--bg-offwhite);
  color: var(--text-secondary);
  font-size: 0.88rem;
  border-top: 1px solid var(--border-light);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-address-block {
  max-width: 480px;
}

.footer-phone {
  margin-top: 6px;
  font-weight: 600;
  color: var(--text-primary);
}

.footer-phone a {
  color: var(--text-primary);
  transition: var(--transition);
}

.footer-phone a:hover {
  color: var(--accent-gold-dark);
}

.footer-phone i {
  color: var(--accent-gold);
  margin-right: 6px;
}

.footer-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-legal a {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--accent-gold-dark);
  text-decoration: underline;
}

.legal-dot {
  color: var(--text-muted);
}

.footer-copy p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .hero-heading { font-size: 2.8rem; }
  .grid-2col { grid-template-columns: 1fr; }
  .stats-grid, .capabilities-grid, .projects-grid, .team-grid, .reviews-slider, .onsite-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-heading { font-size: 2.2rem; }
  .cta-title { font-size: 2rem; }
  .stats-grid, .capabilities-grid, .projects-grid, .team-grid, .reviews-slider, .onsite-row {
    grid-template-columns: 1fr;
  }
  .cta-actions, .hero-buttons { flex-direction: column; }
  .footer-inner { flex-direction: column; text-align: center; gap: 16px; }
}
