/* ========================================
   DevisToiture.be - Main Stylesheet
   ======================================== */

/* CSS Variables */
:root {
  --primary: #E84C1E;
  --primary-dark: #C43A10;
  --primary-light: #FF6B3D;
  --secondary: #FFF3F0;
  --accent: #FF9A00;
  --dark: #1A1A2E;
  --dark-2: #2D2D44;
  --text: #333344;
  --text-light: #666677;
  --text-muted: #999;
  --border: #E8E8F0;
  --bg: #FFFFFF;
  --bg-alt: #F8F9FC;
  --bg-warm: #FFF8F5;
  --success: #22C55E;
  --warning: #F59E0B;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --transition: 0.25s ease;
  --font: 'Inter', sans-serif;
  --font-display: 'Poppins', sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }

/* ========================================
   TOPBAR
   ======================================== */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  padding: 0.5rem 0;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.topbar span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
.logo-icon { font-size: 1.6rem; }
.logo-text strong { color: var(--primary); }
.logo-be { color: var(--primary); font-weight: 900; }
.logo-footer { color: #fff; }
.logo-footer strong { color: var(--accent); }
.logo-footer .logo-be { color: var(--accent); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color var(--transition);
}
.main-nav a:hover { color: var(--primary); }

.btn-header {
  font-size: 0.85rem;
  padding: 0.6rem 1.2rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  background: #fff;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  color: var(--text);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 76, 30, 0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-secondary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-xl { padding: 1.2rem 2.5rem; font-size: 1.15rem; }

/* ========================================
   ICONS
   ======================================== */
.icon-xs { width: 14px; height: 14px; flex-shrink: 0; }
.icon-sm { width: 18px; height: 18px; flex-shrink: 0; }
.icon-md { width: 24px; height: 24px; flex-shrink: 0; }
.icon-lg { width: 32px; height: 32px; flex-shrink: 0; }
.icon-xl { width: 48px; height: 48px; flex-shrink: 0; }

/* ========================================
   HERO
   ======================================== */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, #1a0a05 100%);
  color: #fff;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,76,30,0.15) 0%, transparent 70%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,154,0,0.2);
  color: var(--accent);
  border: 1px solid rgba(255,154,0,0.4);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.hero h1 span { color: var(--primary-light); }
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat strong {
  font-size: 1.8rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.2rem;
}

/* Hero Form Box */
.hero-form-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  color: var(--text);
}
.hero-form-box h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.hero-form-box .form-subtitle {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.bobex-iframe-wrapper {
  width: 100%;
  min-height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
}
.bobex-iframe-wrapper iframe {
  width: 100%;
  min-height: 400px;
  border: none;
  display: block;
}
.form-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
  justify-content: center;
}

/* ========================================
   TRUST BAND
   ======================================== */
.trust-band {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.trust-band .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 500;
}
.trust-item .trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.trust-item strong { display: block; font-size: 0.95rem; }
.trust-item span { color: var(--text-light); font-size: 0.8rem; }

/* ========================================
   SECTIONS
   ======================================== */
section { padding: 5rem 0; }
.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem;
}
.section-tag {
  display: inline-block;
  background: var(--secondary);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works { background: var(--bg); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 4px 20px rgba(232,76,30,0.35);
}
.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.step-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========================================
   SERVICES GRID
   ======================================== */
.services { background: var(--bg-alt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.2rem;
}
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* ========================================
   PROVINCE GRID
   ======================================== */
.province-section { background: var(--bg); }
.province-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.province-card {
  background: var(--bg-warm);
  border: 1px solid rgba(232,76,30,0.15);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition);
}
.province-card:hover {
  background: var(--secondary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.province-card-left { display: flex; align-items: center; gap: 1rem; }
.province-emoji { font-size: 2rem; }
.province-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); }
.province-card p { font-size: 0.8rem; color: var(--text-light); }
.province-card .arrow { color: var(--primary); opacity: 0; transition: opacity var(--transition); }
.province-card:hover .arrow { opacity: 1; }

/* ========================================
   CITIES SECTION (HOMEPAGE)
   ======================================== */
.cities-section { background: var(--bg-alt); }
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.city-pill {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
  transition: all var(--transition);
  color: var(--text);
}
.city-pill:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: scale(1.03);
}
.cities-cta { text-align: center; }

/* ========================================
   REVIEWS
   ======================================== */
.reviews { background: var(--dark); color: #fff; }
.reviews .section-header h2 { color: #fff; }
.reviews .section-header p { color: rgba(255,255,255,0.7); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.8rem;
}
.review-stars { color: var(--accent); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-text { font-size: 0.92rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 1.2rem; }
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.review-author-info strong { display: block; font-size: 0.9rem; }
.review-author-info span { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
}
.cta-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  position: relative;
}
.cta-section .btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ========================================
   CITY PAGE
   ======================================== */
.city-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.city-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(232,76,30,0.2) 0%, transparent 60%);
}
.city-hero-inner {
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }
.city-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.city-hero h1 span { color: var(--primary-light); }
.city-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 550px;
}

