/* ================================================
   FIXNIVO — Style Principal
   Design Système Luxe Sobre
   ================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Raleway:wght@300;400;500;600&family=DM+Mono:wght@400&display=swap');

/* --- Variables CSS --- */
:root {
  --primary:        #0A0A0A;
  --secondary:      #FFFFFF;
  --accent:         #C9A84C;
  --accent-bronze:  #B07D4B;
  --bg-ivory:       #F7F5F0;
  --bg-charcoal:    #111111;
  --text-dark:      #1A1A1A;
  --text-grey:      #6B6B6B;
  --text-light-grey:#AAAAAA;
  --border-sand:    #E0D5C1;
  --header-height:  80px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-dark);
  background-color: var(--secondary);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
}

h1 {
  font-size: 56px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h2 {
  font-size: 42px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h3 {
  font-size: 22px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  font-weight: 500;
}

p {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
}

/* --- Container --- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}

/* --- Section Spacing --- */
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

/* --- Decorative Elements --- */
.deco-line {
  display: block;
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  margin: 25px auto;
}

.deco-line-left {
  margin: 25px 0;
}

/* --- Surtitre --- */
.surtitre {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 16px 40px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  cursor: pointer;
  border-radius: 0;
  transition: background-color 0.4s ease, color 0.4s ease;
  text-align: center;
}

.btn:hover {
  background-color: var(--accent);
  color: var(--primary);
}

.btn-dark {
  border-color: var(--text-dark);
  color: var(--text-dark);
}

.btn-dark:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}

.btn-secondary {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-secondary:hover {
  background-color: var(--accent);
  color: var(--primary);
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin-bottom: 10px;
}

.section-header .desc {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-grey);
  font-weight: 300;
  font-size: 16px;
}

.section-header-dark h2 { color: var(--secondary); }
.section-header-dark .desc { color: rgba(255,255,255,0.7); }

/* --- Breadcrumb --- */
.breadcrumb {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.6); margin: 0 8px; }

/* ================================================
   HEADER
   ================================================ */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  opacity: 0;
  animation: fadeInHeader 0.5s ease 0.1s forwards;
}

@keyframes fadeInHeader {
  to { opacity: 1; }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 60px;
}

.logo a {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
}

