/* ═══════════════════════════════════════════
   541 HARDSCAPING  —  Design System
   Blue / White / Slate — No yellow
   ═══════════════════════════════════════════ */

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

:root {
  --blue:        #060097;
  --blue-dark:   #04006b;
  --blue-mid:    #1a1ab8;
  --blue-light:  #e8e8ff;
  --accent:      #006eb8;
  --accent-light:#e6f3fb;
  --white:       #ffffff;
  --surface:     #f8fafc;
  --border:      #e2e8f0;
  --text:        #1e293b;
  --text-muted:  #64748b;
  --text-light:  #94a3b8;
  --radius:      6px;
  --radius-lg:   12px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:      0 4px 16px rgba(6,0,151,.10);
  --shadow-lg:   0 12px 40px rgba(6,0,151,.15);
}

/* BASE */
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', 'Open Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.65; }
h1,h2,h3,h4,h5 { font-family: 'Montserrat', sans-serif; color: var(--text); line-height: 1.15; font-weight: 700; }
a { color: var(--accent); text-decoration: none; transition: color .15s; }
a:hover { color: var(--blue); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
p { color: var(--text-muted); line-height: 1.75; }

/* ── TOP BAR ── */
/* transparent header floats over the hero, turns solid on scroll */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,0) 100%);
  transition: background .25s ease, box-shadow .25s ease;
}
#site-header.scrolled { background: var(--blue); box-shadow: 0 2px 18px rgba(0,0,0,.28); }

.top-bar {
  background: transparent;
  padding: 7px 32px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.top-bar a { color: rgba(255,255,255,.78); }
.top-bar a:hover { color: #fff; }
.top-bar-left { display: flex; gap: 24px; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar-social { display: flex; gap: 16px; }
@media(max-width:768px){ .top-bar { display: none; } }

/* ── NAV ── */
nav.main-nav {
  position: static;
  background: transparent;
  height: 72px; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
#site-header.scrolled .top-bar { border-bottom-color: rgba(255,255,255,.10); }
#site-header.scrolled nav.main-nav { border-bottom-color: transparent; }
.nav-logo img { height: 50px; width: auto; filter: brightness(0) invert(1); display: block; }

.nav-links { display: flex; align-items: center; gap: 2px; height: 72px; }
.nav-links > li { position: relative; height: 72px; display: flex; align-items: center; }
.nav-links > li > a {
  color: rgba(255,255,255,.82); font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: .2px;
  padding: 0 14px; height: 100%; display: flex; align-items: center;
  white-space: nowrap; transition: color .15s;
}
.nav-links > li > a:hover { color: #fff; }
.nav-links > li > a .arr { font-size: 9px; margin-left: 3px; transition: transform .2s; display: inline-block; }
.nav-links > li:hover > a .arr { transform: rotate(180deg); }
.nav-links > li > a.nav-cta {
  background: var(--white); color: var(--blue);
  border-radius: var(--radius); padding: 8px 18px; height: auto;
  font-weight: 700; margin-left: 8px;
}
.nav-links > li > a.nav-cta:hover { background: var(--surface); color: var(--blue); }

/* dropdown */
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 210px;
  background: var(--white); border-top: 2px solid var(--blue);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .18s;
}
.nav-links > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 10px 18px; font-size: 13px; font-weight: 600;
  color: var(--text); font-family: 'Montserrat', sans-serif;
  border-bottom: 1px solid var(--border); transition: all .12s;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--surface); color: var(--blue); padding-left: 22px; }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .25s; }

.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; width: 100%;
  background: var(--blue); z-index: 997;
  border-bottom: 2px solid rgba(255,255,255,.1);
  max-height: calc(100vh - 72px); overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 13px 24px; color: rgba(255,255,255,.82);
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,.07); transition: color .15s;
}
.mobile-menu a:hover { color: #fff; }
.mobile-menu .m-sub a { padding-left: 36px; font-size: 13px; font-weight: 500; background: rgba(0,0,0,.12); }
.mobile-menu .m-label { padding: 14px 24px 4px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.4); }
.mobile-menu .m-cta-wrap { padding: 16px 24px 24px; }
.mobile-menu .m-cta { display: block; background: var(--white); color: var(--blue); text-align: center; padding: 13px; border-radius: var(--radius); font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 14px; border-bottom: none !important; }

