/* ============================================================
   ADS PLOMBERIE — styles.css
   ============================================================ */

/* ---- Variables ---- */
:root {
  --primary: #172240;
  --primary-light: #12649E;
  --accent: #111111;
  --white: #ffffff;
  --gray-bg: #F5F8FC;
  --gray: #6b7280;
  --radius: 12px;
  --transition: 0.3s ease;
  --shadow: 0 2px 16px rgba(23, 34, 64, 0.1);
  --shadow-hover: 0 8px 32px rgba(18, 100, 158, 0.18);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--accent);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section {
  padding: 5rem 0;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 { margin-bottom: 0.75rem; color: var(--primary); }
.section-header p { color: var(--gray); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* ---- Fade-in animation ---- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }
.fade-in.delay-5 { transition-delay: 0.5s; }
.fade-in.delay-6 { transition-delay: 0.6s; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: var(--primary);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  padding: 0.6rem 0;
}
.navbar.hidden { transform: translateY(-110%); }

.navbar-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.navbar-logo {
  flex-shrink: 0;
  line-height: 0;
}
.navbar-logo img {
  width: 75px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition);
}
.navbar-logo img:hover { opacity: 0.85; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
  margin-right: auto;
}
.nav-link {
  display: block;
  padding: 0.5rem 0.85rem;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  background: var(--primary);
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
  white-space: nowrap;
  transition: background var(--transition), border-color var(--transition);
  flex-shrink: 0;
}
.navbar.scrolled .nav-cta {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
}
.nav-cta:hover {
  background: rgba(255,255,255,0.2) !important;
  border-color: rgba(255,255,255,0.7) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: url('../photos/hero.jpg');
  background-size: cover;
  background-position: center 60%;
  background-attachment: fixed;
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 13rem 0 3rem;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(18,100,158,0.7);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}
.hero h1 { margin-bottom: 1rem; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.hero-sub {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

@keyframes pulse-halo {
  0%   { box-shadow: 0 4px 16px rgba(18,100,158,0.35), 0 0 0 0 rgba(18,100,158,0.45); }
  70%  { box-shadow: 0 4px 16px rgba(18,100,158,0.35), 0 0 0 12px rgba(18,100,158,0); }
  100% { box-shadow: 0 4px 16px rgba(18,100,158,0.35), 0 0 0 0 rgba(18,100,158,0); }
}
.btn-primary {
  background: var(--primary-light);
  color: var(--white);
  border-color: var(--primary-light);
  animation: pulse-halo 2.2s ease-out infinite;
}
.btn-primary:hover {
  background: #0e5287;
  box-shadow: 0 6px 24px rgba(18,100,158,0.45);
  animation: none;
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(23,34,64,0.3);
}
.btn-dark:hover {
  background: #1e2f55;
  box-shadow: 0 6px 24px rgba(23,34,64,0.4);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: #1eb855;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}

.btn-light {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-light:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--white);
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--primary-light);
  overflow: hidden;
  padding: 0.7rem 0;
  user-select: none;
  margin: 0;
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track {
  display: flex;
  gap: 0;
  animation: tickerMove 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-text {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0 1.5rem;
}
@keyframes tickerMove {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--gray-bg); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1.5px solid transparent;
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-hover);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--white);
  flex-shrink: 0;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { color: var(--primary); margin-bottom: 0.6rem; font-size: 1.15rem; }
.service-card p { color: var(--gray); font-size: 0.93rem; line-height: 1.65; margin: 0; }

/* ============================================================
   ABOUT (aperçu homepage)
   ============================================================ */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}
.about-content h2 { color: var(--primary); margin-bottom: 1.25rem; }
.about-content p { color: var(--gray); margin-bottom: 1.5rem; font-size: 1rem; line-height: 1.75; }
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--gray-bg);
  border: 1px solid rgba(23,34,64,0.12);
  border-radius: 100px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--primary);
}
.badge svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
  cursor: pointer;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(23,34,64,0.93) 0%, transparent 100%);
  color: var(--white);
  padding: 2.5rem 1.2rem 1.2rem;
  transform: translateY(100%);
  transition: transform 0.32s ease;
  font-size: 0.9rem;
  font-weight: 500;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

