/*
Theme Name:  Cruzz Construction
Theme URI:   https://cruzzconstruction.com
Author:      Dominic Savard
Author URI:  https://cruzzconstruction.com
Description: Complete custom WordPress theme for Cruzz Construction — Brand logo, editable WordPress nav menus, all 7 service pages linked, Pexels images.
Version:     4.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cruzz-construction
Tags:        construction, renovation, business, one-page, responsive
*/

/* ═══════════════════════════════════════════
   DESIGN TOKENS — matched from screenshots
   ═══════════════════════════════════════════ */
:root {
  --white:        #ffffff;
  --light-bg:     #f4f7fb;
  --light-blue:   #dce8f5;
  --light-card:   #e8f0fa;
  --navy:         #0d1b2e;
  --navy2:        #112240;
  --navy-mid:     #1a2f4a;
  --slate:        #3d5068;
  --border:       #e2e8f0;
  --text-dark:    #1a202c;
  --text-mid:     #4a5568;
  --text-light:   #718096;
  --blue:         #2d6cbe;
  --blue2:        #1a56a8;
  --blue-light:   #3d85d8;
  --orange:       #f5a623;
  --orange2:      #e09015;
  --green:        #27ae60;
  --white-70:     rgba(255,255,255,0.70);
  --white-45:     rgba(255,255,255,0.45);
  --white-10:     rgba(255,255,255,0.10);
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.18);
  --radius:       8px;
  --radius-lg:    12px;
  --ff:           'Poppins', sans-serif;
  --ff2:          'Open Sans', sans-serif;
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body { font-family:var(--ff2); color:var(--text-dark); line-height:1.7; -webkit-font-smoothing:antialiased; background:var(--white); }
a { text-decoration:none; color:inherit; }
img { display:block; max-width:100%; height:auto; }
ul { list-style:none; }
button { cursor:pointer; font-family:var(--ff); border:none; outline:none; }

/* ═══════════════════════════════════════════
   NAV — white background, dark text
   ═══════════════════════════════════════════ */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 999;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}
/* Footer logo (dark bg — invert) */
.footer-logo-wrap .nav-logo-img,
.footer-logo-wrap img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}
/* Keep old diamond in case used elsewhere */
.logo-diamond { display: none; }
.logo-bold  { font-weight: 800; color: var(--text-dark); }
.logo-light { font-weight: 400; color: var(--text-mid); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text-dark); border-radius: 2px; transition: all .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links { display: flex; align-items: center; gap: 0.1rem; }
.nav-links a {
  font-family: var(--ff);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  transition: all .2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-dark); background: var(--light-bg); }
.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
.nav-links .btn-nav {
  background: var(--blue);
  color: var(--white) !important;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius);
  margin-left: 0.5rem;
}
.nav-links .btn-nav:hover { background: var(--blue2); }

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--ff); font-weight: 600; font-size: 0.9rem;
  padding: 0.75rem 1.8rem; border-radius: var(--radius);
  border: none; cursor: pointer; transition: all .25s; text-align: center;
}
.btn-blue   { background: var(--blue);   color: var(--white); }
.btn-blue:hover { background: var(--blue2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(45,108,190,0.35); }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,166,35,0.35); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-full { width: 100%; justify-content: center; }
.btn .arr { font-size: 0.85rem; }

/* ═══════════════════════════════════════════
   HERO — dark navy, exact screenshot match
   ═══════════════════════════════════════════ */
#home {
  background: var(--navy);
  padding: 3rem 2rem 4rem;
}

/* TOP ROW: photo left | headline+text right */
.hero-wrap {
  max-width: 1280px; margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}
.hero-img-box {
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
}
.hero-img-box img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  border-radius: var(--radius);
}
.hero-content h1 {
  font-family: var(--ff);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700; line-height: 1.25;
  color: var(--white); margin-bottom: 1.2rem;
}
.hero-content p {
  font-size: 0.87rem; color: var(--white-70);
  line-height: 1.85;
}
.hero-content p strong { color: var(--white); font-weight: 700; }

