/*
Theme Name: FixRight Appliance Repair
Theme URI: https://fixright.ca
Author: FixRight
Author URI: https://fixright.ca
Description: Professional appliance repair business theme for Winnipeg. LinkedIn blue color scheme, clean readable typography, full homepage with booking form and Winnipeg map.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fixright
Tags: business, one-page, custom-colors, full-width-template
*/

/* ── GOOGLE FONTS: Inter + Exo 2 (futuristic logo font) ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Exo+2:wght@700;800;900&display=swap');

/* ── CSS VARIABLES: Brighter LinkedIn Blue Palette ── */
:root {
  --navy:        #0A66C2;
  --navy-dark:   #004182;
  --navy-deeper: #012d5e;
  --blue-mid:    #0073b1;
  --blue-light:  #deeeff;
  --blue-hover:  #005885;
  --orange:      #0A66C2;
  --accent:      #f5a623;
  --accent-dark: #d4891a;
  --cream:       #f0f6ff;
  --white:       #ffffff;
  --border:      rgba(0,0,0,0.1);
  --border-blue: rgba(10,102,194,0.2);
  --text-dark:   #0d1b2e;
  --text-mid:    #3a4a5c;
  --text-light:  #6b7f96;
  --shadow:      0 2px 12px rgba(0,0,0,0.07);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.10);
  --radius:      8px;
  --radius-lg:   12px;
}

/* ── RESET & BASE ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 85px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}
p { line-height: 1.65; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ════════════════════════════════════════════════
   FUTURISTIC TOP BAR
   ════════════════════════════════════════════════ */
.topbar {
  background: linear-gradient(90deg, #012d5e 0%, #01408a 50%, #012d5e 100%);
  border-bottom: 1px solid rgba(77,163,255,0.3);
  padding: 7px 0;
  font-size: 12px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.topbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(77,163,255,0.6) 30%, rgba(77,163,255,1) 50%, rgba(77,163,255,0.6) 70%, transparent 100%);
  animation: scan-line 3s ease-in-out infinite;
}
@keyframes scan-line {
  0%,100% { opacity: 0.4; } 50% { opacity: 1; }
}
.topbar-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-center { display: flex; align-items: center; }
.topbar-time { color: rgba(180,210,255,0.7); font-size: 11px; letter-spacing: 0.04em; display: flex; align-items: center; gap: 5px; }
.topbar-time svg { opacity: 0.6; }

/* Canadian badge */
.canada-badge {
  display: flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, rgba(255,0,0,0.15) 0%, rgba(255,0,0,0.05) 100%);
  border: 1px solid rgba(255,60,60,0.4);
  color: #ff9999;
  padding: 3px 12px 3px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: canada-pulse 4s ease-in-out infinite;
}
@keyframes canada-pulse {
  0%,100% { border-color: rgba(255,60,60,0.4); box-shadow: none; }
  50% { border-color: rgba(255,60,60,0.8); box-shadow: 0 0 8px rgba(255,0,0,0.2); }
}
.maple-leaf { filter: drop-shadow(0 0 4px rgba(255,80,80,0.6)); animation: leaf-glow 3s ease-in-out infinite; }
@keyframes leaf-glow { 0%,100% { filter: drop-shadow(0 0 3px rgba(255,80,80,0.5)); } 50% { filter: drop-shadow(0 0 8px rgba(255,80,80,0.9)); } }

