/* ════════════════════════════════════════
   TOKENS & RESET
════════════════════════════════════════ */
:root {
  /* Fond sombre avec teinte verte */
  --void: #060d09;
  --ink: #0a1410;
  --slate: #101e14;
  --edge: rgba(100, 176, 69, 0.09);
  --edge2: rgba(100, 176, 69, 0.18);
  /* Vert principal #64b045 et ses variantes */
  --gold: #64b045;
  --gold-l: #85cc60;
  --gold-d: #4a8432;
  --gold-g: rgba(100, 176, 69, 0.18);
  /* Accent doré chaud pour contraste */
  --teal: #c8e84a;
  --teal-g: rgba(200, 232, 74, 0.1);
  /* Textes */
  --text: #d8e8d2;
  --muted: #4a6644;
  --muted2: #7a9e72;
  --white: #f0f7ec;
  --fd: 'Cormorant Garamond', serif;
  --fb: 'Outfit', sans-serif;
  --fm: 'JetBrains Mono', monospace;
  --r: 14px;
  --tr: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --glow-g: 0 0 40px rgba(100, 176, 69, 0.3);
  --glow-t: 0 0 40px rgba(200, 232, 74, 0.25);
  --sh: 0 24px 60px rgba(0, 0, 0, 0.65);
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--fb);
  background: var(--void);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: var(--ink);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-d);
  border-radius: 3px;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}

/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 70px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--tr);
}
nav.scrolled {
  background: rgba(6, 13, 9, 0.93);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--edge);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-box {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px var(--gold-g);
}
.logo-box svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.logo-txt {
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}
.logo-txt span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted2);
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-lang {
  background: transparent;
  border: 1px solid var(--edge2);
  border-radius: 20px;
  padding: 5px 13px;
  font-family: var(--fm);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted2);
  cursor: pointer;
  transition: var(--tr);
  letter-spacing: 1px;
}
.btn-lang:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-wa {
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: var(--void);
  border: none;
  border-radius: 22px;
  padding: 9px 18px;
  font-family: var(--fb);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--tr);
  letter-spacing: 0.3px;
}
.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-g);
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-burger span {
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--tr);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(6, 13, 9, 0.97);
  backdrop-filter: blur(20px);
  padding: 24px 5%;
  flex-direction: column;
  gap: 0;
  border-bottom: 1px solid var(--edge);
  z-index: 999;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  text-decoration: none;
  color: var(--muted2);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--edge);
  transition: color 0.2s;
}
.mobile-menu a:hover {
  color: var(--gold);
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #020805 0%, #060d09 40%, #0a1610 100%);
}
/* Animated grid */
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(
      0deg,
      var(--teal) 0,
      var(--teal) 1px,
      transparent 1px,
      transparent 72px
    ),
    repeating-linear-gradient(
      90deg,
      var(--teal) 0,
      var(--teal) 1px,
      transparent 1px,
      transparent 72px
    );
  animation: gridShift 20s linear infinite;
}
@keyframes gridShift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(72px);
  }
}

/* Radial glow orbs */
.hero-orb1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 64, 0.12) 0%,
    transparent 70%
  );
  top: -100px;
  right: 10%;
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(13, 212, 200, 0.08) 0%,
    transparent 70%
  );
  bottom: 10%;
  left: 5%;
  pointer-events: none;
  animation: orbFloat 12s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.05);
  }
}
.hero-img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 52%;
  overflow: hidden;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}
