/* =============================================
   MAÎTRE MERYEME SENHAJI KHADIJA — NOTAIRE
   Design Premium — Or / Bleu Nuit
   ============================================= */

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

/* ── CSS Variables ── */
:root {
  --gold: #B8860B;
  --gold-light: #DAA520;
  --gold-soft: #F5E6C8;
  --gold-gradient: linear-gradient(135deg, #B8860B 0%, #DAA520 50%, #E8C547 100%);
  --navy: #0F1B2D;
  --navy-light: #1A2A42;
  --navy-medium: #243B5C;
  --cream: #FDF8F0;
  --cream-dark: #F5EDE0;
  --white: #FFFFFF;
  --text-dark: #1A1A2E;
  --text-medium: #4A4A5A;
  --text-light: #7A7A8A;
  --shadow-sm: 0 2px 8px rgba(15, 27, 45, 0.08);
  --shadow-md: 0 4px 20px rgba(15, 27, 45, 0.12);
  --shadow-lg: 0 8px 40px rgba(15, 27, 45, 0.16);
  --shadow-xl: 0 16px 64px rgba(15, 27, 45, 0.20);
  --shadow-gold: 0 4px 20px rgba(184, 134, 11, 0.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.25s ease;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
  color: var(--navy);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Utility ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--gold-gradient);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--navy);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-medium);
  max-width: 640px;
  line-height: 1.8;
}

.gold-divider {
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  border: none;
  margin: 24px 0;
  border-radius: 2px;
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ── HEADER / NAV ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 15px 0;
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
}

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

.main-nav a:not(.nav-cta) {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-medium);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.3px;
}

.main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
}

.main-nav a:not(.nav-cta):hover {
  color: var(--navy);
}

.main-nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--white) !important;
  background-color: #BE8C1B;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background-color: #9c7316;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(190, 140, 27, 0.3);
}

.nav-cta::after {
  display: none !important;
}


/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition-fast);
  border-radius: 2px;
}

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

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

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

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--navy);
  padding-top: 80px; /* Offset for the fixed header */
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15, 27, 45, 0.92) 0%,
    rgba(15, 27, 45, 0.75) 40%,
    rgba(15, 27, 45, 0.60) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 134, 11, 0.15);
  border: 1px solid rgba(184, 134, 11, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-badge span {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold-light);
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title .gold {
  color: var(--gold-light);
  font-style: italic;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--gold-gradient);
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  background: transparent;
  padding: 16px 36px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-3px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ── ABOUT ── */
.about {
  padding: 120px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background: var(--gold-gradient);
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0.3;
}

.about-stats {
  position: absolute;
  bottom: -30px;
  left: 30px;
  display: flex;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.stat-item {
  padding: 20px 28px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.about-text p {
  color: var(--text-medium);
  margin-bottom: 20px;
  text-align: justify;
  font-size: 0.98rem;
  line-height: 1.85;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.about-feature:hover {
  background: var(--gold-soft);
}

.about-feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.85rem;
}

.about-feature span {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* ── SERVICES ── */
.services {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 70px;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.1), rgba(218, 165, 32, 0.1));
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  font-size: 1.6rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold-gradient);
  transform: scale(1.1);
}

.service-card:hover .service-icon svg {
  color: var(--white);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  transition: var(--transition-fast);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--navy);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-medium);
  line-height: 1.75;
}

/* 2-column last row centering */
.services-grid .service-card:nth-child(4) {
  grid-column: 1 / 2;
}
.services-grid .service-card:nth-child(5) {
  grid-column: 2 / 3;
}
/* ── POURQUOI NOUS CHOISIR ── */
.why-us {
  padding: 120px 0;
  background: var(--white);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-badge {
  display: inline-block;
  background: #f0f3f6;
  color: #777;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.why-us-content h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #634224; /* Marron foncé */
  line-height: 1.2;
  margin-bottom: 12px;
}

.why-us-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-us-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.why-us-list li {
  position: relative;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #111;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.5;
  padding-left: 18px;
}

.why-us-list li::before {
  content: '•';
  color: #111;
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  top: -4px;
}

.btn-brown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #634224;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
}

.btn-brown:hover {
  background-color: #4a311b;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(99, 66, 36, 0.3);
}

.why-us-image {
  display: flex;
  justify-content: center;
}