.topbar-phone {
  display: flex; align-items: center; gap: 5px;
  color: #4da3ff; font-weight: 700; font-size: 12px;
  text-decoration: none; letter-spacing: 0.02em;
  transition: color 0.2s;
}
.topbar-phone:hover { color: #7dc0ff; text-shadow: 0 0 10px rgba(77,163,255,0.6); }
.topbar-email {
  display: flex; align-items: center; gap: 5px;
  color: rgba(180,210,255,0.75); font-weight: 500; font-size: 11px;
  text-decoration: none; letter-spacing: 0.02em;
  transition: color 0.2s;
}
.topbar-email:hover { color: #7dc0ff; }

/* ════════════════════════════════════════════════
   FUTURISTIC NAV
   ════════════════════════════════════════════════ */
nav#main-nav {
  background: linear-gradient(180deg, #013a75 0%, #012d5e 100%);
  border-bottom: 1px solid rgba(77,163,255,0.25);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 4px 32px rgba(0,0,0,0.3), 0 1px 0 rgba(77,163,255,0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-scanner {
  position: absolute; top: 0; left: -100%; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #4da3ff 50%, transparent 100%);
  animation: nav-scan 4s ease-in-out infinite;
  opacity: 0.6;
}
@keyframes nav-scan { 0% { left: -100%; } 100% { left: 100%; } }
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 20px;
  height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  position: relative;
}

/* ── FUTURISTIC HEX LOGO ── */
.logo { display: flex; align-items: center; gap: 13px; text-decoration: none; flex-shrink: 0; }
.logo-hex-wrap { position: relative; width: 52px; height: 58px; flex-shrink: 0; }
.logo-hex-svg { display: block; transition: transform 0.3s; }
.logo:hover .logo-hex-svg { transform: scale(1.06); }
.logo-hex-glow {
  position: absolute; inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(77,163,255,0.25);
  animation: ring-pulse 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ring-pulse {
  0%,100% { transform: scale(1); opacity: 0.25; }
  50% { transform: scale(1.1); opacity: 0.7; box-shadow: 0 0 14px rgba(77,163,255,0.35); }
}
.logo:hover .logo-hex-glow { opacity: 1; box-shadow: 0 0 18px rgba(77,163,255,0.6); }
.logo-text-wrap { display: flex; flex-direction: column; gap: 1px; }
.logo-main { display: flex; flex-direction: column; line-height: 1.1; }
.logo-word-1 {
  font-family: 'Exo 2', 'Inter', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.25em;
  color: rgba(160,210,255,0.6);
  text-transform: uppercase;
}
.logo-word-2 {
  font-family: 'Exo 2', 'Inter', sans-serif;
  font-size: 19px; font-weight: 900; letter-spacing: 0.02em;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
}
.logo-accent {
  color: #4da3ff;
  text-shadow: 0 0 14px rgba(77,163,255,0.8);
}
.logo-sub {
  display: flex; align-items: center; gap: 6px;
  font-family: 'Exo 2', 'Inter', sans-serif;
  font-size: 9px; font-weight: 600; letter-spacing: 0.14em;
  color: rgba(77,163,255,0.5);
  text-transform: uppercase;
}
.logo-sub-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(77,163,255,0.5);
  flex-shrink: 0;
}
.logo:hover .logo-accent { text-shadow: 0 0 20px rgba(77,163,255,1); }
.logo:hover .logo-sub { color: rgba(77,163,255,0.85); }

/* ── NAV LINKS ── */
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  position: relative;
  padding: 8px 13px;
  color: rgba(180,210,255,0.75);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s;
  overflow: hidden;
}
.nav-link-line {
  position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 1px; background: #4da3ff;
  transition: all 0.25s;
}
.nav-link:hover { color: #fff; background: rgba(77,163,255,0.08); }
.nav-link:hover .nav-link-line { left: 13px; right: 13px; box-shadow: 0 0 6px rgba(77,163,255,0.8); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, #0A66C2 0%, #0052a3 100%);
  color: #fff !important;
  padding: 9px 18px !important;
  border-radius: 6px !important;
  font-weight: 700 !important; font-size: 13px !important;
  border: 1px solid rgba(77,163,255,0.4);
  box-shadow: 0 0 14px rgba(10,102,194,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: all 0.2s !important;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-cta:hover {
  background: linear-gradient(135deg, #1570d0 0%, #0A66C2 100%) !important;
  box-shadow: 0 0 22px rgba(77,163,255,0.6), inset 0 1px 0 rgba(255,255,255,0.15) !important;
  transform: translateY(-1px);
}
.mobile-menu-btn {
  display: none; background: none;
  border: 1px solid rgba(77,163,255,0.3);
  border-radius: 6px;
  cursor: pointer; padding: 8px 10px;
  flex-direction: column; gap: 4px;
}
.mobile-menu-btn span { display: block; width: 20px; height: 2px; background: #4da3ff; border-radius: 2px; transition: all 0.3s; }
.mobile-menu-btn:hover { border-color: rgba(77,163,255,0.7); box-shadow: 0 0 10px rgba(77,163,255,0.3); }


/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, #012d5e 0%, #01408a 45%, #0A66C2 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: visible;
}
/* Tech grid overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(77,163,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77,163,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none; z-index: 0;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, #012d5e 0%, #013a75 20%, rgba(1,58,117,0.82) 50%, rgba(10,102,194,0.35) 100%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: 1fr 440px;
  gap: 48px; align-items: start;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(77,163,255,0.1);
  border: 1px solid rgba(77,163,255,0.35);
  color: #4da3ff;
  padding: 5px 14px; border-radius: 4px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 18px;
  box-shadow: 0 0 12px rgba(77,163,255,0.15);
  animation: badge-flicker 5s ease-in-out infinite;
}
@keyframes badge-flicker { 0%,95%,100%{opacity:1} 97%{opacity:0.7} }
.hero h1 {
  font-size: clamp(30px, 4vw, 46px);
  color: #fff; font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.hero h1 span { color: #f5c842; }
.hero-subtitle {
  font-size: 16px; color: rgba(255,255,255,0.78);
  margin-bottom: 28px; max-width: 460px; line-height: 1.65;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--accent); color: #fff;
  padding: 12px 24px; border-radius: 6px;
  font-weight: 700; font-size: 15px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 3px 12px rgba(245,166,35,0.4);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent; border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff; padding: 12px 24px; border-radius: 6px;
  font-weight: 600; font-size: 15px;
  transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-stat-num { font-size: 26px; font-weight: 800; color: #fff; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }

/* ── HERO FORM ── */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
  border: 1px solid rgba(77,163,255,0.2);
  position: relative;
  z-index: 10;
  overflow: visible;
}
.hero-form-card::-webkit-scrollbar { width: 4px; }
.hero-form-card::-webkit-scrollbar-track { background: transparent; }
.hero-form-card::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 4px; }
.hero-form-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 4px;
}
.hero-form-header h3 { font-size: 17px; color: var(--navy-dark); font-weight: 800; }
.hero-form-discount {
  background: #dcfce7; color: #15803d;
  font-size: 12px; font-weight: 800;
  padding: 4px 10px; border-radius: 20px;
  letter-spacing: 0.04em; flex-shrink: 0;
}
.form-group { margin-bottom: 12px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text-mid); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.04em; }
.form-group select,
.form-group input,
.form-group textarea {
  width: 100%; padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: 'Inter', sans-serif; font-size: 14px;
  color: var(--text-dark); background: var(--cream);
  outline: none; transition: border 0.15s, background 0.15s;
  resize: vertical;
}
.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus { border-color: var(--navy); background: #fff; }
.form-group input[type="file"] {
  padding: 8px 10px;
  font-size: 13px; cursor: pointer;
}
.form-submit {
  width: 100%; padding: 13px;
  background: var(--navy); color: #fff; border: none;
  border-radius: 6px; font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 700; cursor: pointer;
  margin-top: 4px; transition: background 0.2s;
}
.form-submit:hover { background: var(--navy-dark); }
.form-note { text-align: center; font-size: 11px; color: var(--text-light); margin-top: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* ── TRUST STRIP ── */
.trust-strip { background: var(--cream); border-bottom: 1px solid var(--border-blue); padding: 16px 0; }
.trust-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: stretch; justify-content: center; gap: 0; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--navy-dark);
  padding: 6px 28px;
  border-right: 1px solid var(--border-blue);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 30px; height: 30px; min-width: 30px;
  background: var(--navy); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 760px) {
  .trust-inner { gap: 0; }
  .trust-item {
    padding: 8px 16px;
    border-right: none;
    border-bottom: 1px solid var(--border-blue);
    width: 50%;
    justify-content: flex-start;
  }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--border-blue); }
  .trust-item:last-child { border-bottom: none; width: 100%; justify-content: center; }
}

