/* ============================================================
   RETOUR EN AMHARIQUE — Stylesheet
   Ethiopian-inspired luxury design
   ============================================================ */

/* ========== CSS VARIABLES ========== */
:root {
  --gold: #C8A45C;
  --gold-light: #E8D5A3;
  --gold-dark: #9A7B3A;
  --coffee: #1E1208;
  --coffee-mid: #2C1810;
  --coffee-light: #4A2E20;
  --cream: #F5F0E8;
  --cream-dark: #E8DFD0;
  --warm-white: #FDFAF5;
  --text-dark: #1A0E08;
  --text-mid: #5C4A3A;
  --text-light: #8A7A6A;
  --green-eth: #1A6B3C;
  --red-eth: #B22234;
  --yellow-eth: #FCDD09;
  --shadow-soft: 0 4px 30px rgba(44, 24, 16, 0.08);
  --shadow-card: 0 8px 40px rgba(44, 24, 16, 0.1);
  --shadow-hover: 0 12px 50px rgba(200, 164, 92, 0.2);
  --radius: 16px;
  --radius-sm: 8px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, sans-serif;
  --font-ethiopic: 'Noto Serif Ethiopic', serif;
}

/* ========== RESET ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; }

/* ========== NOISE OVERLAY ========== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.8rem 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
  background: rgba(253, 250, 245, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(44, 24, 16, 0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--cream);
  transition: color 0.3s;
}
.nav.scrolled .nav-logo { color: var(--coffee); }

.nav-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 2px 10px rgba(200, 164, 92, 0.3);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: rgba(245, 240, 232, 0.75);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s;
  position: relative;
}
.nav.scrolled .nav-links a { color: var(--text-mid); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--coffee) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 100px;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(200, 164, 92, 0.3);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(200, 164, 92, 0.4);
}
.nav-cta::after { display: none !important; }

/* Mobile toggle */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
  z-index: 1001;
}

.nav-mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  position: absolute;
  left: 0;
  transition: all 0.3s;
  border-radius: 2px;
}
.nav.scrolled .nav-mobile-toggle span { background: var(--coffee); }

.nav-mobile-toggle span:nth-child(1) { top: 0; }
.nav-mobile-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-mobile-toggle span:nth-child(3) { bottom: 0; }

.nav-mobile-toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }
.nav-mobile-toggle.active span { background: var(--cream) !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--coffee) 0%, var(--coffee-mid) 35%, var(--coffee-light) 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(200,164,92,0.4) 50px, rgba(200,164,92,0.4) 51px),
    repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(200,164,92,0.4) 50px, rgba(200,164,92,0.4) 51px);
}

.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 164, 92, 0.12) 0%, transparent 70%);
  top: 5%; right: -8%;
  animation: heroFloat 8s ease-in-out infinite;
}

.hero-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 164, 92, 0.08) 0%, transparent 70%);
  bottom: 10%; left: -5%;
  animation: heroFloat 10s ease-in-out infinite reverse;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-25px) scale(1.04); }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text-side { animation: slideUp 0.9s ease-out 0.2s both; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 164, 92, 0.12);
  border: 1px solid rgba(200, 164, 92, 0.25);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-tag-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  color: var(--cream);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 480px;
  font-weight: 300;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--coffee);
  padding: 0.95rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(200, 164, 92, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 164, 92, 0.45);
}
.btn-arrow { transition: transform 0.3s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid rgba(200, 164, 92, 0.35);
  color: var(--gold-light);
  padding: 0.95rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  background: transparent;
}
.btn-secondary:hover {
  background: rgba(200, 164, 92, 0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* Hero card */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideUp 0.9s ease-out 0.5s both;
}

.hero-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(200, 164, 92, 0.15);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 400px;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-eth), var(--yellow-eth), var(--red-eth));
}

.hero-card-logo {
  display: block;
  width: 160px;
  height: auto;
  margin: 0 auto 1.5rem;
  border-radius: 12px;
  opacity: 0.95;
}

.hero-card-ethiopic {
  font-family: var(--font-ethiopic);
  font-size: 2.8rem;
  color: var(--gold);
  text-align: center;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.hero-card-divider {
  width: 50px; height: 2px;
  background: var(--gold);
  margin: 0 auto 1.25rem;
  opacity: 0.4;
}

.hero-card-text {
  color: rgba(245, 240, 232, 0.55);
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.6;
  font-style: italic;
  font-family: var(--font-display);
}

.hero-card-langs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200, 164, 92, 0.1);
}

