/* ============================================================
   Smart City Care GrowthShift — Main Stylesheet
   Colors: Blue #1d4ed8 | Orange #ea580c | Dark #0f172a
   Font: Segoe UI / system-ui
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1e293b;
  background: #fff;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- CSS Variables ---------- */
:root {
  --blue:      #1d4ed8;
  --blue-dark: #1e40af;
  --blue-light:#eff6ff;
  --orange:    #ea580c;
  --orange-dk: #c2410c;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-600: #475569;
  --slate-400: #94a3b8;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;
  --white:     #ffffff;
  --green:     #16a34a;
  --red:       #dc2626;
  --radius:    10px;
  --shadow:    0 2px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --transition: .18s ease;
  --container: 1200px;
}

/* ---------- Utility ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.section-pad { padding: 4rem 0; }
.section-pad-sm { padding: 2.5rem 0; }
.text-center { text-align: center; }
.text-blue   { color: var(--blue); }
.text-orange { color: var(--orange); }
.text-muted  { color: var(--slate-600); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.fw-700 { font-weight: 700; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.flex-wrap { flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .65rem 1.5rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-orange  { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-dk); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { border: 2px solid var(--blue); color: var(--blue); background: transparent; }
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-lg { padding: .85rem 2rem; font-size: 1rem; }
.btn-sm { padding: .4rem 1rem; font-size: .85rem; }
.btn-white { background: var(--white); color: var(--blue); }
.btn-white:hover { background: var(--blue-light); }

/* ---------- Section Headings ---------- */
.section-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.2;
}
.section-title span { color: var(--blue); }
.section-subtitle { font-size: 1.05rem; color: var(--slate-600); margin-top: .5rem; }
.section-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: .5rem;
}
.section-divider {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  border-radius: 4px;
  margin: .75rem auto 0;
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--slate-100);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}
.site-logo {
  display: flex; align-items: center; gap: .6rem;
  font-size: 1.2rem; font-weight: 800; color: var(--slate-900);
  flex-shrink: 0;
}
.site-logo span { color: var(--blue); }
.logo-icon {
  width: 38px; height: 38px;
  background: var(--blue); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem;
}
.main-nav { display: flex; align-items: center; gap: .25rem; }
.main-nav a {
  padding: .45rem .9rem; border-radius: 8px;
  font-size: .9rem; font-weight: 600; color: var(--slate-800);
  transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active { background: var(--blue-light); color: var(--blue); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: .7rem; }
.dropdown-menu {
  display: none; position: absolute;
  top: calc(100% + .4rem); left: 0;
  background: var(--white); border: 1px solid var(--slate-100);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 240px; padding: .5rem 0; z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: flex; align-items: center; gap: .5rem;
  padding: .5rem 1rem; font-size: .88rem; border-radius: 0;
  color: var(--slate-800);
}
.dropdown-menu a:hover { background: var(--blue-light); color: var(--blue); }
.dropdown-menu-right { left: auto; right: 0; }

/* Nav login / user buttons */
.nav-login-btn {
  padding: .4rem 1.1rem; border-radius: 8px;
  font-size: .88rem; font-weight: 700;
  color: var(--white) !important; background: var(--blue);
  transition: background var(--transition);
}
.nav-login-btn:hover { background: #1e40af !important; color: var(--white) !important; }
.nav-user-btn {
  padding: .4rem .9rem; border-radius: 8px;
  font-size: .88rem; font-weight: 600; color: var(--blue) !important;
  background: var(--blue-light);
}
.nav-user-btn:hover { background: var(--blue) !important; color: var(--white) !important; }

.header-phone {
  display: flex; align-items: center; gap: .4rem;
  font-size: .88rem; font-weight: 700; color: var(--blue);
  background: var(--blue-light); padding: .4rem .9rem;
  border-radius: 8px; white-space: nowrap; flex-shrink: 0;
}
.header-phone:hover { background: var(--blue); color: var(--white); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: .4rem; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--slate-800); border-radius: 2px; }
.mobile-nav {
  background: var(--white); border-top: 1px solid var(--slate-100);
  padding: 1rem 1.25rem;
}
.mobile-nav a {
  display: block; padding: .6rem 0;
  font-weight: 600; font-size: .95rem; color: var(--slate-800);
  border-bottom: 1px solid var(--slate-100);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--blue); }