/* ── SECTIONS ── */
section { padding: 72px 0; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.section-label { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); background: var(--blue-light); padding: 4px 10px; border-radius: 4px; margin-bottom: 12px; }
.section-title { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--navy-dark); margin-bottom: 12px; letter-spacing: -0.02em; }
.section-subtitle { font-size: 16px; color: var(--text-mid); max-width: 540px; line-height: 1.65; }
.section-header { margin-bottom: 44px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ── SERVICES ── */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 18px; }
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center; text-decoration: none; color: inherit;
  transition: all 0.2s; display: block; overflow: hidden;
}
.service-card:hover { border-color: var(--navy); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-img-wrap { width: 100%; height: 140px; overflow: hidden; background: var(--cream); }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; display: block; }
.service-card:hover .service-img-wrap img { transform: scale(1.06); }
.service-card h4 { font-size: 14px; font-weight: 700; color: var(--navy-dark); margin: 12px 14px 4px; }
.service-card p { font-size: 12px; color: var(--text-light); margin: 0 14px 14px; }

/* ── ABOUT SECTION ── */
.about-section { background: var(--cream); padding: 80px 0; }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; height: 440px; display: block; }
.about-badge-float {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--navy); color: #fff;
  padding: 18px 22px; border-radius: var(--radius-lg);
  text-align: center; box-shadow: var(--shadow-lg);
  border: 3px solid var(--white);
}
.about-badge-num { font-size: 30px; font-weight: 800; line-height: 1; }
.about-badge-txt { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 4px; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.about-point { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--text-dark); }
.about-check { color: var(--navy); font-weight: 700; font-size: 15px; }