.hero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #060d09 0%,
    rgba(6, 13, 9, 0.6) 50%,
    transparent 80%
  );
  z-index: 1;
}
.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #060d09 0%, transparent 40%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 64, 0.1);
  border: 1px solid rgba(201, 168, 64, 0.3);
  border-radius: 24px;
  padding: 6px 16px;
  color: var(--gold-l);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: heroUp 1s 0.1s both;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero h1 {
  font-family: var(--fd);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 22px;
  animation: heroUp 1s 0.25s both;
  letter-spacing: -0.5px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-l);
}
.hero h1 .line-teal {
  color: var(--teal);
}
.hero p {
  font-size: 1rem;
  color: var(--muted2);
  line-height: 1.78;
  margin-bottom: 38px;
  max-width: 500px;
  animation: heroUp 1s 0.38s both;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: heroUp 1s 0.5s both;
}
@keyframes heroUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn-p {
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: var(--void);
  padding: 14px 28px;
  border-radius: 28px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--tr);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.3px;
}
.btn-p:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-g);
}
.btn-o {
  background: transparent;
  color: var(--text);
  padding: 14px 28px;
  border-radius: 28px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid var(--edge2);
  transition: var(--tr);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-o:hover {
  border-color: var(--teal);
  color: var(--teal);
  box-shadow: var(--glow-t);
}
.hero-line {
  position: absolute;
  bottom: 40px;
  left: 5%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: var(--fm);
}
.h-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}

/* ════════════════════════════════════════
   STATS BAR
════════════════════════════════════════ */
.stats {
  background: var(--ink);
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
  padding: 0 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  text-align: center;
  padding: 28px 12px;
  border-right: 1px solid var(--edge);
  position: relative;
}
.stat:last-child {
  border-right: none;
}
.stat::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.6s ease;
}
.stat:hover::after {
  width: 60%;
}
.stat-n {
  font-family: var(--fd);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  text-shadow: 0 0 20px var(--gold-g);
}
.stat-l {
  font-size: 0.75rem;
  color: var(--muted2);
  letter-spacing: 0.5px;
  margin-top: 5px;
  display: block;
}

/* ════════════════════════════════════════
   SECTION BASE
════════════════════════════════════════ */
section {
  padding: 100px 5%;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 168, 64, 0.1);
  border: 1px solid rgba(201, 168, 64, 0.25);
  color: var(--gold-l);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  font-family: var(--fm);
}
.s-title {
  font-family: var(--fd);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--white);
}
.s-sub {
  color: var(--muted2);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 560px;
}

/* ════════════════════════════════════════
   SERVICES
════════════════════════════════════════ */
.services {
  background: var(--ink);
}
.srv-hd {
  text-align: center;
  margin-bottom: 60px;
}
.srv-hd .s-sub {
  margin: 0 auto;
}
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.srv-card {
  background: var(--slate);
  border: 1px solid var(--edge);
  border-radius: var(--r);
  padding: 34px 30px;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}
.srv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.srv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh);
  border-color: var(--edge2);
}
.srv-card:hover::before {
  transform: scaleX(1);
}
.srv-ico {
  width: 54px;
  height: 54px;
  background: rgba(201, 168, 64, 0.1);
  border: 1px solid rgba(201, 168, 64, 0.2);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
  transition: var(--tr);
}
.srv-card:hover .srv-ico {
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  border-color: transparent;
  box-shadow: var(--glow-g);
}
.srv-card h3 {
  font-family: var(--fd);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}
.srv-card p {
  color: var(--muted2);
  font-size: 0.87rem;
  line-height: 1.68;
}

/* ════════════════════════════════════════
   CATALOGUE / LISTINGS — CAROUSEL
════════════════════════════════════════ */
#logements {
  background: var(--void);
}
.cat-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 20px;
}
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ftab {
  padding: 8px 18px;
  border-radius: 22px;
  border: 1px solid var(--edge);
  background: transparent;
  color: var(--muted2);
  font-family: var(--fb);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--tr);
  letter-spacing: 0.3px;
}
.ftab.on,
.ftab:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  border-color: transparent;
  color: var(--void);
  font-weight: 700;
}

