/* ============================================
   LUXA SERVICES - Styles Globaux
   ============================================ */

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.8rem 1.5rem;
  background: var(--green-dark);
  color: var(--bg-white);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* Focus States */
*:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* Variables */
:root {
  --green-dark: #1B3A2D;
  --green-medium: #2D5A3D;
  --green-light: #3A7A52;
  --gold: #C5A55A;
  --gold-light: #D4B96E;
  --gold-hover: #B8943F;
  --bg-light: #F9F7F3;
  --bg-white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-gray: #666666;
  --text-light: #999999;
  --border: #E8E4DC;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.3;
  color: var(--green-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-gray);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-white);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-logo img {
  height: 50px;
  width: auto;
}

.header-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-dark);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 1.3rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-dark);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--green-dark);
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg-white);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(197, 165, 90, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--bg-white);
  border-color: var(--bg-white);
}

.btn-outline:hover {
  background: var(--bg-white);
  color: var(--green-dark);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-outline-dark:hover {
  background: var(--green-dark);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green-dark);
  color: var(--bg-white);
  border-color: var(--green-dark);
}

.btn-green:hover {
  background: var(--green-medium);
  border-color: var(--green-medium);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(27, 58, 45, 0.3);
}

.btn-sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-medium) 100%);
  color: var(--bg-white);
  text-align: center;
  padding: 7rem 2rem 4rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-logo {
  width: 200px;
  height: auto;
  margin-bottom: 1.75rem;
  padding: 0.5rem 0.7rem;
  background: var(--bg-light);
  border: 1px solid rgba(197, 165, 90, 0.35);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.hero h1 {
  color: var(--bg-white);
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: 3px;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-style: italic;
}

.hero-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-diamond {
  position: absolute;
  font-size: 4rem;
  opacity: 0.08;
}

.hero-diamond:nth-child(1) { top: 15%; left: 10%; }
.hero-diamond:nth-child(2) { top: 60%; right: 8%; }
.hero-diamond:nth-child(3) { bottom: 15%; left: 20%; }

/* ============================================
   SECTION HEADINGS
   ============================================ */

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.section-header p {
  max-width: 650px;
  margin: 1.5rem auto 0;
  font-size: 1.05rem;
}

/* ============================================
   SERVICE CARDS
   ============================================ */

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

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 2.5rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  margin: 0 auto 1.4rem;
  background: linear-gradient(135deg, var(--green-dark), var(--green-medium));
  border-radius: 50%;
  color: var(--gold);
  box-shadow: 0 6px 18px rgba(27, 58, 45, 0.18), 0 0 0 4px rgba(197, 165, 90, 0.12);
  transition: all var(--transition);
}

.service-icon svg {
  width: 44px;
  height: 44px;
  display: block;
}

.service-card:hover .service-icon {
  transform: scale(1.06) rotate(-3deg);
  box-shadow: 0 10px 24px rgba(27, 58, 45, 0.28), 0 0 0 6px rgba(197, 165, 90, 0.18);
}

.service-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.service-card p {
  font-size: 0.92rem;
  line-height: 1.6;
}

.service-card .btn {
  margin-top: 1.2rem;
}

/* ============================================
   ADVANTAGES / WHY US
   ============================================ */

.advantages-section {
  background: var(--bg-light);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.advantage-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.advantage-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green-medium));
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.advantage-item h4 {
  margin-bottom: 0.3rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.advantage-item p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* ============================================
   STEPS / COMMENT CA MARCHE
   ============================================ */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.2rem;
  box-shadow: 0 4px 15px rgba(27, 58, 45, 0.2);
}

.step-item h4 {
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.step-item p {
  font-size: 0.88rem;
}

/* ============================================
   PACKS / PRICING
   ============================================ */

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

.pack-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 2px solid var(--border);
  position: relative;
}

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

.pack-card.featured {
  border-color: var(--gold);
  transform: scale(1.03);
}