.why-us-img {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.why-us-img:hover {
  transform: translateY(-5px);
}
/* ── FAQ ── */
.faq {
  padding: 80px 0 100px;
  background-color: #634224; /* Couleur marron du fond */
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header .section-title {
  color: var(--white);
  margin-bottom: 0;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.faq-details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.faq-details:last-child {
  border-bottom: none;
}

.faq-summary {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  background: transparent;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  transition: color 0.3s ease;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::before {
  content: '+';
  display: inline-block;
  width: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  margin-right: 12px;
  transition: color 0.3s ease;
  line-height: 1;
}

/* Open state styles */
.faq-details[open] .faq-summary {
  color: #d18236; /* Texte orange façon image */
}

.faq-details[open] .faq-summary::before {
  content: '\2212'; /* Signe moins */
  color: #d18236;
}

.faq-content {
  background: var(--white);
  padding: 24px 30px 24px 56px;
  color: #111;
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-content p {
  margin: 0;
}

/* ── ACTUALITÉS ── */
.actualites {
  padding: 120px 0;
  background: var(--white);
}

.actualites-header {
  text-align: center;
  margin-bottom: 70px;
}

.actualites-header .section-subtitle {
  margin: 0 auto;
}

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

.actualite-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

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

.actualite-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.actualite-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.actualite-card:hover .actualite-image img {
  transform: scale(1.05);
}

.actualite-content {
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.actualite-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: inline-block;
}

.actualite-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}

.actualite-content h3 a {
  color: var(--navy);
}

.actualite-content h3 a:hover {
  color: var(--gold);
}

.actualite-content p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.actualite-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: var(--transition-fast);
  margin-top: auto;
}

.actualite-link:hover {
  color: var(--gold);
  gap: 12px;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.08), transparent 70%);
  border-radius: 50%;
}

.testimonials .section-label {
  color: var(--gold-light);
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 70px;
}

.testimonials-header .section-subtitle {
  margin: 0 auto;
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  border-color: rgba(184, 134, 11, 0.3);
}

.testimonial-quote-icon {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.3;
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.testimonial-info h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--gold-light);
}

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

/* ── CONTACT ── */
.contact {
  padding: 120px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  padding-right: 20px;
}

.contact-info .section-subtitle {
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px;
  background: var(--cream);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.contact-item:hover {
  background: var(--gold-soft);
  transform: translateX(5px);
}

.contact-item-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  border-radius: var(--radius-sm);
  color: var(--white);
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
}

.contact-item-text h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-item-text p,
.contact-item-text a {
  font-size: 0.92rem;
  color: var(--text-medium);
  line-height: 1.5;
}

.contact-item-text a:hover {
  color: var(--gold);
}

.contact-form-wrapper {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
}

.contact-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-form-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.12);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  background: var(--gold-gradient);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ── TOAST NOTIFICATIONS ── */
.toast-container {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  min-width: 320px;
  max-width: 450px;
  animation: toastSlideIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  position: relative;
  overflow: hidden;
}

.toast.toast-exit {
  animation: toastSlideOut 0.4s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}

.toast-success {
  background: linear-gradient(135deg, #1a472a, #2d6a4f);
  color: #d4edda;
  border-left: 4px solid #52c41a;
}

.toast-error {
  background: linear-gradient(135deg, #5c1a1a, #8b2c2c);
  color: #fde2e2;
  border-left: 4px solid #ff4d4f;
}

.toast-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.toast-message {
  flex: 1;
  line-height: 1.5;
}

.toast-close {
  background: none;
  border: none;
  color: inherit;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  padding: 4px;
  flex-shrink: 0;
}

.toast-close:hover {
  opacity: 1;
}

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 0 0 0 var(--radius-md);
  animation: toastProgress 5s linear forwards;
}

.toast-success .toast-progress {
  background: #52c41a;
}

.toast-error .toast-progress {
  background: #ff4d4f;
}

@keyframes toastSlideIn {
  from {
    transform: translateX(120%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes toastSlideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(120%);
    opacity: 0;
  }
}

@keyframes toastProgress {
  from { width: 100%; }
  to { width: 0%; }
}

/* ── FORM VALIDATION STATES ── */
.form-group .field-error {
  display: none;
  font-size: 0.8rem;
  color: #e53935;
  margin-top: 6px;
  font-weight: 500;
  align-items: center;
  gap: 5px;
}

.form-group .field-error.visible {
  display: flex;
}

.form-group input.input-error,
.form-group textarea.input-error,
.form-group select.input-error {
  border-color: #e53935 !important;
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.12) !important;
}

.form-group input.input-success {
  border-color: #43a047 !important;
  box-shadow: 0 0 0 3px rgba(67, 160, 71, 0.12) !important;
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.btn-submit .spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 480px) {
  .toast-container {
    top: 16px;
    right: 16px;
    left: 16px;
  }
  .toast {
    min-width: auto;
    max-width: none;
  }
}

/* ── MAP ── */
.map-section {
  width: 100%;
  height: 350px;
  filter: grayscale(30%);
  transition: filter 0.4s ease;
}

.map-section:hover {
  filter: grayscale(0%);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  padding: 60px 0 30px;
}

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

.footer-brand .logo-main {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.footer-brand .logo-sub {
  margin-bottom: 16px;
  display: block;
}

.footer-description {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--gold-gradient);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-column h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-column ul li {
  margin-bottom: 12px;
}

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

.footer-column ul li a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  color: var(--gold-light);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image img {
    height: 400px;
  }

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

  .services-grid .service-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav a {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

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

  .about-grid {
    gap: 40px;
  }
  
  .why-us-content {
      text-align: center;
  }
  
  .why-us-list li {
      text-align: left;
  }
  
  .why-us-content h2 {
      font-size: 2rem;
  }

  .about-stats {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 20px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-image-accent {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .actualites-grid {
    grid-template-columns: 1fr;
  }

  .services-grid .service-card:nth-child(5) {
    grid-column: auto;
    max-width: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .about, .services, .testimonials, .contact {
    padding: 80px 0;
  }

  .stat-item {
    padding: 14px 16px;
  }

  .stat-number {
    font-size: 1.4rem;
  }
}