/* Carousel wrapper */
.listings-carousel-wrap {
  position: relative;
  overflow: hidden;
}
.listings {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  scrollbar-width: none;
}
.listings::-webkit-scrollbar {
  display: none;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(6, 13, 9, 0.85);
  border: 1px solid var(--edge2);
  color: var(--gold-l);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
  backdrop-filter: blur(10px);
}
.carousel-btn:hover {
  background: var(--gold);
  color: var(--void);
  border-color: transparent;
  box-shadow: var(--glow-g);
}
.carousel-btn-prev {
  left: -12px;
}
.carousel-btn-next {
  right: -12px;
}

/* Carousel dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 22px;
}
.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted);
  border: none;
  cursor: pointer;
  transition: var(--tr);
  padding: 0;
}
.carousel-dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 4px;
}

.card {
  background: var(--slate);
  border: 1px solid var(--edge);
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--tr);
  position: relative;
  flex: 0 0 320px;
  scroll-snap-align: start;
}
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  box-shadow: inset 0 0 0 0 rgba(100, 176, 69, 0);
  transition: box-shadow 0.4s;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(100, 176, 69, 0.35);
  box-shadow:
    var(--sh),
    0 0 40px rgba(100, 176, 69, 0.1);
}
.card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  cursor: pointer;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s ease,
    opacity 0.4s ease;
  position: absolute;
  inset: 0;
}
.card-img:hover img {
  transform: scale(1.07);
  opacity: 0;
}
/* Video overlay on hover */
.card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
  pointer-events: none;
}
.card-img:hover .card-video {
  opacity: 1;
}
.card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 13, 9, 0.75) 0%, transparent 60%);
  z-index: 3;
}
/* Video play hint */
.card-video-hint {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 4;
  background: rgba(100, 176, 69, 0.85);
  color: var(--void);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--fm);
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s;
}
.card-img:hover .card-video-hint {
  opacity: 1;
  transform: translateY(0);
}
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  background: rgba(6, 13, 9, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--edge2);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--fm);
  letter-spacing: 0.5px;
}
.pool-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  background: linear-gradient(135deg, var(--teal), #a8c820);
  color: var(--void);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.avail-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 5;
  border-radius: 20px;
  padding: 3px 9px;
  font-size: 0.65rem;
  font-weight: 600;
  font-family: var(--fm);
}
.avail-badge.on {
  background: rgba(100, 176, 69, 0.2);
  border: 1px solid rgba(100, 176, 69, 0.4);
  color: var(--gold-l);
}
.avail-badge.off {
  background: rgba(255, 80, 80, 0.15);
  border: 1px solid rgba(255, 80, 80, 0.3);
  color: #ff7070;
}
.card-body {
  padding: 20px;
}
.card-loc {
  font-size: 0.72rem;
  color: var(--muted2);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
  font-family: var(--fm);
}
.card-title {
  font-family: var(--fd);
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--white);
}
.card-feats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.feat {
  font-size: 0.72rem;
  color: var(--muted2);
  display: flex;
  align-items: center;
  gap: 3px;
}
.card-ft {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--edge);
}
.price {
  font-family: var(--fd);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--gold);
}
.price-unit {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--muted);
  font-family: var(--fb);
  margin-left: 3px;
}
.btn-s {
  background: rgba(100, 176, 69, 0.12);
  border: 1px solid rgba(100, 176, 69, 0.25);
  color: var(--gold-l);
  padding: 7px 16px;
  border-radius: 18px;
  font-size: 0.77rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--tr);
}
.btn-s:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: var(--void);
  border-color: transparent;
}
.no-listings {
  flex: 0 0 100%;
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  font-size: 0.95rem;
}
.no-listings span {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 12px;
  opacity: 0.4;
}

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about {
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ab-img {
  position: relative;
}
.ab-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--r);
  border: 1px solid var(--edge);
}
.ab-corner {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 160px;
  height: 160px;
  border: 1.5px solid var(--gold);
  border-radius: var(--r);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
.ab-corner2 {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 100px;
  height: 100px;
  border: 1px solid var(--teal);
  border-radius: var(--r);
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}
.about .s-sub {
  margin-bottom: 28px;
}
.ab-vals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.ab-val {
  background: var(--void);
  border: 1px solid var(--edge);
  border-radius: 12px;
  padding: 18px;
  transition: var(--tr);
}
.ab-val:hover {
  border-color: rgba(201, 168, 64, 0.25);
  transform: translateY(-3px);
}
.ab-val h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-l);
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}
.ab-val p {
  font-size: 0.77rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testimonials {
  background: var(--void);
  text-align: center;
}
.tst-hd {
  margin-bottom: 56px;
}
.tst-hd .s-sub {
  margin: 0 auto;
}
.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.tst-card {
  background: var(--slate);
  border: 1px solid var(--edge);
  border-radius: var(--r);
  padding: 30px;
  transition: var(--tr);
  position: relative;
}
.tst-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--fd);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}
.tst-card:hover {
  transform: translateY(-4px);
  border-color: var(--edge2);
  box-shadow: var(--sh);
}
.stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.tst-txt {
  font-family: var(--fd);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 22px;
}
.tst-auth {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ava {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 168, 64, 0.15);
  border: 1px solid rgba(201, 168, 64, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.auth-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--white);
}
.auth-role {
  font-size: 0.73rem;
  color: var(--muted);
}

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
#faq {
  background: var(--ink);
}
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border: 1px solid var(--edge);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open {
  border-color: rgba(201, 168, 64, 0.25);
}
.faq-q {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.2s;
  gap: 14px;
  color: var(--text);
}
.faq-q:hover {
  background: rgba(255, 255, 255, 0.03);
}
.faq-ico {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(201, 168, 64, 0.1);
  border: 1px solid rgba(201, 168, 64, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--tr);
  font-weight: 600;
  font-family: var(--fm);
}
.faq-item.open .faq-ico {
  background: var(--gold);
  color: var(--void);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
  padding: 0 22px;
  color: var(--muted2);
  font-size: 0.87rem;
  line-height: 1.72;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 22px 18px;
}

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact {
  background: var(--void);
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.c-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.c-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--slate);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid var(--edge);
  transition: var(--tr);
}
.c-item:hover {
  border-color: rgba(201, 168, 64, 0.2);
}
.c-ico {
  width: 40px;
  height: 40px;
  background: rgba(201, 168, 64, 0.1);
  border: 1px solid rgba(201, 168, 64, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.c-item h4 {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 3px;
  font-family: var(--fm);
}
.c-item p,
.c-item a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
}
.c-item a:hover {
  color: var(--gold);
}
.c-form {
  background: var(--slate);
  border-radius: var(--r);
  padding: 38px;
  border: 1px solid var(--edge);
  box-shadow: var(--sh);
}
.c-form h3 {
  font-family: var(--fd);
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--white);
}
.fg {
  margin-bottom: 16px;
}
.fg label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted2);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--fm);
}
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--edge);
  border-radius: 9px;
  font-family: var(--fb);
  font-size: 0.87rem;
  color: var(--text);
  background: var(--void);
  transition: border-color 0.2s;
  outline: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--gold);
}
.fg select option {
  background: var(--void);
}
.fg textarea {
  resize: vertical;
  min-height: 90px;
}
.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.btn-sub {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: var(--void);
  border: none;
  border-radius: 25px;
  padding: 14px;
  font-family: var(--fb);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--tr);
  letter-spacing: 0.3px;
}
.btn-sub:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-g);
}

