/* ================================================
   PROMAR CONSTRUCTION — style.css
   v2 — Multi-page
   ================================================ */

/* --- RESET & BASE ----------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background: var(--clr-white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* --- CSS VARIABLES --------------------------- */
:root {
  --clr-dark:        #0d0d0d;
  --clr-dark-2:      #181a22;
  --clr-accent:      #c8960c;
  --clr-accent-h:    #e8b230;
  --clr-light:       #f7f6f1;
  --clr-white:       #ffffff;
  --clr-text:        #1a1a1a;
  --clr-muted:       #888888;
  --clr-border:      #e0ddd6;

  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --max-w:       1200px;
  --py:          90px;
  --transition:  0.3s ease;
  --shadow:      0 2px 16px rgba(0,0,0,0.07);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.18);
  --radius:      6px;
  --radius-lg:   14px;
}

/* --- TYPOGRAPHY ------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}

/* --- UTILITIES ------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-pretitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--clr-text);
  margin-bottom: 16px;
  font-weight: 800;
}
.section-title span { color: var(--clr-accent); }

.section-desc {
  color: var(--clr-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--clr-accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--clr-accent-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,150,12,0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

.btn-dark {
  background: var(--clr-dark);
  color: #fff;
}
.btn-dark:hover {
  background: #222;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* --- PRELOADER ------------------------------- */
#preloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }

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

.preloader-inner img {
  width: 260px;
  margin: 0 auto 36px;
  display: block;
}

.preloader-bar {
  width: 260px;
  height: 4px;
  background: rgba(0,0,0,0.1);
  border-radius: 99px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-fill {
  height: 100%;
  background: var(--clr-accent);
  width: 0;
  border-radius: 99px;
  animation: preload 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes preload {
  0%   { width: 0%; }
  100% { width: 100%; }
}

/* --- HEADER / NAV ---------------------------- */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

#header.scrolled {
  background: rgba(13,13,13,0.97);
  padding: 13px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
  backdrop-filter: blur(12px);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 58px;
  width: auto;
  display: block;
  filter: invert(1) hue-rotate(180deg);
  transition: opacity var(--transition);
}

.nav-logo:hover img {
  opacity: 0.88;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-menu a {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--clr-accent);
  transition: width var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active { color: #fff; }

.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

.nav-cta {
  background: var(--clr-accent) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 3px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--clr-accent-h) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1100;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
  transform-origin: center;
}

/* --- HERO ------------------------------------ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.40) 55%,
    rgba(0,0,0,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  color: #fff;
}

.hero-pretitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.5s forwards;
}
.hero-content h1 span {
  color: var(--clr-accent);
  display: block;
}

.hero-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  max-width: 540px;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.7s forwards;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  animation: scrollLine 2.2s ease infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  30%  { opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: top; }
  60.01% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* --- ABOUT ----------------------------------- */
#about {
  padding: var(--py) 0;
  background: var(--clr-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img { position: relative; }
.about-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--clr-accent);
  color: #fff;
  padding: 26px 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}
.about-badge strong sup { font-size: 0.45em; vertical-align: super; }
.about-badge span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 4px;
  display: block;
}

.about-content .section-pretitle { display: block; text-align: left; }
.about-content .section-title { text-align: left; margin-bottom: 20px; }

.about-content > p {
  color: var(--clr-muted);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 28px 0 36px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--clr-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  margin-top: 2px;
}

.about-feature strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 3px;
}
.about-feature p {
  font-size: 0.86rem;
  color: var(--clr-muted);
  margin: 0;
}

/* --- SERVICES -------------------------------- */
#services {
  padding: var(--py) 0;
  background: var(--clr-light);
}

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

.service-card {
  background: var(--clr-white);
  padding: 40px 32px;
  border-radius: var(--radius);
  border-bottom: 3px solid transparent;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: attr(data-num);
  position: absolute;
  top: 16px; right: 22px;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(224,221,214,0.6);
  line-height: 1;
  transition: color var(--transition);
}