/* ── WHY US ── */
.why-us { background: linear-gradient(160deg, #012d5e 0%, #01408a 100%); }
.why-us .section-title { color: #fff; }
.why-us .section-label { color: #f5c842; background: rgba(245,200,66,0.15); }
.why-us .section-subtitle { color: rgba(255,255,255,0.72); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.why-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-lg); padding: 28px 22px; transition: all 0.2s; }
.why-card:hover { background: rgba(255,255,255,0.16); border-color: rgba(77,163,255,0.5); }
.why-num { font-size: 11px; font-weight: 700; color: #f5c842; letter-spacing: 0.1em; margin-bottom: 12px; text-transform: uppercase; }
.why-card h3 { font-size: 17px; color: #fff; margin-bottom: 8px; }
.why-card p { font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.6; }

/* ── HOW IT WORKS ── */
.how-it-works { background: var(--cream); }
.steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.step { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px 22px; transition: box-shadow 0.2s; }
.step:hover { box-shadow: var(--shadow-lg); }
.step-num { width: 40px; height: 40px; background: var(--navy); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 800; margin-bottom: 16px; }
.step h4 { font-size: 16px; color: var(--navy-dark); margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

/* ── REVIEWS ── */
.reviews { background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 20px; }
.review-card { background: var(--cream); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 24px 20px; transition: box-shadow 0.2s; }
.review-card:hover { box-shadow: var(--shadow-lg); }
.review-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.star { color: #f59e0b; font-size: 15px; }
.review-text { font-size: 14px; color: var(--text-dark); line-height: 1.65; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: #fff; flex-shrink: 0; }
.review-name { font-weight: 600; font-size: 13px; color: var(--navy-dark); }
.review-date { font-size: 11px; color: var(--text-light); }
.reviews-rating-bar { display: flex; align-items: center; gap: 20px; background: var(--navy-deeper); border-radius: var(--radius-lg); padding: 24px 32px; margin-bottom: 36px; flex-wrap: wrap; }
.rating-num { font-size: 52px; font-weight: 800; color: #fff; line-height: 1; }
.rating-info { flex: 1; min-width: 130px; }
.rating-stars { display: flex; gap: 3px; margin-bottom: 4px; }
.rating-count { font-size: 13px; color: rgba(255,255,255,0.6); }
.google-tag { display: flex; align-items: center; gap: 7px; font-size: 14px; color: #fff; font-weight: 600; }

/* ── BRANDS ── */
.brands { background: var(--cream); }
.brands-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.brand-pill { padding: 8px 18px; background: var(--white); border: 1.5px solid var(--border); border-radius: 20px; font-size: 13px; font-weight: 600; color: var(--navy-dark); transition: all 0.15s; cursor: default; }
.brand-pill:hover { border-color: var(--navy); color: var(--navy); background: var(--blue-light); }

/* ── BOOKING FORM SECTION ── */
.booking-section { background: var(--blue-light); }
.booking-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-blue);
  padding: 44px 40px;
  max-width: 780px; margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.booking-form-wrap h3 { font-size: 22px; color: var(--navy-dark); margin-bottom: 6px; }
.booking-form-wrap > p { font-size: 14px; color: var(--text-mid); margin-bottom: 28px; }
.booking-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.booking-form .form-group { margin-bottom: 16px; }
.booking-form .form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; }
.booking-form .form-group input,
.booking-form .form-group select,
.booking-form .form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: 'Inter', sans-serif; font-size: 14px;
  color: var(--text-dark); background: var(--cream);
  outline: none; transition: border 0.15s;
}
.booking-form .form-group input:focus,
.booking-form .form-group select:focus,
.booking-form .form-group textarea:focus { border-color: var(--navy); background: #fff; }
.booking-form .form-group textarea { min-height: 110px; resize: vertical; }
.file-upload-box {
  border: 2px dashed rgba(10,102,194,0.3);
  border-radius: 8px; padding: 20px;
  text-align: center; background: var(--blue-light);
  cursor: pointer; transition: border-color 0.2s;
}
.file-upload-box:hover { border-color: var(--navy); }
.file-upload-box p { font-size: 13px; color: var(--text-mid); margin-bottom: 10px; }
.file-upload-box input[type="file"] { display: none; }
.file-upload-btn {
  display: inline-block; padding: 8px 18px;
  background: var(--navy); color: #fff;
  border-radius: 6px; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
}
.file-upload-btn:hover { background: var(--navy-dark); }
.file-name-display { font-size: 12px; color: var(--navy); margin-top: 8px; font-weight: 500; }
.booking-submit {
  width: 100%; padding: 14px;
  background: var(--navy); color: #fff; border: none;
  border-radius: 6px; font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 700; cursor: pointer;
  margin-top: 8px; transition: background 0.2s;
  letter-spacing: -0.01em;
}
.booking-submit:hover { background: var(--navy-dark); }
.booking-note { text-align: center; font-size: 12px; color: var(--text-light); margin-top: 10px; }
.required-star { color: #e53e3e; }

/* ── SERVICE AREAS ── */
.service-areas { background: var(--white); }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.area-item { background: var(--cream); border: 1.5px solid var(--border); border-radius: 8px; padding: 12px 14px; font-size: 13px; font-weight: 600; color: var(--navy-dark); display: flex; align-items: center; gap: 7px; transition: all 0.15s; }
.area-item:hover { border-color: var(--navy); color: var(--navy); background: var(--blue-light); }
.area-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--navy); flex-shrink: 0; }

/* ── WINNIPEG MAP FOOTER SECTION ── */
.map-section { background: var(--navy-deeper); padding: 56px 0; }
.map-section .section-title { color: #fff; }
.map-section .section-label { color: #f5c842; background: rgba(245,200,66,0.15); }
.map-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.map-embed {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-lg);
}
.map-embed iframe { width: 100%; height: 380px; display: block; }
.map-towns h4 { font-size: 15px; color: #fff; margin-bottom: 16px; font-weight: 700; }
.towns-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.towns-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.75);
  padding: 9px 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.15s;
}
.towns-list li:hover { background: rgba(255,255,255,0.1); color: #fff; }
.towns-list li::before { content: '📍'; font-size: 13px; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--navy); padding: 60px 0; }
.cta-inner { max-width: 860px; margin: 0 auto; padding: 0 20px; text-align: center; }
.cta-inner h2 { font-size: clamp(24px, 3.5vw, 38px); color: #fff; margin-bottom: 12px; font-weight: 800; }
.cta-inner p { font-size: 16px; color: rgba(255,255,255,0.78); margin-bottom: 30px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white { display: inline-flex; align-items: center; gap: 7px; background: #fff; color: var(--navy); padding: 13px 28px; border-radius: 6px; font-weight: 700; font-size: 15px; transition: all 0.2s; }
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-outline-white { display: inline-flex; align-items: center; gap: 7px; background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); padding: 11px 28px; border-radius: 6px; font-weight: 600; font-size: 15px; transition: all 0.2s; }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ── FOOTER ── */
footer { background: var(--navy-deeper); color: #fff; padding: 56px 0 28px; }
.footer-inner { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.footer-top { display: grid; grid-template-columns: 280px 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 28px; }
.footer-brand > p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: 14px; margin-bottom: 20px; }
.footer-phone { display: inline-flex; align-items: center; gap: 7px; background: var(--navy); color: #fff; padding: 10px 18px; border-radius: 6px; font-weight: 700; font-size: 14px; transition: background 0.2s; }
.footer-phone:hover { background: var(--blue-hover); }
.footer-col h5 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { color: rgba(255,255,255,0.68); font-size: 13px; transition: color 0.15s; }
.footer-col ul li a:hover { color: #f5c842; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 12px; color: rgba(255,255,255,0.38); }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: #fff; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ────────────────────────────────────────────
   FLOATING CONTACT BAR (bottom of screen)
   ──────────────────────────────────────────── */
.floating-contact-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  display: flex;
  background: var(--navy-deeper);
  border-top: 2px solid var(--navy);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.floating-contact-bar a,
.floating-contact-bar button {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 11px 8px 10px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background 0.15s;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.floating-contact-bar a:last-child,
.floating-contact-bar button:last-child { border-right: none; }
.floating-contact-bar .fbar-call  { background: var(--navy); }
.floating-contact-bar .fbar-text  { background: #0f7a3c; }
.floating-contact-bar .fbar-chat  { background: #25D366; }
.floating-contact-bar a:hover,
.floating-contact-bar button:hover { filter: brightness(1.15); }
.fbar-icon { font-size: 20px; line-height: 1; }
.fbar-label { font-size: 10px; font-weight: 700; letter-spacing: 0.05em; }

/* push page content up so footer not hidden behind bar */
body { padding-bottom: 58px; }

/* ────────────────────────────────────────────
   LIVE CHAT WIDGET
   ──────────────────────────────────────────── */
.chat-widget {
  position: fixed;
  bottom: 68px;
  right: 20px;
  width: 340px;
  max-height: 480px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.22);
  z-index: 8999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
  border: 1.5px solid var(--border-blue);
}
.chat-widget.chat-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}
.chat-header {
  background: var(--navy);
  color: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.chat-avatar {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.chat-header-info { flex: 1; }
.chat-header-name { font-size: 14px; font-weight: 700; }
.chat-header-status { font-size: 11px; color: rgba(255,255,255,0.72); display: flex; align-items: center; gap: 5px; }
.chat-status-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; flex-shrink: 0; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:0.5} }
.chat-close {
  background: none; border: none; color: rgba(255,255,255,0.7);
  font-size: 20px; cursor: pointer; padding: 2px 6px; line-height: 1;
  border-radius: 4px; transition: background 0.15s;
}
.chat-close:hover { background: rgba(255,255,255,0.15); color: #fff; }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f8fafc;
}
.chat-msg {
  display: flex;
  flex-direction: column;
  max-width: 82%;
}
.chat-msg.agent { align-self: flex-start; }
.chat-msg.user  { align-self: flex-end; }
.chat-bubble {
  padding: 10px 13px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-dark);
}
.chat-msg.agent .chat-bubble {
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}
.chat-msg.user .chat-bubble {
  background: var(--navy);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.chat-msg-time { font-size: 10px; color: var(--text-light); margin-top: 4px; padding: 0 4px; }
.chat-msg.user .chat-msg-time { text-align: right; }

.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 14px 12px;
  background: #f8fafc;
}
.chat-qr {
  padding: 7px 13px;
  background: var(--white);
  border: 1.5px solid var(--border-blue);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.15s;
  font-family: 'Inter', sans-serif;
}
.chat-qr:hover { background: var(--blue-light); border-color: var(--navy); }

.chat-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  background: var(--white);
  flex-shrink: 0;
}
.chat-input {
  flex: 1;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  outline: none;
  background: var(--cream);
  transition: border 0.15s;
}
.chat-input:focus { border-color: var(--navy); background: #fff; }
.chat-send {
  width: 36px; height: 36px;
  background: var(--navy);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  transition: background 0.15s;
}
.chat-send:hover { background: var(--navy-dark); }
.chat-send svg { display: block; }

/* SMS widget */
.sms-widget {
  position: fixed;
  bottom: 68px;
  right: 20px;
  width: 320px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.22);
  z-index: 8998;
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
  border: 1.5px solid rgba(15,122,60,0.3);
}
.sms-widget.sms-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}
.sms-header {
  background: #0f7a3c;
  color: #fff;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 10px;
}
.sms-header-icon { font-size: 22px; }
.sms-header-info { flex: 1; }
.sms-header-name { font-size: 14px; font-weight: 700; }
.sms-header-sub { font-size: 11px; color: rgba(255,255,255,0.75); }
.sms-close {
  background: none; border: none; color: rgba(255,255,255,0.7);
  font-size: 20px; cursor: pointer; padding: 2px 6px;
  border-radius: 4px; transition: background 0.15s;
}
.sms-close:hover { background: rgba(255,255,255,0.15); color: #fff; }
.sms-body { padding: 20px 18px; }
.sms-body p { font-size: 13px; color: var(--text-mid); margin-bottom: 14px; line-height: 1.6; }
.sms-body input {
  width: 100%; padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 14px;
  color: var(--text-dark); background: var(--cream);
  outline: none; margin-bottom: 10px;
  transition: border 0.15s;
}
.sms-body input:focus { border-color: #0f7a3c; background: #fff; }
.sms-send-btn {
  width: 100%; padding: 12px;
  background: #0f7a3c; color: #fff; border: none;
  border-radius: 8px; font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: background 0.2s;
}
.sms-send-btn:hover { background: #0a5c2d; }
.sms-or { text-align: center; font-size: 12px; color: var(--text-light); margin: 12px 0 10px; }
.sms-direct {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: #0f7a3c;
  text-decoration: none;
}
.sms-direct:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 920px) {
  .topbar { display: none; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  /* Show form on mobile/tablet — full width below hero text */
  .hero-form-card {
    display: block;
    max-height: none;
    overflow-y: visible;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  }
  .map-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .nav-links { display: none; }
  .nav-links.mobile-open {
    display: flex !important; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: linear-gradient(180deg, #001020 0%, #001428 100%);
    border-bottom: 1px solid rgba(77,163,255,0.25);
    padding: 12px 20px 20px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.7);
    z-index: 199;
    gap: 2px;
  }
  .nav-links.mobile-open .nav-link { color: rgba(180,210,255,0.85); font-size: 15px; padding: 12px 16px; border-bottom: 1px solid rgba(77,163,255,0.08); border-radius: 0; }
  .nav-links.mobile-open .nav-cta { margin-top: 10px; border-radius: 6px !important; justify-content: center; }
  .mobile-menu-btn { display: flex; }
  .about-layout { grid-template-columns: 1fr; }
  .about-img-wrap img { height: 300px; }
  .about-badge-float { right: 10px; bottom: 10px; }
  .topbar-center { display: none; }
  .logo-sub { display: none; }
}
@media (max-width: 600px) {
  section { padding: 52px 0; }
  .hero { padding: 48px 0 52px; }
  .footer-top { grid-template-columns: 1fr; }
  .topbar-badges { display: none; }
  /* Stack form rows on small phones */
  .hero-form-card .form-row { grid-template-columns: 1fr; gap: 0; }
  .booking-form .form-row { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 28px 20px; }
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 22px; }
  /* Widgets go full-width on mobile */
  .chat-widget, .sms-widget {
    left: 10px; right: 10px; width: auto; bottom: 68px;
  }
}

/* ════════════════════════════════════════════
   SERVICE PAGE STYLES
   ════════════════════════════════════════════ */

/* Service Hero */
.service-hero {
  position: relative; min-height: 420px;
  display: flex; align-items: center;
  overflow: hidden; padding: 80px 0 60px;
}
.service-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.service-hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
}
.service-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(0,10,25,0.95) 0%, rgba(0,20,50,0.88) 50%, rgba(0,30,70,0.7) 100%);
}
.service-hero-content { max-width: 640px; position: relative; z-index: 2; }
.service-hero-breadcrumb {
  font-size: 12px; color: rgba(180,210,255,0.6);
  margin-bottom: 16px; display: flex; align-items: center; gap: 4px;
  flex-wrap: wrap;
}
.service-hero-breadcrumb a { color: rgba(77,163,255,0.8); text-decoration: none; }
.service-hero-breadcrumb a:hover { color: #4da3ff; }
.service-hero-icon { font-size: 40px; margin-bottom: 12px; line-height: 1; }
.service-hero h1 { font-size: clamp(26px,4vw,44px); color: #fff; font-weight: 800; margin-bottom: 14px; line-height: 1.15; }
.service-hero-tagline { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 28px; line-height: 1.6; }
.service-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Trust bar */
.service-trust-bar {
  background: var(--navy-deeper);
  border-bottom: 1px solid rgba(77,163,255,0.2);
  padding: 14px 0;
}
.service-trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
}
.strust-item {
  font-size: 13px; font-weight: 600;
  color: rgba(180,210,255,0.85);
  display: flex; align-items: center; gap: 6px;
}

/* Service layout */
.service-layout {
  display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start;
}
.service-main { display: flex; flex-direction: column; gap: 48px; }
.service-content-block h2 {
  font-size: 22px; font-weight: 800; color: var(--navy-dark);
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 2px solid var(--blue-light);
}
.service-content-block p { font-size: 15px; color: var(--text-mid); line-height: 1.7; }

/* Problems grid */
.problems-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.problem-item {
  display: flex; align-items: flex-start; gap: 8px;
  background: var(--cream); border: 1.5px solid var(--border);
  border-radius: 8px; padding: 11px 14px;
  font-size: 14px; color: var(--text-dark); font-weight: 500;
  transition: border-color 0.15s;
}
.problem-item:hover { border-color: var(--navy); }
.problem-check { color: var(--navy); font-weight: 800; flex-shrink: 0; margin-top: 1px; }

/* Tips list */
.tips-list { display: flex; flex-direction: column; gap: 16px; }
.tip-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--cream); border-radius: 10px; padding: 16px 18px;
  border-left: 3px solid var(--navy);
}
.tip-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.tip-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy-dark); margin-bottom: 4px; }
.tip-item p { font-size: 13px; color: var(--text-mid); line-height: 1.6; margin: 0; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1.5px solid var(--border); border-radius: 8px; overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 15px 18px; background: var(--cream);
  border: none; cursor: pointer; text-align: left;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--navy-dark); gap: 12px; transition: background 0.15s;
}
.faq-question:hover { background: var(--blue-light); }
.faq-arrow { font-size: 13px; color: var(--navy); flex-shrink: 0; transition: transform 0.2s; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; padding: 0 18px; background: #fff; }
.faq-answer.faq-open { max-height: 300px; padding: 14px 18px; }
.faq-answer p { font-size: 14px; color: var(--text-mid); line-height: 1.65; margin: 0; }

/* Sidebar */
.service-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 88px; }
.sidebar-booking-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-blue);
  padding: 24px 20px;
  box-shadow: 0 8px 32px rgba(10,102,194,0.1);
}
.sidebar-booking-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.sidebar-booking-header h3 { font-size: 18px; color: var(--navy-dark); }
.sidebar-discount {
  background: #dcfce7; color: #15803d;
  font-size: 12px; font-weight: 800;
  padding: 4px 10px; border-radius: 20px;
  letter-spacing: 0.04em;
}
.sidebar-contact-card {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 20px; text-align: center;
}
.sidebar-contact-card h4 { color: rgba(255,255,255,0.75); font-size: 13px; margin-bottom: 12px; font-weight: 600; }
.sidebar-phone-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  padding: 12px 20px; border-radius: 8px;
  font-weight: 800; font-size: 17px;
  text-decoration: none; transition: background 0.2s;
  width: 100%; justify-content: center;
}
.sidebar-phone-btn:hover { background: var(--accent-dark); }
.sidebar-services-card {
  background: var(--cream); border-radius: var(--radius-lg);
  border: 1.5px solid var(--border); padding: 20px;
}
.sidebar-services-card h4 { font-size: 13px; font-weight: 700; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 14px; }
.sidebar-services-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.sidebar-services-list li a {
  display: block; padding: 9px 12px; font-size: 14px; font-weight: 500;
  color: var(--navy-dark); text-decoration: none;
  border-radius: 6px; transition: all 0.15s;
}
.sidebar-services-list li a:hover { background: var(--blue-light); color: var(--navy); }

/* Service page responsive */
@media (max-width: 900px) {
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .problems-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   AI CHAT WIDGET — Updated styles
   ════════════════════════════════════════ */

/* Roman avatar with online dot */
.chat-avatar-wrap { position: relative; flex-shrink: 0; }
.chat-avatar-r {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #0A66C2, #004182);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 17px; font-weight: 800; color: #fff;
  border: 2px solid rgba(255,255,255,0.2);
}
.chat-online-dot {
  position: absolute;
  bottom: 1px; right: 1px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #4ade80;
  border: 2px solid var(--navy);
  animation: online-pulse 2.5s ease-in-out infinite;
}
@keyframes online-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  50%      { box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}

/* Typing indicator */
.chat-typing-bubble {
  display: flex !important;
  align-items: center;
  gap: 5px;
  padding: 12px 16px !important;
  min-width: 56px;
}
.typing-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--text-light);
  animation: typing-bounce 1.4s ease-in-out infinite;
  display: inline-block;
}
.typing-dot:nth-child(1) { animation-delay: 0s; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-bounce {
  0%,60%,100% { transform: translateY(0); opacity: 0.4; }
  30%          { transform: translateY(-6px); opacity: 1; }
}

/* Chat bubble links */
.chat-bubble a { color: var(--navy); font-weight: 600; }
.chat-bubble strong { font-weight: 700; }

/* ════════════════════════════════════════════════
   HERO CTA CARD (replaces old form card in hero)
   ════════════════════════════════════════════════ */
.hero-cta-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(77,163,255,0.25);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.hero-cta-icon { font-size: 44px; margin-bottom: 12px; line-height: 1; }
.hero-cta-card h3 { font-size: 20px; color: #fff; font-weight: 800; margin-bottom: 10px; }
.hero-cta-card p { font-size: 14px; color: rgba(255,255,255,0.68); margin-bottom: 22px; line-height: 1.6; }
.hero-book-btn {
  display: block;
  background: var(--accent);
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(245,166,35,0.4);
}
.hero-book-btn:hover { background: var(--accent-dark); transform: translateY(-2px); }
.hero-cta-badges { display: flex; flex-direction: column; gap: 8px; }
.hero-cta-badges span { font-size: 13px; color: rgba(255,255,255,0.65); font-weight: 500; }

/* ════════════════════════════════════════════════
   NEW BOOKING SECTION — Standalone, no CSS conflicts
   ════════════════════════════════════════════════ */
.arw-booking-section {
  background: #f0f4f9;
  padding: 72px 0;
  border-top: 3px solid var(--navy);
}
.arw-success-msg {
  background: #dcfce7;
  border: 2px solid #16a34a;
  border-radius: 10px;
  padding: 18px 24px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #15803d;
  margin-bottom: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.arw-booking-wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
.arw-booking-info h2 {
  font-size: 28px; font-weight: 800;
  color: var(--navy-dark); margin-bottom: 12px;
}
.arw-booking-info p {
  font-size: 15px; color: var(--text-mid);
  line-height: 1.65; margin-bottom: 28px;
}
.arw-booking-perks { display: flex; flex-direction: column; gap: 16px; }
.arw-perk {
  display: flex; align-items: center; gap: 14px;
  background: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
}
.arw-perk-icon { font-size: 24px; flex-shrink: 0; }
.arw-perk strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy-dark); }
.arw-perk span { font-size: 13px; color: var(--text-mid); }
.arw-perk span a { color: var(--navy); font-weight: 700; text-decoration: none; }

/* The actual form */
.arw-booking-form-wrap {
  background: #fff;
  border-radius: 14px;
  padding: 36px 32px;
  border: 2px solid var(--border-blue);
  box-shadow: 0 8px 40px rgba(10,102,194,0.1);
}
#arw-booking-form .arw-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
#arw-booking-form .arw-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
#arw-booking-form .arw-row .arw-field {
  margin-bottom: 0;
}
#arw-booking-form label {
  font-size: 13px;
  font-weight: 700;
  color: #444;
  font-family: 'Inter', sans-serif;
}
#arw-booking-form label small {
  font-weight: 400;
  color: #999;
  font-size: 12px;
}
#arw-booking-form input[type="text"],
#arw-booking-form input[type="tel"],
#arw-booking-form input[type="email"],
#arw-booking-form input[type="date"],
#arw-booking-form select,
#arw-booking-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #dde3ed;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #1a1a1a;
  background: #f8fafc;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
