/* ==========================================================================
   ÉLÉGANCE SÉJOURS — STYLESHEET
   Direction : Piste 2 — Contemporain Épuré & Sérénité
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES & DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Nuances Bleu Nuit & Ardoise */
  --navy: #0d1b2a;
  --navy-2: #142438;
  --navy-soft: #1e334f;
  --navy-glass: rgba(13, 27, 42, 0.88);
  --navy-overlay: rgba(13, 27, 42, 0.72);

  /* Nuances Dorées Champagne & Or Brossé */
  --gold: #c29b4a;
  --gold-light: #dfc486;
  --gold-pale: #f5eedb;
  --gold-gradient: linear-gradient(135deg, #dfc486 0%, #c29b4a 100%);
  --gold-gradient-hover: linear-gradient(135deg, #ebd49f 0%, #b38b3a 100%);
  --gold-glow: rgba(194, 155, 74, 0.25);
  --gold-border: rgba(194, 155, 74, 0.28);

  /* Nuances de Fond Contemporaines (Sérénité & Épure) */
  --bg-page: #fbfbfa;
  --bg-surface: #ffffff;
  --bg-muted: #f4f1ea;
  --bg-soft: #eae5dc;
  --cream: #fbfbfa;
  --cream-2: #f4f1ea;
  --white: #ffffff;

  /* Typographie & Couleurs de Texte */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --text: #1b222c;
  --text-soft: #596574;
  --text-light: #8b96a5;
  --text-white: #ffffff;
  --text-muted-dark: #b2c0d2;

  /* Bordures, Arrondis & Ombres */
  --border-light: rgba(13, 27, 42, 0.07);
  --border-card: rgba(13, 27, 42, 0.05);
  --border-dark: rgba(255, 255, 255, 0.12);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius: 18px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(13, 27, 42, 0.04);
  --shadow: 0 16px 36px -12px rgba(13, 27, 42, 0.09);
  --shadow-lg: 0 24px 50px -16px rgba(13, 27, 42, 0.14);
  --shadow-gold: 0 10px 24px -6px rgba(194, 155, 74, 0.38);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg-page);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & COMMON UTILITIES
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.22;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
  background: rgba(194, 155, 74, 0.08);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gold-border);
}

.section {
  padding: 105px 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 58px;
}

.section-head h2 {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  color: var(--navy);
  margin-top: 6px;
  text-wrap: balance;
}

.section-head p {
  color: var(--text-soft);
  margin-top: 16px;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 400;
  text-wrap: balance;
}

.divider {
  width: 54px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: var(--radius-full);
  margin: 18px auto;
  border: 0;
}

.divider.left {
  margin: 18px 0;
}

/* --------------------------------------------------------------------------
   4. BUTTONS & INTERACTIVE ELEMENTS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), background var(--transition-fast), border-color var(--transition-fast);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--navy);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -6px rgba(194, 155, 74, 0.48);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

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

/* --------------------------------------------------------------------------
   5. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
header#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background var(--transition-normal), padding var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  border-bottom: 1px solid transparent;
}

header#site-header.scrolled {
  background: rgba(251, 251, 250, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px -15px rgba(13, 27, 42, 0.08);
  border-bottom: 1px solid var(--border-light);
  padding: 13px 0;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

.brand:hover .brand-mark {
  transform: scale(1.05);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  line-height: 1.1;
}

.brand-text .b1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.22rem;
  color: #ffffff;
  letter-spacing: -0.01em;
  transition: color var(--transition-fast);
}

.brand-text .b2 {
  font-family: var(--font-body);
  font-size: 0.64rem;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  font-weight: 700;
  transition: color var(--transition-fast);
}

header#site-header.scrolled .brand-text .b1 {
  color: var(--navy);
}

header#site-header.scrolled .brand-text .b2 {
  color: var(--gold);
}

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

nav.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

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

nav.main-nav a:hover {
  color: #ffffff;
}

nav.main-nav a:hover::after {
  width: 100%;
}

header#site-header.scrolled nav.main-nav a {
  color: var(--text-soft);
}

header#site-header.scrolled nav.main-nav a:hover {
  color: var(--navy);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-cta .btn {
  padding: 10px 20px;
  font-size: 0.86rem;
}

.nav-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  padding: 10px 18px;
}

header#site-header.scrolled .nav-cta .btn-outline {
  border-color: var(--border-light);
  color: var(--navy);
  background: var(--bg-muted);
}

header#site-header.scrolled .nav-cta .btn-outline:hover {
  background: var(--bg-soft);
  border-color: var(--navy);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform var(--transition-normal), opacity var(--transition-normal), background var(--transition-fast);
}

header#site-header.scrolled .burger span {
  background: var(--navy);
}

/* Burger Animation quand ouvert */
nav.main-nav.open ~ .nav-cta .burger span:nth-child(1),
.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--navy) !important;
}