/* ---------- HERO ---------- */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 60%, #1e40af 100%);
  padding: 5rem 0 4rem; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { position: relative; text-align: center; max-width: 860px; margin: 0 auto; }
.hero-tag {
  display: inline-block; background: rgba(255,255,255,.12); color: #fff;
  font-size: .8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: .35rem 1rem; border-radius: 99px; margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 900; color: #fff;
  line-height: 1.15; margin-bottom: 1rem;
}
.hero h1 span { color: #fbbf24; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.8); margin-bottom: 2.5rem; }

/* Search bar */
.search-bar {
  background: #fff; border-radius: 14px; padding: .75rem;
  display: flex; gap: .75rem; flex-wrap: wrap;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  max-width: 760px; margin: 0 auto 1.5rem;
}
.search-bar select, .search-bar input {
  flex: 1; min-width: 180px;
  padding: .75rem 1rem; border: 1.5px solid var(--slate-100);
  border-radius: 8px; font-size: .95rem; font-family: inherit;
  color: var(--slate-800); background: var(--slate-50); outline: none;
  transition: border-color var(--transition);
}
.search-bar select:focus, .search-bar input:focus { border-color: var(--blue); background: #fff; }
.search-bar .btn { flex-shrink: 0; padding: .75rem 2rem; font-size: 1rem; }

.hero-phone { display: inline-flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.8); font-size: .95rem; }
.hero-phone a { color: #fbbf24; font-weight: 700; font-size: 1.05rem; }
.hero-phone a:hover { text-decoration: underline; }

/* ---------- STATS BAR ---------- */
.stats-bar { background: var(--slate-900); padding: 1.25rem 0; }
.stats-inner { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: .5rem 2rem; border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 1.6rem; font-weight: 900; color: #fbbf24; }
.stat-label { font-size: .78rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .5px; }

/* ---------- WHY HIRE US ---------- */
.why-us { background: var(--slate-50); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.feature-card {
  background: var(--white); border: 1px solid var(--slate-100);
  border-radius: var(--radius); padding: 1.75rem 1.5rem;
  transition: all var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.feature-icon {
  width: 52px; height: 52px; background: var(--blue-light);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; margin-bottom: 1rem;
}
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; color: var(--slate-900); }
.feature-card p { font-size: .88rem; color: var(--slate-600); line-height: 1.6; }

/* ---------- SERVICES GRID ---------- */
.services-section { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; margin-top: 2.5rem; }
.service-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 1.5rem 1rem;
  background: var(--white); border: 1px solid var(--slate-100);
  border-radius: var(--radius); transition: all var(--transition); gap: .75rem;
}
.service-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-3px); }
.svc-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; background: var(--blue-light);
  transition: background var(--transition);
}
.service-card:hover .svc-icon { background: var(--blue); }
.service-card h3 { font-size: .88rem; font-weight: 700; color: var(--slate-800); }

/* ---------- HOW IT WORKS ---------- */
.how-it-works { background: var(--slate-50); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.step-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-size: 1.3rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; box-shadow: 0 4px 16px rgba(29,78,216,.35);
}
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.step-card p { font-size: .88rem; color: var(--slate-600); }