#arw-booking-form input:focus,
#arw-booking-form select:focus,
#arw-booking-form textarea:focus {
  border-color: var(--navy);
  background: #fff;
}
#arw-booking-form textarea { resize: vertical; min-height: 100px; }
#arw-booking-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230A66C2' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.arw-file-box {
  background: #eef3fb;
  border: 2px dashed rgba(10,102,194,0.3);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}
.arw-file-box p { font-size: 12px; color: #666; margin-bottom: 10px; }
.arw-file-btn {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
  font-family: 'Inter', sans-serif;
}
.arw-file-btn:hover { background: var(--navy-dark); }
#arw-booking-form input[type="file"] { display: none; }
#arw-file-name { font-size: 12px; color: var(--navy); margin-top: 8px; font-weight: 600; }
.arw-submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: -0.01em;
}
.arw-submit-btn:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
}
.arw-submit-btn:active { transform: translateY(0); }
.arw-form-note {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: 10px;
}

/* Responsive booking form */
@media (max-width: 860px) {
  .arw-booking-wrap { grid-template-columns: 1fr; gap: 32px; }
  .arw-booking-form-wrap { padding: 28px 20px; }
}
@media (max-width: 520px) {
  #arw-booking-form .arw-row { grid-template-columns: 1fr; }
  .hero-cta-card { padding: 28px 20px; }
}

