/* ============================================================
   IJG CONSTRUCTION LLC — Main Stylesheet
   Colors: Navy #1e2d7d | Red #cc1f24 | Gold #FFB81C
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@300;400;600;700&display=swap');

/* ---- Custom Properties ---- */
:root {
  --navy:        #1e2d7d;
  --navy-dark:   #152060;
  --navy-light:  #2d3e96;
  --red:         #cc1f24;
  --red-dark:    #a81a1e;
  --red-light:   #e02f35;
  --white:       #ffffff;
  --off-white:   #f8f9fa;
  --light-gray:  #e9ecef;
  --gray:        #6c757d;
  --dark:        #212529;
  --gold:        #FFB81C;

  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Open Sans', sans-serif;

  --max-w:       1200px;
  --shadow-sm:   0 2px 6px rgba(0,0,0,.07);
  --shadow:      0 4px 16px rgba(0,0,0,.11);
  --shadow-lg:   0 10px 35px rgba(0,0,0,.14);
  --radius:      8px;
  --radius-lg:   14px;
  --transition:  all .3s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--dark); line-height: 1.65; background: #fff; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: var(--navy); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--red); }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; color: var(--navy); }
button { font-family: var(--font-body); }

/* ---- Layout ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-pad    { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.bg-off-white   { background: var(--off-white); }
.bg-navy        { background: var(--navy); }
.text-center    { text-align: center; }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,.85);
  font-size: 12.5px;
  padding: 7px 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.top-bar a { color: var(--gold); }
.top-bar a:hover { color: white; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }

header {
  position: sticky; top: 0; z-index: 1000;
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
}

.header-main { padding: 10px 0; }
.header-main .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-svg  { width: 210px; height: auto; }

/* Nav */
nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }

.nav-link {
  display: block; padding: 10px 13px;
  font-family: var(--font-head); font-size: 14px; font-weight: 600;
  color: var(--dark); border-radius: var(--radius); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--red); background: var(--off-white); }

.nav-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: white; box-shadow: var(--shadow-lg);
  border-radius: var(--radius); min-width: 210px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: var(--transition);
  border-top: 3px solid var(--red); z-index: 200;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 18px; font-size: 13.5px; color: var(--dark);
  border-bottom: 1px solid var(--light-gray);
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { color: var(--red); background: var(--off-white); padding-left: 22px; }
.nav-dropdown a i { font-size: 12px; color: var(--red); width: 14px; }

.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.btn-call {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: white !important;
  padding: 10px 20px; border-radius: var(--radius);
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  white-space: nowrap; border: 2px solid var(--red);
}
.btn-call:hover { background: var(--red-dark); border-color: var(--red-dark); color: white !important; }

.btn-estimate {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: white !important;
  padding: 10px 18px; border-radius: var(--radius);
  font-family: var(--font-head); font-size: 14px; font-weight: 600;
  white-space: nowrap; border: 2px solid var(--navy);
}
.btn-estimate:hover { background: var(--navy-dark); border-color: var(--navy-dark); color: white !important; }