.logo-tagline {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-link {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 1px;
  background-color: var(--accent);
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-close {
  position: absolute;
  top: 25px;
  right: 30px;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.mobile-nav-link {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary);
  transition: color 0.3s ease;
}

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

/* ================================================
   HERO SECTIONS
   ================================================ */
.hero-full {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: var(--header-height);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 10, 10, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 20px;
}

.hero-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.hero-content h1 {
  color: var(--secondary);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

.hero-content .deco-line {
  opacity: 0;
  animation: fadeInUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.65s forwards;
}

.hero-subtitle {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 650px;
  margin: 0 auto 35px;
  opacity: 0;
  animation: fadeInUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  opacity: 0;
  animation: fadeInUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.95s forwards;
}

.hero-link-secondary {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.hero-link-secondary:hover { border-bottom-color: var(--accent); }

/* Internal Page Hero */
.hero-inner {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  padding-top: var(--header-height);
  background-color: var(--primary);
}

.hero-inner .hero-overlay {
  background-color: rgba(10, 10, 10, 0.6);
}

.hero-inner .hero-content h1 { font-size: 48px; }

.hero-inner .hero-content h1,
.hero-inner .hero-content .hero-label,
.hero-inner .hero-content .deco-line,
.hero-inner .hero-content .hero-subtitle {
  opacity: 0;
  animation: fadeInUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

/* Hero Simplifié (mentions, CGS, etc.) */
.hero-simplified {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--primary);
  padding-top: var(--header-height);
  padding-bottom: 40px;
}

.hero-simplified h1 {
  color: var(--secondary);
  font-size: 42px;
  margin-bottom: 20px;
}

/* ================================================
   BANDEAU CONFIANCE
   ================================================ */
.trust-band {
  background-color: var(--bg-charcoal);
  padding: 50px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trust-item {
  text-align: center;
  padding: 20px 30px;
  position: relative;
}

.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  width: 1px;
  background-color: var(--accent);
  opacity: 0.4;
}

.trust-icon {
  font-size: 32px;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.trust-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.trust-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  display: block;
}

/* ================================================
   SECTION PRESENTATION
   ================================================ */
.presentation-section {
  background-color: var(--bg-ivory);
}

.two-col {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 80px;
  align-items: center;
}

.two-col-reverse {
  grid-template-columns: 45% 55%;
}

.two-col-equal {
  grid-template-columns: 40% 60%;
}

.two-col-equal-reverse {
  grid-template-columns: 60% 40%;
}

.col-text .surtitre { color: var(--accent); }
.col-text h2 { color: var(--text-dark); margin-bottom: 10px; }
.col-text p { color: var(--text-grey); margin-bottom: 18px; }

.col-image {
  position: relative;
}

.deco-frame {
  position: relative;
  display: inline-block;
}

.deco-frame img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

.deco-frame::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid var(--accent);
  z-index: 0;
  pointer-events: none;
}

/* ================================================
   SERVICES SECTION
   ================================================ */
.services-section { background-color: var(--primary); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 50px;
}

.service-card {
  background-color: var(--bg-charcoal);
  border-top: 2px solid var(--accent);
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border-color: var(--accent-bronze);
}

.service-icon {
  font-size: 40px;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 15px;
}

.service-card p {
  font-size: 15px;
  color: var(--text-light-grey);
  font-weight: 300;
  margin-bottom: 20px;
}

.service-link {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.service-link:hover { gap: 10px; }

.services-cta { text-align: center; }

/* ================================================
   PROCESS SECTION
   ================================================ */
.process-section { background-color: var(--secondary); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 60px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background-color: var(--accent);
  opacity: 0.4;
}

.process-step {
  text-align: center;
  padding: 0 25px;
  position: relative;
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.step-desc {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--text-grey);
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials-section { background-color: var(--primary); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.testimonial-card {
  border-left: 2px solid var(--accent);
  padding-left: 30px;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  color: var(--secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-line {
  display: block;
  width: 40px;
  height: 1px;
  background-color: var(--accent);
  margin-bottom: 16px;
}

.testimonial-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}

.testimonial-context {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--text-grey);
  display: block;
  margin-top: 4px;
}

/* ================================================
   TARIFS SECTION
   ================================================ */
.tarifs-section { background-color: var(--bg-ivory); }

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.tarif-card {
  background-color: var(--secondary);
  border: 1px solid var(--border-sand);
  border-top: 2px solid var(--accent);
  padding: 40px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tarif-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.tarif-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.tarif-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--accent);
  display: block;
  margin-bottom: 15px;
  line-height: 1;
}

.tarif-desc {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text-grey);
  line-height: 1.7;
}

.tarifs-cta { text-align: center; }

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: var(--primary);
  text-align: center;
  padding: 120px 0;
}

.cta-section .hero-overlay {
  background-color: rgba(10, 10, 10, 0.7);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-content h2 {
  color: var(--secondary);
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 35px;
}

/* Dark CTA (no image) */
.cta-dark {
  background-color: var(--primary);
  text-align: center;
  padding: 80px 0;
}

.cta-dark h2 { color: var(--secondary); margin-bottom: 20px; }
.cta-dark p { color: rgba(255,255,255,0.7); margin-bottom: 35px; }

/* ================================================
   FOOTER
   ================================================ */
#main-footer {
  background-color: var(--primary);
  border-top: 1px solid #1A1A1A;
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.footer-desc {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text-grey);
  line-height: 1.8;
}

.footer-col-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 20px;
  display: block;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-link {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text-grey);
  transition: color 0.3s ease;
}

.footer-nav-link:hover { color: var(--accent); }

.footer-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.footer-info-icon {
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-info-text {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text-grey);
  line-height: 1.6;
}

.footer-deco {
  height: 1px;
  background-color: rgba(201, 168, 76, 0.2);
  margin: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 25px 0;
  flex-wrap: wrap;
}

.footer-copy {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: var(--text-grey);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-legal-links a {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: var(--text-grey);
  transition: color 0.3s ease;
}

.footer-legal-links a:hover { color: var(--accent); }

.footer-sep {
  color: var(--text-grey);
  font-size: 10px;
}

/* ================================================
   ABOUT PAGE
   ================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 20px;
}

.value-card {
  background-color: var(--secondary);
  border: 1px solid var(--border-sand);
  border-top: 2px solid var(--accent);
  padding: 40px 35px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.value-icon {
  font-size: 36px;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.value-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.value-card p {
  font-weight: 300;
  font-size: 15px;
  color: var(--text-grey);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.team-card { text-align: center; }

.team-photo-wrapper {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent);
  margin: 0 auto 20px;
}

.team-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary);
  display: block;
  margin-bottom: 6px;
}

.team-role {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}

.team-desc {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text-light-grey);
  line-height: 1.7;
}

/* Commitments */
.commitments-list { max-width: 700px; margin: 0 auto; }

.commitment-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid var(--border-sand);
}

.commitment-item:last-child { border-bottom: none; }

.commitment-icon {
  font-size: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

.commitment-text {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
}

/* ================================================
   SERVICES PAGE
   ================================================ */
.service-detail {
  padding: 100px 0;
}

.service-detail-alt {
  background-color: var(--bg-ivory);
}

.service-detail .two-col { gap: 80px; }

.service-detail .col-text .surtitre {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.2em;
}

.service-detail .col-text .surtitre i { font-size: 18px; }

.service-bullets {
  list-style: none;
  margin: 20px 0;
}

.service-bullets li {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--text-grey);
  padding: 6px 0 6px 20px;
  position: relative;
  line-height: 1.6;
}

.service-bullets li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 8px;
  top: 10px;
}

.service-brands {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--text-grey);
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--border-sand);
}