/* ════════════════════════════════════════
   SOCIAL FEED — 3 COLONNES
════════════════════════════════════════ */
.social {
  background: var(--ink);
  text-align: center;
}
.soc-hd {
  margin-bottom: 40px;
}
.soc-hd .s-sub {
  margin: 0 auto;
}

/* 3 colonnes côte à côte */
.soc-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.soc-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.soc-col-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--fm);
  padding: 6px 14px;
  border-radius: 20px;
  width: fit-content;
  margin: 0 auto;
}
.soc-label-fb {
  background: rgba(24, 119, 242, 0.15);
  color: #5b9ef4;
  border: 1px solid rgba(24, 119, 242, 0.25);
}
.soc-label-ig {
  background: rgba(220, 39, 67, 0.12);
  color: #e8677e;
  border: 1px solid rgba(220, 39, 67, 0.2);
}
.soc-label-tk {
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted2);
  border: 1px solid var(--edge2);
}

/* FB embed */
.soc-embed-fb {
  background: var(--slate);
  border: 1px solid var(--edge);
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  min-height: 500px;
}
.soc-embed-fb iframe {
  display: block;
  width: 100%;
  border: none;
}

/* IG placeholder */
.soc-embed-ig {
  background: var(--slate);
  border: 1px solid var(--edge);
  border-radius: 14px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.soc-ig-inner {
  padding: 32px 24px;
  text-align: center;
  color: var(--muted2);
}
.soc-ig-inner .soc-ph-ico {
  font-size: 3rem;
  margin-bottom: 14px;
  opacity: 0.6;
}
.soc-ig-inner p {
  font-size: 0.85rem;
  line-height: 1.65;
}

/* TikTok embed */
.soc-embed-tk {
  background: var(--slate);
  border: 1px solid var(--edge);
  border-radius: 14px;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.soc-embed-tk blockquote {
  width: 100% !important;
  margin: 0 !important;
}

/* Boutons sous chaque colonne */
.soc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 22px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--tr);
  border: 1px solid var(--edge);
  width: 100%;
}
.soc-btn:hover {
  transform: translateY(-2px);
}
.soc-ig {
  background: linear-gradient(
    135deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  color: #fff;
  border-color: transparent;
}
.soc-fb {
  background: #1877f2;
  color: #fff;
  border-color: transparent;
}
.soc-tk {
  background: #010101;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 900px) {
  .soc-row {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background: var(--ink);
  border-top: 1px solid var(--edge);
  color: var(--text);
  padding: 60px 5% 28px;
}
.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.ft-brand p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.72;
  margin: 14px 0 22px;
  max-width: 270px;
}
.ft-socials {
  display: flex;
  gap: 8px;
}
.ft-social-ico {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--edge);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--tr);
}
.ft-social-ico:hover {
  background: var(--gold);
  border-color: transparent;
}
.ft-col h5 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-l);
  margin-bottom: 18px;
  font-family: var(--fm);
}
.ft-col ul {
  list-style: none;
}
.ft-col ul li {
  margin-bottom: 8px;
}
.ft-col ul li a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.84rem;
  transition: color 0.2s;
}
.ft-col ul li a:hover {
  color: var(--gold-l);
}
.ft-bottom {
  border-top: 1px solid var(--edge);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.ft-bottom p {
  color: var(--muted);
  font-size: 0.75rem;
}
.ft-admin-link {
  color: var(--muted);
  font-size: 0.68rem;
  cursor: pointer;
  font-family: var(--fm);
  letter-spacing: 1.5px;
  opacity: 0.5;
  transition: opacity 0.2s;
  text-decoration: none;
  user-select: none;
}
.ft-admin-link:hover {
  opacity: 1;
  color: var(--gold);
}

/* ════════════════════════════════════════
   FLOATING WA
════════════════════════════════════════ */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  animation: bob 3s ease-in-out infinite;
  transition: transform 0.2s;
}
.float-wa:hover {
  transform: scale(1.12) !important;
  animation: none;
}
@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ════════════════════════════════════════
   REVEAL