.service-card:hover {
  transform: translateY(-7px);
  border-bottom-color: var(--clr-accent);
  box-shadow: var(--shadow-md);
}
.service-card:hover::before { color: rgba(200,150,12,0.08); }

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(200,150,12,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: rgba(200,150,12,0.18); }

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--clr-accent);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--clr-muted);
  line-height: 1.75;
  margin: 0;
}

/* --- PROJECTS -------------------------------- */
#projects {
  padding: var(--py) 0;
  background: var(--clr-white);
}

.projects-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 9px 22px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid var(--clr-border);
  color: var(--clr-muted);
  border-radius: 99px;
  transition: all var(--transition);
  background: none;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: #fff;
}

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

.project-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-item:hover img { transform: scale(1.07); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0) 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 22px;
}
.project-item:hover .project-overlay { opacity: 1; }

.project-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.project-info span {
  font-size: 0.7rem;
  color: var(--clr-accent);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.load-more-wrap { text-align: center; margin-top: 48px; }

/* --- STATS ----------------------------------- */
#stats {
  padding: var(--py) 0;
  background: var(--clr-dark-2);
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../Photos/DSC09085.jpg') center/cover no-repeat;
  opacity: 0.1;
}

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

.stat-item { color: #fff; }

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  font-weight: 900;
  color: var(--clr-accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number sup { font-size: 0.45em; vertical-align: super; }

.stat-divider {
  width: 36px;
  height: 2px;
  background: var(--clr-accent);
  margin: 14px auto;
  opacity: 0.6;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* --- PARTNERS -------------------------------- */
#partners {
  padding: 56px 0;
  background: var(--clr-light);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.partners-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 36px;
}

.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.partner-item {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: #ccc;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color var(--transition);
  cursor: default;
}
.partner-item:hover { color: var(--clr-muted); }

/* --- CONTACT --------------------------------- */
#contact {
  padding: var(--py) 0;
  background: var(--clr-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.contact-info .section-pretitle { display: block; text-align: left; }
.contact-info .section-title { text-align: left; font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-bottom: 16px; }
.contact-info > p {
  color: var(--clr-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-details { display: flex; flex-direction: column; gap: 22px; }

.contact-item { display: flex; align-items: flex-start; gap: 16px; }

.contact-item-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: rgba(200,150,12,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--clr-accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-text);
  margin-bottom: 4px;
}
.contact-item-text span {
  font-size: 0.92rem;
  color: var(--clr-muted);
}

/* Contact Form */
.contact-form {
  background: var(--clr-light);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

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

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  font-size: 0.92rem;
  color: var(--clr-text);
  background: var(--clr-white);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--clr-accent); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 0.8rem;
  justify-content: center;
  transition: all 0.3s ease;
}

/* --- FOOTER ---------------------------------- */
footer {
  background: var(--clr-dark);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand img {
  height: auto;
  width: 200px;
  margin-bottom: 20px;
  display: block;
  filter: invert(1) hue-rotate(180deg);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 11px; }

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}
.footer-col ul li a::before {
  content: '→';
  color: var(--clr-accent);
  font-size: 0.78rem;
}
.footer-col ul li a:hover { color: #fff; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.55);
}
.footer-contact li .icon { color: var(--clr-accent); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}
.footer-bottom a { color: var(--clr-accent); }

/* --- SCROLL REVEAL --------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }
.reveal-delay-4 { transition-delay: 0.5s; }
.reveal-delay-5 { transition-delay: 0.65s; }

/* --- ANIMATIONS ------------------------------ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE ------------------------------ */
@media (max-width: 1024px) {
  :root { --py: 70px; }
  .about-grid  { gap: 48px; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --py: 56px; }

  /* Mobile Nav */
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 300px;
    height: 100vh;
    background: var(--clr-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 32px 32px;
    gap: 8px;
    transition: right 0.35s ease;
    box-shadow: -4px 0 48px rgba(0,0,0,0.5);
    z-index: 1000;
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { font-size: 0.95rem; padding: 10px 0; width: 100%; }
  .nav-cta { margin-top: 8px; text-align: center; justify-content: center; }
  .nav-toggle { display: flex; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img img { height: 360px; }
  .about-badge { right: 0; bottom: -18px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-card::before { display: none; }

  /* Projects */
  .projects-grid { grid-template-columns: repeat(2, 1fr); }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Hero */
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .projects-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-row { gap: 28px; }
}

/* ================================================
   INNER PAGES — Shared Styles
   ================================================ */

/* --- Page Banner (inner hero) ---------------- */
.page-banner {
  background: var(--clr-dark-2);
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.page-banner-about::before   { background-image: url('../Photos/DSC08933.jpg'); }
.page-banner-services::before { background-image: url('../Photos/DSC09025.jpg'); }
.page-banner-projects::before { background-image: url('../Photos/DSC09076.jpg'); }
.page-banner-news::before     { background-image: url('../Photos/DSC09056.jpg'); }
.page-banner-contact::before  { background-image: url('../Photos/DSC09054.jpg'); }

.page-banner-content { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--clr-accent); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--clr-accent-h); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }

.page-banner h1 {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}

.page-banner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Home Teaser Sections ------------------- */
.home-about {
  padding: var(--py) 0;
  background: var(--clr-white);
}

.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.home-about-img {
  position: relative;
}
.home-about-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.home-about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.home-about-stat {
  background: var(--clr-dark);
  padding: 20px 24px;
  text-align: center;
}
.home-about-stat:nth-child(2) { background: var(--clr-accent); }

.home-about-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.home-about-stat strong sup { font-size: 0.5em; vertical-align: super; }
.home-about-stat span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  display: block;
}

.home-about-content .section-pretitle { display: block; text-align: left; }
.home-about-content .section-title   { text-align: left; }
.home-about-content > p {
  color: var(--clr-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.home-about-content > a { margin-top: 12px; }

/* --- Home Services Teaser ------------------- */
.home-services {
  padding: var(--py) 0;
  background: var(--clr-light);
}

/* --- Home Projects Teaser ------------------- */
.home-projects {
  padding: var(--py) 0;
  background: var(--clr-white);
}

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

/* --- CTA Section (big call to action) ------- */
.cta-section {
  padding: 80px 0;
  background: var(--clr-dark-2);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../Photos/DSC09175.jpg') center/cover no-repeat;
  opacity: 0.12;
}
.cta-section-content {
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}
.cta-section p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- News / Actualités Cards ---------------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.news-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-card-img img { transform: scale(1.05); }

.news-card-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--clr-accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 99px;
}

.news-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-meta {
  font-size: 0.75rem;
  color: var(--clr-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.news-card-meta span::before { content: '• '; }
.news-card-meta span:first-child::before { content: ''; }

.news-card-body h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-text);
  line-height: 1.4;
  margin-bottom: 10px;
}

.news-card-body p {
  font-size: 0.875rem;
  color: var(--clr-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}

.news-read-more {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
  margin-top: auto;
}
.news-read-more:hover { gap: 10px; }

/* Featured news (home page) */
.news-featured {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.news-featured-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
}
.news-featured-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-featured-main:hover img { transform: scale(1.04); }

.news-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.news-featured-overlay .news-card-cat { position: static; margin-bottom: 12px; align-self: flex-start; }
.news-featured-overlay-inner { display: flex; flex-direction: column; }

.news-featured-overlay h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 8px;
}
.news-featured-overlay .date {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}

/* --- About Page Specific -------------------- */
.about-page-intro {
  padding: var(--py) 0;
  background: var(--clr-white);
}

.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.about-page-img { position: relative; }
.about-page-img img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-quote {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--clr-accent);
  color: #fff;
  padding: 28px 32px;
  border-radius: var(--radius);
  max-width: 300px;
  box-shadow: var(--shadow-md);
}
.about-quote p {
  font-size: 0.88rem;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 12px;
  opacity: 0.95;
}
.about-quote strong {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  display: block;
}
.about-quote em {
  font-size: 0.7rem;
  opacity: 0.8;
}

/* Values section */
.values-section {
  padding: var(--py) 0;
  background: var(--clr-light);
}

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

.value-card {
  background: var(--clr-white);
  padding: 36px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.value-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(200,150,12,0.15);
  line-height: 1;
  margin-bottom: -8px;
}

.value-icon {
  width: 64px;
  height: 64px;
  background: rgba(200,150,12,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.value-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--clr-accent);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.value-card p {
  font-size: 0.875rem;
  color: var(--clr-muted);
  line-height: 1.7;
  margin: 0;
}

/* Timeline */
.timeline-section {
  padding: var(--py) 0;
  background: var(--clr-white);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--clr-border);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 48px;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content { grid-column: 1; text-align: right; }
.timeline-item:nth-child(odd) .timeline-date    { grid-column: 2; }
.timeline-item:nth-child(odd) .timeline-empty   { grid-column: 3; }

.timeline-item:nth-child(even) .timeline-empty   { grid-column: 1; }
.timeline-item:nth-child(even) .timeline-date    { grid-column: 2; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 3; text-align: left; }

.timeline-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--clr-light);
}

.timeline-content h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 6px;
}
.timeline-content p {
  font-size: 0.85rem;
  color: var(--clr-muted);
  line-height: 1.65;
  margin: 0;
}

/* --- Services Page Specific ----------------- */
.service-full {
  padding: 60px 0;
  border-bottom: 1px solid var(--clr-border);
}
.service-full:last-child { border-bottom: none; }

.service-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.service-full:nth-child(even) .service-full-grid { direction: rtl; }
.service-full:nth-child(even) .service-full-grid > * { direction: ltr; }

.service-full-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.service-full-body .section-pretitle { display: block; text-align: left; }
.service-full-body h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--clr-text);
  margin: 12px 0 18px;
}
.service-full-body > p {
  color: var(--clr-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--clr-text);
}
.service-point::before {
  content: '✓';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--clr-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  margin-top: 1px;
}