.pack-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.pack-badge {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  background: var(--gold);
  color: var(--bg-white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  line-height: 1;
}

.pack-badge + .pack-header {
  padding-top: 3rem;
}

.pack-header {
  background: var(--green-dark);
  color: var(--bg-white);
  padding: 2rem 1.5rem;
  text-align: center;
}

.pack-card.featured .pack-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green-medium));
}

.pack-header h3 {
  color: var(--bg-white);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.pack-hours {
  color: var(--gold-light);
  font-size: 0.9rem;
}

.pack-price {
  text-align: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.pack-price .amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-dark);
}

.pack-price .period {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.pack-price .old-price {
  display: block;
  color: var(--text-gray);
  font-size: 0.9rem;
  text-decoration: line-through;
  margin-top: 0.25rem;
  opacity: 0.75;
}

.pack-bonus {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  border-top: 1px dashed var(--border);
  padding-top: 1rem;
}

.pack-bonus li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.pack-bonus li::before {
  content: '\2605';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.9rem;
}

.pack-composition {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
}

.pack-body {
  padding: 1.5rem;
}

.pack-body p {
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.6;
}

.pack-footer {
  padding: 0 1.5rem 1.5rem;
  text-align: center;
}

.pack-footer .btn {
  width: 100%;
}

/* Secondary packs row */
.packs-secondary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================
   PRICING TABLE (tarifs a la carte)
   ============================================ */

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pricing-table thead {
  background: var(--green-dark);
  color: var(--bg-white);
}

.pricing-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}

.pricing-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.pricing-table tbody tr:hover {
  background: var(--bg-light);
}

.pricing-table .price-cell {
  font-weight: 700;
  color: var(--green-dark);
  white-space: nowrap;
}

/* Options pricing cards */
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.option-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition);
}

.option-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.option-card .option-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.option-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.option-card .option-price {
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
}

/* ============================================
   ZONE D'INTERVENTION
   ============================================ */

.zone-section {
  background: var(--green-dark);
  color: var(--bg-white);
  padding: 3rem 0;
  text-align: center;
}

.zone-section h2 {
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.zone-section h2::after {
  background: var(--gold);
}

.zone-section p {
  color: rgba(255, 255, 255, 0.8);
}

.zone-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.zone-tag {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  color: var(--gold-light);
  transition: all var(--transition);
}

.zone-tag:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: linear-gradient(135deg, var(--green-dark), var(--green-medium));
  color: var(--bg-white);
  text-align: center;
  padding: 5rem 2rem;
}

.cta-section h2 {
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

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

/* ============================================
   PAGE HEADER (pages internes)
   ============================================ */

.page-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green-medium));
  color: var(--bg-white);
  padding: 8rem 2rem 3rem;
  text-align: center;
}

.page-header h1 {
  color: var(--bg-white);
  font-size: 2.8rem;
  margin-bottom: 0.8rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ============================================
   SERVICE DETAIL SECTIONS
   ============================================ */

.service-detail {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-of-type {
  border-bottom: none;
}

.service-detail:nth-child(even) {
  background: var(--bg-light);
}

.service-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.service-detail-content.reverse {
  direction: rtl;
}

.service-detail-content.reverse > * {
  direction: ltr;
}

.service-detail-icon {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow);
}

.service-detail-icon img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.service-detail-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(27, 58, 45, 0.25) 100%);
  pointer-events: none;
}

.service-detail:hover .service-detail-icon img {
  transform: scale(1.06);
}

.service-detail-text h3 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.service-detail-text ul {
  list-style: none;
  padding: 0;
}

.service-detail-text ul li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.service-detail-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* ============================================
   INCLUDED BANNER
   ============================================ */

.included-banner {
  background: var(--bg-light);
  padding: 3rem 0;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--green-dark);
}

