/* ============================================================
   MARASI DEVELOPMENT — MAIN STYLESHEET
   Brand Colors: Orange #E85A24 | Grey #6D6E71
   Typography: Montserrat (Primary)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --orange:       #E85A24;
  --orange-dark:  #C44A1A;
  --orange-light: #F07040;
  --grey:         #6D6E71;
  --grey-dark:    #3A3A3C;
  --grey-light:   #A0A1A4;
  --charcoal:     #1E1E1E;
  --white:        #FFFFFF;
  --off-white:    #FAF8F5;
  --warm-beige:   #F5F0E8;
  --light-sand:   #EDE8DF;
  --border:       rgba(109,110,113,0.15);
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.14);
  --transition:   0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-main:    'Montserrat', sans-serif;
  --font-serif:   'Playfair Display', serif;
  --nav-height:   80px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utility Classes ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

.section { padding: 100px 0; }
.section--dark { background: var(--charcoal); color: var(--white); }
.section--warm { background: var(--warm-beige); }
.section--sand { background: var(--light-sand); }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.section-title--white { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 600px;
  line-height: 1.8;
}
.section-subtitle--white { color: rgba(255,255,255,0.7); }

.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,90,36,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}
.btn--outline-dark {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn--outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
}
.btn svg { width: 16px; height: 16px; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(4px); }

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(30,30,30,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 48px;
  max-width: 1400px;
  margin: 0 auto;
}
.navbar__logo img { height: 44px; width: auto; }
.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.navbar__links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}
.navbar__links a:hover,
.navbar__links a.active { color: var(--white); }
.navbar__links a:hover::after,
.navbar__links a.active::after { width: 100%; }
.navbar__cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 24px;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  border-radius: 2px;
  transition: background var(--transition) !important;
}
.navbar__cta:hover { background: var(--orange-dark) !important; }
.navbar__cta::after { display: none !important; }

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.navbar__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.navbar__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: rgba(30,30,30,0.98);
  backdrop-filter: blur(16px);
  z-index: 999;
  padding: 32px 48px 48px;
  transform: translateY(-100%);
  transition: transform var(--transition);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--orange); }

/* ── Hero Section ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(30,30,30,0.78) 0%,
    rgba(30,30,30,0.45) 55%,
    rgba(30,30,30,0.2) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 48px;
  margin-left: 4%;
  animation: heroFadeUp 1s ease-out 0.3s both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__label::before {
  content: '';
  display: block;
  width: 40px; height: 2px;
  background: var(--orange);
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__title span { color: var(--orange); }
.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--charcoal);
  padding: 0;
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255,255,255,0.06);
}
.stat-item {
  padding: 36px 40px;
  border-right: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  transition: background var(--transition);
}
.stat-item:hover { background: rgba(232,90,36,0.08); }
.stat-item__number {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ── About Section ── */
.about { padding: 120px 0; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__image-wrap {
  position: relative;
}
.about__image-main {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 2px;
}
.about__image-accent {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 220px; height: 220px;
  object-fit: cover;
  border-radius: 2px;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about__badge {
  position: absolute;
  top: 40px; left: -30px;
  background: var(--orange);
  color: var(--white);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about__badge-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.about__badge-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.9;
}
.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.about__value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--warm-beige);
  border-radius: 2px;
  transition: var(--transition);
}
.about__value-item:hover {
  background: var(--light-sand);
  transform: translateY(-2px);
}
.about__value-icon {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about__value-icon svg { width: 16px; height: 16px; color: var(--white); }
.about__value-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.about__value-desc {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.6;
}

/* ── Services Section ── */
.services { padding: 120px 0; background: var(--charcoal); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}
.service-card__image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card__image { transform: scale(1.06); }
.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,30,30,0.9) 0%, rgba(30,30,30,0.3) 60%, transparent 100%);
  transition: var(--transition);
}
.service-card:hover .service-card__overlay {
  background: linear-gradient(to top, rgba(232,90,36,0.85) 0%, rgba(30,30,30,0.5) 60%, transparent 100%);
}
.service-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 36px;
}
.service-card__number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 12px;
  transition: color var(--transition);
}
.service-card:hover .service-card__number { color: rgba(255,255,255,0.7); }
.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.service-card:hover .service-card__desc {
  max-height: 120px;
  opacity: 1;
}
.service-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.service-card:hover .service-card__arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ── Shareholders Section ── */
.shareholders { padding: 120px 0; background: var(--off-white); }
.shareholders__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.shareholders__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.shareholder-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 3px solid transparent;
}
.shareholder-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--orange);
}
.shareholder-card__header {
  padding: 36px 36px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--border);
}
.shareholder-card__icon {
  width: 56px; height: 56px;
  background: var(--warm-beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.shareholder-card__icon svg { width: 24px; height: 24px; color: var(--orange); }
.shareholder-card__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.shareholder-card__stake {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}
.shareholder-card__body { padding: 28px 36px 36px; }
.shareholder-card__desc {
  font-size: 13.5px;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 20px;
}
.shareholder-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.shareholder-card__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232,90,36,0.08);
  padding: 5px 12px;
  border-radius: 20px;
}

/* ── Projects Section ── */
.projects { padding: 120px 0; }
.projects__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}
.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: var(--white);
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.project-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.project-card__image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover .project-card__image { transform: scale(1.06); }
.project-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.project-card__badge--active {
  background: var(--orange);
  color: var(--white);
}
.project-card__badge--completed {
  background: rgba(255,255,255,0.9);
  color: var(--grey-dark);
}
.project-card__body { padding: 28px; }
.project-card__category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.project-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.project-card__location {
  font-size: 12.5px;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}