.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; cursor: pointer; padding: 8px; background: none; border: none;
}
.hamburger span { width: 25px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.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); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 30px; border-radius: var(--radius);
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  cursor: pointer; border: 2px solid transparent; transition: var(--transition);
  text-align: center; white-space: nowrap;
}
.btn-primary  { background: var(--red);   color: white; border-color: var(--red);   }
.btn-primary:hover  { background: var(--red-dark); border-color: var(--red-dark); color: white; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(204,31,36,.35); }
.btn-navy     { background: var(--navy);  color: white; border-color: var(--navy);  }
.btn-navy:hover     { background: var(--navy-dark); border-color: var(--navy-dark); color: white; transform: translateY(-2px); }
.btn-outline  { background: transparent; color: white; border-color: rgba(255,255,255,.65); }
.btn-outline:hover  { background: white; color: var(--navy); border-color: white; }
.btn-white    { background: white; color: var(--red); border-color: white; }
.btn-white:hover    { background: var(--off-white); color: var(--red-dark); }
.btn-outline-red { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline-red:hover { background: var(--red); color: white; }

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  background: var(--navy-dark);
  color: white; padding: 100px 0; overflow: hidden;
}
.hero-photo::before {
  content: ''; position: absolute; inset: 0;
  background: url('../Home Page/Hero Front Page Header Photo.jpeg') center/cover no-repeat;
  opacity: 1;
}
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(21,32,96,.95) 0%,
    rgba(21,32,96,.80) 26%,
    rgba(21,32,96,.22) 48%,
    rgba(0,0,0,.04) 62%,
    transparent 100%
  );
}
.hero-inner {
  position: relative; z-index: 1; max-width: 560px;
  text-shadow: 0 1px 10px rgba(0,0,0,.55);
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28);
  color: white; font-size: 12.5px; font-weight: 700; letter-spacing: .5px;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 20px;
  font-family: var(--font-head); text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(1.9rem, 5vw, 3.2rem); color: white;
  margin-bottom: 20px; font-weight: 900;
  text-shadow: 0 2px 18px rgba(0,0,0,.75), 0 1px 4px rgba(0,0,0,.5);
}
.hero h1 .accent { color: var(--gold); }
.hero > .container > .hero-inner > p,
.hero-inner > p {
  font-size: 1.08rem; margin-bottom: 34px; opacity: .9;
  max-width: 640px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Sub-page hero (shorter) */
.hero-sub {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: white; padding: 64px 0; text-align: center;
}
.hero-sub h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: white; margin-bottom: 12px; }
.hero-sub p  { font-size: 1.05rem; opacity: .85; max-width: 650px; margin: 0 auto; }
.hero-sub .breadcrumb { margin-bottom: 14px; font-size: 13px; opacity: .65; }
.hero-sub .breadcrumb a { color: rgba(255,255,255,.75); }
.hero-sub .breadcrumb a:hover { color: white; }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-head { text-align: center; margin-bottom: 52px; }
.section-head .label {
  display: inline-block; color: var(--red);
  font-family: var(--font-head); font-size: 12.5px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 14px; }
.section-head p  { font-size: 1.02rem; color: var(--gray); max-width: 660px; margin: 0 auto; line-height: 1.75; }
.section-head.light h2 { color: white; }
.section-head.light p  { color: rgba(255,255,255,.72); }
.section-head.light .label { color: var(--gold); }

/* ============================================================
   CARDS & GRIDS
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

.card {
  background: white; border-radius: var(--radius-lg);
  padding: 32px 28px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray); transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--navy); }

.card-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 13px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 24px; color: white;
}
.card-icon.red { background: linear-gradient(135deg, var(--red-dark), var(--red-light)); }
.card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.card p  { font-size: .91rem; color: var(--gray); line-height: 1.65; }

.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; color: var(--red); font-weight: 700;
  font-size: 13.5px; font-family: var(--font-head);
}
.card-link:hover { gap: 10px; color: var(--red-dark); }

.service-card { text-align: center; padding-top: 0; }
.service-card .card-icon { margin: 0 auto 20px; }

/* Photo cards (replaces icon on service cards) */
.card-photo {
  margin: 0 -28px 22px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  height: 185px;
}
.card-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .45s ease;
}
.card:hover .card-photo img { transform: scale(1.06); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--navy); padding: 44px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-item h3 {
  font-size: 2.6rem; color: var(--gold); margin-bottom: 6px;
  font-family: var(--font-head); font-weight: 800;
}
.stat-item p { font-size: .88rem; color: rgba(255,255,255,.78); }

/* ============================================================
   TRUST / CREDENTIAL BAR
   ============================================================ */
.trust-bar {
  background: var(--off-white);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  padding: 22px 0;
}
.trust-items { display: flex; justify-content: center; align-items: center; gap: 36px; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 13.5px; color: var(--navy);
}
.trust-item i { color: var(--red); font-size: 20px; }

/* ============================================================
   BBB BADGE
   ============================================================ */