.hero-card-lang {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}
.hero-card-arrow { color: var(--gold); font-size: 1.2rem; }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section { padding: 6rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.section-label-line { width: 30px; height: 1.5px; background: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.8;
  font-weight: 300;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--warm-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}

.about-image-wrapper { position: relative; }

.about-image {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-image-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #3D2317 0%, #5A3828 50%, #2C1810 100%);
}

.about-image-ethiopic {
  font-family: var(--font-ethiopic);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.1;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.about-logo-img {
  position: relative;
  z-index: 2;
  width: 160px; height: auto;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.about-image-name {
  position: relative; z-index: 2;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
  font-weight: 600;
}

.about-image-role {
  position: relative; z-index: 2;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 0.4rem;
}

.about-image-accent {
  position: absolute;
  top: -12px; right: -12px;
  width: 90px; height: 90px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  opacity: 0.25;
}

.about-text p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.about-text .highlight { color: var(--coffee); font-weight: 700; }

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}

.about-value {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
  transition: transform 0.3s;
}
.about-value:hover { transform: translateX(4px); }
.about-value-icon { font-size: 1.2rem; }
.about-value-text { font-size: 0.88rem; font-weight: 600; color: var(--coffee); }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--cream); position: relative; }
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.services-header { text-align: center; margin-bottom: 4rem; }
.services-header .section-subtitle { margin: 0 auto; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.service-card {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(200, 164, 92, 0.2);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(200,164,92,0.12), rgba(200,164,92,0.04));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--coffee);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.service-desc {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features { display: flex; flex-direction: column; gap: 0.45rem; }

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-mid);
}
.service-check { color: var(--gold-dark); font-weight: 700; }

/* ============================================================
   TARIFS
   ============================================================ */
.tarifs { background: var(--warm-white); }
.tarifs-header { text-align: center; margin-bottom: 3rem; }
.tarifs-header .section-subtitle { margin: 0 auto; }

.tarifs-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tarifs-tab {
  padding: 0.65rem 1.4rem;
  border-radius: 100px;
  border: 1.5px solid var(--cream-dark);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.3s;
}
.tarifs-tab:hover { border-color: var(--gold); color: var(--gold-dark); }
.tarifs-tab.active { background: var(--coffee); color: var(--cream); border-color: var(--coffee); }

.tarifs-panel { display: none; }
.tarifs-panel.active { display: block; animation: fadeInUp 0.4s ease; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.tarifs-table-wrapper { max-width: 680px; margin: 0 auto; }
.tarifs-table { width: 100%; border-collapse: collapse; }

.tarifs-table thead th {
  text-align: left;
  padding: 1rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  border-bottom: 2px solid var(--cream-dark);
}

.tarifs-table tbody td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--cream);
  font-size: 0.95rem;
}

.tarifs-table tbody tr { transition: background 0.2s; }
.tarifs-table tbody tr:hover { background: var(--cream); }

.tarif-label { color: var(--text-dark); font-weight: 500; }
.tarif-price { color: var(--gold-dark); font-weight: 700; font-size: 1.05rem; }

.tarifs-note {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  color: var(--text-mid);
  font-size: 0.87rem;
  line-height: 1.8;
  border-left: 3px solid var(--gold);
}
.tarifs-note strong { color: var(--coffee); }

/* ============================================================
   PROCESSUS
   ============================================================ */
.process {
  background: linear-gradient(160deg, var(--coffee) 0%, var(--coffee-light) 100%);
  position: relative;
  overflow: hidden;
}

.process-header { text-align: center; }
.process .section-title { color: var(--cream); }
.process .section-subtitle { color: rgba(245,240,232,0.55); margin: 0 auto; }
.process .section-label { color: var(--gold-light); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(12.5% + 30px);
  right: calc(12.5% + 30px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(200,164,92,0.2), var(--gold), rgba(200,164,92,0.2), var(--gold));
  z-index: 1;
}

.process-step { text-align: center; position: relative; }

.process-step-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 700;
  position: relative; z-index: 2;
  background: var(--coffee);
  transition: all 0.3s;
}
.process-step:hover .process-step-num { background: var(--gold); color: var(--coffee); }

.process-step-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.process-step-desc {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.45);
  line-height: 1.6;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--warm-white); }