.included-item .check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* ============================================
   VALUES SECTION
   ============================================ */

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

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

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-card h4 {
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.value-card p {
  font-size: 0.88rem;
}

/* ============================================
   FORMS
   ============================================ */

.form-section {
  padding: 5rem 0;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-white);
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.form-group label .required {
  color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  transition: border-color var(--transition);
  background: var(--bg-white);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 165, 90, 0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
  margin-top: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.checkbox-item input[type="checkbox"],
.checkbox-item input[type="radio"] {
  width: auto;
  accent-color: var(--green-dark);
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-gray);
  cursor: pointer;
}

.consent-label input {
  width: auto !important;
  margin-top: 3px;
  accent-color: var(--green-dark);
}

.form-submit {
  margin-top: 2rem;
  text-align: center;
}

.form-submit .btn {
  min-width: 250px;
}

/* Contact info sidebar */
.contact-info-card {
  background: var(--green-dark);
  color: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius);
}

.contact-info-card h3 {
  color: var(--bg-white);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
}

.contact-info-item .icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  margin-top: 1rem;
  line-height: 1.7;
}

.footer-brand img {
  height: 50px;
  border-radius: 8px;
  background: white;
  padding: 4px;
}

.footer h4 {
  color: var(--gold-light);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.footer ul li {
  margin-bottom: 0.6rem;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer ul li a:hover {
  color: var(--gold-light);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   BOOKING FLOATING BUTTON
   ============================================ */

.booking-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 15px rgba(197, 165, 90, 0.4);
  z-index: 999;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.booking-float:hover {
  transform: scale(1.1);
  background: var(--gold-hover);
  box-shadow: 0 6px 20px rgba(197, 165, 90, 0.5);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1FB855;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulseWhatsapp 2s ease-out infinite;
  opacity: 0;
}

@keyframes pulseWhatsapp {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============================================
   SERVICE BUTTONS (dual CTA)
   ============================================ */

.service-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ============================================
   TARIFS PAR CATÉGORIE — TABS
   ============================================ */

.tarif-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.tarif-tab {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.tarif-tab:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.tarif-tab.active {
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(197, 165, 90, 0.25);
  background: linear-gradient(180deg, var(--bg-white) 0%, #fdfaf2 100%);
}

.tarif-tab.active::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 24px;
  height: 24px;
  background: var(--gold);
  z-index: 1;
}

.tarif-tab-icon {
  font-size: 2.25rem;
  margin-bottom: 0.25rem;
  line-height: 1;
}

.tarif-tab h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--green-dark);
  margin: 0;
  line-height: 1.3;
}

.tarif-tab p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin: 0;
  flex-grow: 1;
}

.tarif-tab-cta {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.tarif-tab.active .tarif-tab-cta {
  color: var(--green-dark);
}

/* PANELS */
.tarif-panels-section {
  padding-top: 3rem;
}

.tarif-panel {
  animation: fadeInPanel 0.4s ease;
}

.tarif-panel[hidden] {
  display: none;
}

@keyframes fadeInPanel {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.tarif-panel-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--gold);
}

.tarif-panel-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.tarif-panel-header h2 {
  margin: 0;
  font-size: 2rem;
  color: var(--green-dark);
}

.tarif-detail-card {
  background: var(--bg-white);
  border: 1px solid #eee;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.tarif-detail-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--green-dark);
  margin-bottom: 1.25rem;
}

.tarif-info-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1.5rem;
}

.tarif-info-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.tarif-info-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.tarif-quote {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--bg-light);
  border-left: 3px solid var(--gold);
  font-style: italic;
  color: var(--text-gray);
  font-size: 0.95rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.packs-grid.single {
  grid-template-columns: minmax(300px, 480px);
  justify-content: center;
}

.tarif-price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.tarif-price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
}

.tarif-price-list li:last-child {
  border-bottom: none;
}

.tarif-price-list li span {
  color: var(--text-dark);
}