nav.main-nav.open ~ .nav-cta .burger span:nth-child(2),
.burger.active span:nth-child(2) {
  opacity: 0;
}

nav.main-nav.open ~ .nav-cta .burger span:nth-child(3),
.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--navy) !important;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.88) 0%, rgba(13, 27, 42, 0.72) 100%),
              url('https://images.unsplash.com/photo-1541371301799-86ad7e6e44cd?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  color: #ffffff;
  padding: 130px 0 90px;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--navy), transparent);
  pointer-events: none;
}

.hero-inner {
  max-width: 780px;
  position: relative;
  z-index: 2;
}

.hero-inner .eyebrow {
  background: rgba(194, 155, 74, 0.15);
  border-color: rgba(194, 155, 74, 0.4);
  color: var(--gold-light);
}

.hero h1 {
  color: #ffffff;
  font-size: clamp(2.4rem, 5.2vw, 3.8rem);
  line-height: 1.14;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
  background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  color: #e5edf5;
  font-size: 1.12rem;
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 38px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 20px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.hero-stats > div {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 24px;
  border-radius: var(--radius);
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.hero-stats > div:hover {
  transform: translateY(-3px);
  border-color: var(--gold-border);
}

.hero-stats div strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.9rem;
  color: var(--gold-light);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 4px;
}

.hero-stats div span {
  color: #b8c8da;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   7. TRUST STRIP
   -------------------------------------------------------------------------- */
.trust-strip {
  background: var(--navy);
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-strip ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-strip li {
  color: var(--gold-light);
  letter-spacing: 0.28em;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 20px;
}

.trust-strip li:not(:last-child)::after {
  content: '•';
  color: rgba(194, 155, 74, 0.4);
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   8. ABOUT SECTION (CASSIA & JEAN-PAUL)
   -------------------------------------------------------------------------- */
.about {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--border-light);
}

.about-media .badge {
  position: absolute;
  bottom: -22px;
  left: -20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius);
  padding: 18px 24px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--gold-border);
}

.about-media .badge .lbl {
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.4;
}

.about-text h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 1.02rem;
}

.about-list {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.about-list li {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 0.98rem;
  color: var(--text);
  font-weight: 500;
}

.about-list li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gold);
  background: rgba(194, 155, 74, 0.1);
  padding: 4px;
  border-radius: 50%;
  box-sizing: content-box;
}

/* --------------------------------------------------------------------------
   9. SERVICES SECTION
   -------------------------------------------------------------------------- */
#prestations {
  background: var(--bg-muted);
}

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

.service-card {
  background: var(--bg-surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-card);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.service-card .img-wrap {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.service-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.service-card:hover .img-wrap img {
  transform: scale(1.06);
}

.service-card .icon-badge {
  position: absolute;
  bottom: -20px;
  left: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  border: 2px solid #ffffff;
}

.service-card .icon-badge svg {
  width: 22px;
  height: 22px;
  color: var(--navy);
}

.service-card .content {
  padding: 34px 26px 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.service-card p {
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   10. WHY US SECTION
   -------------------------------------------------------------------------- */
.why {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(194, 155, 74, 0.12), transparent 50%),
              radial-gradient(circle at bottom left, rgba(30, 51, 79, 0.4), transparent 50%);
  pointer-events: none;
}

.why .section-head h2 {
  color: #ffffff;
}

.why .section-head p {
  color: var(--text-muted-dark);
}

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

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: left;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform var(--transition-normal), border-color var(--transition-normal), background var(--transition-normal);
}

.why-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--gold-border);
}

.why-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: var(--shadow-gold);
}

.why-card .icon svg {
  width: 22px;
  height: 22px;
  color: var(--navy);
}

.why-card .num {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  display: block;
}

