/* ============================================================
   SERVICES.CSS - Pages conciergerie, architecture, construction
   Charge avec global.css
   ============================================================ */

/* ── Variables locales manquantes (pont avec global.css) ─── */
:root {
  --primary-white:  #FFFFFF;
  --primary-black:  #1a1a1a;
  --primary-gold:   #B9A189;
}

/* ── HERO ─────────────────────────────────────────────────── */
.service-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  max-height: 600px;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)) center center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 0 5% 4rem;
}

.hero-content h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: #FFFFFF;                          /* ✅ FIX : blanc garanti */
  margin-bottom: 0.8rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-content p {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.8rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
  font-weight: 400;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 2rem;
  color: var(--primary-black);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 0.85rem;
  background: linear-gradient(135deg, #B9A189 0%, #E5D4C1 50%, #ffffff 100%);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* ── INTRO SECTION ────────────────────────────────────────── */
.intro-section {
  padding: 5rem 6%;
  background: var(--cream);              /* fond crème doux */
  border-bottom: 1px solid var(--border);
}

.intro-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

/* Colonne texte */
.intro-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.intro-content .section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 0.5rem;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

/* Ligne décorative dorée sous le titre */
.intro-content .section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.intro-text {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1rem;
  text-align: left;                      /* plus lisible que justify */
}

.intro-text strong {
  color: var(--text);
  font-weight: 600;
}

/* Colonne image */
.intro-image-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;                   /* ratio plus équilibré */
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}

/* Légère bordure intérieure dorée */
.intro-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(185,161,137,0.25);
  pointer-events: none;
  z-index: 1;
}

.intro-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.intro-image:hover {
  transform: scale(1.04);
}

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

/* ── SERVICES SECTION ─────────────────────────────────────── */
.services-section {
  padding: 4rem 6%;
  background: var(--primary-white);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  color: var(--primary-black);
  font-weight: 700;
}

.services-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background: var(--primary-white);
  border: 2px solid rgba(185,161,137,0.3);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-card:hover {
  border-color: var(--darker-gold);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

.service-icon {
  font-size: 3rem;
  color: var(--darker-gold);
  margin-bottom: 1.5rem;
  display: block;
}

.service-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-black);
  font-weight: 700;
}

