/* ============================
   ABSANA — Custom Styles
   ============================ */

:root {
  --gold: #D4A017;
  --gold-light: #F0C040;
  --gold-dark: #A07810;
  --red: #C0392B;
  --dark: #0D0D0D;
  --dark-2: #1A1A1A;
  --dark-3: #252525;
  --border: #2E2E2E;
  --text: #FFFFFF;
  --text-muted: #AAAAAA;
}

* { scroll-behavior: smooth; box-sizing: border-box; }

body {
  background-color: var(--dark);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* ============================
   NAVBAR
   ============================ */
#navbar {
  background: rgba(10, 10, 10, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(46, 46, 46, 0.6);
  transition: all 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.nav-link {
  position: relative;
  color: #ccc;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
  border-radius: 1px;
}
.nav-link:hover,
.nav-link.active { color: var(--gold); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.footer-link {
  color: #888;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
  display: block;
  padding: 3px 0;
}
.footer-link:hover { color: var(--gold); }
.footer-link-static { color: #888; font-size: 0.85rem; display: block; padding: 3px 0; }

/* ============================
   LOGO
   ============================ */
.logo-text {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  line-height: 1;
}
.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  font-weight: 400;
  display: block;
  margin-top: -2px;
  -webkit-text-fill-color: var(--text-muted);
}

/* ============================
   BUTTONS
   ============================ */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #000 !important;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none !important;
  display: inline-block;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  font-family: 'Poppins', sans-serif;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 160, 23, 0.4);
  filter: brightness(1.1);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold) !important;
  font-weight: 700;
  padding: 10px 25px;
  border-radius: 6px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none !important;
  display: inline-block;
  font-size: 0.875rem;
  font-family: 'Poppins', sans-serif;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #000 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 160, 23, 0.4);
}

.btn-red {
  background: linear-gradient(135deg, #8B1A14, var(--red), #E74C3C);
  color: #fff !important;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none !important;
  display: inline-block;
  font-size: 0.875rem;
  font-family: 'Poppins', sans-serif;
}
.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192, 57, 43, 0.4);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: #fff !important;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-family: 'Poppins', sans-serif;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  filter: brightness(1.1);
}

/* ============================
   CARDS
   ============================ */
.card-dark {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.35s;
  overflow: hidden;
}
.card-dark:hover {
  border-color: rgba(212, 160, 23, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(212, 160, 23, 0.12);
}

.value-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 24px;
  text-align: center;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
}
.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(212, 160, 23, 0.15);
}

/* ============================
   SECTION LABELS
   ============================ */
.section-tag {
  display: inline-block;
  background: rgba(212, 160, 23, 0.12);
  color: var(--gold);
  border: 1px solid rgba(212, 160, 23, 0.3);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.gold-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 2px;
  margin: 12px 0 20px;
}

/* ============================
   HERO
   ============================ */
