/* --- Inter Font (Local WOFF2) --- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/inter-v13-latin-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/inter-v13-latin-600.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/inter-v13-latin-700.woff2") format("woff2");
}

:root {
  --brand: #d96527;
  --brand-hover: #c4551b;
  --brand-light: #fff5ed;
  --navy: #0f263e;
  --navy-light: #1c3d61;
  --dark: #1e293b;
  --muted: #64748b;
  --border: #e2e8f0;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --success: #10b981;
  --gold: #f59e0b;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(15, 38, 62, 0.05);
  --shadow: 0 8px 24px rgba(15, 38, 62, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 38, 62, 0.12);
  --max-w: 1200px;
  --font-base: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  font-family: var(--font-base);
  color: var(--dark);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Top Bar 2026 --- */
.topbar {
  background-color: var(--navy);
  color: #e2e8f0;
  font-size: 0.8rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}

.topbar-pill {
  color: #fbd38d;
  font-weight: 700;
}

.topbar-sep {
  opacity: 0.35;
  color: #94a3b8;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  transition: color 0.2s;
  text-decoration: none;
}

.topbar-phone strong {
  color: #fbd38d;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-green 1.8s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* --- Header / Navigation 2026 Sleek --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(15, 38, 62, 0.04);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 1.5rem;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  display: block;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  position: relative;
  padding: 0.5rem 0.2rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.nav-link:hover, .nav-link.active {
  color: var(--brand);
}

.dropdown-icon {
  font-size: 0.6rem;
  opacity: 0.7;
  transition: transform 0.2s;
}

/* Bulletproof Hidden Dropdown by default */
.nav-dropdown {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 35px rgba(15, 38, 62, 0.14);
  padding: 0.5rem;
  z-index: 300;
  flex-direction: column;
  gap: 0.25rem;
}

/* Desktop Hover Trigger */
@media (min-width: 1025px) {
  .nav-item.has-dropdown:hover .nav-dropdown {
    display: flex !important;
  }
  .nav-item.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
  }
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.dropdown-link:hover {
  background: var(--brand-light);
  color: var(--brand);
}

.dropdown-link span.icon {
  font-size: 1.1rem;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--brand), #e87c3e);
  color: white !important;
  padding: 0.6rem 1.25rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(217, 101, 39, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(217, 101, 39, 0.35);
}

.header-call-btn {
  display: none;
  align-items: center;
  gap: 0.4rem;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--navy);
  padding: 0.35rem 0.65rem;
  line-height: 1;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 38, 62, 0.93) 0%, rgba(28, 61, 97, 0.88) 100%),
              url('../assets/hero-couvreur-77.webp') center/cover no-repeat;
  color: white;
  padding: 4.5rem 0 5rem 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-content h1 span {
  color: #fbd38d;
}

.hero-lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 2rem;
}

.hero-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 2.25rem;
}

.hero-badge-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--brand);
  color: white;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(217, 101, 39, 0.35);
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background-color: var(--brand-hover);
  transform: translateY(-2px);
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.2s ease;
}

.btn-phone:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* --- Reassurance Strip --- */
.reassurance-strip {
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.reassurance-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.reassurance-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background-color: var(--brand-light);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.reassurance-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.reassurance-text p {
  font-size: 0.8rem;
  color: var(--muted);
}

/* --- Section Standard --- */
.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: var(--bg-alt);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  display: inline-block;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.05);
}

.service-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.9rem;
  transition: gap 0.2s;
}

.service-link:hover {
  gap: 0.6rem;
}


/* --- Bento Agency Showcase 2026 (Top 1% Pro) --- */
.bento-agency {
  background: radial-gradient(circle at top right, rgba(217, 101, 39, 0.12), transparent 40%),
              radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.08), transparent 40%),
              #0b1c2d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3.5rem;
  color: white;
  box-shadow: 0 25px 60px -15px rgba(11, 28, 45, 0.5);
  position: relative;
  overflow: hidden;
}

.bento-agency-header {
  max-width: 650px;
  margin-bottom: 2.5rem;
}

.bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(217, 101, 39, 0.18);
  color: #fbd38d;
  border: 1px solid rgba(217, 101, 39, 0.35);
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.bento-agency-title {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.2;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.bento-agency-lead {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.5;
}

.bento-agency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

/* Visual Column */
.bento-photo-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  min-height: 380px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.bento-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-photo-card:hover .bento-photo-img {
  transform: scale(1.04);
}

.bento-live-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(11, 28, 45, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.4rem 0.85rem;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.bento-photo-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(11, 28, 45, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.85rem 1.15rem;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.bento-photo-caption strong {
  color: white;
}

.bento-photo-caption span {
  color: #fbd38d;
  font-weight: 600;
}

/* Info Column Bento */
.bento-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
}

.bento-card-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  transition: all 0.25s ease;
}

.bento-card-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(217, 101, 39, 0.4);
  transform: translateX(4px);
}

.bento-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(217, 101, 39, 0.15);
  border: 1px solid rgba(217, 101, 39, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.bento-card-text h4 {
  font-size: 1.05rem;
  color: white;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.bento-card-text p {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.4;
  margin: 0;
}

/* Bento Actions */
.bento-agency-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}

.btn-bento-primary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--brand), #e87c3e);
  color: white !important;
  padding: 0.85rem 1.5rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(217, 101, 39, 0.35);
  transition: all 0.2s;
}

.btn-bento-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 101, 39, 0.45);
}

.btn-bento-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.85rem 1.35rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-bento-phone:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  transform: translateY(-2px);
}

/* Mobile Adjustments */
@media (max-width: 900px) {
  .bento-agency {
    padding: 2rem 1.25rem;
    border-radius: 18px;
  }
  .bento-agency-title {
    font-size: 1.6rem;
  }
  .bento-agency-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .bento-photo-card {
    min-height: 240px;
    height: 240px;
  }
  .bento-card-item {
    padding: 1rem 1.15rem;
    gap: 1rem;
  }
  .bento-agency-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .btn-bento-primary, .btn-bento-phone {
    width: 100%;
  }
}
/* --- Realisations Avant / Apres --- */
.realisations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.realisation-card {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.realisation-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.realisation-img-item {
  position: relative;
  height: 220px;
}

.realisation-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-state {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-avant {
  background-color: #ef4444;
}

.badge-apres {
  background-color: #10b981;
}

.realisation-info {
  padding: 1.25rem;
}

.realisation-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.realisation-info p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* --- Zones d'intervention 77 --- */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.city-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--bg);
  border: 1px solid var(--border);
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}

.city-pill:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
}

/* --- FAQ Accordion --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 1.5rem 1.25rem 1.5rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* --- Footer 2026 Pro --- */
.site-footer {
  background-color: #0b1c2d;
  color: #cbd5e1;
  padding: 4.5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  background: white;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  width: fit-content;
}

.footer-logo-wrap img {
  height: 38px;
  width: auto;
  display: block;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #94a3b8;
}

.footer-trust-pills {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #e2e8f0;
}

.footer-trust-pills span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-col h4 {
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--brand);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: #94a3b8;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--brand);
  transform: translateX(3px);
}

/* Footer Card Highlight */
.footer-contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.footer-contact-card h4 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #10b981;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
  transition: background 0.2s;
  text-decoration: none;
}

.footer-btn-call:hover {
  background: #059669;
}

.footer-phones-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.footer-phones-list a {
  color: #fbd38d;
  font-weight: 700;
  text-decoration: none;
}

.footer-hours-box {
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.5;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.75rem;
}

.footer-hours-box strong {
  color: #e2e8f0;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: #64748b;
}

.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
}

.footer-bottom-links a {
  color: #94a3b8;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--brand);
}