.bbb-wrap { display: inline-block; }
.bbb-seal {
  display: inline-flex; align-items: center; gap: 10px;
  background: #003399; color: white; border-radius: 10px;
  padding: 12px 18px 12px 14px; border: 2px solid #4a6cc9;
}
.bbb-torch-col { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.bbb-flame {
  width: 16px; height: 22px;
  background: linear-gradient(to bottom, #FFD700, #FFB81C, #FF6B00);
  clip-path: polygon(50% 0%,80% 35%,95% 60%,70% 50%,62% 100%,38% 100%,30% 50%,5% 60%,20% 35%);
}
.bbb-handle { width: 7px; height: 16px; background: #aaa; border-radius: 2px; }
.bbb-mid { display: flex; flex-direction: column; }
.bbb-name { font-size: 26px; font-weight: 900; line-height: 1; letter-spacing: 1px; }
.bbb-sub { font-size: 8px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; opacity: .9; line-height: 1.4; }
.bbb-div { width: 1px; height: 38px; background: rgba(255,255,255,.3); }
.bbb-rating { text-align: center; }
.bbb-rating-num { font-size: 28px; font-weight: 900; color: #FFB81C; line-height: 1; }
.bbb-rating-lbl { font-size: 8px; opacity: .8; letter-spacing: .5px; }

.bbb-section {
  background: var(--off-white);
  border-top: 4px solid var(--navy); border-bottom: 4px solid var(--navy);
  padding: 52px 0; text-align: center;
}
.bbb-section h2 { font-size: 1.8rem; margin: 18px 0 10px; }
.bbb-section p  { color: var(--gray); max-width: 560px; margin: 0 auto; font-size: .95rem; }

/* ============================================================
   FEATURE / CHECK LIST
   ============================================================ */
.feature-list { display: flex; flex-direction: column; gap: 15px; }
.feature-item { display: flex; align-items: flex-start; gap: 13px; }
.feature-check {
  width: 26px; height: 26px; background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: white; font-size: 12px; margin-top: 2px;
}
.feature-item p { font-size: .93rem; line-height: 1.65; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(190px,1fr));
  gap: 30px; counter-reset: step;
}
.step-card {
  position: relative; background: white; border-radius: var(--radius-lg);
  padding: 36px 24px 26px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray); counter-increment: step;
}
.step-card::before {
  content: counter(step); position: absolute; top: -18px; left: 24px;
  width: 36px; height: 36px; background: var(--red); color: white;
  border-radius: 50%; font-family: var(--font-head); font-size: 15px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(204,31,36,.35);
}
.step-card h3 { font-size: 1rem; margin-bottom: 10px; }
.step-card p  { font-size: .87rem; color: var(--gray); line-height: 1.6; }

/* ============================================================
   TABLES
   ============================================================ */
.table-wrap { overflow-x: auto; margin: 24px 0; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.data-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.data-table th {
  background: var(--navy); color: white; padding: 14px 16px;
  text-align: left; font-family: var(--font-head); font-size: 13px;
  font-weight: 600; letter-spacing: .4px;
}
.data-table td { padding: 12px 16px; border-bottom: 1px solid var(--light-gray); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--off-white); }
.data-table tr:hover td { background: #e9edfa; }

.badge-yes { display: inline-block; background: #28a745; color: white; padding: 3px 11px; border-radius: 50px; font-size: 12px; font-weight: 700; }
.badge-no  { display: inline-block; background: #dc3545; color: white; padding: 3px 11px; border-radius: 50px; font-size: 12px; font-weight: 700; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: white; border-radius: var(--radius); border: 1px solid var(--light-gray); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; padding: 18px 24px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-head); font-size: 15px; font-weight: 600; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-q:hover { background: var(--off-white); }
.faq-icon { font-size: 20px; color: var(--red); flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner {
  padding: 0 24px 18px; border-top: 1px solid var(--light-gray);
  padding-top: 15px; font-size: .93rem; color: var(--gray); line-height: 1.75;
}

/* ============================================================
   SERVICE AREA
   ============================================================ */
.city-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(155px,1fr));
  gap: 10px; margin-top: 32px;
}
.city-tag {
  background: white; border: 1px solid var(--light-gray);
  border-radius: 6px; padding: 9px 14px; font-size: 13px;
  font-weight: 600; color: var(--navy);
  display: flex; align-items: center; gap: 7px; transition: var(--transition);
}
.city-tag i { font-size: 11px; color: var(--red); }
.city-tag:hover { background: var(--navy); color: white; border-color: var(--navy); }
.city-tag:hover i { color: var(--gold); }

/* ============================================================
   SERVICE AREA — DARK DYNAMIC VERSION
   ============================================================ */
.service-area-section {
  background: linear-gradient(150deg, var(--navy-dark) 0%, #1e2d7d 65%, #243390 100%);
  position: relative; overflow: hidden;
}
.sa-deco-rings {
  position: absolute;
  width: 650px; height: 650px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  top: 50%; right: -180px;
  transform: translateY(-50%);
  pointer-events: none;
}
.sa-deco-rings::before {
  content: ''; position: absolute;
  inset: -160px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.04);
}
.sa-deco-rings::after {
  content: ''; position: absolute;
  inset: 120px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.09);
}
.sa-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 24px;
  margin-bottom: 20px;
}
.sa-header h2 { color: white; font-size: clamp(1.7rem,3.2vw,2.5rem); }
.sa-header .label { color: var(--gold); display: block; margin-bottom: 10px; }
.sa-stat-row { display: flex; gap: 16px; flex-shrink: 0; }
.sa-stat {
  text-align: center; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px; padding: 14px 20px;
}
.sa-stat span {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: 1.6rem; color: var(--gold); line-height: 1; margin-bottom: 4px;
}
.sa-stat p { font-size: .72rem; color: rgba(255,255,255,.6); font-weight: 600; letter-spacing: .5px; text-transform: uppercase; margin: 0; }
.sa-desc { color: rgba(255,255,255,.7); max-width: 640px; margin-bottom: 32px; font-size: .97rem; }

.city-grid-dark {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 10px;
}
.city-tag-dark {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px; padding: 10px 14px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85);
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition); cursor: default;
}
.city-tag-dark i { font-size: 11px; color: var(--gold); flex-shrink: 0; }
.city-tag-dark:hover {
  background: rgba(255,183,28,.15);
  border-color: rgba(255,183,28,.45);
  color: var(--gold); transform: translateY(-2px);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--navy); }