/* BOTTOM ROW: stacked-btns+stats col | features col | interior photo col */
.hero-lower {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: flex-start;
}
/* Stacked buttons exactly like screenshot */
.hero-btns-stack {
  display: flex; flex-direction: column;
  gap: 0.5rem; margin-bottom: 1.8rem;
  width: fit-content;
}
.hero-btns-stack .btn {
  justify-content: flex-start;
  padding: 0.6rem 1.3rem;
  font-size: 0.87rem;
  border-radius: 4px;
  min-width: 155px;
}
/* Stats */
.hero-stats { display: flex; gap: 2.5rem; }
.stat-num {
  font-family: var(--ff); font-size: 2.2rem;
  font-weight: 800; color: var(--white); line-height: 1;
}
.stat-lbl { font-size: 0.82rem; color: var(--white-70); margin-top: 0.2rem; }
/* Feature list — plain text rows, no bullets */
.features-col { display: flex; flex-direction: column; gap: 0.9rem; }
.feature-item { font-size: 0.9rem; color: var(--white-70); }
/* Interior photo */
.hero-lower-img { border-radius: var(--radius); overflow: hidden; height: 185px; }
.hero-lower-img img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--radius); }

/* ═══════════════════════════════════════════
   SERVICES STRIP — 3 cards below hero
   ═══════════════════════════════════════════ */
.services-strip { background: var(--white); border-bottom: 1px solid var(--border); }
.strip-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
}
.strip-card {
  padding: 2.5rem 2rem;
  border-bottom: 1px solid var(--border);
  display: flex; gap: 1.4rem; align-items: flex-start;
  transition: background .2s;
}
.strip-card:last-child { border-bottom: none; }
.strip-card.light-blue-card { background: var(--light-card); }
.strip-card:hover { background: var(--light-bg); }
.strip-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.strip-icon svg { width: 40px; height: 40px; stroke: var(--blue); fill: none; stroke-width: 1.5; }
.strip-title { font-family: var(--ff); font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.strip-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }

/* ═══════════════════════════════════════════
   SECTION COMMON
   ═══════════════════════════════════════════ */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.sec-tag {
  font-family: var(--ff); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 0.6rem;
}
.sec-h2 { font-family: var(--ff); font-size: clamp(1.4rem,3vw,2rem); font-weight: 700; line-height: 1.2; color: var(--text-dark); margin-bottom: 1rem; }
.sec-h2-white { color: var(--white); }
.sec-h2-center { text-align: center; }
.sec-p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.8; }
.sec-p-white { color: var(--white-70); }
.sec-p-center { text-align: center; max-width: 860px; margin: 0 auto; }
.divider { width: 3rem; height: 3px; background: var(--blue); margin: 0.8rem 0 1.2rem; border-radius: 2px; }
.bg-white  { background: var(--white); }
.bg-light  { background: var(--light-bg); }
.bg-navy   { background: var(--navy); }
.bg-navy2  { background: var(--navy2); }
.bg-slate  { background: var(--slate); }
.text-center { text-align: center; }

/* ═══════════════════════════════════════════
   SAFETY / QUALITY / 24-7 SECTION
   ═══════════════════════════════════════════ */