.service-card > p {
  font-size: 0.95rem;
  color: rgba(0,0,0,0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features ul {
  list-style: none;
  text-align: left;
}

.service-features li {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.75);
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features li i {
  color: var(--darker-gold);
  font-size: 0.85rem;
}

/* ── PRICING INFO ─────────────────────────────────────────── */
.pricing-info {
  max-width: 700px;
  margin: 4rem auto 0;
  background: linear-gradient(135deg, rgba(185,161,137,0.1), rgba(229,212,193,0.15));
  border: 2px solid rgba(185,161,137,0.4);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.pricing-info h3 {
  font-size: 1.8rem;
  color: var(--primary-black);
  margin-bottom: 1rem;
  font-weight: 700;
}

.pricing-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--darker-gold);
  margin: 1rem 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.pricing-details {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(0,0,0,0.8);
  margin-bottom: 2rem;
}

.pricing-logo {
  max-width: 120px;
  height: auto;
  margin: 1.5rem auto;
  display: block;
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #B9A189, #C4AF9A);
  color: var(--primary-black);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* ── PROCESS SECTION ──────────────────────────────────────── */
.process-section {
  padding: 4rem 6%;
  background: linear-gradient(135deg, rgba(185,161,137,0.08), rgba(229,212,193,0.12));
}

.process-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.process-step {
  background: rgba(255,255,255,0.95);
  border: 2px solid rgba(185,161,137,0.4);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  position: relative;
  overflow: hidden;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(135deg, #B9A189, #C4AF9A);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.process-step:hover::before { transform: scaleX(1); }

.process-step:hover {
  border-color: var(--darker-gold);
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #B9A189, #C4AF9A);
  color: var(--primary-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 6px 20px rgba(185,161,137,0.4);
  border: 3px solid white;
}

.process-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-black);
  font-weight: 700;
}

.process-step > p {
  font-size: 0.95rem;
  color: rgba(0,0,0,0.75);
  line-height: 1.7;
}

/* ── FAQ SECTION ──────────────────────────────────────────── */
.faq-section {
  padding: 4rem 6%;
  background: linear-gradient(135deg, rgba(185,161,137,0.08), rgba(229,212,193,0.12), rgba(255,255,255,0.05));
}

.faq-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.faq-item {
  background: var(--primary-white);
  border: 2px solid rgba(185,161,137,0.4);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-item:hover {
  border-color: var(--darker-gold);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

.faq-question {
  font-family: 'Times New Roman', Times, serif;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.8rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
  gap: 1rem;
}

.faq-question:hover { background: rgba(185,161,137,0.08); }

.faq-title {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  font-weight: 700;
  color: var(--primary-black);
  margin: 0;
  flex: 1;
  line-height: 1.5;
}

.faq-question i {
  font-size: 1.2rem;
  color: var(--darker-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary-gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: rgba(185,161,137,0.03);
}

.faq-item.active .faq-answer {
  max-height: 800px;
  padding: 1.5rem 1.8rem;
  border-top: 1px solid rgba(185,161,137,0.2);
}

.faq-answer p {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  line-height: 1.8;
  color: rgba(0,0,0,0.8);
  margin: 0;
}

.faq-answer strong { color: var(--darker-gold); font-weight: 700; }
.faq-answer a { color: var(--darker-gold); text-decoration: underline; font-weight: 600; }
.faq-answer a:hover { color: var(--primary-gold); }

/* ── MAPS SECTION ─────────────────────────────────────────── */
.maps-section {
  padding: 4rem 6%;
  background: var(--primary-white);
}

.maps-iframe-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  border: 3px solid rgba(185,161,137,0.3);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.maps-iframe-final {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-compact {
  padding: 5rem 6%;
  background: linear-gradient(135deg, rgba(185,161,137,0.12), rgba(229,212,193,0.18));
}

.testimonials-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-black);
  margin-bottom: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.testimonials-scroll {
  display: flex;
  gap: 2.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 2rem 0;
  scrollbar-width: thin;
  scrollbar-color: var(--darker-gold) rgba(185,161,137,0.2);
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials-scroll::-webkit-scrollbar { height: 10px; }
.testimonials-scroll::-webkit-scrollbar-track { background: rgba(185,161,137,0.2); }
.testimonials-scroll::-webkit-scrollbar-thumb { background: var(--darker-gold); }

.testimonial-mini {
  min-width: 340px;
  max-width: 380px;
  background: var(--primary-white);
  border: 2px solid rgba(185,161,137,0.4);
  padding: 2.2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-mini::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(135deg, #FFB800, #FFA000);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.testimonial-mini:hover::before { transform: scaleX(1); }

.testimonial-mini:hover {
  border-color: var(--darker-gold);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
  transform: translateY(-5px);
}

.testimonial-stars {
  color: #FFB800;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  letter-spacing: 2px;
}

.testimonial-date {
  font-size: 0.85rem;
  color: rgba(0,0,0,0.5);
  margin-bottom: 1.2rem;
  font-style: italic;
}

.testimonial-mini > p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(0,0,0,0.8);
  margin-bottom: 1.8rem;
  font-style: italic;
}

.testimonial-author-mini {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(185,161,137,0.2);
}

.author-avatar-mini {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.author-info-mini h4 {
  font-size: 1rem;
  color: var(--primary-black);
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.google-verified {
  font-size: 0.82rem;
  color: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.google-verified i { color: #4285F4; font-size: 0.9rem; }

.scroll-indicator {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(0,0,0,0.6);
  margin: 2.5rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonials-actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}

.btn-see-reviews,
.btn-leave-review {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 2.3rem;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.btn-see-reviews {
  background: linear-gradient(135deg, #4285F4, #34A853);
  color: white;
  box-shadow: 0 4px 15px rgba(66,133,244,0.3);
}

.btn-see-reviews:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(66,133,244,0.4);
}

.btn-leave-review {
  background: linear-gradient(135deg, #B9A189, #C4AF9A);
  color: var(--primary-black);
  box-shadow: 0 4px 15px rgba(185,161,137,0.3);
}

.btn-leave-review:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(185,161,137,0.5);
}

/* ── PARTENAIRE ───────────────────────────────────────────── */
.partner-section {
  padding: 4rem 6%;
  background: var(--primary-white);
  border-top: 3px solid rgba(185,161,137,0.2);
  border-bottom: 3px solid rgba(185,161,137,0.2);
}

.partner-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.partner-label {
  font-size: 1.1rem;
  color: var(--darker-gold);
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.partner-logo-wrapper {
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(185,161,137,0.05);
  display: inline-block;
}

.partner-logo {
  max-width: 200px;
  height: auto;
  transition: transform 0.3s ease;
  filter: grayscale(0%);
}

.partner-logo:hover { transform: scale(1.05); }

.partner-description {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(0,0,0,0.8);
  margin: 2rem auto;
  text-align: center;
  max-width: 700px;
}

.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #B9A189, #C4AF9A);
  color: var(--primary-black);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.partner-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* ── CONTACT CTA ──────────────────────────────────────────── */
.contact-cta-section {
  padding: 5rem 6%;
  background: linear-gradient(135deg, #B9A189, #C4AF9A, #E5D4C1);
  text-align: center;
  color: var(--primary-black);
}

.contact-cta-section h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.contact-cta-section > p {
  font-size: clamp(1rem, 3vw, 1.2rem);
  line-height: 1.8;
  margin-bottom: 3rem;
  color: rgba(0,0,0,0.85);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.5rem;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.cta-btn-primary  { background: var(--primary-white); color: var(--primary-black); }
.cta-btn-ia       { background: linear-gradient(135deg, #667eea, #764ba2); color: white; }
.cta-btn-secondary{ background: linear-gradient(135deg, #34A853, #0F9D58); color: white; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .testimonials-scroll { justify-content: flex-start; }
  .process-steps       { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .intro-section       { padding: 3rem 5%; }
  .intro-container     { grid-template-columns: 1fr; gap: 2rem; }
  .intro-image-wrapper { aspect-ratio: 16 / 9; }

  .service-hero        { height: 50vh; min-height: 350px; align-items: center; padding-bottom: 3rem; }
  .hero-content h1     { font-size: 1.6rem; }
  .hero-content p      { font-size: 0.9rem; }

  .faq-container,
  .services-grid       { grid-template-columns: 1fr; gap: 1.2rem; }

  .faq-question        { padding: 1.2rem 1.5rem; }
  .faq-item.active .faq-answer { padding: 1.2rem 1.5rem; }

  .testimonial-mini    { min-width: 320px; max-width: 320px; }
  .process-steps       { grid-template-columns: 1fr; }

  .cta-buttons         { flex-direction: column; align-items: center; }
  .cta-btn             { width: 100%; max-width: 350px; justify-content: center; }
}