.why-card h3 {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 14px;
  font-weight: 600;
}

.why-card p {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* --------------------------------------------------------------------------
   11. PREMIERS RETOURS (LANCEMENT & TÉMOIGNAGES)
   -------------------------------------------------------------------------- */
#retours {
  background: var(--bg-muted);
}

.launch-card-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.launch-card {
  background: var(--bg-surface);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-card);
  border-top: 3px solid var(--gold);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.launch-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
  padding: 8px;
}

.launch-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.launch-card-text {
  font-size: 1.06rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 30px;
  max-width: 600px;
  font-weight: 500;
  text-wrap: balance;
}

.launch-card .btn {
  padding: 14px 30px;
}

/* --------------------------------------------------------------------------
   12. PROCESS SECTION (COMMENT ÇA MARCHE)
   -------------------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-card {
  text-align: center;
  position: relative;
  padding: 0 10px;
}

.process-card .circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--gold);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), border-color var(--transition-normal), background var(--transition-normal), color var(--transition-normal);
}

.process-card:hover .circle {
  transform: scale(1.08);
  border-color: var(--gold);
  background: var(--navy);
  color: var(--gold-light);
}

.process-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.process-card p {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

.process-line {
  position: absolute;
  top: 36px;
  left: calc(50% + 50px);
  right: calc(-50% + 50px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold-light) 0 8px, transparent 8px 16px);
  z-index: 1;
}

.process-card:last-child .process-line {
  display: none;
}

/* --------------------------------------------------------------------------
   13. CTA BANNER
   -------------------------------------------------------------------------- */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.9) 0%, rgba(13, 27, 42, 0.8) 100%),
              url('https://images.unsplash.com/photo-1700157381190-e9fc5ddab91e?auto=format&fit=crop&w=1920&q=80') center/cover;
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
}

.cta-banner .eyebrow {
  color: var(--gold-light);
  background: rgba(194, 155, 74, 0.15);
  border-color: rgba(194, 155, 74, 0.35);
}

.cta-banner h2 {
  color: #ffffff;
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  max-width: 720px;
  margin: 12px auto 18px;
  letter-spacing: -0.02em;
}

.cta-banner p {
  color: #dbe4ee;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.75;
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   14. ENGAGEMENTS / TRUST CARDS
   -------------------------------------------------------------------------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testi-card {
  background: var(--bg-surface);
  border-radius: var(--radius);
  padding: 38px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-card);
  border-top: 3px solid var(--gold);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-gold);
}

.testi-card h3 {
  font-size: 1.2rem !important;
  margin-bottom: 12px !important;
  font-weight: 600;
}

.testi-card p {
  color: var(--text-soft) !important;
  font-size: 0.95rem !important;
  line-height: 1.75 !important;
}

/* --------------------------------------------------------------------------
   15. FAQ ACCORDION SECTION
   -------------------------------------------------------------------------- */
.faq-section {
  background: var(--bg-page);
}

.faq-wrap {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item.open {
  border-color: var(--gold-border);
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast), background var(--transition-fast);
}

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

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition-normal);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 26px 24px;
}

.faq-answer p {
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.75;
}

