/* ================================================================
   CERVANTES CONCRETE SOLUTIONS — Global Stylesheet
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- VARIABLES ---- */
:root {
  --red:         #c0392b;
  --red-dark:    #922b21;
  --red-light:   #e74c3c;
  --charcoal:    #1a1a1a;
  --charcoal-2:  #242424;
  --white:       #ffffff;
  --off-white:   #f5f4f1;
  --gray-100:    #eeece9;
  --gray-200:    #d5d2cd;
  --gray-400:    #9a9895;
  --gray-600:    #5c5a58;
  --gray-800:    #2e2c2a;

  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Inter', sans-serif;

  --nav-h:      76px;
  --radius:     5px;
  --transition: 0.3s ease;
}

/* ---- RESET ---- */
*, *::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(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--red); color: var(--white); }

/* ---- CONTAINER ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 36px; }

/* ---- SECTIONS ---- */
.section        { padding: 100px 0; }
.section-sm     { padding: 64px 0; }
.section-dark   { background: var(--charcoal); color: var(--white); }
.section-red    { background: var(--red); color: var(--white); }
.section-off    { background: var(--off-white); }

/* ---- SECTION HEADERS ---- */
.section-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-dark .section-label  { color: #e87d73; }
.section-red  .section-label  { color: rgba(255,255,255,0.7); }

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  color: var(--charcoal);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-dark .section-title  { color: var(--white); }
.section-red  .section-title  { color: var(--white); }

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-400);
  max-width: 560px;
  line-height: 1.75;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }
.section-red  .section-subtitle { color: rgba(255,255,255,0.8); }

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

.section-divider {
  width: 52px;
  height: 3px;
  background: var(--red);
  margin-bottom: 24px;
  border-radius: 2px;
}
.section-center .section-divider { margin-left: auto; margin-right: auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary  { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,57,43,0.35); }
.btn-outline  { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--charcoal); }
.btn-outline-dark { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }
.btn-sm { padding: 10px 22px; font-size: 0.8rem; }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* ================================================================
   NAVBAR
================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--charcoal);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.4); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 36px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img {
  height: 54px;
  width: auto;
  border-radius: 6px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: 3px;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 14px; right: 14px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-cta { flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   HERO — HOMEPAGE (full viewport)
================================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 6s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.55) 60%, rgba(10,10,10,0.38) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 36px;
  padding-top: var(--nav-h);
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.92;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
  max-width: 820px;
}
.hero-title span { color: var(--red); }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 48px;
  max-width: 480px;
  line-height: 1.75;
}
.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-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  animation: heroScroll 2.2s ease-in-out infinite;
}
.hero-scroll i { font-size: 1.1rem; }
@keyframes heroScroll {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50%       { transform: translateX(-50%) translateY(10px); opacity: 1; }
}

/* ================================================================
   PAGE HERO — INNER PAGES (shorter banner)
================================================================ */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.35) 100%);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 36px 56px;
}
.page-breadcrumb {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}
.page-breadcrumb a { color: var(--red); }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 1px;
}
.page-hero-sub {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 14px;
}

/* ================================================================
   HOME: SERVICES OVERVIEW
================================================================ */
.services-overview-intro {
  max-width: 600px;
  margin: 0 auto 64px;
  text-align: center;
}
.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 38px 22px 32px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}
.svc-card:hover {
  border-color: var(--red);
  box-shadow: 0 14px 40px rgba(0,0,0,0.1);
  transform: translateY(-6px);
}
.svc-icon {
  width: 62px;
  height: 62px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--red);
  transition: all var(--transition);
}
.svc-card:hover .svc-icon { background: var(--red); color: var(--white); }
.svc-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.svc-desc { font-size: 0.83rem; color: var(--gray-400); line-height: 1.65; }

/* ================================================================
   HOME: WHY CHOOSE US
================================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 56px;
}
.why-item { text-align: center; }
.why-icon-wrap {
  width: 74px;
  height: 74px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.85rem;
  color: var(--red);
  transition: all var(--transition);
}
.why-item:hover .why-icon-wrap { background: var(--red); border-color: var(--red); color: var(--white); }
.why-item-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 12px;
}
.why-item-desc { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.75; }

/* ================================================================
   HOME: FEATURED WORK
================================================================ */
.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.work-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.work-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.work-item:hover img { transform: scale(1.07); }
.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.72) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 22px;
}
.work-item:hover .work-overlay { opacity: 1; }
.work-tag {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ================================================================
   HOME: STATS BAR
================================================================ */
.stats-bar { padding: 64px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5vw, 5rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ================================================================
   HOME: ABOUT PREVIEW
================================================================ */
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-preview-img-wrap {
  position: relative;
}
.about-preview-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-preview-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -18px; right: -18px;
  width: 55%; height: 55%;
  border: 4px solid var(--red);
  border-radius: var(--radius);
  z-index: -1;
}
.about-preview-content .section-subtitle { margin-bottom: 36px; }

/* ================================================================
   CTA BANNER
================================================================ */
.cta-banner {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.8);
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 36px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  color: var(--white);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 20px;
}
.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 44px;
  line-height: 1.75;
}
.cta-contact-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.65);
}
.cta-contact-item i { color: var(--red); font-size: 1.1rem; }
.cta-contact-item a { color: rgba(255,255,255,0.85); }
.cta-contact-item a:hover { color: var(--white); }