.sqt-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.sqt-icons { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.sqt-icon-item { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.sqt-icon-circle {
  width: 72px; height: 72px; border-radius: 50%;
  border: 2px solid var(--blue-light);
  display: flex; align-items: center; justify-content: center;
}
.sqt-icon-circle svg { width: 36px; height: 36px; stroke: var(--blue); fill: none; stroke-width: 1.5; }
.sqt-icon-lbl { font-family: var(--ff); font-size: 0.9rem; font-weight: 700; color: var(--text-dark); }
.sqt-photo img { border-radius: var(--radius-lg); width: 100%; height: 400px; object-fit: cover; box-shadow: var(--shadow-md); }
.sqt-photo-placeholder { background: var(--light-bg); border-radius: var(--radius-lg); height: 400px; display: flex; align-items: center; justify-content: center; font-size: 5rem; opacity: 0.3; }
.sqt-text .sec-h2 { font-size: clamp(1.3rem,2.5vw,1.8rem); }

/* ═══════════════════════════════════════════
   INTERIOR & EXTERIOR — 2 col with bullet list
   ═══════════════════════════════════════════ */
.ie-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-top: 3rem; align-items: center; }
.ie-photo img { border-radius: var(--radius-lg); width: 100%; height: 400px; object-fit: cover; box-shadow: var(--shadow-md); }
.ie-photo-placeholder { background: var(--light-bg); border-radius: var(--radius-lg); height: 400px; display: flex; align-items: center; justify-content: center; font-size: 5rem; opacity: 0.3; }
.bullet-list { display: flex; flex-direction: column; gap: 0.75rem; margin: 1rem 0 1.2rem; }
.bullet-item {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.92rem; color: var(--text-dark);
}
.bullet-arrow {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--blue); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.bullet-arrow::after { content: '❯'; color: white; font-size: 0.65rem; font-weight: 900; }

/* ═══════════════════════════════════════════
   OFFERING SERVICES — dark slate bg, 3-col cards
   ═══════════════════════════════════════════ */
.offering-head {
  text-align: left;
  margin-bottom: 2rem;
}
.offering-head .sec-h2 { color: var(--white); font-size: clamp(1.4rem,3vw,2rem); }
.offering-head .sec-p { color: var(--white-70); margin-bottom: 1.2rem; }
.offering-head .sec-p strong { color: var(--white); }

.service-cards-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.svc-big-card { display: flex; flex-direction: column; overflow: hidden; border-radius: 0; }
.svc-big-card.dark-card { background: var(--navy2); }
.svc-big-card.light-card { background: var(--light-card); }
.svc-big-top { padding: 2rem 1.8rem; flex: 1; }
.svc-big-card.dark-card .svc-big-top { background: var(--navy2); }
.svc-big-card.light-card .svc-big-top { background: var(--light-card); }
.svc-big-icon { margin-bottom: 1rem; }
.svc-big-icon svg { width: 44px; height: 44px; stroke: var(--blue-light); fill: none; stroke-width: 1.2; }
.svc-big-card.dark-card .svc-big-icon svg { stroke: rgba(255,255,255,0.5); }
.svc-big-title { font-family: var(--ff); font-size: 1.15rem; font-weight: 700; margin-bottom: 0.8rem; }
.svc-big-card.dark-card .svc-big-title { color: var(--white); }
.svc-big-card.light-card .svc-big-title { color: var(--text-dark); }
.svc-big-desc { font-size: 0.87rem; line-height: 1.75; }
.svc-big-card.dark-card .svc-big-desc { color: var(--white-70); }
.svc-big-card.light-card .svc-big-desc { color: var(--text-mid); }
.svc-big-photo { height: 220px; overflow: hidden; }
.svc-big-photo img { width: 100%; height: 100%; object-fit: cover; }
.svc-big-photo-placeholder { height: 220px; background: var(--light-bg); display: flex; align-items: center; justify-content: center; font-size: 3rem; opacity: 0.4; }

/* ═══════════════════════════════════════════
   HAVE QUESTIONS CTA
   ═══════════════════════════════════════════ */
.questions-section { background: var(--white); padding: 4rem 2rem; text-align: center; }
.questions-inner { max-width: 860px; margin: 0 auto; }
.questions-inner h2 { font-family: var(--ff); font-size: clamp(1.3rem,3vw,1.9rem); font-weight: 700; color: var(--text-dark); margin-bottom: 1.5rem; }
.questions-inner p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 1rem; }

/* ═══════════════════════════════════════════
   COST ESTIMATOR
   ═══════════════════════════════════════════ */
.estimator-section { background: var(--light-bg); padding: 5rem 2rem; }
.estimator-header {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 1280px; margin-left: auto; margin-right: auto;
  margin-bottom: 2.5rem;
}
.estimator-header h2 { font-family: var(--ff); font-size: 1.8rem; font-weight: 800; color: var(--white); margin-bottom: 0.5rem; }
.estimator-header p { font-size: 0.92rem; color: var(--white-70); }
.estimator-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: 2rem;
}
.est-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.est-card-title {
  font-family: var(--ff); font-size: 1.2rem; font-weight: 700;
  color: var(--text-dark); display: flex; align-items: center;
  gap: 0.6rem; margin-bottom: 0.4rem;
}
.est-card-title .ico { font-size: 1.3rem; }
.est-card-sub { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.5rem; }
.est-section-label {
  font-family: var(--ff); font-size: 0.88rem; font-weight: 700;
  color: var(--blue); display: flex; align-items: center;
  gap: 0.5rem; margin-bottom: 1rem;
}
.est-section-label .ico { font-size: 1rem; color: var(--orange); }
.p-label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--blue); margin-bottom: 0.4rem; letter-spacing: 0.05em; }
.p-input {
  width: 100%; background: var(--white); border: 1.5px solid var(--border);
  color: var(--text-dark); font-family: var(--ff2); font-size: 0.9rem;
  padding: 0.7rem 1rem; border-radius: var(--radius); outline: none;
  transition: border-color .2s; appearance: none; -webkit-appearance: none;
  margin-bottom: 1rem;
}
.p-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(45,108,190,0.12); }
textarea.p-input { resize: vertical; min-height: 100px; }
.p-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.service-checkboxes { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; margin-bottom: 1.2rem; }
.svc-checkbox-btn {
  display: flex; align-items: center; gap: 0.55rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 0.6rem 0.8rem; cursor: pointer;
  font-size: 0.83rem; color: var(--text-mid);
  transition: all .2s; background: var(--white);
}
.svc-checkbox-btn input { accent-color: var(--blue); flex-shrink: 0; }
.svc-checkbox-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--light-bg); }