/* ---------- VENDOR CARDS ---------- */
.vendors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.vendor-card {
  background: var(--white); border: 1px solid var(--slate-100);
  border-radius: var(--radius); padding: 1.25rem;
  transition: all var(--transition); display: flex; flex-direction: column; gap: .75rem;
}
.vendor-card:hover { box-shadow: var(--shadow-lg); border-color: var(--blue); }
.vendor-logo {
  width: 56px; height: 56px; border-radius: 10px;
  background: var(--blue-light); display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; font-weight: 800; color: var(--blue);
}
.vendor-name { font-weight: 700; font-size: 1rem; color: var(--slate-900); }
.vendor-city { font-size: .82rem; color: var(--slate-600); }
.vendor-rating { display: flex; align-items: center; gap: .35rem; font-size: .85rem; font-weight: 700; color: #d97706; }
.stars { color: #f59e0b; }
.rating-count { color: var(--slate-400); font-weight: 400; }

/* ---------- TESTIMONIALS ---------- */
.testimonials { background: var(--white); }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.review-card { background: var(--slate-50); border: 1px solid var(--slate-100); border-radius: var(--radius); padding: 1.5rem; }
.review-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: .75rem; }
.review-text { font-size: .92rem; color: var(--slate-600); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: .75rem; }
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-weight: 700; font-size: .95rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: .9rem; }
.reviewer-city { font-size: .78rem; color: var(--slate-400); }