.hero-section {
  min-height: 100vh;
  background: radial-gradient(ellipse at 20% 50%, rgba(212, 160, 23, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(192, 57, 43, 0.05) 0%, transparent 50%),
              linear-gradient(180deg, #000000 0%, #0D0D0D 100%);
  position: relative;
  overflow: hidden;
}

/* Grid pattern overlay */
.grid-bg {
  background-image:
    linear-gradient(rgba(212, 160, 23, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 160, 23, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ============================
   PARTICLES
   ============================ */
.particles-container {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: particle-rise linear infinite;
}
@keyframes particle-rise {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.15; }
  90%  { opacity: 0.08; }
  100% { transform: translateY(-120px) scale(1); opacity: 0; }
}

/* ============================
   FLYING PLANE
   ============================ */
.flying-icon {
  position: absolute;
  font-size: 1.8rem;
  animation: fly-across linear infinite;
  pointer-events: none;
  filter: drop-shadow(0 0 6px rgba(212,160,23,0.5));
  opacity: 0;
}
.flying-icon.plane { animation-duration: 18s; top: 25%; animation-delay: 0s; }
.flying-icon.ship  { animation-duration: 28s; top: 70%; animation-delay: 8s; font-size: 1.5rem; }
.flying-icon.truck { animation-duration: 22s; top: 55%; animation-delay: 14s; font-size: 1.4rem; }

@keyframes fly-across {
  0%   { transform: translateX(-120px); opacity: 0; }
  5%   { opacity: 0.35; }
  95%  { opacity: 0.35; }
  100% { transform: translateX(calc(100vw + 120px)); opacity: 0; }
}

/* ============================
   SCROLL REVEAL
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* Staggered delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* ============================
   STATS
   ============================ */
.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* ============================
   SERVICE ICON
   ============================ */
.service-icon-wrap {
  width: 62px;
  height: 62px;
  background: rgba(212, 160, 23, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all 0.3s;
  flex-shrink: 0;
}
.card-dark:hover .service-icon-wrap {
  background: rgba(212, 160, 23, 0.18);
  border-color: var(--gold);
  transform: scale(1.08) rotate(-3deg);
}

/* ============================
   TICKER
   ============================ */
.ticker-wrapper {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
  background-size: 200% auto;
  animation: gold-shift 4s linear infinite;
  padding: 10px 0;
  overflow: hidden;
}
@keyframes gold-shift {
  to { background-position: 200% center; }
}
.ticker-inner {
  display: flex;
  animation: ticker-scroll 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item {
  padding: 0 30px;
  color: #000;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================
   NETWORK MAP
   ============================ */
.route-svg .route-line {
  stroke: var(--gold);
  stroke-dasharray: 7 4;
  animation: dash-anim 2.5s linear infinite;
  opacity: 0.55;
}
@keyframes dash-anim { to { stroke-dashoffset: -44; } }

.route-svg .route-dot-hub {
  fill: var(--gold);
  animation: hub-pulse 2s ease-in-out infinite;
}
@keyframes hub-pulse {
  0%, 100% { r: 8; opacity: 1; }
  50%       { r: 13; opacity: 0.5; }
}

.route-svg .route-dot {
  fill: var(--gold);
  animation: node-pulse 2.5s ease-in-out infinite;
}
@keyframes node-pulse {
  0%, 100% { r: 4; opacity: 0.9; }
  50%       { r: 7; opacity: 0.5; }
}

.moving-dot {
  fill: var(--gold-light);
  filter: drop-shadow(0 0 4px var(--gold));
}

/* ============================
   PARTNER BADGES
   ============================ */
.partner-badge {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 18px;
  transition: all 0.3s;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: default;
}
.partner-badge:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 160, 23, 0.05);
  transform: translateY(-2px);
}

/* ============================
   COUNTRY / REGION TAGS
   ============================ */
.country-tag {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  cursor: default;
}
.country-tag:hover {
  border-color: var(--gold);
  background: rgba(212, 160, 23, 0.05);
  transform: translateX(4px);
}

.region-pill {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: all 0.3s;
  cursor: default;
}
.region-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================
   VIDEO SECTION
   ============================ */
.video-wrap {
  border: 2px solid rgba(212, 160, 23, 0.35);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(212, 160, 23, 0.08), 0 20px 60px rgba(0,0,0,0.5);
}
.video-wrap video {
  display: block;
  width: 100%;
  background: #000;
}

/* ============================
   PDF VIEWER
   ============================ */
.pdf-wrap {
  border: 1px solid rgba(212, 160, 23, 0.25);
  border-radius: 10px;
  overflow: hidden;
  background: var(--dark-3);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.pdf-wrap iframe {
  display: block;
  width: 100%;
  border: none;
}

/* ============================
   FORM
   ============================ */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-input,
.form-select,
.form-textarea {
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: #fff;
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
  font-size: 0.9rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: 'Poppins', sans-serif;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}
.form-input::placeholder,
.form-textarea::placeholder { color: #555; }
.form-select option { background: var(--dark-2); color: #fff; }
.form-textarea { resize: vertical; min-height: 120px; }

.form-error {
  color: var(--red);
  font-size: 0.78rem;
  margin-top: 4px;
  display: none;
}
.form-input.invalid,
.form-select.invalid,
.form-textarea.invalid {
  border-color: var(--red);
}
.form-input.invalid + .form-error,
.form-select.invalid + .form-error,
.form-textarea.invalid + .form-error { display: block; }

/* ============================
   MOBILE MENU
   ============================ */
.hamburger-lines { cursor: pointer; display: flex; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger-lines span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger-lines.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger-lines.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-lines.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  background: rgba(10,10,10,0.98);
  border-top: 1px solid var(--border);
  padding: 16px;
}
.mobile-menu.open { display: block; }
.mobile-menu .nav-link { display: block; padding: 10px 8px; font-size: 1rem; }

/* ============================
   SCROLL TO TOP
   ============================ */
#scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--gold);
  color: #000;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: bold;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
  z-index: 998;
  box-shadow: 0 4px 15px rgba(212, 160, 23, 0.4);
}
#scroll-top.show { opacity: 1; pointer-events: auto; }
#scroll-top:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(212, 160, 23, 0.5); }

/* ============================
   PAGE HERO BANNER
   ============================ */
.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #000 0%, #0D0D0D 60%, #140800 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,160,23,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,160,23,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-accent {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,160,23,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
  background: linear-gradient(180deg, #111111 0%, #000000 100%);
  border-top: 1px solid var(--border);
}

/* ============================
   PULSE GLOW (gold)
   ============================ */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(212,160,23,0.3); }
  50%       { box-shadow: 0 0 25px rgba(212,160,23,0.6), 0 0 50px rgba(212,160,23,0.2); }
}
.glow-gold { animation: glow-pulse 3s ease-in-out infinite; }

/* ============================
   FAQ ACCORDION
   ============================ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(212,160,23,0.4); }
.faq-question {
  background: var(--dark-2);
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s;
  -webkit-user-select: none;
  user-select: none;
}
.faq-question:hover { background: rgba(212,160,23,0.05); }
.faq-icon {
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  background: var(--dark-3);
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 16px 20px; }

/* ============================
   CONTACT INFO CARDS
   ============================ */
.contact-info-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
}
.contact-info-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(212,160,23,0.1);
}
.contact-icon {
  width: 58px;
  height: 58px;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
}

/* ============================
   STEP CARDS (Devis)
   ============================ */
.step-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  position: relative;
  transition: all 0.3s;
}
.step-card:hover { border-color: rgba(212,160,23,0.4); transform: translateY(-4px); }
.step-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.6;
}

/* ============================
   ALERT / NOTICE
   ============================ */
.notice-gold {
  background: rgba(212,160,23,0.08);
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.notice-gold .notice-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }

/* ============================
   HERO SLIDER
   ============================ */
.hero-section { height: 100vh; min-height: 620px; }

.hero-slider {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.4s ease;
  background-size: cover;
  background-position: center;
  background-color: var(--dark);
  display: flex;
  align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.4) 100%);
  z-index: 0;
}
.hero-slide-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 60px;
}

