/* ===========================
   Seun Adebunmi Construction — style.css
=========================== */
:root {
  --blue: #1E3A5F;
  --blue-dark: #152d4a;
  --blue-light: #2a4f80;
  --orange: #F97316;
  --orange-dark: #e0631a;
  --white: #F8F9FA;
  --gray-light: #E5E7EB;
  --gray-mid: #9CA3AF;
  --gray-dark: #6B7280;
  --text: #1F2937;
  --text-light: #374151;
  --bg: #F8F9FA;
  --bg-alt: #FFFFFF;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

img { display: block; width: 100%; object-fit: cover; }
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; }
select option { background: white; color: var(--text); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===========================
   BUTTONS
=========================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: var(--orange);
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 2px solid var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,115,22,0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: transparent;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.6);
  transition: var(--transition);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn-quote {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  background: var(--orange);
  padding: 10px 22px;
  border-radius: var(--radius);
  border: 2px solid var(--orange);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-quote:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ===========================
   REVEAL ANIMATIONS
=========================== */
.reveal, .fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible, .fade-in.visible {
  opacity: 1;
  transform: none;
}
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ===========================
   SHARED SECTION COMPONENTS
=========================== */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray-dark);
  max-width: 500px;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .section-eyebrow { justify-content: center; }
.section-header .section-eyebrow::before { display: none; }
.section-header .section-sub { margin: 0 auto; }

/* ===========================
   NAVBAR
=========================== */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  border-bottom: 1px solid var(--gray-light);
}

#navbar.scrolled .nav-logo .logo-name { color: var(--blue); }
#navbar.scrolled .nav-logo .logo-tagline { color: var(--gray-dark); }
#navbar.scrolled .nav-links a { color: var(--text-light); }
#navbar.scrolled .nav-links a:hover { color: var(--orange); }
#navbar.scrolled .logo-mark { background: var(--blue); color: #fff; }
#navbar.scrolled .hamburger span { background: var(--text); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.logo-mark.sm { width: 30px; height: 30px; font-size: 0.8rem; }

.logo-words { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  transition: var(--transition);
}
.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--orange); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--blue);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-close {
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
  padding: 4px;
  transition: color 0.2s;
}
.mobile-close:hover { color: var(--orange); }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--orange); }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 35, 60, 0.82) 0%,
    rgba(20, 45, 78, 0.68) 60%,
    rgba(15, 30, 55, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: 100px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.4); }
  50% { box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}

.hero-heading {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.4rem;
  max-width: 680px;
}
.accent-text { color: var(--orange); }

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

/* Hero Stats Bar */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-top: 3px solid var(--orange);
  padding: 24px 40px;
  margin-top: auto;
}

.hero-stats .container { display: flex; align-items: center; gap: 0; }

.hstat {
  flex: 1;
  text-align: center;
  padding: 4px 20px;
}
.hstat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
}
.hstat span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hstat-divider {
  width: 1px;
  height: 48px;
  background: var(--gray-light);
  flex-shrink: 0;
}

/* ===========================
   ABOUT
=========================== */
.about {
  padding: 100px 0;
  background: var(--bg-alt);
}

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

.about-images {
  position: relative;
}
.img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.img-secondary {
  position: absolute;
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid #fff;
  box-shadow: var(--shadow-md);
  bottom: -24px;
  right: -24px;
}

.experience-badge {
  position: absolute;
  top: -16px;
  left: -16px;
  background: var(--blue);
  color: #fff;
  padding: 18px 22px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.exp-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.exp-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  line-height: 1.35;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-lead {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  margin: 1.2rem 0 1rem;
  line-height: 1.75;
}
.about-body {
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-stats {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  margin-bottom: 2rem;
}
.astat { flex: 1; text-align: center; }
.astat strong {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--blue);
  display: inline-block;
}
.astat span {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue);
}
.astat label {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  font-weight: 500;
}

/* ===========================
   SERVICES
=========================== */
.services {
  padding: 100px 0;
  background: var(--bg);
}

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