.contact-header { text-align: center; margin-bottom: 1rem; }
.contact-header .section-subtitle { margin: 0 auto; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  margin-top: 3rem;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--coffee);
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  margin-bottom: 0.65rem;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.contact-item:hover { background: var(--cream-dark); transform: translateX(4px); }

.contact-item-icon {
  width: 42px; height: 42px;
  background: var(--warm-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-item-label { font-size: 0.78rem; color: var(--text-light); font-weight: 500; }
.contact-item-value { font-size: 0.95rem; font-weight: 600; color: var(--coffee); }

/* Contact form */
.contact-form {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--coffee);
  margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1.15rem; }

.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  background: var(--warm-white);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text-dark);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,164,92,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); opacity: 0.7; }

.form-group textarea { min-height: 110px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--coffee);
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(200,164,92,0.3);
  margin-top: 0.5rem;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,164,92,0.45); }
.form-submit:active { transform: translateY(0); }

.form-success {
  text-align: center;
  padding: 1rem;
  margin-top: 1rem;
  background: rgba(26, 107, 60, 0.1);
  border: 1px solid rgba(26, 107, 60, 0.2);
  border-radius: var(--radius-sm);
  color: var(--green-eth);
  font-weight: 600;
  font-size: 0.9rem;
  animation: fadeInUp 0.4s ease;
}

.form-error {
  padding: 1rem;
  margin-bottom: 1rem;
  background: rgba(178, 34, 52, 0.08);
  border: 1px solid rgba(178, 34, 52, 0.2);
  border-radius: var(--radius-sm);
  color: var(--red-eth);
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.6;
  animation: fadeInUp 0.4s ease;
}

.form-group input.input-error,
.form-group select.input-error,
.form-group textarea.input-error {
  border-color: var(--red-eth);
  box-shadow: 0 0 0 3px rgba(178, 34, 52, 0.08);
}

/* Spinner */
.form-spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2.5px solid rgba(30, 18, 8, 0.25);
  border-top-color: var(--coffee);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 0.4rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none !important;
}

/* ============================================================
   RÉSERVATION APPEL — CALENDLY
   ============================================================ */
.rdv { background: var(--cream); }

.rdv-header { text-align: center; margin-bottom: 3rem; }
.rdv-header .section-subtitle { margin: 0 auto; }

.rdv-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}

/* Calendly widget wrapper */
.rdv-calendly-wrapper {
  background: var(--warm-white);
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.calendly-inline-widget {
  border-radius: var(--radius);
}

/* Info cards */
.rdv-calendly-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rdv-info-card {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--cream-dark);
  transition: all 0.3s;
}

.rdv-info-card:hover {
  box-shadow: var(--shadow-soft);
  border-color: rgba(200,164,92,0.2);
  transform: translateY(-2px);
}

.rdv-info-card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.rdv-info-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--coffee);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.rdv-info-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .rdv-container {
    grid-template-columns: 1fr;
  }
  .rdv-calendly-info {
    flex-direction: row;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 0.5rem;
  }
  .rdv-info-card {
    min-width: 220px;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .rdv-calendly-info {
    flex-direction: column;
  }
  .rdv-info-card { min-width: auto; }
  .calendly-inline-widget { min-height: 600px !important; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--coffee); padding: 4rem 2rem 2rem; }

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(200,164,92,0.1);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  font-weight: 600;
}

.footer-brand-desc {
  color: rgba(245,240,232,0.45);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  color: rgba(245,240,232,0.45);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 0.3rem 0;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-text { font-size: 0.8rem; color: rgba(245,240,232,0.3); }

.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal span {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.3);
  cursor: pointer;
  transition: color 0.3s;
}
.footer-legal span:hover { color: var(--gold-light); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin: 0 auto 2.5rem; }
  .hero-buttons { justify-content: center; }
  .hero-visual { margin-top: 2rem; }
  .hero-card { margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrapper { max-width: 380px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .process-steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--coffee);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; color: var(--cream) !important; }
  .nav-mobile-toggle { display: block; }
  .hero { min-height: auto; }
  .hero-content { padding: 7rem 1.5rem 3rem; }
  .section { padding: 4rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .tarifs-tabs { gap: 0.35rem; }
  .tarifs-tab { padding: 0.5rem 1rem; font-size: 0.82rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-card { padding: 2rem 1.5rem; }
  .hero-card-ethiopic { font-size: 2.2rem; }
  .contact-form { padding: 1.5rem; }
  .process-steps { grid-template-columns: 1fr; }
}