/* ════════════════════════════════════════════════
   BOOKING SUCCESS CONFIRMATION
   ════════════════════════════════════════════════ */
.arw-booking-success {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0;
}
.arw-success-icon {
  font-size: 72px;
  line-height: 1;
  margin-bottom: 20px;
  animation: success-pop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes success-pop {
  0%   { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.arw-booking-success h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 12px;
}
.arw-success-sub {
  font-size: 17px;
  color: var(--text-mid);
  margin-bottom: 36px;
  line-height: 1.6;
}
.arw-success-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
  text-align: left;
}
.arw-success-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  border: 1.5px solid var(--border-blue);
  box-shadow: 0 2px 12px rgba(10,102,194,0.07);
}
.arw-success-item-icon { font-size: 26px; flex-shrink: 0; }
.arw-success-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy-dark); margin-bottom: 2px; }
.arw-success-item span  { font-size: 13px; color: var(--text-mid); }
.arw-success-urgent {
  font-size: 15px;
  color: var(--text-mid);
  margin-top: 8px;
}
.arw-success-urgent a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}
.arw-success-urgent a:hover { text-decoration: underline; }

@media (max-width: 520px) {
  .arw-success-details { grid-template-columns: 1fr; }
  .arw-success-icon { font-size: 56px; }
}