.service-card {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: var(--orange);
  transition: height 0.35s ease;
  border-radius: 0 0 4px 0;
}
.service-card:hover::before { height: 100%; }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(249,115,22,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--orange);
  margin-bottom: 1.2rem;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: var(--orange);
  color: #fff;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--gray-dark);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.04em;
  transition: gap 0.2s;
}
.card-link:hover { gap: 10px; }
.card-link i { font-size: 0.72rem; }

/* ===========================
   PROJECTS
=========================== */
.projects {
  padding: 100px 0;
  background: var(--blue);
}
.projects .section-title { color: #fff; }
.projects .section-eyebrow { color: var(--orange); }
.projects .section-sub { color: rgba(255,255,255,0.65); }

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

.project-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-item:hover img { transform: scale(1.07); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,35,60,0.92) 0%, rgba(15,35,60,0.3) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.project-item:hover .project-overlay { opacity: 1; }

.project-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.4);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 6px;
  width: fit-content;
}

.project-overlay h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.project-overlay p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 5px;
}
.project-overlay p i { color: var(--orange); font-size: 0.75rem; }

/* ===========================
   WHY CHOOSE US
=========================== */
.why-us {
  padding: 100px 0;
  background: var(--bg-alt);
}

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

.feature-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(249,115,22,0.2);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  margin: 0 auto 1.2rem;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--orange);
  color: #fff;
}

.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--gray-dark);
  line-height: 1.75;
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials {
  padding: 100px 0;
  background: var(--bg);
}

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

.tcard {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  transition: var(--transition);
}
.tcard:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(249,115,22,0.2);
}

.tcard-stars {
  color: #FBBF24;
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.tcard p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gray-light);
  padding-top: 1.2rem;
}
.tcard-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.tcard-author h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}
.tcard-author span {
  font-size: 0.78rem;
  color: var(--orange);
  font-weight: 500;
}

/* ===========================
   CTA SECTION
=========================== */
.cta-section {
  position: relative;
  padding: 100px 0;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,35,60,0.92), rgba(20,50,85,0.85));
}

.cta-section .container { position: relative; z-index: 1; }

.cta-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.cta-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

/* ===========================
   CONTACT
=========================== */
.contact {
  padding: 100px 0;
  background: var(--bg-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

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

.form-group { margin-bottom: 1.1rem; }

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--gray-light);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.92rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-mid); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,58,95,0.1);
  background: #fff;
}
.form-group textarea { resize: vertical; }

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: var(--blue);
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--blue);
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn-submit:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,115,22,0.3);
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 12px 18px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 8px;
  font-size: 0.88rem;
  color: #059669;
  text-align: center;
}
.form-success.show { display: block; }
.form-success i { margin-right: 6px; }

.map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 200px;
  margin-bottom: 1.5rem;
}
.map-wrap img { height: 100%; }
.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,35,60,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-pin-label {
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.info-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 1.5rem; }

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--bg);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  transition: var(--transition);
}
.info-item:hover { border-color: rgba(249,115,22,0.3); box-shadow: var(--shadow-sm); }

.info-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--blue);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.info-item h4 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 2px;
}
.info-item p {
  font-size: 0.87rem;
  color: var(--gray-dark);
  line-height: 1.5;
}

.contact-social {
  display: flex;
  gap: 10px;
}
.contact-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-dark);
  font-size: 0.9rem;
  transition: var(--transition);
}
.contact-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--blue-dark);
  padding: 72px 0 0;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: rgba(255,255,255,0.9); }

.footer-contact-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.65rem;
}
.footer-contact-list li i {
  color: var(--orange);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.2rem;
}
.footer-badges span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 10px;
  border-radius: 100px;
}
.footer-badges span i { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* Progress bar */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--orange);
  z-index: 2000;
  width: 0%;
  transition: width 0.1s linear;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .img-secondary { display: none; }
  .img-main { height: 360px; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-container { padding: 0 20px; }
  .nav-links, .btn-quote:not(.mobile-link) { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 0 20px; padding-top: 100px; }
  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    gap: 12px;
  }
  .hstat { min-width: 100px; }
  .hstat-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }

  .about, .services, .projects, .why-us, .testimonials, .cta-section, .contact {
    padding: 72px 0;
  }
}

@media (max-width: 540px) {
  .hero-heading { font-size: 2rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { text-align: center; justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
}