════════════════════════════════════════ */
.rev {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.rev.vis {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════
   ══════════════════════════════════════
   ADMIN PANEL
   ══════════════════════════════════════
════════════════════════════════════════ */
#adminOverlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(3, 6, 15, 0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  overflow-y: auto;
}
#adminOverlay.open {
  display: flex;
}

/* Login */
.admin-login {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.admin-login-box {
  background: var(--slate);
  border: 1px solid var(--edge2);
  border-radius: 20px;
  padding: 48px 44px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  box-shadow: var(--sh);
}
.admin-login-box h2 {
  font-family: var(--fd);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 6px;
}
.admin-login-box .sub {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 32px;
  font-family: var(--fm);
  letter-spacing: 1px;
}
.admin-login-box input {
  width: 100%;
  padding: 13px 16px;
  background: var(--void);
  border: 1px solid var(--edge2);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--fm);
  font-size: 0.9rem;
  outline: none;
  text-align: center;
  letter-spacing: 4px;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}
.admin-login-box input:focus {
  border-color: var(--gold);
}
.admin-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: var(--void);
  border: none;
  border-radius: 22px;
  padding: 12px;
  font-family: var(--fb);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--tr);
}
.admin-btn:hover {
  box-shadow: var(--glow-g);
  transform: translateY(-2px);
}
.admin-err {
  color: #ff7070;
  font-size: 0.8rem;
  margin-top: 8px;
  display: none;
}

