/* ========================================
   PAGE CONTACT - STYLES SPÉCIFIQUES
   ======================================== */

/* ========================================
   HERO DE PAGE (réutilise les styles de prestations.css)
   ======================================== */
.page-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  margin-top: 80px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 42, 74, 0.92) 0%,
    rgba(15, 42, 74, 0.85) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: #e5e7eb;
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   SECTION PRINCIPALE CONTACT
   ======================================== */
.contact-main {
  padding: 5rem 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

/* ========================================
   INFOS DE CONTACT
   ======================================== */
.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.info-card {
  background: var(--gray-light);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--gray-border);
}

.info-card-highlight {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.info-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--orange);
}

.info-card-highlight h3 {
  color: var(--white);
  border-bottom-color: var(--orange);
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.info-icon svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
}

.info-label {
  font-size: 0.8rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.125rem;
}

.info-value {
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  line-height: 1.4;
}

a.info-value:hover {
  color: var(--orange);
}

/* Horaires */
.schedule-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.schedule-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--gray-border);
}

.schedule-list li:last-of-type {
  border-bottom: none;
}

.schedule-list span {
  color: var(--gray-text);
  font-size: 0.95rem;
}

.schedule-list strong {
  color: var(--navy);
  font-weight: 600;
}

.schedule-list strong.closed {
  color: #dc2626;
}

.info-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.75rem;
  background: rgba(232, 93, 4, 0.08);
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--navy);
  line-height: 1.5;
}

.info-note svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--orange);
  margin-top: 0.125rem;
}

/* Zone d'intervention */
.zone-intro {
  color: var(--gray-text);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.zone-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.city-tag {
  display: inline-block;
  background: var(--white);
  color: var(--navy);
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--gray-border);
  transition: var(--transition);
}

.city-tag:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* Garanties */
.guarantee-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.guarantee-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-weight: 500;
}

.guarantee-list svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--orange);
}

/* ========================================
   CTA RAPPEL
   ======================================== */
.cta-reminder {
  padding: 4rem 0;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.cta-reminder-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-reminder h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-reminder p {
  color: #d1d5db;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn-call-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--orange);
  color: var(--white);
  padding: 1.25rem 2.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.2rem;
  box-shadow: 0 10px 30px rgba(232, 93, 4, 0.4);
  transition: var(--transition);
}

.btn-call-large:hover {
  background: var(--orange-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(232, 93, 4, 0.5);
}

.btn-call-large svg {
  width: 24px;
  height: 24px;
  animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
  0%,
  100% {
    transform: rotate(0);
  }
  10%,
  30% {
    transform: rotate(-10deg);
  }
  20%,
  40% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(0);
  }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 767px) {
  .btn-call-large {
    padding: 0.9rem 1.25rem;
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .contact-info {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-card-highlight {
    grid-column: 1 / -1;
  }
}

/* ========================================
   BOUTON APPEL FIXE MOBILE
   ======================================== */
.mobile-call-fixed {
  display: none;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 60px;
  height: 60px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(232, 93, 4, 0.5);
  z-index: 90;
  transition: var(--transition);
}

.mobile-call-fixed:hover {
  background: var(--orange-hover);
  transform: scale(1.1);
}

.mobile-call-fixed svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 767px) {
  .mobile-call-fixed {
    display: flex;
  }
}