.gallery-cta { text-align: center; margin-top: 2.5rem; }

/* ============================================================
   CONTACT CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
}
.cta-section h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-section p { opacity: 0.82; margin-bottom: 2rem; font-size: 1.05rem; }
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}
.cta-hours {
  opacity: 0.65;
  font-size: 0.88rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.78);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  width: 100px;
  height: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
  opacity: 0.9;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 0.35rem; }
.footer-brand .slogan { font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.92); margin-bottom: 0.5rem; }

.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.footer-links ul li { margin-bottom: 0.5rem; }
.footer-links a {
  color: rgba(255,255,255,0.78);
  font-size: 0.93rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-contact p { font-size: 0.9rem; margin-bottom: 0.6rem; }
.footer-contact a {
  color: rgba(255,255,255,0.78);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--white); }

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--white); }

.footer-bottom {
  padding: 1.25rem 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  text-align: center;
}
.footer-bottom a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom span { opacity: 0.4; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1e3260 100%);
  padding: 8rem 0 4rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(18,100,158,0.25) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { opacity: 0.8; font-size: 1.1rem; max-width: 500px; margin: 0 auto 1rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  opacity: 0.65;
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--white); }
.breadcrumb a:hover { opacity: 1; text-decoration: underline; }
.breadcrumb svg { width: 12px; height: 12px; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  transition: opacity 0.2s;
}
.lightbox-close {
  position: fixed;
  top: 1.25rem; right: 1.5rem;
  color: rgba(255,255,255,0.75);
  font-size: 2rem;
  background: none;
  border: none;
  line-height: 1;
  padding: 0.25rem;
  transition: color var(--transition);
  z-index: 10;
}
.lightbox-close:hover { color: var(--white); }
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.8);
  font-size: 2rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
  z-index: 10;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.18); color: var(--white); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-caption {
  position: fixed;
  bottom: 1.5rem;
  left: 0; right: 0;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  z-index: 10;
  pointer-events: none;
}
.lightbox-counter {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  z-index: 10;
  pointer-events: none;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--gray-bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.contact-info h3 { color: var(--primary); margin-bottom: 1.25rem; }
.contact-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.contact-btn-large {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.05rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-btn-large:hover { transform: translateY(-2px); }
.contact-btn-large.phone {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(23,34,64,0.25);
}
.contact-btn-large.phone:hover { box-shadow: 0 6px 24px rgba(23,34,64,0.35); }
.contact-btn-large.whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.25);
}
.contact-btn-large.whatsapp:hover { box-shadow: 0 6px 24px rgba(37,211,102,0.35); }
.contact-btn-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-details { margin-top: 1.5rem; }
.contact-details p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 0.9rem;
}
.contact-details p strong { color: var(--accent); display: block; margin-bottom: 0.1rem; }
.detail-icon { font-size: 1.1rem; margin-top: 0.05rem; flex-shrink: 0; }

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { color: var(--primary); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.form-group .required { color: var(--primary-light); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--accent);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(18,100,158,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
  margin-top: 0.5rem;
}
.form-submit:hover { background: #1e2f55; transform: translateY(-1px); }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: #166534;
  background: #dcfce7;
  border-radius: 8px;
  margin-top: 1rem;
}
.form-success.show { display: block; }
.form-error {
  display: none;
  text-align: center;
  padding: 1rem;
  color: #991b1b;
  background: #fee2e2;
  border-radius: 8px;
  margin-top: 1rem;
  font-size: 0.9rem;
}
.form-error.show { display: block; }

/* ============================================================
   A PROPOS PAGE
   ============================================================ */
.apropos-section { background: var(--white); }
.apropos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
.apropos-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.apropos-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: left center;
  display: block;
}
.apropos-content h2 { color: var(--primary); margin-bottom: 1.25rem; }
.apropos-content p { color: var(--gray); margin-bottom: 1rem; line-height: 1.8; }