/* Dashboard */
.admin-dash {
  display: none;
  flex-direction: column;
  min-height: 100vh;
}
.admin-dash.open {
  display: flex;
}
.admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid var(--edge);
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 10;
}
.admin-top h1 {
  font-family: var(--fd);
  font-size: 1.5rem;
  color: var(--white);
}
.admin-top h1 span {
  color: var(--gold);
}
.admin-close {
  background: rgba(255, 80, 80, 0.15);
  border: 1px solid rgba(255, 80, 80, 0.3);
  color: #ff8080;
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--fm);
  transition: var(--tr);
}
.admin-close:hover {
  background: rgba(255, 80, 80, 0.3);
}
.admin-body {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 0;
  flex: 1;
}
.admin-list-panel {
  padding: 28px 32px;
  border-right: 1px solid var(--edge);
  overflow-y: auto;
  max-height: calc(100vh - 70px);
}
.admin-form-panel {
  padding: 28px 32px;
  overflow-y: auto;
  max-height: calc(100vh - 70px);
  background: var(--ink);
}
.admin-panel-title {
  font-family: var(--fm);
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-l);
  margin-bottom: 20px;
}
.admin-add-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: var(--void);
  border: none;
  border-radius: 22px;
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--tr);
  margin-bottom: 20px;
  font-family: var(--fb);
  display: flex;
  align-items: center;
  gap: 6px;
}
.admin-add-btn:hover {
  box-shadow: var(--glow-g);
}
.admin-res-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.admin-res-item {
  background: var(--slate);
  border: 1px solid var(--edge);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: var(--tr);
}
.admin-res-item:hover,
.admin-res-item.active {
  border-color: rgba(201, 168, 64, 0.3);
  background: rgba(201, 168, 64, 0.05);
}
.admin-res-item img {
  width: 56px;
  height: 48px;
  object-fit: cover;
  border-radius: 7px;
  border: 1px solid var(--edge);
  flex-shrink: 0;
}
.admin-res-info {
  flex: 1;
  min-width: 0;
}
.admin-res-name {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-res-loc {
  font-size: 0.72rem;
  color: var(--muted2);
  margin-top: 2px;
  font-family: var(--fm);
}
.admin-res-actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.ares-edit,
.ares-del {
  border: none;
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--tr);
  font-family: var(--fm);
}
.ares-edit {
  background: rgba(201, 168, 64, 0.15);
  color: var(--gold-l);
}
.ares-edit:hover {
  background: rgba(201, 168, 64, 0.3);
}
.ares-del {
  background: rgba(255, 80, 80, 0.1);
  color: #ff8080;
}
.ares-del:hover {
  background: rgba(255, 80, 80, 0.25);
}

/* Admin Form */
.admin-form-title {
  font-family: var(--fd);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 22px;
}
.af {
  margin-bottom: 14px;
}
.af label {
  display: block;
  font-size: 0.67rem;
  font-weight: 600;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  font-family: var(--fm);
}
.af input,
.af select,
.af textarea {
  width: 100%;
  padding: 10px 13px;
  background: var(--void);
  border: 1px solid var(--edge);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--fb);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}
