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

:root {
  --navy:   #1B2A5E;
  --navy2:  #0d1a3a;
  --red:    #C41E1E;
  --red2:   #9e1818;
  --cream:  #F5F0E8;
  --cream2: #ede6d6;
  --white:  #ffffff;
  --gray:   #6b7280;
  --light:  #fafaf8;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ─── SHARED ─────────────────────────────────────────────────── */
.label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
}
.section-num {
  font-family: var(--font-head);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 800;
  color: rgba(27,42,94,.06);
  line-height: 1;
  position: absolute;
  top: -.5rem;
  right: 0;
  pointer-events: none;
  user-select: none;
}
.display-heading {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
}
.display-heading em { font-style: normal; color: var(--red); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2.2rem;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .06em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .28s var(--ease);
  text-transform: uppercase;
}
.btn-solid {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-solid:hover {
  background: var(--red2);
  border-color: var(--red2);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--navy2);
  transform: translateY(-2px);
}

/* ─── NAVBAR ─────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: var(--navy2);
  border-color: rgba(255,255,255,.08);
  padding: .7rem 0;
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo img {
  height: 54px;
  width: auto;
  border-radius: 4px;
  background: var(--cream);
  padding: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .5rem 1rem;
  transition: color .2s;
  position: relative;
}
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 1rem; right: 1rem;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .2s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-phone {
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  display: flex; align-items: center; gap: .4rem;
  transition: color .2s;
}
.nav-phone:hover { color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy2);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  color: rgba(255,255,255,.8);
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  padding: .6rem 2rem;
  transition: color .2s;
  display: block;
  text-align: center;
}
.mobile-menu a:hover { color: var(--red); }
.mob-close {
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

/* ─── HERO ───────────────────────────────────────────────────── */
#home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 7rem;
  overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,16,38,.92) 0%,
    rgba(15,26,61,.6) 40%,
    rgba(15,26,61,.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-line {
  width: 40px; height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.hero-eyebrow span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.hero-heading {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 1.75rem;
  max-width: 14ch;
}
.hero-heading em {
  font-style: italic;
  color: #e8c060;
}
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-sub {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  max-width: 360px;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.hero-right {
  text-align: right;
  flex-shrink: 0;
}
.hero-addr {
  color: rgba(255,255,255,.5);
  font-size: .78rem;
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: .75rem;
  margin-top: .75rem;
  max-width: 240px;
  margin-left: auto;
}

/* slide dots */
.hero-dots {
  position: absolute;
  right: 2rem; top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  border: none;
  transition: all .3s;
  padding: 0;
}
.hero-dot.active {
  background: var(--red);
  transform: scale(1.5);
}

/* scroll progress */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--red);
  z-index: 1001;
  width: 0%;
  transition: width .1s linear;
}

/* ─── STATS ───────────────────────────────────────────────────── */
#stats {
  background: var(--navy);
  padding: 0;
}
.stats-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.stat-item {
  padding: 3.5rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative;
  transition: background .25s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,.04); }
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-number span { color: var(--red); }
.stat-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.stat-line {
  width: 32px; height: 2px;
  background: var(--red);
  margin-bottom: 1rem;
}

/* ─── ABOUT ──────────────────────────────────────────────────── */
#about { padding: 8rem 2rem; background: var(--white); }
.about-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-img-col { position: relative; }
.about-img-main {
  width: 100%;
  height: 580px;
  object-fit: cover;
}
.about-img-badge {
  position: absolute;
  bottom: -2px;
  right: -2rem;
  background: var(--red);
  color: var(--white);
  padding: 2rem 2.25rem;
  text-align: center;
}
.about-img-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 800;
}
.about-img-badge span {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: .4rem;
  opacity: .85;
}
.about-text { position: relative; }
.about-label { margin-bottom: 1rem; }
.about-pullquote {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--navy);
  font-style: italic;
  border-left: 3px solid var(--red);
  padding-left: 1.25rem;
  margin: 1.75rem 0;
  line-height: 1.7;
}
.about-body {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem 1.5rem;
}
.about-highlight {
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.about-highlight::before {
  content: '';
  flex-shrink: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--navy);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M10 3L5 8.5 2 5.5l-1 1L5 10.5l6-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 65%;
  background-position: center;
}