/* Cost estimate result panel */
.cost-result-box {
  background: var(--light-bg); border-radius: var(--radius-lg);
  min-height: 300px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 2rem; margin-bottom: 1.5rem;
}
.cost-result-amount { font-family: var(--ff); font-size: 3.5rem; font-weight: 800; color: var(--navy); margin-bottom: 0.3rem; }
.cost-result-label { font-size: 0.88rem; color: var(--text-light); }
.cost-breakdown { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.cb-row { display: flex; justify-content: space-between; padding: 0.65rem 1rem; font-size: 0.83rem; border-bottom: 1px solid var(--border); background: var(--white); }
.cb-row:last-child { border-bottom: none; }
.cb-row .cl { color: var(--text-light); }
.cb-row .cv { font-weight: 700; color: var(--navy); }
.cb-row.cb-total { background: var(--light-bg); }
.cb-row.cb-total .cl, .cb-row.cb-total .cv { color: var(--navy); font-weight: 800; }

/* ═══════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════ */
.gallery-section { background: var(--white); padding: 5rem 2rem; }
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2.5rem; }
.gallery-item { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 250px; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,46,0.7) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; padding: 1.2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-family: var(--ff); font-size: 0.88rem; font-weight: 600; color: var(--white); }

/* ═══════════════════════════════════════════
   REVIEWS / TESTIMONIALS
   ═══════════════════════════════════════════ */
.reviews-section { background: var(--light-bg); padding: 5rem 2rem; }
.rating-banner {
  display: flex; align-items: center; gap: 1.5rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem 2rem;
  margin-bottom: 2.5rem; box-shadow: var(--shadow-sm);
}
.rating-num { font-family: var(--ff); font-size: 3.5rem; font-weight: 800; color: var(--orange); line-height: 1; }
.rating-stars { color: var(--orange); font-size: 1.3rem; margin-bottom: 0.2rem; }
.rating-lbl { font-family: var(--ff); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); }
.rating-src { font-size: 0.78rem; color: var(--text-light); margin-top: 0.15rem; }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.rv-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.6rem;
  box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s;
}
.rv-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.rv-stars { color: var(--orange); font-size: 0.9rem; margin-bottom: 0.8rem; }
.rv-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; font-style: italic; margin-bottom: 1.2rem; }
.rv-author { font-family: var(--ff); font-size: 0.82rem; font-weight: 700; color: var(--blue); }
.rv-project { font-size: 0.78rem; color: var(--text-light); margin-top: 0.15rem; }

/* ═══════════════════════════════════════════
   ABOUT US
   ═══════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.about-photo img { border-radius: var(--radius-lg); width: 100%; height: 420px; object-fit: cover; box-shadow: var(--shadow-md); }
.about-photo-placeholder { background: var(--light-bg); border-radius: var(--radius-lg); height: 420px; display: flex; align-items: center; justify-content: center; font-size: 5rem; opacity: 0.3; }
.check-list { display: flex; flex-direction: column; gap: 0.7rem; margin: 1rem 0; }
.check-list li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.9rem; color: var(--text-mid); }
.check-list li .ck { color: var(--green); font-weight: 800; flex-shrink: 0; font-size: 1rem; }

/* ═══════════════════════════════════════════
   BLOGS
   ═══════════════════════════════════════════ */