.tarif-price-list li strong {
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
  margin-left: 1rem;
}

.tarif-options-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  padding-top: 0.5rem;
  border-top: 2px solid var(--bg-light);
}

.tarif-options li {
  font-size: 0.9rem !important;
}

/* ============================================
   CONTACT & FAQ PAGE
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-card-whatsapp {
  border: 2px solid #25D366;
  background: linear-gradient(180deg, var(--bg-white) 0%, #f0fdf4 100%);
}

.contact-card-whatsapp a {
  color: #25D366;
  font-weight: 700;
}

.contact-card {
  background: var(--bg-white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.contact-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.contact-card {
  overflow: hidden;
}

.contact-card p {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  text-align: center;
  width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-card a {
  color: var(--gold);
  font-weight: 500;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.contact-card-detail {
  font-size: 0.85rem !important;
  color: var(--text-gray);
}

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

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-item:first-child {
  border-top: 1px solid #eee;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--green-dark);
}

.faq-chevron {
  font-size: 0.75rem;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

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

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

.faq-answer p {
  padding-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-gray);
}

.faq-answer a {
  color: var(--gold);
  font-weight: 500;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .steps-grid::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .packs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tarif-tabs { grid-template-columns: repeat(2, 1fr); }
  .tarif-tab.active::after { display: none; }
}

@media (max-width: 768px) {
  html { font-size: 15px; }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  .container { padding: 0 1.2rem; }

  section { padding: 3.5rem 0; }

  .contact-grid { grid-template-columns: repeat(2, 1fr); }

  /* Header mobile */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    transition: right var(--transition);
    z-index: 998;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 1.1rem 0.5rem;
    font-size: 1.05rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
  }

  /* Désactive le soulignement animé sur mobile (causait un trait qui barre le texte) */
  .nav-links a::after {
    display: none;
  }

  /* État actif propre sur mobile : couleur + fond léger, pas de trait */
  .nav-links a.active {
    color: var(--gold);
    font-weight: 600;
  }

  .menu-toggle {
    display: flex;
    z-index: 999;
  }

  .nav .btn {
    display: none;
  }

  /* Hero mobile */
  .hero {
    min-height: 70vh;
    padding: 7rem 1.5rem 4rem;
  }

  .hero h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  .hero-subtitle { font-size: 1.1rem; }
  .hero-text { font-size: 0.95rem; }

  .hero-logo {
    width: 160px;
    padding: 0.4rem 0.6rem;
    margin-bottom: 1.25rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .packs-grid { grid-template-columns: 1fr; }
  .packs-secondary { grid-template-columns: 1fr; }

  .pack-card.featured {
    transform: none;
  }

  .pack-card.featured:hover {
    transform: translateY(-8px);
  }

  /* Service detail */
  .service-detail-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-detail-content.reverse {
    direction: ltr;
  }

  .service-detail-icon {
    padding: 2rem;
    font-size: 3rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Form */
  .form-container {
    padding: 2rem 1.5rem;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
  }

  /* Page header */
  .page-header {
    padding: 7rem 1.5rem 2.5rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  /* Pricing table responsive */
  .pricing-table {
    display: block;
    overflow-x: auto;
  }

  /* Contact layout */
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.88rem; }
  .btn-lg { padding: 0.85rem 2rem; font-size: 0.95rem; }
  .booking-float { width: 50px; height: 50px; font-size: 1.4rem; bottom: 1.5rem; right: 1.5rem; }
  .whatsapp-float { width: 50px; height: 50px; bottom: 1.5rem; left: 1.5rem; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT PAGE LAYOUT
   ============================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

/* ============================================
   OVERLAY (mobile menu)
   ============================================ */

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 997;
}

.nav-overlay.active {
  display: block;
}

/* ============================================
   CUSTOM NOTE/DISCLAIMER
   ============================================ */

.disclaimer {
  background: var(--bg-light);
  border-left: 4px solid var(--gold);
  padding: 1.2rem 1.5rem;
  margin: 2rem 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9rem;
  color: var(--text-gray);
  font-style: italic;
}

/* ============================================
   HONEYPOT ANTI-SPAM (invisible aux humains)
   ============================================ */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ============================================
   AVIS / TÉMOIGNAGES
   ============================================ */

.rating-banner {
  text-align: center;
  background: linear-gradient(135deg, var(--green-dark), var(--green-medium));
  color: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius);
  margin: 0 auto 2rem;
  max-width: 480px;
}

.rating-stars {
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 0.5rem;
}

.rating-score {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.rating-banner p {
  color: rgba(255,255,255,0.85);
  margin: 0;
  font-size: 0.95rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

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

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  margin: 0 0 1.5rem;
  flex-grow: 1;
}

.testimonial-card blockquote p {
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-medium);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: var(--green-dark);
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}

.testimonial-author span {
  display: block;
  font-size: 0.82rem;
  color: var(--text-gray);
}

/* ============================================
   BLOG (listing)
   ============================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

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

.blog-card-image {
  background: linear-gradient(135deg, var(--green-dark), var(--green-medium));
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C5A55A' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.blog-card-emoji {
  font-size: 4rem;
  position: relative;
  z-index: 1;
}

.blog-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: var(--text-gray);
}

.blog-tag {
  background: var(--gold);
  color: var(--bg-white);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card h2 {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.blog-card h2 a {
  color: var(--green-dark);
  transition: color var(--transition);
}

.blog-card h2 a:hover {
  color: var(--gold);
}

.blog-card p {
  font-size: 0.92rem;
  color: var(--text-gray);
  flex-grow: 1;
  margin-bottom: 1rem;
}

.blog-card-link {
  font-weight: 600;
  color: var(--gold);
  font-size: 0.9rem;
  align-self: flex-start;
  transition: color var(--transition);
}

.blog-card-link:hover {
  color: var(--gold-hover);
}

/* ============================================
   ARTICLE (page individuelle)
   ============================================ */

.article-page {
  background: var(--bg-white);
}

.article-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green-medium));
  color: var(--bg-white);
  padding: 7rem 0 4rem;
  text-align: center;
}