.service-tarif {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 20px;
  padding: 12px 20px;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

/* Service Nettoyage - 3 blocs */
.cleaning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.cleaning-block {
  background-color: var(--bg-ivory);
  border: 1px solid var(--border-sand);
  border-top: 2px solid var(--accent);
  padding: 35px 30px;
}

.cleaning-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.cleaning-block p {
  font-weight: 300;
  font-size: 15px;
  color: var(--text-grey);
}

/* Tarif Tableau */
.tarif-table-section { background-color: var(--primary); }

.tarif-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
}

.tarif-table thead tr {
  border-bottom: 1px solid var(--accent);
}

.tarif-table th {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  padding: 15px 20px;
  text-align: left;
}

.tarif-table td {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.tarif-table td:nth-child(2) {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
}

.tarif-table tbody tr:hover td {
  background-color: rgba(201, 168, 76, 0.04);
}

.table-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--text-grey);
  margin-top: 20px;
  text-align: center;
}

/* Service Intro */
.service-intro {
  background-color: var(--secondary);
  text-align: center;
  padding: 70px 0;
}

.service-intro p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 17px;
  font-weight: 300;
  color: var(--text-grey);
  line-height: 1.9;
}

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-section { background-color: var(--secondary); }

.contact-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-info-icon {
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-info-text {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--text-grey);
  line-height: 1.7;
}

.contact-info-text strong {
  display: block;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 3px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-note {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-sand);
  font-weight: 300;
  font-size: 14px;
  color: var(--text-grey);
}

/* Form */
.contact-form h2 {
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 28px;
  position: relative;
}

.form-label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-grey);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-sand);
  padding: 10px 0;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s ease;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.form-control:focus { border-bottom-color: var(--accent); }

.form-control::placeholder { color: #CCCCCC; }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 20px;
  cursor: pointer;
}

textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-checkbox input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  cursor: pointer;
  accent-color: var(--accent);
}

.form-checkbox label {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--text-grey);
  line-height: 1.6;
  cursor: pointer;
}