.af input:focus,
.af select:focus,
.af textarea:focus {
  border-color: var(--gold);
}
.af select option {
  background: var(--void);
}
.af textarea {
  resize: vertical;
  min-height: 70px;
}
.af-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.af-row3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.feats-check {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.feat-chk {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--void);
  border: 1px solid var(--edge);
  border-radius: 16px;
  padding: 5px 11px;
  cursor: pointer;
  font-size: 0.77rem;
  color: var(--muted2);
  transition: var(--tr);
  user-select: none;
}
.feat-chk input {
  display: none;
}
.feat-chk.checked {
  background: rgba(201, 168, 64, 0.12);
  border-color: rgba(201, 168, 64, 0.35);
  color: var(--gold-l);
}
.admin-photos {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.photo-url-row {
  display: flex;
  gap: 6px;
  align-items: center;
}
.photo-url-row input {
  flex: 1;
}
.photo-url-row .del-photo {
  background: rgba(255, 80, 80, 0.1);
  border: 1px solid rgba(255, 80, 80, 0.2);
  color: #ff8080;
  border-radius: 6px;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: var(--tr);
  font-family: var(--fm);
}
.photo-url-row .del-photo:hover {
  background: rgba(255, 80, 80, 0.25);
}
.add-photo-btn {
  background: transparent;
  border: 1px dashed var(--edge2);
  color: var(--muted2);
  border-radius: 8px;
  padding: 8px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--tr);
  font-family: var(--fb);
  margin-top: 4px;
}
.add-photo-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.toggle-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.toggle {
  width: 40px;
  height: 22px;
  background: var(--void);
  border: 1px solid var(--edge2);
  border-radius: 11px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}
.toggle.on {
  background: var(--teal);
  border-color: var(--teal);
}
.toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.toggle.on::after {
  transform: translateX(18px);
}
.toggle-label {
  font-size: 0.8rem;
  color: var(--muted2);
}
.af-divider {
  height: 1px;
  background: var(--edge);
  margin: 18px 0;
}
.af-save {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  color: var(--void);
  border: none;
  border-radius: 22px;
  padding: 13px;
  font-family: var(--fb);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--tr);
  margin-top: 6px;
}
.af-save:hover {
  box-shadow: var(--glow-g);
}
.af-cancel {
  width: 100%;
  background: transparent;
  border: 1px solid var(--edge2);
  color: var(--muted2);
  border-radius: 22px;
  padding: 11px;
  font-family: var(--fb);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--tr);
  margin-top: 8px;
}
.af-cancel:hover {
  border-color: var(--muted2);
  color: var(--text);
}
.af-msg {
  font-size: 0.78rem;
  text-align: center;
  padding: 8px;
  border-radius: 8px;
  margin-top: 8px;
  display: none;
}
.af-msg.ok {
  background: rgba(13, 212, 200, 0.12);
  color: var(--teal);
}
.af-msg.err {
  background: rgba(255, 80, 80, 0.12);
  color: #ff8080;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1100px) {
  .admin-body {
    grid-template-columns: 1fr;
  }
  .admin-form-panel {
    border-top: 1px solid var(--edge);
  }
}
@media (max-width: 1000px) {
  .srv-grid,
  .tst-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-links {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
  .card {
    flex: 0 0 280px;
  }
}
@media (max-width: 600px) {
  .srv-grid,
  .tst-grid {
    grid-template-columns: 1fr;
  }
  .ft-grid {
    grid-template-columns: 1fr;
  }
  .fg-row,
  .af-row,
  .af-row3 {
    grid-template-columns: 1fr;
  }
  section {
    padding: 70px 5%;
  }
  .hero h1 {
    font-size: 2.6rem;
  }
  .card {
    flex: 0 0 260px;
  }
  .soc-tabs {
    flex-wrap: wrap;
  }
}