.article-hero .container {
  max-width: 800px;
}

.article-back {
  display: inline-block;
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.article-back:hover {
  color: var(--gold);
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

.article-hero h1 {
  color: var(--bg-white);
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.article-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin: 0;
}

.article-body {
  max-width: 760px;
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.article-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.article-body h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--bg-light);
}

.article-body h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.article-body a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  font-weight: 500;
}

.article-body a:hover {
  color: var(--gold-hover);
  border-color: var(--gold-hover);
}

.article-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.article-list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.75rem;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.article-list li::before {
  content: '\2022';
  position: absolute;
  left: 0.5rem;
  top: 0.4rem;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1;
}

.article-cta {
  max-width: 760px;
  padding: 2rem 2rem 4rem;
}

.article-cta-box {
  background: var(--bg-light);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}

.article-cta-box h3 {
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.article-cta-box p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

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

.article-related {
  max-width: 1100px;
  padding-bottom: 5rem;
}

.article-related h3 {
  text-align: center;
  margin-bottom: 2rem;
}

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

.related-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--green-dark);
  font-weight: 600;
  transition: all var(--transition);
}

.related-link:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.related-emoji {
  font-size: 1.8rem;
  line-height: 1;
}

/* RESPONSIVE blog + témoignages */
@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .testimonials-grid,
  .blog-grid,
  .related-grid { grid-template-columns: 1fr; }
  .article-hero { padding: 6rem 0 3rem; }
  .article-hero h1 { font-size: 1.8rem; }
  .article-body { padding-top: 2.5rem; }
  .article-body p { font-size: 1rem; }
  .article-cta-box { padding: 1.5rem; }
}