/* ================================================================
   SERVICES PAGE
================================================================ */
.services-intro-tagline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  color: var(--charcoal);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
}
.services-intro-tagline span { color: var(--red); }

.svc-detail-section { padding: 80px 0; border-bottom: 1px solid var(--gray-100); }
.svc-detail-section:last-of-type { border-bottom: none; }

.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.svc-detail-grid.reverse { direction: rtl; }
.svc-detail-grid.reverse > * { direction: ltr; }

.svc-detail-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
}
.svc-detail-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.svc-detail-img:hover img { transform: scale(1.04); }

.svc-number {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: -28px;
}
.svc-detail-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--charcoal);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.svc-detail-body {
  font-size: 0.96rem;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 28px;
}
.svc-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.svc-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gray-600);
}
.svc-feature i { color: var(--red); font-size: 0.75rem; }

/* Stamped Highlight Box */
.stamped-box {
  background: var(--charcoal);
  border-radius: 8px;
  padding: 52px 48px;
  margin-top: 16px;
}
.stamped-box-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.stamped-box-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
}
.stamped-box-img img { width: 100%; height: 100%; object-fit: cover; }
.stamped-benefits { display: flex; flex-direction: column; gap: 22px; margin: 28px 0 36px; }
.stamped-benefit { display: flex; gap: 18px; align-items: flex-start; }
.stamped-ben-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  background: rgba(192,57,43,0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1rem;
}
.stamped-ben-text h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.stamped-ben-text p { font-size: 0.86rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* Why Us Cards (Services Page) */
.why-us-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.why-us-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all var(--transition);
}
.why-us-card:hover { border-color: var(--red); box-shadow: 0 10px 32px rgba(0,0,0,0.08); }
.wu-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.3rem;
  transition: all var(--transition);
}
.why-us-card:hover .wu-icon { background: var(--red); color: var(--white); }
.wu-text h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.wu-text p { font-size: 0.86rem; color: var(--gray-400); line-height: 1.7; }

/* ================================================================
   MISSION PAGE
================================================================ */
.mission-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mission-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
}
.mission-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.mission-quote-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}
.mission-quote-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.mission-quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.84);
}
.mission-quote-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 36px;
}
.mission-quote-text {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 28px;
}
.mission-quote-text em { color: var(--red); font-style: normal; }

.values-section { padding: 100px 0; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 52px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 26px;
  text-align: center;
  transition: all var(--transition);
}
.value-card:hover { border-color: var(--red); transform: translateY(-5px); box-shadow: 0 14px 40px rgba(0,0,0,0.09); }
.value-icon { font-size: 2.2rem; color: var(--red); margin-bottom: 18px; }
.value-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.value-desc { font-size: 0.86rem; color: var(--gray-400); line-height: 1.75; }

.commitment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.commitment-img {
  aspect-ratio: 5/4;
  overflow: hidden;
  border-radius: var(--radius);
}
.commitment-img img { width: 100%; height: 100%; object-fit: cover; }
.commitment-list { display: flex; flex-direction: column; gap: 20px; margin: 28px 0 36px; }
.commitment-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.commitment-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: rgba(192,57,43,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 0.85rem;
}
.commitment-text h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.commitment-text p { font-size: 0.86rem; color: var(--gray-400); line-height: 1.65; }

/* ================================================================
   GALLERY PAGE
================================================================ */
.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 52px;
}
.filter-btn {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 3px;
  border: 2px solid var(--gray-200);
  color: var(--gray-600);
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
}
.filter-btn:hover { border-color: var(--red); color: var(--red); }
.filter-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}
.gallery-item.hidden { display: none; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(10,10,10,0.45); }
.gallery-item-overlay i {
  color: var(--white);
  font-size: 1.8rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-overlay i { opacity: 1; }
.gallery-item-tag {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.72), transparent);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transform: translateY(100%);
  transition: transform var(--transition);
}
.gallery-item:hover .gallery-item-tag { transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
}
.lb-close {
  position: absolute;
  top: 24px; right: 32px;
  color: rgba(255,255,255,0.7);
  font-size: 2rem;
  cursor: pointer;
  transition: color var(--transition);
  z-index: 1;
}
.lb-close:hover { color: var(--white); }
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.lb-nav:hover { background: rgba(255,255,255,0.2); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }

/* ================================================================
   CONTACT PAGE
================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--charcoal);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact-form-sub {
  font-size: 0.95rem;
  color: var(--gray-400);
  margin-bottom: 40px;
  line-height: 1.7;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.09);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray-200); }
.form-textarea { min-height: 148px; resize: vertical; }
.btn-form-submit { width: 100%; justify-content: center; padding: 16px; font-size: 0.95rem; }
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius);
  padding: 18px 20px;
  text-align: center;
  color: #2e7d32;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  margin-top: 18px;
}
.form-success.show { display: block; }

.contact-info-col { padding-top: 8px; }
.contact-info-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--charcoal);
  text-transform: uppercase;
  margin-bottom: 36px;
}
.contact-info-list { display: flex; flex-direction: column; gap: 28px; }
.contact-info-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.ci-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.1rem;
}
.ci-text h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-400);
  margin-bottom: 5px;
}
.ci-text p, .ci-text a {
  font-size: 1rem;
  color: var(--charcoal);
  font-weight: 500;
  line-height: 1.5;
}
.ci-text a:hover { color: var(--red); }

.service-area-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 30px;
  margin-top: 40px;
}
.service-area-card h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--charcoal);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-area-card h4 i { color: var(--red); }
.service-area-card p { font-size: 0.88rem; color: var(--gray-400); line-height: 1.75; }

/* ================================================================
   FOOTER
================================================================ */
.footer { background: #111; }
.footer-main { padding: 80px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-brand-logo img { height: 52px; width: auto; border-radius: 6px; margin-bottom: 20px; }
.footer-brand p { font-size: 0.86rem; line-height: 1.8; color: rgba(255,255,255,0.4); max-width: 280px; }
.footer-col h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li { font-size: 0.86rem; color: rgba(255,255,255,0.45); }
.footer-col ul li a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--red); }
.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}
.footer-contact-row i { color: var(--red); width: 14px; text-align: center; flex-shrink: 0; }
.footer-contact-row a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-contact-row a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.28); }

/* ================================================================
   BACK TO TOP
================================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 46px; height: 46px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  box-shadow: 0 4px 18px rgba(192,57,43,0.4);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--red-dark); transform: translateY(-3px); }

/* ================================================================
   SCROLL ANIMATIONS
================================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.in-view,
.fade-left.in-view,
.fade-right.in-view { opacity: 1; transform: none; }

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* ================================================================
   RESPONSIVE BREAKPOINTS
================================================================ */
@media (max-width: 1100px) {
  .services-overview-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid               { grid-template-columns: repeat(2, 1fr); }
  .stats-grid             { grid-template-columns: repeat(2, 1fr); }
  .footer-grid            { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery-grid           { grid-template-columns: repeat(3, 1fr); }
  .values-grid            { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .about-preview-grid,
  .mission-story-grid,
  .commitment-grid,
  .contact-grid         { grid-template-columns: 1fr; gap: 48px; }
  .svc-detail-grid,
  .svc-detail-grid.reverse { grid-template-columns: 1fr; direction: ltr; }
  .svc-detail-grid.reverse > * { direction: ltr; }
  .why-us-cards         { grid-template-columns: 1fr; }
  .stamped-box-grid     { grid-template-columns: 1fr; }
  .work-grid            { grid-template-columns: repeat(2, 1fr); }
  .about-preview-img-wrap::after { display: none; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--charcoal);
    flex-direction: column;
    padding: 12px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.07);
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 14px 36px; text-align: left; width: 100%; border-radius: 0; }
  .nav-link::after { left: 36px; right: 36px; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid           { grid-template-columns: repeat(2, 1fr); }
  .stats-grid             { grid-template-columns: repeat(2, 1fr); }
  .footer-grid            { grid-template-columns: 1fr; }
  .form-row               { grid-template-columns: 1fr; }
  .work-header            { flex-direction: column; align-items: flex-start; }
  .cta-contact-bar        { gap: 24px; }
  .lb-nav                 { display: none; }
}
@media (max-width: 480px) {
  .container              { padding: 0 20px; }
  .section                { padding: 56px 0; }
  .gallery-grid           { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .services-overview-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .svc-card               { padding: 28px 16px; }
  .values-grid            { grid-template-columns: 1fr; }
  .work-grid              { grid-template-columns: 1fr; }
  .btn-group              { flex-direction: column; }
  .cta-contact-bar        { flex-direction: column; align-items: center; gap: 16px; }
  .stats-grid             { grid-template-columns: 1fr 1fr; }
  .footer-grid            { gap: 28px; }
  .stamped-box            { padding: 32px 24px; }
}