/* --- Responsive Media Queries 2026 --- */
/* Tablet & Small Desktop Breakpoint (1100px) */
@media (max-width: 1100px) {
  .topbar {
    padding: 0.35rem 0;
  }
  .topbar-left span:nth-child(n+3) {
    display: none;
  }
  .header-call-btn {
    display: inline-flex;
  }
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 2rem 2.5rem 2rem;
    gap: 1rem;
    box-shadow: 0 20px 40px rgba(15, 38, 62, 0.15);
    display: none;
    max-height: calc(100vh - 74px);
    overflow-y: auto;
    border-bottom: 3px solid var(--brand);
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-item {
    width: 100%;
  }
  .nav-link {
    width: 100%;
    font-size: 1.05rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-dropdown {
    display: none !important;
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    background: #f8fafc !important;
    border-radius: var(--radius-sm) !important;
    padding: 0.5rem 0.75rem !important;
    margin-top: 0.5rem !important;
  }
  .has-dropdown.dropdown-expanded .nav-dropdown {
    display: flex !important;
  }
  .has-dropdown.dropdown-expanded .dropdown-icon {
    transform: rotate(180deg);
  }
  .nav-cta {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.85rem;
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .reassurance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .services-grid, .realisations-grid {
    grid-template-columns: 1fr;
  }
  .reassurance-grid {
    grid-template-columns: 1fr;
  }
  .cities-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
  }
}


/* --- 2026 Pro Elevation: Hero Badges & Authority --- */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(251, 211, 141, 0.12);
  border: 1px solid rgba(251, 211, 141, 0.3);
  color: #fbd38d;
  padding: 0.4rem 0.95rem;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  width: fit-content;
}

/* Service Card Badges */
.service-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(15, 38, 62, 0.85);
  backdrop-filter: blur(8px);
  color: white;
  padding: 0.3rem 0.7rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}

/* Realisation Card Review Quote */
.realisation-quote {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: #f8fafc;
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.85rem;
  color: #475569;
  font-style: italic;
  line-height: 1.45;
}

.realisation-quote strong {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  color: var(--navy);
  margin-top: 0.35rem;
}

.realisation-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* City Pill with Delay Tag */
.city-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background-color: var(--bg);
  border: 1px solid var(--border);
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
  text-decoration: none;
}

.city-pill:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.city-time {
  font-size: 0.75rem;
  font-weight: 700;
  color: #059669;
  background: #ecfdf5;
  padding: 0.2rem 0.5rem;
  border-radius: 99px;
  white-space: nowrap;
}

/* Pre-Footer Final Callout Banner */
.cta-banner {
  background: radial-gradient(circle at top right, rgba(217, 101, 39, 0.2), transparent 50%),
              #0f263e;
  border-radius: 20px;
  padding: 3.5rem 2rem;
  text-align: center;
  color: white;
  box-shadow: 0 20px 45px rgba(15, 38, 62, 0.25);
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-banner h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-banner p {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 650px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}

.cta-banner-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 2.5rem 1.25rem;
  }
  .cta-banner h2 {
    font-size: 1.65rem;
  }
  .cta-banner-actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-banner-actions a {
    width: 100%;
  }
}


/* ===========================
   STICKY BOTTOM BAR MOBILE
   =========================== */
.sticky-bar-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #0b1c2d 0%, #0f263e 100%);
  border-top: 2px solid var(--brand);
  padding: 0.7rem 1rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}

.sticky-bar-mobile-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}

.sticky-bar-mobile-label {
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
}

.sticky-bar-mobile-label strong {
  display: block;
  font-size: 0.78rem;
  color: #fbd38d;
  font-weight: 700;
}

.sticky-bar-mobile-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #16a34a;
  color: white;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.45);
  transition: transform 0.15s ease, background 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.sticky-bar-mobile-btn:hover {
  background: #15803d;
  transform: scale(1.03);
}

.sticky-bar-mobile-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.sticky-bar-mobile-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.08);
  color: white;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

/* Show sticky bar only on mobile */
@media (max-width: 768px) {
  .sticky-bar-mobile {
    display: block;
  }

  /* Add padding to body bottom so content not hidden behind sticky bar */
  body {
    padding-bottom: 68px;
  }

  /* Adjust hero-badge size for very narrow screens */
  .hero-badge-item {
    font-size: 0.75rem;
    padding: 0.45rem 0.5rem;
    gap: 0.3rem;
    line-height: 1.2;
  }
}

@media (max-width: 360px) {
  .hero-badge-item {
    font-size: 0.7rem;
    padding: 0.4rem 0.4rem;
  }
  .hero-badges {
    gap: 0.45rem;
  }
}