.blogs-section { background: var(--light-bg); padding: 5rem 2rem; }
.blogs-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-thumb { height: 220px; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-body { padding: 1.5rem; }
.blog-cat { font-family: var(--ff); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.5rem; }
.blog-title { font-family: var(--ff); font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.6rem; line-height: 1.35; }
.blog-title a:hover { color: var(--blue); }
.blog-excerpt { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1rem; }
.blog-read-more { font-family: var(--ff); font-size: 0.8rem; font-weight: 700; color: var(--blue); display: inline-flex; align-items: center; gap: 0.3rem; }
.blog-read-more:hover { color: var(--orange); }
.blog-meta { font-size: 0.78rem; color: var(--text-light); margin-bottom: 0.4rem; }

/* ═══════════════════════════════════════════
   CONTACT US
   ═══════════════════════════════════════════ */
.contact-section { background: var(--white); padding: 5rem 2rem; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.c-info-item { display: flex; gap: 1rem; padding-bottom: 1.3rem; margin-bottom: 1.3rem; border-bottom: 1px solid var(--border); }
.c-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.c-ico { font-size: 1.3rem; color: var(--blue); flex-shrink: 0; margin-top: 0.1rem; }
.c-lbl { font-family: var(--ff); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.25rem; }
.c-val { font-size: 0.93rem; color: var(--text-dark); }
.c-val a { color: var(--blue); }
.c-val a:hover { color: var(--orange); }
.contact-form { background: var(--light-bg); border-radius: var(--radius-lg); padding: 2rem; }
.form-msg { font-size: 0.82rem; text-align: center; margin-top: 0.75rem; color: var(--text-light); min-height: 1.2rem; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer { background: var(--navy); padding: 4rem 2rem 1.5rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-contact-strip {
  display: grid; grid-template-columns: 1fr;
  gap: 1.2rem; background: rgba(255,255,255,0.05);
  border: 1px solid var(--white-10); border-radius: var(--radius-lg);
  padding: 1.8rem; margin-bottom: 3rem;
}
.fcs-item { display: flex; align-items: center; gap: 1rem; }
.fcs-ico { font-size: 1.2rem; color: var(--blue-light); flex-shrink: 0; }
.fcs-lbl { font-family: var(--ff); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white-45); margin-bottom: 0.15rem; }
.fcs-val { font-size: 0.9rem; color: var(--white-70); }
.fcs-val a { color: var(--blue-light); font-weight: 600; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer-logo-wrap { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.8rem; }
.footer-logo-text { font-family: var(--ff); font-size: 1.2rem; font-weight: 700; color: var(--white); }
.footer-logo-text span { font-weight: 400; opacity: 0.8; }
.footer-tagline { font-size: 0.84rem; color: var(--white-45); line-height: 1.75; }
.footer-col-h { font-family: var(--ff); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a { font-size: 0.85rem; color: var(--white-45); transition: color .2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.2rem; flex-wrap: wrap; }
.social-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.07); border: 1px solid var(--white-10);
  color: var(--white-70); font-family: var(--ff); font-size: 0.73rem; font-weight: 600;
  padding: 0.45rem 0.9rem; border-radius: 50px; transition: all .2s;
}
.social-pill:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }
.footer-bottom { border-top: 1px solid var(--white-10); padding-top: 1.5rem; text-align: center; font-size: 0.76rem; color: var(--white-45); line-height: 1.8; }

/* ═══════════════════════════════════════════
   404 / SINGLE / BLOG
   ═══════════════════════════════════════════ */
.page-404 { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 4rem 2rem; }
.err-num { font-family: var(--ff); font-size: clamp(6rem,20vw,12rem); font-weight: 800; color: var(--light-blue); line-height: 1; }
.err-title { font-family: var(--ff); font-size: 1.5rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.8rem; }
.err-msg { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 2rem; }
.single-wrap { max-width: 820px; margin: 0 auto; padding: 4rem 2rem; }
.single-wrap h1 { font-family: var(--ff); font-size: clamp(1.5rem,4vw,2.2rem); font-weight: 800; color: var(--text-dark); margin-bottom: 1rem; }
.single-wrap .post-meta { font-size: 0.83rem; color: var(--text-light); margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.single-wrap p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 1.2rem; }
.single-wrap h2, .single-wrap h3 { font-family: var(--ff); color: var(--text-dark); margin: 1.5rem 0 0.7rem; }
.post-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); flex-wrap: wrap; }
.post-nav a { font-family: var(--ff); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue); }
.post-nav a:hover { color: var(--orange); }

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════ */
.fade { opacity:0; transform:translateY(22px); transition:opacity .65s ease,transform .65s ease; }
.fade.in { opacity:1; transform:none; }
.stag > * { opacity:0; transform:translateY(14px); transition:opacity .45s ease,transform .45s ease; }
.stag.in > *:nth-child(1)  { opacity:1;transform:none;transition-delay:.00s }
.stag.in > *:nth-child(2)  { opacity:1;transform:none;transition-delay:.08s }
.stag.in > *:nth-child(3)  { opacity:1;transform:none;transition-delay:.16s }
.stag.in > *:nth-child(4)  { opacity:1;transform:none;transition-delay:.24s }
.stag.in > *:nth-child(5)  { opacity:1;transform:none;transition-delay:.32s }
.stag.in > *:nth-child(6)  { opacity:1;transform:none;transition-delay:.40s }
.stag.in > *:nth-child(7)  { opacity:1;transform:none;transition-delay:.48s }
.stag.in > *:nth-child(8)  { opacity:1;transform:none;transition-delay:.56s }
.stag.in > *:nth-child(9)  { opacity:1;transform:none;transition-delay:.64s }
.stag.in > *:nth-child(10) { opacity:1;transform:none;transition-delay:.72s }