@media(max-width:1000px){ .nav-links { display: none; } .hamburger { display: flex; } }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: .3px; text-decoration: none; transition: all .18s;
  border: 2px solid transparent; cursor: pointer; white-space: nowrap;
}
.form-submit {
  -webkit-appearance: none; appearance: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px 28px; border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: .3px; border: 2px solid var(--blue); cursor: pointer;
  background: var(--blue); color: #fff !important; transition: all .18s;
}
.form-submit:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(6,0,151,.25); }
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(6,0,151,.25); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); color: var(--white); }
.btn-outline-blue { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }
.btn-white { background: var(--white); color: var(--blue); border-color: var(--white); }
.btn-white:hover { background: var(--surface); color: var(--blue); transform: translateY(-1px); }
.btn-sm { padding: 8px 18px; font-size: 12px; }
.btn-lg { padding: 15px 36px; font-size: 15px; }

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }
@media(max-width:768px){ section { padding: 60px 0; } }

/* ── SECTION LABELS ── */
.eyebrow {
  display: inline-block; font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.eyebrow::before { content: ''; display: inline-block; width: 20px; height: 2px; background: currentColor; vertical-align: middle; margin-right: 8px; margin-bottom: 3px; opacity: .7; }
.section-title { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; margin-bottom: 14px; color: var(--text); }
.section-sub { font-size: 16px; color: var(--text-muted); line-height: 1.75; max-width: 580px; }
.text-center { text-align: center; }
.text-center .section-sub { margin-inline: auto; }

/* ── INLINE SVG ICONS ── */
.svic { width: 1em; height: 1em; display: inline-block; vertical-align: -0.14em; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.svic--solid { fill: currentColor; stroke: none; }
.trust-icon { display: inline-flex; align-items: center; justify-content: center; font-size: 18px; color: var(--accent); }
.info-icon { color: #fff; }
.map-placeholder .map-icon { color: var(--text-light); }
.cert-icon { color: var(--blue); }
.sister-callout-icon { color: var(--blue); }
.why-list li .icon { color: #fff; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--blue); color: var(--white);
  padding: 120px 24px 80px; position: relative; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(4,0,107,.84) 0%, rgba(6,0,151,.62) 55%, rgba(0,110,184,.46) 100%); }
.page-hero-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; text-align: center; }
.page-hero h1 { font-size: clamp(30px, 5vw, 52px); font-weight: 900; color: var(--white); margin-bottom: 14px; }
.page-hero .sub { font-size: 17px; color: rgba(255,255,255,.76); line-height: 1.7; margin-bottom: 24px; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 20px; font-family: 'Montserrat', sans-serif; }
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: .35; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--surface); border-bottom: 1px solid var(--border); padding: 20px 24px; }
.trust-items { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; max-width: 900px; margin: 0 auto; }
.trust-item { display: flex; align-items: center; gap: 8px; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 12px; color: var(--text); letter-spacing: .2px; }
.trust-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

/* ── CARDS ── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-img { height: 210px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 20px 22px 24px; }
.card-body h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.card-body p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.card-link { display: inline-flex; align-items: center; gap: 5px; color: var(--accent); font-weight: 700; font-size: 12px; font-family: 'Montserrat', sans-serif; margin-top: 12px; letter-spacing: .3px; text-transform: uppercase; }
.card-link:hover { color: var(--blue); }

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media(max-width:900px){ .grid-3,.grid-4 { grid-template-columns: 1fr 1fr; } }
@media(max-width:580px){ .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; } }

/* ── TWO-COL SPLIT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse > *:first-child { order: 2; }
.split.reverse > *:last-child { order: 1; }
@media(max-width:860px){ .split { grid-template-columns: 1fr; gap: 36px; } .split.reverse > * { order: unset; } }
.split-img { position: relative; }
.split-img img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; height: 480px; }
@media(max-width:860px){ .split-img img { height: 280px; } }

/* ── STAT BADGE ── */
.stat-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--blue); color: var(--white);
  border-radius: var(--radius-lg); padding: 18px 22px;
  text-align: center; font-family: 'Montserrat', sans-serif;
  box-shadow: var(--shadow-lg);
}
.stat-badge .n { font-size: 36px; font-weight: 900; display: block; line-height: 1; }
.stat-badge .l { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; opacity: .75; margin-top: 3px; }
@media(max-width:860px){ .stat-badge { right: 0; bottom: -12px; } }