/* ── Proudly Canadian badge ── */
.canada-badge-wrap {
  display: flex; align-items: center;
}
.canada-badge {
  display: none; /* old badge replaced */
}
.trust-canada {
  border-right: none;
  padding: 4px 20px;
}

/* ── Clickable brand pills ── */
a.brand-pill-link {
  text-decoration: none;
  color: var(--navy-dark);
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
a.brand-pill-link:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10,102,194,0.25);
}

/* ── Footer 4-column layout ── */
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
}
@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 520px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════
   PAYMENTS SECTION
   ════════════════════════════════════════════════ */
.payments-section {
  background: var(--cream);
  padding: 64px 0;
  border-top: 1px solid var(--border-blue);
}
.payments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}
.payment-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid var(--border-blue);
  border-radius: 12px;
  padding: 18px 20px;
  min-width: 110px;
  transition: box-shadow 0.2s, transform 0.15s;
}
.payment-card:hover {
  box-shadow: 0 6px 20px rgba(10,102,194,0.12);
  transform: translateY(-2px);
}
.payment-card img {
  display: block;
  border-radius: 4px;
}
.payment-card span {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.04em;
}

/* Footer payment icons */
.footer-payments {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 14px;
  align-items: center;
}
.footer-payments img {
  border-radius: 4px;
  opacity: 0.85;
  transition: opacity 0.15s;
  width: 44px;
  height: 28px;
}
.footer-payments img:hover { opacity: 1; }