/* City content layout */
.city-content {
  padding: 4rem 0;
  background: var(--bg);
}
.city-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
}
.city-main {}
.city-sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.sidebar-box-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 1.2rem 1.5rem;
}
.sidebar-box-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.sidebar-box-header p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
}
.sidebar-box-body {
  padding: 1.5rem;
}

/* Content blocks */
.content-block { margin-bottom: 3rem; }
.content-block h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}
.content-block h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.8rem;
  margin-top: 1.5rem;
}
.content-block p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.content-block ul {
  list-style: none;
  padding: 0;
}
.content-block ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-light);
}
.content-block ul li:last-child { border-bottom: none; }
.content-block ul li .check {
  color: var(--success);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* Price table */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
.price-table th {
  background: var(--bg-alt);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--text);
  border-bottom: 2px solid var(--border);
}
.price-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
}
.price-table tr:hover td { background: var(--bg-warm); }
.price-table .price { font-weight: 700; color: var(--primary); }

/* FAQ */
.faq-list { margin-top: 1.5rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-warm); }
.faq-answer {
  display: none;
  padding: 0 1.25rem 1.1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question { background: var(--secondary); color: var(--primary); }
.faq-chevron { transition: transform var(--transition); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

/* ========================================
   LISTING PAGE (VILLES)
   ======================================== */
.listing-hero {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: #fff;
  padding: 4rem 0 3rem;
  text-align: center;
}
.listing-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.listing-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; }

.listing-section { padding: 4rem 0; background: var(--bg-alt); }
.search-bar {
  max-width: 500px;
  margin: 0 auto 3rem;
  position: relative;
}
.search-bar input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-size: 0.95rem;
  font-family: var(--font);
  outline: none;
  transition: border-color var(--transition);
  background: #fff;
}
.search-bar input:focus { border-color: var(--primary); }
.search-bar .search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.province-group { margin-bottom: 3rem; }
.province-group h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  padding: 0.75rem 1rem;
  background: #fff;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.city-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}
.city-list-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem 0.9rem;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.city-list-item:hover {
  background: var(--secondary);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateX(3px);
}
.city-list-item .zip {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.city-list-item:hover .zip { color: var(--primary-light); }

/* ========================================
   PROVINCE PAGE
   ======================================== */
.province-hero {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: #fff;
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.province-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,76,30,0.18) 0%, transparent 60%);
}
.province-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.province-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.province-hero h1 span { color: var(--primary-light); }
.province-hero p { color: rgba(255,255,255,0.8); font-size: 1rem; }
.province-city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}
.province-city-group h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

/* ========================================
   DEVIS PAGE
   ======================================== */
.devis-hero {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: #fff;
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.devis-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(232,76,30,0.2) 0%, transparent 60%);
}
.devis-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
}
.devis-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.devis-content { padding: 4rem 0; background: var(--bg-alt); }
.devis-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.devis-form-wrapper {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.devis-form-wrapper h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.devis-form-wrapper p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 3rem 0;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-cta-text h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}
.footer-cta-text p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }

.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 1.2rem 0 1.5rem;
  color: rgba(255,255,255,0.6);
}
.footer-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li, .footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}
.footer-bottom p { margin-bottom: 0.3rem; }

/* ========================================
   REVEAL ON SCROLL
   ======================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   CARDS (generic)
   ======================================== */
.card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ========================================
   HIGHLIGHTS / CALLOUTS
   ======================================== */
.callout {
  background: var(--secondary);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  color: var(--text);
}
.callout strong { color: var(--primary); }

/* Stats band */
.stats-band {
  background: var(--primary);
  color: #fff;
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-item span { font-size: 0.9rem; color: rgba(255,255,255,0.8); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero { padding: 3rem 0 2rem; }
  .hero::after { display: none; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .cities-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .city-layout { grid-template-columns: 1fr; }
  .city-sidebar { position: static; }
  .devis-layout { grid-template-columns: 1fr; }
  .province-hero-inner { grid-template-columns: 1fr; }
  .city-list-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .province-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .btn-header { display: none; }
  .nav-toggle { display: flex; }
  section { padding: 3rem 0; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .province-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .city-list-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
  .topbar .container { gap: 0.75rem; font-size: 0.72rem; }
  .trust-band .container { justify-content: flex-start; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .province-city-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: 1fr 1fr; }
  .city-list-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 1.8rem; }
  .hero-stats { gap: 1.2rem; }
  .topbar { display: none; }
}