/* ── STATS ROW ── */
.stats-row { position: relative; overflow: hidden; background: var(--blue); padding: 56px 24px; }
.stats-row::before { content: ''; position: absolute; inset: 0; z-index: 0; background: url('/images/hardscape-landscape.jpg') center/cover no-repeat; }
.stats-row::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(120deg, rgba(4,0,107,.90) 0%, rgba(6,0,151,.82) 100%); }
.stats-inner { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; max-width: 800px; margin: 0 auto; }
.stat-col { text-align: center; border-right: 1px solid rgba(255,255,255,.12); padding: 0 24px; }
.stat-col:last-child { border-right: none; }
.stat-col .n { font-family: 'Montserrat', sans-serif; font-size: 44px; font-weight: 900; color: var(--white); display: block; line-height: 1; }
.stat-col .l { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px; display: block; }
@media(max-width:600px){ .stats-inner { grid-template-columns: 1fr 1fr; } .stat-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: 20px; } .stat-col:last-child { border-bottom: none; } }

/* ── WHY POINTS ── */
.why-point { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.why-point-num { width: 32px; height: 32px; background: var(--blue); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; flex-shrink: 0; margin-top: 2px; }
.why-point h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.why-point p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── CERT PILLS ── */
.cert-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.cert-pill { border: 1px solid var(--border); border-radius: 4px; padding: 6px 14px; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; color: var(--text); letter-spacing: .3px; background: var(--surface); }

/* ── CTA STRIP ── */
.cta-strip { position: relative; overflow: hidden; background: var(--blue); padding: 80px 24px; text-align: center; }
.cta-strip::before { content: ''; position: absolute; inset: 0; z-index: 0; background: url('/images/outdoor-living.jpg') center/cover no-repeat; }
.cta-strip::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(120deg, rgba(4,0,107,.85) 0%, rgba(6,0,151,.70) 60%, rgba(0,110,184,.55) 100%); }
.cta-strip > * { position: relative; z-index: 2; }
.cta-strip h2 { color: var(--white); font-size: clamp(24px, 3.5vw, 38px); font-weight: 900; margin-bottom: 10px; }
.cta-strip p { color: rgba(255,255,255,.7); font-size: 16px; margin-bottom: 36px; max-width: 520px; margin-inline: auto; }
.cta-strip p { margin-bottom: 36px; }
.cta-phone { display: inline-flex; align-items: center; gap: 10px; color: var(--white); font-family: 'Montserrat', sans-serif; font-size: clamp(28px, 4vw, 44px); font-weight: 900; text-decoration: none; margin-bottom: 28px; }
.cta-phone:hover { color: rgba(255,255,255,.85); }
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* ── FOOTER ── */
footer { background: #f8f6f1; padding: 64px 24px 0; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
@media(max-width:900px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:520px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 52px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; line-height: 1.8; color: var(--text-muted); }
.footer-col h5 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11px; color: var(--accent); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 2px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--text-muted); transition: color .15s; }
.footer-col ul li a:hover { color: var(--blue); }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin-bottom: 10px; line-height: 1.5; }
.footer-contact-item a { color: var(--text); }
.footer-contact-item a:hover { color: var(--blue); }
.footer-contact-item .svic { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding: 18px 0 24px; font-size: 12px; color: var(--text-light); }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.g-item { overflow: hidden; border-radius: var(--radius); cursor: pointer; height: 220px; position: relative; }
.g-item.tall { grid-row: span 2; height: 448px; }
.g-item.wide { grid-column: span 2; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.g-item:hover img { transform: scale(1.06); }
.g-item-overlay { position: absolute; inset: 0; background: rgba(6,0,151,.4); opacity: 0; transition: opacity .25s; display: flex; align-items: center; justify-content: center; }
.g-item:hover .g-item-overlay { opacity: 1; }
.g-item-overlay span { color: #fff; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border: 1px solid rgba(255,255,255,.6); padding: 6px 14px; border-radius: 3px; }
@media(max-width:900px){ .gallery-grid { grid-template-columns: 1fr 1fr; } .g-item.tall,.g-item.wide { grid-row: span 1; grid-column: span 1; height: 200px; } }
@media(max-width:480px){ .g-item { height: 160px !important; } }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.95); z-index: 9999; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: var(--radius); }
.lb-close { position: absolute; top: 20px; right: 24px; color: #fff; font-size: 36px; cursor: pointer; background: none; border: none; line-height: 1; opacity: .8; }
.lb-close:hover { opacity: 1; }

/* ── REVIEW CARD ── */
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.r-stars { color: var(--blue); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.review-card blockquote { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.r-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; color: var(--text); }
.r-meta { font-size: 12px; color: var(--text-light); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; padding: 18px 0; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; color: var(--text); background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q:hover { color: var(--blue); }
.faq-icon { font-size: 18px; color: var(--accent); flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 18px; font-size: 15px; color: var(--text-muted); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ── PROCESS ── */
.process-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; counter-reset: step; }
.process-step { padding: 32px 24px; border-right: 1px solid var(--border); position: relative; }
.process-step:last-child { border-right: none; }
.step-n { font-family: 'Montserrat', sans-serif; font-size: 48px; font-weight: 900; color: var(--blue-light); line-height: 1; margin-bottom: 14px; }
.process-step h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
@media(max-width:768px){ .process-row { grid-template-columns: 1fr 1fr; } .process-step { border-right: none; border-bottom: 1px solid var(--border); } .process-step:last-child { border-bottom: none; } }

/* ── CONTACT FORM ── */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 12px; color: var(--text); margin-bottom: 6px; letter-spacing: .3px; text-transform: uppercase; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 14px; color: var(--text); font-family: 'Open Sans', sans-serif; background: var(--white); transition: border-color .15s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(6,0,151,.06); }
.form-group textarea { height: 120px; resize: vertical; }

/* ── BLOG ── */
.blog-card { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow .2s, transform .2s; background: var(--white); }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card-img { height: 190px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 18px 20px 22px; }
.blog-tag { display: inline-block; font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.blog-card-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-card-body h3 a { color: var(--text); }
.blog-card-body h3 a:hover { color: var(--blue); }
.blog-card-body p { font-size: 13px; line-height: 1.7; }
.blog-meta { font-size: 11px; color: var(--text-light); margin-top: 12px; font-family: 'Montserrat', sans-serif; }

/* ── AREA CARD ── */
.area-card { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border: 1px solid var(--border); border-radius: var(--radius-lg); text-decoration: none; color: var(--text); transition: all .15s; background: var(--white); }
.area-card:hover { border-color: var(--blue); background: var(--surface); color: var(--text); }
.area-card h3 { font-size: 15px; font-weight: 700; margin: 0; }
.area-card p { font-size: 12px; color: var(--text-muted); margin: 0; }
.area-arr { color: var(--text-light); font-size: 16px; }
.area-card:hover .area-arr { color: var(--blue); }

/* ── FLOATING CALL ── */
.fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 800;
  background: var(--blue); color: var(--white); border-radius: 50px;
  padding: 13px 22px; font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 14px; text-decoration: none; display: flex; align-items: center; gap: 9px;
  box-shadow: 0 6px 24px rgba(6,0,151,.35); transition: all .18s;
}
.fab:hover { background: var(--blue-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(6,0,151,.4); }
.fab svg { width: 18px; height: 18px; flex-shrink: 0; }
@media(max-width:480px){ .fab .fab-text { display: none; } .fab { padding: 13px; border-radius: 50%; } }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ── SERVICE ICON BOX ── */
.icon-box { width: 44px; height: 44px; background: var(--blue-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; margin-bottom: 14px; }
