/* ============================================================
   LIAISON CONCRETE CONSTRUCTION — Global Styles
   Colors: #AF2725 (red), #444444 (dark gray), #000 (black),
           #FFFFFF (white), #F5F5F5 (light gray)
   Fonts: Bebas Neue (headlines), Montserrat (nav/sub), Inter (body)
   ============================================================ */

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

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

body {
  font-family: 'Inter', sans-serif;
  color: #444444;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: #000;
}

h4, h5, h6, .nav-links a, .footer-nav h4,
label, .section-eyebrow, .clients-label {
  font-family: 'Montserrat', sans-serif;
}

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #AF2725;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #666;
  max-width: 680px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header.light .section-title,
.section-header.light .section-subtitle { color: #fff; }
.section-header.light .section-eyebrow { color: #AF2725; }
.section-header.light .section-subtitle { color: rgba(255,255,255,0.75); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.btn-primary {
  background: #AF2725;
  color: #fff;
  border: 2px solid #AF2725;
}
.btn-primary:hover { background: #8f1f1d; border-color: #8f1f1d; }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover { background: #fff; color: #000; }

.btn-dark {
  background: #000;
  color: #fff;
  border: 2px solid #000;
}
.btn-dark:hover { background: #222; border-color: #222; }

.btn-sm { padding: 0.65rem 1.4rem; font-size: 0.8rem; }
.btn-full { width: 100%; text-align: center; }

/* ---------- FADE-IN ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- NAVIGATION ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled {
  background: #000;
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 52px;
  width: auto;
  transition: height 0.35s ease;
}
.site-header.scrolled .nav-logo img { height: 42px; }

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

.nav-links li { position: relative; }

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  padding: 0.5rem 0.9rem;
  border-radius: 2px;
  transition: color 0.2s;
}

.nav-links a:hover { color: #AF2725; }

.nav-cta {
  background: #AF2725 !important;
  color: #fff !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 2px;
}
.nav-cta:hover { background: #8f1f1d !important; color: #fff !important; }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: #111;
  border-top: 2px solid #AF2725;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 200;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.65rem 1.2rem;
  font-size: 0.78rem;
  border-bottom: 1px solid #222;
  letter-spacing: 0.06em;
}
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu li a:hover { color: #AF2725; background: #1a1a1a; }

.dropdown-arrow { font-size: 0.65rem; margin-left: 2px; }

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: all 0.25s;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease forwards;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.45) 60%,
    rgba(0,0,0,0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 5rem;
}

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #AF2725;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: #fff;
  line-height: 1.0;
  margin-bottom: 1.25rem;
  max-width: 800px;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

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

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

.badge {
  display: flex;
  flex-direction: column;
  padding-right: 2rem;
}

.badge-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #fff;
  line-height: 1;
}

.badge-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.badge-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
  margin-right: 2rem;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero-scroll-indicator span {
  display: block;
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255,255,255,0.6);
  border-bottom: 2px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ---------- INTRO SECTION ---------- */
.intro-section {
  padding: 6rem 0;
  background: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-text .section-title { text-align: left; }
.intro-text .section-eyebrow { text-align: left; }

.intro-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
}

.intro-certs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: #F5F5F5;
  border-left: 3px solid #AF2725;
}

.cert-item {
  display: flex;
  gap: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
}

.cert-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #000;
  min-width: 50px;
}

.cert-value { color: #555; }

.intro-image { position: relative; }

.intro-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.intro-image-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: #000;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 3px solid #AF2725;
}

.intro-image-badge img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.intro-image-badge span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

/* ---------- CLIENTS ---------- */
.clients-section {
  padding: 2.5rem 0;
  background: #F5F5F5;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.clients-label {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 1.5rem;
}

.clients-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.clients-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.clients-logos img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.55);
  transition: filter 0.25s;
}

.clients-row--lucid img {
  height: 44px;
}

.clients-logos img:hover { filter: grayscale(0%) opacity(1); }

/* ---------- SERVICES SECTION ---------- */
.services-section {
  padding: 6rem 0;
  background: #000;
}

.services-section .section-title { color: #fff; }
.services-section .section-subtitle { color: rgba(255,255,255,0.6); }
.services-section .section-eyebrow { color: #AF2725; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: #1a1a1a;
}

.service-card {
  background: #111;
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.25s ease;
  border-bottom: 2px solid transparent;
}

.service-card:hover {
  background: #1a1a1a;
  border-bottom-color: #AF2725;
}

.service-card-icon {
  width: 44px;
  height: 44px;
  color: #AF2725;
  margin-bottom: 0.5rem;
}

.service-card-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: 0.06em;
}

.service-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  flex: 1;
}

.service-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #AF2725;
  margin-top: auto;
  transition: color 0.2s;
}

.service-card:hover .service-link { color: #fff; }

/* ---------- WHY CHOOSE US ---------- */
.why-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.why-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.why-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
}

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

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.why-item { color: #fff; }

.why-icon {
  font-size: 0.65rem;
  color: #AF2725;
  margin-bottom: 0.75rem;
}

.why-item h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}

.why-item p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ---------- PROJECTS ---------- */
.projects-section {
  padding: 6rem 0;
  background: #F5F5F5;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.project-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.project-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  min-height: 220px;
}

.project-item--large img { min-height: 460px; }