/* ---------- BLOG CARDS ---------- */
.blog-section { background: var(--slate-50); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.blog-card { background: var(--white); border: 1px solid var(--slate-100); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-thumb {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, var(--blue-light), #dbeafe);
  display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 1.1rem; display: flex; flex-direction: column; flex: 1; }
.blog-cat { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--orange); margin-bottom: .4rem; }
.blog-title { font-size: .95rem; font-weight: 700; color: var(--slate-900); line-height: 1.4; margin-bottom: .5rem; }
.blog-title:hover { color: var(--blue); }
.blog-excerpt { font-size: .82rem; color: var(--slate-500); line-height: 1.55; margin-bottom: .75rem; }
.blog-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.blog-date { font-size: .78rem; color: var(--slate-400); }
.blog-readmore { font-size: .78rem; font-weight: 700; color: var(--blue); }

/* ---------- CALL-BACK SECTION ---------- */
.callback-section { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); padding: 4rem 0; }
.callback-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.callback-inner .section-title { color: #fff; }
.callback-inner .section-subtitle { color: rgba(255,255,255,.8); }
.callback-form { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center; margin-top: 2rem; }
.callback-form input {
  flex: 1; min-width: 180px; padding: .8rem 1.1rem;
  border-radius: 8px; border: 1.5px solid rgba(255,255,255,.2);
  font-size: .95rem; font-family: inherit; outline: none;
  background: rgba(255,255,255,.15); color: #fff;
}
.callback-form input::placeholder { color: rgba(255,255,255,.6); }
.callback-form input:focus { background: rgba(255,255,255,.25); border-color: rgba(255,255,255,.5); }
.form-msg { margin-top: 1rem; font-size: .9rem; font-weight: 600; min-height: 1.4rem; color: #86efac; }

/* ---------- GENERAL FORMS ---------- */
.form-group { margin-bottom: 1.1rem; }
.form-label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .35rem; color: var(--slate-800); }
.form-control {
  width: 100%; padding: .7rem 1rem;
  border: 1.5px solid var(--slate-100); border-radius: 8px;
  font-size: .95rem; font-family: inherit; color: var(--slate-800);
  background: var(--slate-50); outline: none; transition: border-color var(--transition);
}
.form-control:focus { border-color: var(--blue); background: #fff; }
.form-control.error { border-color: var(--red); }
.form-error { font-size: .78rem; color: var(--red); margin-top: .25rem; }

/* Inquiry box */
.inquiry-box {
  background: var(--white); border: 1px solid var(--slate-100);
  border-radius: 14px; padding: 2rem; box-shadow: var(--shadow);
}
.inquiry-box h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.25rem; color: var(--slate-900); }

/* ---------- BREADCRUMB ---------- */
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: .35rem; font-size: .82rem; color: var(--slate-400); padding: .75rem 0; }
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero { background: linear-gradient(135deg, var(--slate-900), var(--blue-dark)); padding: 3rem 0; color: #fff; }
.page-hero h1 { font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 800; }
.page-hero p { color: rgba(255,255,255,.75); margin-top: .5rem; }

/* ---------- BADGES ---------- */
.badge { display: inline-block; padding: .2rem .65rem; border-radius: 99px; font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.badge-blue   { background: var(--blue-light); color: var(--blue); }
.badge-green  { background: #dcfce7; color: var(--green); }
.badge-orange { background: #fff7ed; color: var(--orange); }
.badge-gray   { background: var(--slate-100); color: var(--slate-600); }

/* ---------- ALERTS ---------- */
.alert { padding: .9rem 1.1rem; border-radius: 8px; font-size: .9rem; font-weight: 500; margin-bottom: 1rem; }
.alert-success { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.alert-error   { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.alert-info    { background: #eff6ff; color: var(--blue); border: 1px solid #bfdbfe; }

/* ---------- TABLES ---------- */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: .9rem; }
th { background: var(--slate-50); font-weight: 700; padding: .7rem 1rem; text-align: left; border-bottom: 2px solid var(--slate-100); color: var(--slate-900); }
td { padding: .6rem 1rem; border-bottom: 1px solid var(--slate-100); color: var(--slate-600); }
tr:hover td { background: var(--slate-50); }

/* ---------- PAGINATION ---------- */
.pagination { display: flex; gap: .4rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.page-link { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 8px; border: 1px solid var(--slate-100); font-size: .9rem; font-weight: 600; color: var(--slate-600); transition: all var(--transition); }
.page-link:hover, .page-link.active { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ---------- SPINNER ---------- */
.spinner { display: inline-block; width: 18px; height: 18px; border: 2.5px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spin .6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--slate-900); color: rgba(255,255,255,.75); padding-top: 3.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 2.5rem; padding-bottom: 3rem; }
.footer-logo { font-size: 1.2rem; font-weight: 800; color: #fff; display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.footer-logo .logo-icon { width: 34px; height: 34px; font-size: 1rem; }
.footer-logo span { color: #60a5fa; }
.footer-desc { font-size: .88rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-contact { display: flex; flex-direction: column; gap: .5rem; font-size: .88rem; }
.footer-contact a { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.7); }
.footer-contact a:hover { color: #fff; }
.footer-col h4 { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul a { font-size: .88rem; color: rgba(255,255,255,.6); }
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 1.25rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .75rem; font-size: .82rem; color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: #fff; }

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 800;
  width: 52px; height: 52px; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.45);
  transition: all var(--transition); font-size: 1.5rem; color: #fff;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.55); }

/* ---------- TOAST ---------- */
.toast {
  position: fixed; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--slate-900); color: #fff;
  padding: .7rem 1.5rem; border-radius: 8px;
  font-size: .9rem; font-weight: 600; z-index: 1000;
  transition: transform .25s ease; pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section-pad { padding: 2.5rem 0; }
  .hero { padding: 3.5rem 0 3rem; }
  .section-title { font-size: 1.5rem; }
  .search-bar { flex-direction: column; }
  .search-bar select, .search-bar input, .search-bar .btn { width: 100%; min-width: unset; }
  .main-nav, .header-phone { display: none; }
  .hamburger { display: flex; }
  .stats-inner { gap: 0; }
  .stat-item { padding: .5rem 1rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); width: 50%; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
/* ---------- More-services compact row ---------- */
.more-services-row {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: .5rem 1rem; margin-top: 1.5rem;
  padding: .85rem 1.1rem;
  background: var(--slate-50); border-radius: var(--radius);
  border: 1px solid #e2e8f0;
  font-size: .85rem;
}
.more-services-row span {
  font-weight: 700; color: var(--slate-600); white-space: nowrap;
}
.more-services-row a {
  color: var(--slate-800); white-space: nowrap;
  padding: .2rem .55rem; border-radius: 20px;
  border: 1px solid #cbd5e1; transition: var(--transition);
}
.more-services-row a:hover {
  background: var(--blue); color: #fff; border-color: var(--blue);
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero h1 { font-size: 1.5rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}