.project-card__location svg { width: 13px; height: 13px; }
.project-card__meta {
  display: flex;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.project-card__meta-item { font-size: 11px; color: var(--grey); }
.project-card__meta-item strong { display: block; font-size: 14px; color: var(--charcoal); font-weight: 700; }

/* ── Vision Section ── */
.vision {
  padding: 120px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.vision__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E85A24' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.vision__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.vision__pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
.vision__pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--orange);
  transition: background var(--transition);
}
.vision__pillar:hover { background: rgba(255,255,255,0.07); }
.vision__pillar-icon {
  width: 44px; height: 44px;
  background: rgba(232,90,36,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vision__pillar-icon svg { width: 20px; height: 20px; color: var(--orange); }
.vision__pillar-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.vision__pillar-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.vision__image-wrap { position: relative; }
.vision__image {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 2px;
}
.vision__quote {
  position: absolute;
  bottom: -24px; left: -24px;
  background: var(--orange);
  color: var(--white);
  padding: 32px 36px;
  max-width: 320px;
  box-shadow: var(--shadow-lg);
}
.vision__quote-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 12px;
}
.vision__quote-author {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ── News Section ── */
.news { padding: 120px 0; background: var(--warm-beige); }
.news__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
}
.news-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.news-card__image-wrap {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.news-card--featured .news-card__image-wrap { aspect-ratio: 16/10; }
.news-card__image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.news-card:hover .news-card__image { transform: scale(1.05); }
.news-card__body { padding: 28px; }
.news-card__category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.news-card__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
  margin-bottom: 12px;
}
.news-card--featured .news-card__title { font-size: 1.4rem; }
.news-card__excerpt {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 16px;
}
.news-card__date {
  font-size: 11px;
  color: var(--grey-light);
  font-weight: 500;
}

/* ── Contact Section ── */
.contact { padding: 120px 0; }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact__info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 36px;
}
.contact__info-icon {
  width: 48px; height: 48px;
  background: var(--warm-beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__info-icon svg { width: 20px; height: 20px; color: var(--orange); }
.contact__info-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 6px;
}
.contact__info-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
}
.contact__info-value a { transition: color var(--transition); }
.contact__info-value a:hover { color: var(--orange); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--charcoal);
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 2px;
  padding: 14px 18px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,90,36,0.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 140px; }

/* ── Footer ── */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.7); }
.footer__top {
  padding: 80px 0 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__brand-logo { height: 40px; margin-bottom: 20px; }
.footer__brand-desc {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.55);
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.footer__social a:hover { background: var(--orange); }
.footer__social svg { width: 16px; height: 16px; color: var(--white); }
.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--orange); }
.footer__contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer__contact-item svg { width: 15px; height: 15px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer__bottom a { color: var(--orange); }

/* ── Scroll Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── Page Header (inner pages) ── */
.page-header {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-header__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,30,30,0.85) 0%, rgba(30,30,30,0.4) 100%);
}
.page-header__content {
  position: relative;
  z-index: 2;
  padding: 0 48px 60px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
.page-header__breadcrumb {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}
.page-header__breadcrumb a { color: var(--orange); }
.page-header__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--white);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about__grid,
  .vision__inner,
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__image-accent { display: none; }
  .about__badge { left: 16px; top: 16px; }
  .vision__quote { position: static; margin-top: 24px; max-width: 100%; }
  .shareholders__intro { grid-template-columns: 1fr; gap: 32px; }
  .news__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-height: 68px; }
  .navbar__links, .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }
  .mobile-menu { display: block; }
  .section { padding: 72px 0; }
  .hero__content { padding: 0 24px; margin-left: 0; }
  .hero__title { font-size: 2.4rem; }
  .services__grid { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: 3/2; }
  .shareholders__grid { grid-template-columns: 1fr; }
  .projects__grid { grid-template-columns: 1fr; }
  .projects__header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .about__values { grid-template-columns: 1fr; }
  .container--wide { padding: 0 24px; }
  .navbar__inner { padding: 0 24px; }
  .page-header__content { padding: 0 24px 40px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .stats-bar__inner { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 24px 16px; }
  .stat-item__number { font-size: 2rem; }
}

/* ========================================
   PROJECT FULL CARDS (projects.html)
   ======================================== */
.projects-grid-full {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) {
  .projects-grid-full { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1200px) {
  .projects-grid-full { grid-template-columns: repeat(3, 1fr); }
}

.project-full-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.project-full-card--clickable:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}
.project-full-card__img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.project-full-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-full-card--clickable:hover .project-full-card__img {
  transform: scale(1.05);
}
.project-full-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}
.badge--active {
  background: var(--orange);
  color: var(--white);
}
.badge--pipeline {
  background: var(--charcoal);
  color: var(--white);
}
.badge--completed {
  background: rgba(255,255,255,0.92);
  color: var(--grey-dark);
}
.project-full-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.project-full-card__cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.project-full-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.3;
}
.project-full-card__loc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 14px;
}
.project-full-card__loc svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--orange);
}
.project-full-card__desc {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}
.project-full-card__meta {
  display: flex;
  gap: 20px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin-top: auto;
}
.project-full-card__meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  color: var(--grey);
}
.project-full-card__meta-item strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
}
/* View Details arrow on active card */
.project-full-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  transition: gap 0.3s ease;
}
.project-full-card--clickable:hover .project-full-card__cta {
  gap: 14px;
}
.project-full-card__cta svg {
  width: 14px;
  height: 14px;
}

/* projects-full section wrapper */
.projects-full {
  padding: 80px 0 100px;
  background: var(--off-white);
}
.projects-full__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 48px;
}
@media (min-width: 900px) {
  .projects-full__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1200px) {
  .projects-full__grid { grid-template-columns: repeat(3, 1fr); }
}