/* Process steps */
.process-section {
  padding: var(--py) 0;
  background: var(--clr-dark-2);
}
.process-section .section-title { color: #fff; }
.process-section .section-desc  { color: rgba(255,255,255,0.55); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step-num {
  width: 64px;
  height: 64px;
  background: var(--clr-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 8px rgba(200,150,12,0.15);
}

.process-step h4 {
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.process-step p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin: 0;
}

/* --- Contact Page Specific ------------------ */
.contact-page-section {
  padding: var(--py) 0;
  background: var(--clr-white);
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Map placeholder */
.map-placeholder {
  background: var(--clr-light);
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--clr-muted);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px dashed var(--clr-border);
  margin-top: 24px;
}

/* --- Responsive additions ------------------- */
@media (max-width: 1024px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .home-about-grid { gap: 48px; }
  .about-page-grid { gap: 48px; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .service-full-grid { gap: 40px; }
  .news-featured { grid-template-columns: 1fr; }
  .home-projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .home-about-grid { grid-template-columns: 1fr; }
  .home-about-img img { height: 360px; }
  .home-about-stats { right: 0; bottom: -20px; }
  .about-page-grid { grid-template-columns: 1fr; }
  .about-page-img img { height: 360px; }
  .about-quote { right: 0; }
  .values-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .service-full-grid { grid-template-columns: 1fr; }
  .service-full:nth-child(even) .service-full-grid { direction: ltr; }
  .service-full-img img { height: 260px; }
  .timeline::before { left: 20px; }
  .timeline-item { grid-template-columns: 40px 1fr !important; }
  .timeline-item > * { grid-column: auto !important; }
  .timeline-item .timeline-empty { display: none; }
  .timeline-dot { width: 40px; height: 40px; font-size: 0.6rem; }
  .timeline-content { text-align: left !important; }
  .cta-btns { flex-direction: column; align-items: center; }
  .home-projects-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