.zone-intervention { background: var(--gray-bg); }
.villes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.ville-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow);
  font-weight: 500;
  color: var(--primary);
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: border-color var(--transition), transform var(--transition);
}
.ville-card:hover { border-color: var(--primary-light); transform: translateY(-2px); }
.ville-dot {
  width: 10px; height: 10px;
  background: var(--primary-light);
  border-radius: 50%;
  flex-shrink: 0;
}

.horaires-section { background: var(--white); }
.horaires-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--gray-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.horaires-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(23,34,64,0.06);
  font-size: 0.95rem;
}
.horaires-row:last-child { border-bottom: none; }
.horaires-row span:first-child { color: var(--accent); font-weight: 500; }
.horaires-row span:last-child { color: var(--primary-light); font-weight: 600; }
.horaires-row.urgent { background: var(--primary); color: var(--white); font-size: 0.85rem; }
.horaires-row.urgent span:first-child { color: var(--white); }
.horaires-row.urgent span:last-child { color: rgba(255,255,255,0.85); font-weight: 500; }

/* ============================================================
   MENTIONS LÉGALES
   ============================================================ */
.mentions-section { background: var(--white); }
.mentions-content {
  max-width: 760px;
  margin: 0 auto;
}
.mentions-content h2 { color: var(--primary); margin: 2.5rem 0 1rem; font-size: 1.4rem; }
.mentions-content h2:first-child { margin-top: 0; }
.mentions-content p, .mentions-content li { color: var(--gray); line-height: 1.8; font-size: 0.95rem; }
.mentions-content ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1rem; }
.mentions-content a { color: var(--primary-light); text-decoration: underline; }

/* style spécifique index.html : image sans img-wrap */
.lightbox-img {
  max-width: 92vw;
  max-height: 82vh;
  border-radius: 6px;
  object-fit: contain;
}

/* ============================================================
   FLOATING CALL CTA (mobile)
   ============================================================ */
.btn-float-call {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 998;
  background: #172240;
  color: #fff;
  border-radius: 50px;
  padding: 14px 24px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: opacity 0.3s, transform 0.3s;
}
.btn-float-call.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet 640px+ */
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .villes-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-btns { flex-direction: row; flex-wrap: wrap; }
  .contact-btn-large { flex: 1; min-width: 200px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Desktop 1024px+ */
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .apropos-grid { grid-template-columns: 1fr 1.4fr; }
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
  .footer-grid { grid-template-columns: 1.8fr 1fr 1.3fr; }
  .villes-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .page-hero { padding: 7rem 0 3rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 320px; justify-content: center; }
.cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 300px; justify-content: center; }
  .contact-form-wrap { padding: 1.75rem 1.25rem; }
  .about-image img { height: 300px; }
  .apropos-photo img { height: 340px; }
  .villes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .btn-float-call { display: block; }
  #a-propos { display: none; }
}

/* Mobile only */
@media (max-width: 1023px) {

  .navbar:not(.scrolled) .nav-menu.open {
    background: var(--primary);
  }

  .hero { background-attachment: scroll; }

  /* ---- Accordéon services ---- */
  .service-card {
    cursor: pointer;
    padding: 1.1rem 1.25rem;
  }
  .service-card:hover {
    transform: none;
  }
  .service-card h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
  }
  .service-card h3::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    color: var(--primary-light);
    flex-shrink: 0;
    margin-left: 0.75rem;
    transition: transform 0.25s ease;
  }
  .service-card.open h3::after {
    transform: rotate(45deg);
  }
  .service-card p {
    max-height: 0;
    overflow: hidden;
    margin: 0;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
  }
  .service-card.open p {
    max-height: 200px;
    margin-top: 0.65rem;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    gap: 0.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-link { padding: 0.75rem 1rem; width: 100%; }

  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .navbar-inner { flex-wrap: wrap; }

  .lightbox-prev { left: 0.25rem; }
  .lightbox-next { right: 0.25rem; }
}

@media (max-width: 1023px) {
  .navbar.menu-open {
    background: var(--primary);
    transition: none;
  }
}