/* ─── SERVICES ───────────────────────────────────────────────── */
#services {
  background: var(--navy);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}
.services-inner { max-width: 1320px; margin: 0 auto; }
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.services-header .label { color: rgba(255,255,255,.4); }
.services-header .display-heading { color: var(--white); }
.services-header p { color: rgba(255,255,255,.55); font-size: .98rem; line-height: 1.75; }
.services-list { display: flex; flex-direction: column; }
.service-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  cursor: pointer;
  transition: padding-left .3s var(--ease);
}
.service-item:hover { padding-left: 1rem; }
.service-num {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,.2);
  transition: color .3s;
}
.service-item:hover .service-num { color: var(--red); }
.service-content {}
.service-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .35rem;
  transition: color .3s;
}
.service-item:hover .service-title { color: #e8c060; }
.service-desc { color: rgba(255,255,255,.45); font-size: .88rem; line-height: 1.6; }
.service-arrow {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.3);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all .3s;
}
.service-item:hover .service-arrow {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

/* ─── PROJECTS ───────────────────────────────────────────────── */
#projects { padding: 8rem 2rem; background: var(--cream); }
.projects-inner { max-width: 1320px; margin: 0 auto; }
.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.projects-filter {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: .45rem 1.1rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 2px solid rgba(27,42,94,.2);
  background: transparent;
  color: rgba(27,42,94,.5);
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
/* magazine grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}
.project-card {
  overflow: hidden;
  position: relative;
  background: var(--navy2);
}
.project-card:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.project-card:nth-child(2) { grid-column: span 5; }
.project-card:nth-child(3) { grid-column: span 5; }
.project-card:nth-child(4) { grid-column: span 4; }
.project-card:nth-child(5) { grid-column: span 4; }
.project-card:nth-child(6) { grid-column: span 4; }

.project-img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease);
  opacity: .85;
}
.project-card:nth-child(1) .project-img { min-height: 100%; }
.project-card:hover .project-img {
  transform: scale(1.05);
  opacity: 1;
}
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,16,38,.9) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  transition: background .3s;
}
.project-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  margin-bottom: .75rem;
  align-self: flex-start;
}
.badge-Completed { background: var(--red); color: var(--white); }
.badge-Ongoing   { background: #e8c060; color: var(--navy2); }
.badge-Upcoming  { background: rgba(255,255,255,.15); color: var(--white); }
.project-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: .4rem;
}
.project-card:nth-child(1) .project-title { font-size: 1.6rem; }
.project-meta {
  display: flex;
  gap: 1rem;
  font-size: .78rem;
  color: rgba(255,255,255,.55);
}
.project-wa {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 40px; height: 40px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(.8);
  transition: all .25s;
}
.project-card:hover .project-wa {
  opacity: 1;
  transform: scale(1);
}
.project-wa svg { width: 20px; height: 20px; }

/* ─── WHY US ─────────────────────────────────────────────────── */
#why-us { padding: 8rem 2rem; background: var(--white); }
.why-inner { max-width: 1320px; margin: 0 auto; }
.why-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}
.why-header-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.why-header-right p { color: var(--gray); font-size: 1rem; line-height: 1.75; margin-bottom: 1.5rem; }
.why-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid rgba(27,42,94,.1);
}
.why-item {
  padding: 3rem;
  border-right: 1px solid rgba(27,42,94,.1);
  border-bottom: 1px solid rgba(27,42,94,.1);
  position: relative;
  transition: background .25s;
}
.why-item:nth-child(2), .why-item:nth-child(4) { border-right: none; }
.why-item:nth-child(3), .why-item:nth-child(4) { border-bottom: none; }
.why-item:hover { background: var(--cream); }
.why-item-num {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 1.5rem;
  display: block;
}
.why-item-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .75rem;
}
.why-item-desc { color: var(--gray); font-size: .93rem; line-height: 1.7; }

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
#testimonials { padding: 8rem 2rem; background: var(--navy); }
.testimonials-inner { max-width: 1320px; margin: 0 auto; }
.testimonials-header { margin-bottom: 4rem; }
.testimonials-header .label { color: rgba(255,255,255,.35); }
.testimonials-header .display-heading { color: var(--white); margin-top: .75rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  padding: 2.5rem;
  transition: background .25s, transform .25s;
}
.testimonial-card:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-4px);
}
.testimonial-stars { color: #e8c060; font-size: .9rem; margin-bottom: 1.25rem; letter-spacing: .1em; }
.testimonial-text {
  color: rgba(255,255,255,.7);
  font-size: .98rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.15);
}
.testimonial-name { font-weight: 700; color: var(--white); font-size: .95rem; }
.testimonial-role { font-size: .78rem; color: rgba(255,255,255,.4); margin-top: .15rem; }