.project-item:hover img { transform: scale(1.05); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.project-item:hover .project-overlay { opacity: 1; }

.project-overlay span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.projects-cta { text-align: center; }

/* ---------- PROCESS ---------- */
.process-section {
  padding: 6rem 0;
  background: #fff;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.process-step { text-align: center; padding: 0 1rem; }

.process-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: #F0F0F0;
  line-height: 1;
  margin-bottom: 0.5rem;
  position: relative;
}

.process-number::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #AF2725;
  margin: 0.5rem auto 0;
}

.process-step h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.65;
}

.process-connector {
  width: 60px;
  height: 2px;
  background: #E0E0E0;
  margin-top: 3.5rem;
  position: relative;
}

.process-connector::after {
  content: '';
  position: absolute;
  right: -6px;
  top: -5px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #E0E0E0;
}

/* ---------- SERVICE AREAS ---------- */
.areas-section {
  padding: 6rem 0;
  background: #000;
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.areas-text .section-title { color: #fff; }
.areas-text .section-eyebrow { color: #AF2725; }
.areas-text > p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; }

.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.area-group h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #AF2725;
  margin-bottom: 0.75rem;
}

.area-group li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.areas-map img {
  width: 100%;
  filter: brightness(0.9) contrast(1.1);
}

/* ---------- FAQ ---------- */
.faq-section {
  padding: 6rem 0;
  background: #F5F5F5;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #000;
  text-align: left;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-question:hover { color: #AF2725; }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: #AF2725;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer.open {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.75;
}

/* ---------- CONTACT / BID FORM ---------- */
.contact-section {
  padding: 6rem 0;
  background: #000;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info .section-title { color: #fff; }
.contact-info .section-eyebrow { color: #AF2725; }
.contact-info > p { color: rgba(255,255,255,0.65); margin-bottom: 2.5rem; font-size: 0.95rem; line-height: 1.75; }

.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: rgba(255,255,255,0.8);
}

.contact-icon {
  font-size: 1.1rem;
  margin-top: 0.1rem;
  color: #AF2725;
}

.detail-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.2rem;
}

.detail-value {
  display: block;
  font-size: 0.95rem;
  color: #fff;
  transition: color 0.2s;
}
.detail-value:hover { color: #AF2725; }

.contact-licenses {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Form */
.bid-form {
  background: #111;
  padding: 2.5rem;
  border-top: 3px solid #AF2725;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-row .form-group { margin-bottom: 0; }

label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  padding: 0.8rem 1rem;
  border-radius: 2px;
  transition: border-color 0.2s;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #AF2725;
}

input::placeholder,
textarea::placeholder { color: #555; }

select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }

select option { background: #1a1a1a; color: #fff; }

input[type="file"] {
  padding: 0.6rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
}

.file-hint {
  font-size: 0.72rem;
  color: #555;
}

textarea { resize: vertical; min-height: 110px; }

.form-disclaimer {
  font-size: 0.72rem;
  color: #555;
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: #000;
  border-top: 1px solid #1a1a1a;
}

.footer-top { padding: 5rem 0 3rem; }

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.footer-ega {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-ega img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.4);
}

.footer-ega div {
  display: flex;
  flex-direction: column;
}

.footer-ega strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.footer-ega span {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-nav a:hover { color: #AF2725; }

.footer-contact h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.footer-contact p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.5rem;
}

.footer-contact a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-contact a:hover { color: #AF2725; }

.footer-hours {
  font-size: 0.8rem !important;
  color: rgba(255,255,255,0.35) !important;
  margin-top: 0.5rem;
}

/* Footer Social Icons */
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.55);
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.footer-social a:hover {
  background: #AF2725;
  color: #fff;
}

.footer-social svg {
  width: 16px;
  height: 16px;
  display: block;
}

/* Footer Directory Links */
.footer-directories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.footer-dir-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.footer-dir-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}

/* Footer Addresses */
.footer-addresses {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.footer-address-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #AF2725;
  margin-bottom: 0.15rem;
}

.footer-address span:not(.footer-address-label) {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-licenses {
  display: flex;
  gap: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
  letter-spacing: 0.06em;
}

.footer-legal-links a:hover { color: #AF2725; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .process-connector { display: none; }
}

@media (max-width: 768px) {
  /* Nav Mobile */
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #000;
    padding: 1.5rem;
    gap: 0.25rem;
    border-top: 2px solid #AF2725;
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.75rem 0; border-bottom: 1px solid #1a1a1a; }
  .nav-cta { text-align: center; border: 2px solid #AF2725 !important; }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: #111;
    border: none;
    border-left: 2px solid #AF2725;
    display: none;
    padding-left: 1rem;
  }

  .nav-dropdown.open .dropdown-menu { display: block; }

  /* Sections */
  .intro-grid,
  .contact-grid,
  .areas-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .intro-image { display: none; }
  .intro-image-badge { display: none; }

  .services-grid { grid-template-columns: 1fr 1fr; }

  .why-grid { grid-template-columns: 1fr; }

  .projects-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .project-item--large {
    grid-column: span 2;
    grid-row: span 1;
  }
  .project-item--large img { min-height: 280px; }

  .process-steps { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .hero-badges { gap: 1.5rem; }
  .badge-divider { display: none; }

  .footer-top-grid { grid-template-columns: 1fr; }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-licenses { justify-content: center; }

  .areas-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.6rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .bid-form { padding: 1.5rem; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-item--large { grid-column: span 1; }
}