.form-checkbox label a { color: var(--accent); border-bottom: 1px solid transparent; }
.form-checkbox label a:hover { border-bottom-color: var(--accent); }

.form-error {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #C0392B;
  margin-top: 5px;
}

.form-success {
  background-color: #1B5E20;
  color: #FFFFFF;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 14px;
  padding: 16px 20px;
  margin-bottom: 25px;
  border-radius: 0;
}

.form-note {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--text-grey);
  margin-top: 15px;
  font-style: italic;
}

.form-submit { margin-top: 25px; }

/* Map Placeholder */
.map-section { background-color: var(--bg-ivory); }

.map-placeholder {
  width: 100%;
  height: 400px;
  background-color: var(--border-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.map-placeholder-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--text-grey);
  letter-spacing: 0.05em;
}

.map-desc {
  text-align: center;
  font-weight: 300;
  font-size: 15px;
  color: var(--text-grey);
  max-width: 600px;
  margin: 0 auto;
}

/* FAQ Accordion */
.faq-section { background-color: var(--secondary); }

.faq-list { max-width: 750px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border-sand);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  gap: 20px;
}

.faq-question-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.faq-icon {
  font-size: 24px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  font-weight: 300;
  line-height: 1;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-inner {
  padding: 0 0 22px 0;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--text-grey);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ================================================
   LEGAL PAGES
   ================================================ */
.legal-content {
  background-color: var(--secondary);
  padding: 80px 0;
}

.legal-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.legal-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: none;
  letter-spacing: 0.02em;
  margin-top: 50px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-sand);
}

.legal-inner h2:first-child { margin-top: 0; }

.legal-inner p {
  font-weight: 300;
  font-size: 15px;
  color: var(--text-grey);
  margin-bottom: 14px;
  line-height: 1.9;
}

.legal-inner ul {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 14px;
}

.legal-inner ul li {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--text-grey);
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-inner a { color: var(--accent); }
.legal-inner a:hover { text-decoration: underline; }

/* ================================================
   SCROLL ANIMATIONS
   ================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1199px) {
  .container { max-width: 960px; }
  h1 { font-size: 46px; }
  h2 { font-size: 36px; }
}

@media (max-width: 991px) {
  .section-pad { padding: 70px 0; }
  .cta-section { padding: 80px 0; }

  .header-inner { padding: 0 30px; }

  .main-nav { display: none; }
  .hamburger { display: flex; }

  .two-col,
  .two-col-reverse,
  .two-col-equal,
  .two-col-equal-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-col-reverse .col-image { order: -1; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2)::after { display: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .tarifs-grid { grid-template-columns: 1fr; max-width: 450px; margin-left: auto; margin-right: auto; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 350px; margin: 40px auto 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .cleaning-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 767px) {
  :root { --header-height: 70px; }
  .section-pad { padding: 50px 0; }
  .container { padding: 0 20px; }
  h1 { font-size: 36px; letter-spacing: 0.05em; }
  h2 { font-size: 30px; letter-spacing: 0.05em; }
  .hero-content h1 { font-size: 32px; }
  .hero-inner .hero-content h1 { font-size: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item::after { display: none; }
  .tarifs-grid { grid-template-columns: 1fr; }
  .two-col,
  .two-col-equal,
  .two-col-equal-reverse { gap: 30px; }
  .cta-content h2 { font-size: 30px; }
  .hero-simplified h1 { font-size: 32px; }
  .legal-inner { padding: 0 20px; }
  .footer-legal-links { flex-wrap: wrap; justify-content: center; gap: 10px; }
  .footer-sep { display: none; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .hero-subtitle { font-size: 16px; }
}

@media (max-width: 575px) {
  h1 { font-size: 28px; }
  h2 { font-size: 26px; }
  .hero-content h1 { font-size: 28px; }
  .container { padding: 0 16px; }
  .process-steps { grid-template-columns: 1fr; }
  .contact-grid { gap: 35px; }
}

/* --- Fade In Up Keyframe --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