/* ─── CONTACT ────────────────────────────────────────────────── */
#contact { padding: 8rem 2rem; background: var(--cream); }
.contact-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 5rem;
  align-items: start;
}
.contact-text { padding-top: .5rem; }
.contact-tagline {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--navy);
  line-height: 1.25;
  margin: .75rem 0 2rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.contact-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  align-items: center;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-text strong {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .15rem;
}
.contact-info-text a,
.contact-info-text span {
  color: var(--navy);
  font-weight: 600;
  font-size: .98rem;
}
.contact-info-text a:hover { color: var(--red); }
.map-wrap {
  border: 3px solid var(--navy);
  overflow: hidden;
  margin-top: 2rem;
}
.map-wrap iframe { width: 100%; display: block; }

/* form */
.contact-form-wrap {
  background: var(--navy);
  padding: 3rem;
}
.form-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: .5rem;
}
.form-sub { color: rgba(255,255,255,.45); font-size: .88rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: .85rem 1rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .95rem;
  outline: none;
  transition: border-color .2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group select option { background: var(--navy2); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; justify-content: center; }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 900;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  animation: wa-pulse 3s infinite;
  transition: transform .25s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--navy2);
  color: rgba(255,255,255,.6);
  padding: 5rem 2rem 2rem;
}
.footer-inner { max-width: 1320px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3.5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand img {
  height: 60px;
  border-radius: 4px;
  background: var(--cream);
  padding: 4px;
  margin-bottom: 1.25rem;
}
.footer-brand p { font-size: .88rem; line-height: 1.75; max-width: 280px; }
.footer-socials { display: flex; gap: .5rem; margin-top: 1.5rem; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: .95rem;
  transition: background .2s;
}
.social-link:hover { background: var(--red); }
.footer-col h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a {
  font-size: .88rem;
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: .6rem; align-items: flex-start; font-size: .86rem; margin-bottom: .7rem; }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: var(--red); }

/* ─── SCROLL REVEALS ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-l { opacity: 0; transform: translateX(-40px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal-l.visible { opacity: 1; transform: none; }
.reveal-r { opacity: 0; transform: translateX(40px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal-r.visible { opacity: 1; transform: none; }

/* ─── KEYFRAMES ──────────────────────────────────────────────── */
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50%     { box-shadow: 0 4px 40px rgba(37,211,102,.7); }
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:none; }
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .about-inner  { gap: 3.5rem; }
  .services-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .why-header   { grid-template-columns: 1fr; gap: 2rem; }
  .projects-grid {
    grid-template-columns: repeat(6,1fr);
  }
  .project-card:nth-child(1) { grid-column: span 6; grid-row: span 1; }
  .project-card:nth-child(2),
  .project-card:nth-child(3) { grid-column: span 3; }
  .project-card:nth-child(4),
  .project-card:nth-child(5),
  .project-card:nth-child(6) { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .about-inner      { grid-template-columns: 1fr; }
  .about-img-col    { max-width: 560px; }
  .about-img-badge  { right: 0; }
  .why-items        { grid-template-columns: 1fr; }
  .why-item         { border-right: none; }
  .testimonials-grid{ grid-template-columns: 1fr; }
  .contact-inner    { grid-template-columns: 1fr; }
  .stats-grid       { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.08); }
}

@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  #home { min-height: 100svh; }
  .hero-heading { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .hero-right { display: none; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card { grid-column: span 1 !important; grid-row: span 1 !important; }
  .service-item { grid-template-columns: 50px 1fr auto; gap: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form-wrap { padding: 1.75rem; }
  #about, #services, #projects, #why-us, #testimonials, #contact { padding: 5rem 1.25rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .about-highlights { grid-template-columns: 1fr; }
  .why-item { padding: 2rem 1.5rem; }
}