/* ═══════════════════════════════════════════
   RESPONSIVE TABLET 640px+
   ═══════════════════════════════════════════ */
@media (min-width: 640px) {
  .strip-grid { grid-template-columns: repeat(3,1fr); }
  .strip-card { border-bottom:none; border-right:1px solid var(--border); flex-direction:column; }
  .strip-card:last-child { border-right:none; }
  .sqt-icons { flex-direction: row; justify-content: center; }
  .ie-grid { grid-template-columns: 1fr 1fr; }
  .service-cards-grid { grid-template-columns: repeat(3,1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .blogs-grid { grid-template-columns: 1fr 1fr; }
  .estimator-grid { grid-template-columns: 1fr 1fr; }
  .footer-contact-strip { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
}

/* ═══════════════════════════════════════════
   RESPONSIVE DESKTOP 960px+
   ═══════════════════════════════════════════ */
@media (min-width: 960px) {
  .nav-toggle { display:none !important; }
  .nav-links  { display:flex !important; }
  #home { padding: 5rem 2rem 0; }
  .hero-wrap { grid-template-columns: 420px 1fr; gap: 4rem; }
  .hero-lower { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .sqt-grid { grid-template-columns: 100px 1fr 1fr; gap: 4rem; }
  .sqt-icons { flex-direction: column; }
  .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .reviews-grid { grid-template-columns: repeat(3,1fr); }
  .blogs-grid { grid-template-columns: repeat(3,1fr); }
  .gallery-grid { grid-template-columns: repeat(4,1fr); }
  .footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3rem; }
  .footer-contact-strip { grid-template-columns: repeat(4,1fr); }
}

/* ═══════════════════════════════════════════
   MOBILE NAV
   ═══════════════════════════════════════════ */
@media (max-width: 959px) {
  .nav-toggle { display:flex; }
  .nav-links {
    display:none; position:absolute; top:100%; left:0; right:0;
    background:var(--white); border-top:1px solid var(--border);
    border-bottom:3px solid var(--blue); flex-direction:column;
    padding:1rem 1.5rem 1.2rem; gap:0.2rem; box-shadow:var(--shadow-md);
  }
  .nav-links.open { display:flex; }
  .nav-links a { padding:0.7rem 0.5rem; border-bottom:1px solid var(--border); border-radius:0; font-size:0.9rem; }
  .nav-links a:last-child { border-bottom:none; }
  .nav-links .btn-nav { margin:0.5rem 0 0; text-align:center; border-radius:var(--radius); padding:0.75rem; }
}

/* ═══════════════════════════════════════════
   HERO RESPONSIVE OVERRIDES
   ═══════════════════════════════════════════ */
@media (min-width: 640px) {
  .hero-img-box { height: 340px; }
  .hero-lower { grid-template-columns: 200px 1fr 320px; gap: 2.5rem; }
}
@media (min-width: 960px) {
  #home { padding: 4rem 2rem 5rem; }
  .hero-wrap { grid-template-columns: 380px 1fr; gap: 3.5rem; }
  .hero-img-box { height: 300px; }
  .hero-lower { grid-template-columns: 220px 1fr 360px; gap: 3rem; }
  .hero-lower-img { height: 200px; }
}
@media (max-width: 639px) {
  .hero-lower { grid-template-columns: 1fr; }
  .hero-lower-img { height: 220px; }
  .hero-img-box { height: 240px; }
}