.testimonial-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg); padding: 28px;
}
.t-stars { color: var(--gold); font-size: 17px; margin-bottom: 14px; }
.t-text  { font-size: .93rem; line-height: 1.75; color: rgba(255,255,255,.88); margin-bottom: 20px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px; background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 16px; color: white; flex-shrink: 0;
}
.t-name { font-weight: 700; font-family: var(--font-head); font-size: 14px; color: white; }
.t-loc  { font-size: 12px; color: rgba(255,255,255,.55); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  padding: 72px 0; text-align: center;
}
.cta-section h2 { color: white; font-size: clamp(1.6rem,3.5vw,2.4rem); margin-bottom: 14px; }
.cta-section p  { color: rgba(255,255,255,.9); font-size: 1.05rem; margin-bottom: 34px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons    { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form { background: white; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-family: var(--font-head); font-size: 12.5px; font-weight: 700;
  color: var(--navy); text-transform: uppercase; letter-spacing: .5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px; border: 2px solid var(--light-gray);
  border-radius: var(--radius); font-family: var(--font-body);
  font-size: 14.5px; color: var(--dark); transition: var(--transition);
  background: var(--off-white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--navy); background: white;
  box-shadow: 0 0 0 3px rgba(30,45,125,.09);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ============================================================
   INFO BOX (contact sidebar)
   ============================================================ */
.info-box {
  background: linear-gradient(145deg, var(--navy-dark), var(--navy));
  color: white; border-radius: var(--radius-lg); padding: 36px;
}
.info-box h3 { color: white; margin-bottom: 26px; font-size: 1.25rem; }
.info-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.info-row i { font-size: 18px; flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.info-row p { font-size: .9rem; opacity: .88; line-height: 1.55; }
.info-row strong { display: block; color: var(--gold); font-size: 11.5px; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 3px; }
.info-row a { color: rgba(255,255,255,.88); }
.info-row a:hover { color: var(--gold); }

/* ============================================================
   HIGHLIGHT BOX
   ============================================================ */
.highlight-box {
  background: #f0f2fb; border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px; margin: 24px 0;
}
.highlight-box p { font-size: .94rem; line-height: 1.75; }
.highlight-box strong { color: var(--navy); }

/* Alert strip */
.alert-strip { background: var(--red); color: white; padding: 12px 0; text-align: center; }
.alert-strip p { font-family: var(--font-head); font-size: 13.5px; font-weight: 600; }
.alert-strip a { color: var(--gold); font-weight: 700; text-decoration: underline; }

/* ============================================================
   TWO-COL CONTENT
   ============================================================ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.two-col.align-center { align-items: center; }

.content-block h2 { font-size: clamp(1.5rem,3vw,2.1rem); margin-bottom: 16px; }
.content-block h3 { font-size: 1.15rem; color: var(--red); margin: 26px 0 10px; }
.content-block p  { font-size: .94rem; line-height: 1.8; margin-bottom: 14px; color: #333; }

/* ============================================================
   VALUES / ABOUT
   ============================================================ */
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.value-card {
  padding: 24px; background: white; border-radius: var(--radius);
  border-top: 3px solid var(--red); box-shadow: var(--shadow-sm);
}
.value-card h4 { margin-bottom: 8px; font-size: 1rem; }
.value-card p  { font-size: .87rem; color: var(--gray); line-height: 1.6; }

/* Credentials */
.cred-list { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 14px; margin-top: 20px; }
.cred-item {
  display: flex; align-items: center; gap: 10px;
  background: white; border-radius: var(--radius); padding: 14px 16px;
  border: 1px solid var(--light-gray); box-shadow: var(--shadow-sm);
  font-family: var(--font-head); font-weight: 600; font-size: 13.5px; color: var(--navy);
}
.cred-item i { color: var(--red); font-size: 18px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--navy-dark); color: white; }
.footer-main { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 40px; }
.footer-col h4 {
  color: var(--gold); font-family: var(--font-head); font-size: 12px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1.8px; margin-bottom: 18px;
}
.footer-col p { font-size: .86rem; opacity: .72; line-height: 1.7; margin-bottom: 6px; }
.footer-col a { display: block; color: rgba(255,255,255,.72); font-size: .86rem; margin-bottom: 9px; }
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 13px; }
.footer-contact-item i { font-size: 15px; color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item p { margin: 0; font-size: .86rem; opacity: .78; line-height: 1.5; }
.footer-contact-item a { display: inline; margin: 0; padding: 0; }

.footer-logo { margin-bottom: 18px; }
.footer-logo .logo-svg { width: 180px; filter: brightness(0) invert(1); opacity: .9; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 12px; opacity: .55; }

/* ============================================================
   MAP PLACEHOLDER
   ============================================================ */
.map-placeholder {
  background: var(--light-gray); border-radius: var(--radius-lg);
  height: 300px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: var(--gray); font-family: var(--font-head); font-weight: 600;
}
.map-placeholder i { font-size: 48px; color: var(--red); opacity: .5; }

/* ============================================================
   MEDIA QUERIES
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .hamburger { display: flex; }
  .btn-estimate { display: none; }

  nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: white; box-shadow: var(--shadow-lg);
    padding: 16px; z-index: 999; flex-direction: column; align-items: flex-start;
    border-top: 3px solid var(--red);
  }
  nav.open { display: flex; }
  .nav-list { flex-direction: column; width: 100%; gap: 0; }
  .nav-link { padding: 12px 16px; width: 100%; }
  .nav-dropdown {
    position: static; box-shadow: none; opacity: 1; visibility: visible;
    transform: none; border-top: none; border-left: 3px solid var(--red);
    margin-left: 14px; margin-top: 4px; display: none; min-width: unset;
  }
  .nav-item.open .nav-dropdown { display: block; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .values-grid { grid-template-columns: 1fr; }
  .steps-grid  { grid-template-columns: 1fr; }

  .hero { padding: 60px 0; }
  .hero-photo::after { background: rgba(21,32,96,.86); }
  .sa-header { flex-direction: column; align-items: flex-start; }
  .sa-stat-row { flex-wrap: wrap; }
  .city-grid-dark { grid-template-columns: repeat(2,1fr); }
  .section-pad { padding: 52px 0; }
  .contact-form { padding: 24px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .hero-actions { flex-direction: column; }
  .cta-buttons  { flex-direction: column; align-items: center; }
  .logo-svg { width: 168px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .trust-items { gap: 18px; }
  .cred-list { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2,1fr); }
}