/* --------------------------------------------------------------------------
   16. CONTACT SECTION & FORM
   -------------------------------------------------------------------------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-card);
}

.contact-info {
  background: var(--navy);
  color: #ffffff;
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(194, 155, 74, 0.15), transparent 60%);
  pointer-events: none;
}

.contact-info h3 {
  color: #ffffff;
  font-size: 1.6rem;
  margin-bottom: 12px;
  position: relative;
}

.contact-info > p {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 36px;
  position: relative;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
  position: relative;
  align-items: flex-start;
}

.contact-item .ic {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.contact-item:hover .ic {
  background: rgba(194, 155, 74, 0.2);
  border-color: var(--gold);
}

.contact-item .ic svg {
  width: 18px;
  height: 18px;
  color: var(--gold-light);
}

.contact-item .lbl {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 3px;
}

.contact-item .val {
  font-size: 0.96rem;
  color: #f1f5fa;
  overflow-wrap: anywhere;
  min-width: 0;
  font-weight: 500;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  position: relative;
}

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

.socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.socials a svg {
  width: 17px;
  height: 17px;
  color: #ffffff;
}

.qr-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 16px 20px;
  position: relative;
}

.qr-block img {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  background: #ffffff;
  padding: 4px;
  flex-shrink: 0;
}

.qr-block .lbl {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qr-block .val {
  color: #e5edf5;
  font-size: 0.86rem;
  line-height: 1.5;
}

.contact-form {
  padding: 60px 48px;
  background: var(--bg-surface);
}

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

.contact-form > p {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

.field input,
.field select,
.field textarea {
  border: 1.5px solid var(--border-light);
  background: var(--bg-muted);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--text);
  transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

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

.contact-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  padding: 16px;
  font-size: 0.98rem;
}

/* --------------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------------- */
footer {
  background: var(--navy);
  color: #cfd8e3;
  padding-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand-text .b1 {
  color: #ffffff;
}

.footer-brand p {
  margin-top: 18px;
  font-size: 0.9rem;
  line-height: 1.75;
  color: #a4b3c4;
  max-width: 290px;
}

footer h4 {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 600;
}

footer ul li {
  margin-bottom: 13px;
}

footer ul li a {
  font-size: 0.92rem;
  color: #b2c0d2;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

footer ul li a:hover {
  color: var(--gold-light);
  transform: translateX(3px);
}

.footer-bottom {
  padding: 28px 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.82rem;
  color: #7b8b9e;
}

/* --------------------------------------------------------------------------
   18. STICKY FLOATING ACTION BUTTONS (WHATSAPP & CALL)
   -------------------------------------------------------------------------- */
.floating-contact {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 950;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.floating-contact.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.float-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 10px 26px -6px rgba(13, 27, 42, 0.35);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
  text-decoration: none;
}

.float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -4px rgba(13, 27, 42, 0.45);
}

.float-whatsapp {
  background: #25d366;
  color: #ffffff;
}

.float-whatsapp svg {
  width: 19px;
  height: 19px;
}

.float-call {
  background: var(--navy);
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
}

.float-call svg {
  width: 17px;
  height: 17px;
}

/* --------------------------------------------------------------------------
   19. BACK TO TOP BUTTON
   -------------------------------------------------------------------------- */
.back-top {
  position: fixed;
  bottom: 84px;
  right: 28px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(13, 27, 42, 0.9);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-dark);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--transition-normal), transform var(--transition-normal), background var(--transition-fast);
  z-index: 900;
  cursor: pointer;
}

.back-top:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   20. REVEAL ANIMATIONS
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

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

  .about-media {
    order: 2;
  }

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

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

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

  .launch-card {
    padding: 38px 24px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }

  .process-line {
    display: none;
  }

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

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

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

@media (max-width: 860px) {
  nav.main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 82%;
    max-width: 340px;
    background: var(--bg-page);
    flex-direction: column;
    padding: 110px 36px 40px;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    box-shadow: -10px 0 40px rgba(13, 27, 42, 0.15);
    z-index: 1000;
  }

  nav.main-nav.open {
    transform: translateX(0);
  }

  nav.main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  nav.main-nav a {
    color: var(--navy);
    font-size: 1.05rem;
    font-weight: 600;
  }

  .nav-cta .btn-outline {
    display: none;
  }

  .burger {
    display: flex;
  }

  .section {
    padding: 76px 0;
  }

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

  .hero-stats {
    gap: 14px;
  }

  .hero-stats > div {
    flex: 1 1 calc(50% - 14px);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

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

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

  .trust-strip ul {
    gap: 24px;
  }

  .trust-strip li {
    font-size: 0.74rem;
    gap: 12px;
  }

  .contact-info,
  .contact-form {
    padding: 44px 28px;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 0.98rem;
  }

  .faq-answer-inner {
    padding: 0 20px 20px;
  }

  .floating-contact {
    bottom: 20px;
    right: 20px;
    gap: 8px;
  }

  .float-btn {
    padding: 10px 14px;
    font-size: 0.82rem;
  }

  .back-top {
    bottom: 74px;
    right: 20px;
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 480px) {
  .hero-stats > div {
    flex: 1 1 100%;
  }

  .nav-cta .btn-gold {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .brand-text .b1 {
    font-size: 1.05rem;
  }

  .brand-text .b2 {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .about-media .badge {
    left: 10px;
    bottom: -16px;
    padding: 14px 18px;
  }

  .float-call span {
    display: none;
  }

  .float-call {
    padding: 10px;
  }
}