/* Slide dots */
.slide-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 20px;
  background: rgba(255,255,255,0.3);
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  cursor: default;
}
.slide-dot.active {
  background: var(--gold);
  width: 36px;
}

/* ============================
   IMAGE SLOTS
   ============================ */
.img-slot {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--dark-3);
  border: 2px dashed rgba(212,160,23,0.2);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.img-slot:hover { border-color: rgba(212,160,23,0.4); }
.img-slot img {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  display: block;
}
.img-slot-ph {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 1;
  padding: 20px;
  text-align: center;
}
.img-slot-ph svg { color: rgba(212,160,23,0.25); }
.img-slot-ph .ph-label { color: #444; font-size: 0.8rem; }
.img-slot-ph .ph-path { color: rgba(212,160,23,0.4); font-size: 0.7rem; font-family: monospace; background:rgba(0,0,0,0.3); padding:3px 8px; border-radius:4px; }

/* Card image top (for index.html service cards) */
.card-img-top {
  height: 190px;
  position: relative;
  overflow: hidden;
  background: var(--dark-3);
  border-bottom: 1px solid var(--border);
}
.card-img-top img { width:100%; height:100%; object-fit:cover; display:block; }
.card-img-top-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.card-img-top-ph svg { color: rgba(212,160,23,0.2); }
.card-img-top-ph span { color: #3a3a3a; font-size: 0.72rem; }

/* ============================
   LOGO SLOTS (Partners)
   ============================ */
.logo-slot {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  gap: 8px;
  transition: all 0.3s;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.logo-slot::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.3s;
}
.logo-slot:hover { border-color: rgba(212,160,23,0.4); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(212,160,23,0.08); }
.logo-slot:hover::before { transform: scaleX(1); }
.logo-slot img { max-height: 44px; max-width: 130px; object-fit: contain; filter: grayscale(60%) brightness(0.8); transition: filter 0.3s; }
.logo-slot:hover img { filter: grayscale(0%) brightness(1); }
.logo-slot .logo-name { color: #666; font-size: 0.78rem; font-weight: 600; }
.logo-slot .logo-ph-icon { color: rgba(212,160,23,0.2); margin-bottom: 4px; }

/* ============================
   FLAG ICONS
   ============================ */
.fi {
  width: 28px !important;
  height: 21px;
  border-radius: 3px;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* ============================
   SVG ICON WRAP (replacement for emoji wrap)
   ============================ */
.svg-icon-wrap {
  width: 62px;
  height: 62px;
  background: rgba(212,160,23,0.07);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: var(--gold);
  flex-shrink: 0;
}
.card-dark:hover .svg-icon-wrap {
  background: rgba(212,160,23,0.15);
  border-color: var(--gold);
  transform: scale(1.08) rotate(-3deg);
}

/* Tarification icon wrap (larger) */
.tarif-icon-wrap {
  width: 70px;
  height: 70px;
  background: rgba(212,160,23,0.07);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  transition: all 0.3s;
}
.card-dark:hover .tarif-icon-wrap {
  background: rgba(212,160,23,0.15);
  border-color: var(--gold);
}

/* Pricing table icon */
.price-table-icon {
  width: 44px;
  height: 44px;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

/* ============================
   ALTERNATING SERVICE LAYOUT
   ============================ */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.service-row:last-child { border-bottom: none; }
.service-row.reverse .service-text { order: 2; }
.service-row.reverse .service-visual { order: 1; }

@media (max-width: 1024px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0;
  }
  .service-row.reverse .service-text,
  .service-row.reverse .service-visual { order: unset; }
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 768px) {
  .stat-number { font-size: 2.2rem; }
  .hero-section { min-height: 90vh; }
  .page-hero { padding: 100px 0 40px; }
}
