/* RESET GLOBAL - VERSION PRO */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100vw; /* Fòse lajè a pa janm depase ekran an */
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%; /* Evite tèks la chanje gwosè pou kont li sou iPhone */
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: #eef1f5; /* Yon koulè limyè pou background, sa fè kontni an plis klè */
  color: #fff;
  line-height: 1.5;
}

/* ===============================
   ANIMATIONS ON SCROLL (GLOBAL)
================================ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Variantes */
.reveal-left,
.reveal-right {
  opacity: 0;
  will-change: transform, opacity;
  transition:
    transform 1.35s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 1.35s ease;
}

.reveal-left {
  transform: translateX(-90px);
}

.reveal-right {
  transform: translateX(90px);
}

.reveal-zoom {
  opacity: 0;
  transform: scale(0.88);
  transition:
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.1s ease;
  will-change: transform, opacity;
}

.reveal-left.show,
.reveal-right.show,
.reveal-zoom.show {
  opacity: 1;
  transform: none;
}

.stagger > * {
  opacity: 0;
  transform: translateY(30px);
}

.stagger.show > * {
  animation: staggerFade 0.6s ease forwards;
}

.stagger.show > *:nth-child(1) { animation-delay: 0.1s; }
.stagger.show > *:nth-child(2) { animation-delay: 0.2s; }
.stagger.show > *:nth-child(3) { animation-delay: 0.3s; }
.stagger.show > *:nth-child(4) { animation-delay: 0.4s; }

@keyframes staggerFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   NAVBAR
========================= */
.navbar {
  background: #e9eef4;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: nowrap; /* pa kite li kraze sou liy */
}

/* =========================
   LOGO
========================= */
.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #0f2f55;
  transition: transform 0.2s ease;
}

.logo a:hover {
  transform: scale(1.03);
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  overflow: hidden;         /* FÒK SA LA pou imaj la koupe pwòp */
  display: flex;
  align-items: center;
  justify-content: center;
  /*background: #1e88e5;       Si imaj pa chaje, background parèt */
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.logo-icon img.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* Imaj la ranpli nèt san blanci */
  border-radius: 0;         /* retire awondi imaj la */
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo strong {
  font-size: 18px;
  font-weight: 700;
}

.logo small {
  font-size: 12px;
  color: #0f2f55;
  opacity: 0.75;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .logo-icon {
    width: 40px;
    height: 40px;
  }
}


/* =========================
   MENU LINKS
========================= */
.menu {
  display: flex;
  align-items: center;
  gap: 25px; /* Yon ti espas anplis pou l respire */
}

.menu a {
  text-decoration: none;
  color: #0f2f55;
  font-weight: 500; /* Mwen moute l yon ti kras pou l pi lizib */
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

/* Stil pou liy anba a (Hover ak Active) */
.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 3px; /* Yon ti kras pi pwès pou l parèt byen */
  background: #1e88e5;
  border-radius: 10px; /* Sa rann pwent liy lan won, sa bay plis klas */
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Lè w pase sourit la sou li */
.menu a:hover {
  color: #1e88e5;
}

.menu a:hover::after {
  width: 100%;
}

/* --- SA SE PATI "PRO" A POU ACTIVE --- */
.menu a.active {
  color: #1e88e5;
  font-weight: 500; /* Mete l pi gra pou moun nan konnen se la l ye */
}

.menu a.active::after {
  width: 100%; /* Liy lan ap toujou parèt nèt */
  box-shadow: 0 2px 8px rgba(30, 136, 229, 0.4); /* Yon ti efè limyè anba liy lan */
}

.custom-select {
  position: relative;
  width: 163px;
  font-family: inherit;
}

.custom-select-btn {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;  /* BORDER RADIUS sou bouton */
  background: #e9eef4;
  color: #0f2f55;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-select-options {
  display: none;
  position: absolute;
  top: 105%;
  left: 0;
  width: 100%;
  background: #e9eef4;
  border-radius: 10px;  /* BORDER RADIUS sou lis opsyon */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  z-index: 999;
}

.custom-select-options a {
  display: block;
  padding: 12px 16px;
  color: #0f2f55;
  text-decoration: none;
  transition: background 0.2s;
}

.custom-select-options a:hover {
  background: #d0e4ff;
}

/* Show options on click */
.custom-select.active .custom-select-options {
  display: block;
}


/* =========================
   ACTIONS
========================= */
.actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.login {
  text-decoration: none;
  color: #0f2f55;
  font-weight: 500;
}

.login:hover {
  text-decoration: underline;
}

/* =========================
   BUTTONS
========================= */
.btn {
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: #ff7a18;
  color: white;
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 122, 24, 0.35);
}

/* =========================
   LANGUAGE SELECTOR
========================= */
.language {
  position: relative;
}

.lang-btn {
  background: transparent;
  border: 1px solid #cbd5e1;
  padding: 8px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #0f2f55;
}

.lang-menu {
  position: absolute;
  top: 115%;
  right: 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  list-style: none;
  min-width: 120px;
  display: none;
  overflow: hidden;
}

.lang-menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  text-decoration: none;
  color: #0f2f55;
  font-size: 14px;
}

.lang-menu li a:hover {
  background: #e9eef4;
}

.language.active .lang-menu {
  display: block;
}

/* =========================
   HAMBURGER MENU
========================= */
/* Hamburger button */
.menu-toggle {
  display: none; /* default: kache sou desktop */
  background: none;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* SVG nan bouton */
.menu-toggle svg {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

/* Hover efekt */
.menu-toggle:hover svg {
  transform: scale(1.05);
}

/* MEDIA QUERY - montre bouton sèlman sou ekran piti (mobile/tablet) */
@media (max-width: 1000px) {
  .menu-toggle {
    display: flex; /* montre bouton sou mobile */
  }

  .nav-content {
    flex-wrap: wrap; /* pèmèt kraze liy sou mobil */
  }
  /* Fè meni prensipal la kolòn sou mobil */
  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #e9eef4;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    display: flex;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: all 0.35s ease;
  }

  .menu a {
    margin: 10px 0;
    font-size: 16px;
  }

  .menu-toggle {
    display: flex;
  }

  .menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* Ajiste select-container sou mobil */
  .select-container {
    width: 90%;
    margin: 10px 0;
  }
}

.hamburger {
  width: 24px;
  height: 2px;
  background: #0f2f55;
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: #0f2f55;
  left: 0;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

/* =========================
   ANIMATIONS
========================= */

/* MENU MOBILE */
/* MENU DESKTOP */
.menu {
  display: flex;
  gap: 20px;
  opacity: 1;
  transform: none;
}
.menu a {
  transition: color 0.3s ease;
}

/* LANGUAGE DROPDOWN */
.lang-menu {
  opacity: 0;
  transform: translateY(-8px) scale(0.97);
  transition: all 0.25s ease;
}

.language.active .lang-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.navbar.scrolled {
  box-shadow: 0 12px 30px rgba(15, 47, 85, 0.12);
}

/* =========================
   ULTRA PREMIUM EFFECTS
========================= */

/* NAVBAR GLASS EFFECT */
.navbar {
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(15, 47, 85, 0.08);
}

/* BUTTON MICRO INTERACTION */
.btn.primary {
  position: relative;
  overflow: hidden;
}

.btn.primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: translateX(-100%);
}

.btn.primary:hover::after {
  transform: translateX(100%);
  transition: transform 0.6s ease;
}

/* LANG BUTTON HOVER */
.lang-btn:hover {
  background: rgba(30, 136, 229, 0.08);
}

/* MENU LINK HOVER SOFT */
.menu a {
  transition: color 0.2s ease;
}

.menu a:hover {
  color: #1e88e5;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1000px) {
  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #e9eef4;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;

    /* état fermé */
    display: flex;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: all 0.35s ease;
  }

  .menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu a {
    margin: 10px 0;
    font-size: 16px;
  }

  .menu-toggle {
    display: block;
  }

  .actions {
    gap: 10px;
  }

  .hamburger,
  .hamburger::before,
  .hamburger::after {
    background: #0f2f55;
  }
}



/* ============================
   ROOT VARIABLES
============================ */
:root {
  --bg-dark: #0f2f55;
  --bg-light: #1e88e5;
  --text-main: #ffffff;
  --text-muted: #dbeafe;
  --accent: #f97316;
  --card-bg: #ffffff;
  --border: rgba(255,255,255,0.1);
}

/* ============================
   HERO SECTION
============================ */
.hero {
  background: linear-gradient(135deg, #0f2f55, #1e88e5);
  padding: 80px 0;
  color: var(--text-main);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 50px;
}

/* ========== HERO TEXT ========== */
.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-text h1 span {
  color: var(--accent);
}

.hero-text p {
  margin-top: 18px;
  font-size: 18px;
  color: var(--text-muted);
}

.badge1 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.15);
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 20px;
}

/* ========== FEATURES ========== */
.features {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.features span {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
}

/* ========== BUTTON ========== */
.btn.primary2 {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 26px;
  background: var(--accent);
  color: #fff;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
}

/* ========== STATS ========== */
.stats {
  margin-top: 35px;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.stat-item strong {
  font-size: 26px;
  display: block;
  font-weight: 700;
}

/* VISUAL */
.hero-visual {
  display: flex;
  justify-content: center;
}

.card {
  background: #ff7a18;
  width: 260px;
  height: 260px;
  border-radius: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cube {
  font-size: 70px;
}

.tag {
  position: absolute;
  background: white;
  color: #0f2f55;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: bold;
}

.amazon {
  top: -10px;
  right: 20px;
}

.shein {
  bottom: -10px;
  left: 20px;
}

.truck {
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}

.cube.delivery-svg img {
  width: 50px;
  height: 50px;
}

/* Animation Flotan PRO */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
  50% { box-shadow: 0 30px 60px rgba(255,122,24,0.3); }
}

@keyframes tag-float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-5px) scale(1.05); }
}

@keyframes cube-spin {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}

/* Aplike animation yo */
.hero-visual {
  animation: float 4s ease-in-out infinite;
}

.card {
  animation: pulse-glow 3s ease-in-out infinite;
  perspective: 1000px; /* Pou spin 3D */
}

.tag.amazon, .tag.shein, .tag.truck {
  animation: tag-float 2s ease-in-out infinite;
  animation-delay: 0.3s;
}

.cube {
  animation: cube-spin 8s linear infinite;
  transform-style: preserve-3d;
}

/* ============================
   RESPONSIVE
============================ */

/* TABLET (<= 1024px) */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .features, .stats {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 40px;
  }

  .hero-text h1 {
    font-size: 40px;
  }
}

/* MOBILE (<= 768px) */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 32px;
  }

  .features span {
    font-size: 13px;
  }

  .stats {
    gap: 15px;
  }

  .stat-item strong {
    font-size: 22px;
  }

  .card {
    width: 260px;
    height: 320px;
  }
}

/* SMALL PHONE (<= 480px) */
@media (max-width: 480px) {
  .hero {
    padding: 50px 0;
  }

  .hero-text h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .p {
    font-size: 15px;
  }

  .features {
    gap: 10px;
  }

  .card {
    width: 240px;
    height: 300px;
  }
}

/* STEPS SECTION */
.steps {
  background: #f7f9fc;
  padding: 90px 0;
  text-align: center;
  color: #0f2f55;
}

.section-tag {
  color: #ff7a18;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 13px;
}

.steps h2 {
  font-size: 36px;
  margin: 15px 0;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto 50px;
  opacity: 0.8;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.step-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(255,122,24,0.15);
}

.step-icon {
  background: #fff1e6;
  color: #ff7a18;
  width: 55px;
  height: 55px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.step-card p {
  font-size: 14px;
  opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

:root {
  --primary-color: #f97316; /* Zoranj lan */
  --text-dark: #1e293b;
  --text-light: #64748b;
  --bg-light: #f8fafc;
}

.testimonials {
  padding: 80px 20px;
  background-color: var(--bg-light);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

.sub-title {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 10px;
}

.main-title {
  font-size: 36px;
  color: var(--text-dark);
  font-weight: 800;
  margin-bottom: 10px;
}

.desc {
  color: var(--text-light);
  margin-bottom: 50px;
}

.testimonial-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap; /* Pou li ka responsive sou telefòn */
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); /* Lonbraj dou */
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px); /* Ti mouvman lè w pase sou li */
}

.quote-icon {
  font-size: 50px;
  color: #ffedd5;
  font-family: Georgia, serif;
  line-height: 0;
  margin-bottom: 20px;
}

.stars {
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 20px;
}

.feedback {
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
  margin-bottom: 30px;
  min-height: 80px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar {
  width: 50px;
  height: 50px;
  background: #1d4ed8;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.details .name {
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.details .location {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}

.cta-section {
  /* Background ble fonse ak efè limyè nan mitan */
  background: radial-gradient(circle at center, #1e4b8a 0%, #0a2540 100%);
  padding: 80px 20px;
  text-align: center;
  color: white;
  font-family: 'Inter', sans-serif; /* Oswa Segoe UI */
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Stil pou ti badj la */
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 30px;
  backdrop-filter: blur(5px);
}

/* Tit la */
.cta-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

/* Deskripsyon an */
.cta-desc {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* Gwoup bouton yo */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

/* Bouton zoranj la */
.btn-primary {
  background-color: #ff7a1a;
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #e66a15;
}

/* Bouton transparan an */
.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Tèks piti anba a */
.cta-footer {
  font-size: 14px;
  opacity: 0.6;
}

/* Mobile responsive */
@media (max-width: 600px) {
  .cta-title {
    font-size: 32px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* RESET & FONTS */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* CTA SECTION STYLE */
.cta-section {
  background: radial-gradient(circle at center, #1a4f8a 0%, #051d40 100%);
  padding: 100px 20px;
  text-align: center;
  color: white;
}

.cta-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 50px;
  display: inline-block;
  font-size: 14px;
  margin-bottom: 30px;
}

.cta-title { font-size: 45px; font-weight: 800; margin-bottom: 20px; }
.cta-desc { font-size: 18px; opacity: 0.8; margin-bottom: 40px; }

.cta-buttons { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }

.btn-orange {
  background: #ff7a1a;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.3s;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: bold;
}

.cta-footer-text { font-size: 13px; opacity: 0.6; }

/* FOOTER STYLE */
.main-footer {
  background-color: #051d40;
  color: #cbd5e1;
  padding: 80px 20px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container { max-width: 1200px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  flex-direction: column; /* pou logo + text pi bèl sou mobil */
  align-items: flex-start;
  gap: 15px;
  color: white;
}

.logo-box {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;         /* FÒK SA LA pou imaj la koupe pwòp */
  display: flex;
  align-items: center;
  justify-content: center;
  /*background: #1e88e5;       Si imaj pa chaje, background parèt */
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.logo-box .logo-img-footer {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* Imaj la ranpli nèt san blanci */
  border-radius: 0;         /* retire awondi imaj la */
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .logo-box {
    width: 40px;
    height: 40px;
  }
}

.footer-about { font-size: 15px; line-height: 1.6; margin-bottom: 25px; }

.social-links { display: flex; gap: 15px; }
.social-icon {
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, 0.05);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 { color: white; margin-bottom: 25px; font-size: 18px; }
.footer-col ul li { margin-bottom: 12px; font-size: 15px; }
.footer-col ul li a:hover { color: #ff7a1a; }

/* =========================
   CONTACT LIST 2
========================= */
.contact-list2 {
  list-style: none;       /* retire bullets */
  padding: 0;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;       /* plis kompakt */
  color: #cbd5e1;
}

.contact-list2 li {
  display: flex;
  align-items: flex-start; /* ikon alinye ak tèks */
  gap: 12px;               /* espas ant ikon ak tèks */
  margin-bottom: 15px;     /* plis espas ant chak item */
  flex-wrap: wrap;
}

.contact-list2 li i {
  font-size: 18px;
  color: #ff7a1a;          /* ikon kolore */
  min-width: 24px;         /* kenbe kolòn ikon egal */
  margin-top: 2px;         /* aligne ak tèks */
}

.contact-list2 li .contact-text {
  display: flex;
  flex-direction: column;  /* chak info sou liy apa */
  gap: 4px;                /* espas ant plizyè info */
}

.contact-list2 li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-list2 li a:hover {
  color: #ff7a1a;
}

/* RESPONSIVE - sou mobil, pi lis */
@media (max-width: 768px) {
  .contact-list2 li {
    gap: 8px;
    font-size: 14px;
  }

  .contact-list2 li i {
    font-size: 16px;
  }

  .contact-list2 li .contact-text {
    gap: 2px;
  }
}

/* RESPONSIV PRO .contact-list2 - 429px → 320px */

/* 429px - iPhone 15 Pro Max */
@media (max-width: 429px) {
  .contact-list2 li {
    gap: 10px;
    font-size: 14.5px;
  }
  
  .contact-list2 li i {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }
  
  .contact-list2 li .contact-text {
    gap: 3px;
  }
}

/* 414px - iPhone 15 Plus */
@media (max-width: 414px) {
  .contact-list2 li {
    gap: 9px;
    font-size: 14px;
  }
  
  .contact-list2 li i {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

/* 390px - iPhone 14 */
@media (max-width: 390px) {
  .contact-list2 li {
    gap: 8.5px;
    font-size: 13.8px;
  }
  
  .contact-list2 li i {
    font-size: 13.5px;
  }
  
  .contact-list2 li .contact-text {
    gap: 2.5px;
  }
}

/* 375px - iPhone Standard */
@media (max-width: 375px) {
  .contact-list2 li {
    gap: 8px;
    font-size: 13.5px;
  }
  
  .contact-list2 li i {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
}

/* 360px - Android Standard */
@media (max-width: 360px) {
  .contact-list2 li {
    font-size: 13px;
    gap: 7.5px;
  }
  
  .contact-list2 li i {
    font-size: 12.5px;
  }
}

/* 345px - Small Android */
@media (max-width: 345px) {
  .contact-list2 li {
    font-size: 12.8px;
  }
  
  .contact-list2 li .contact-text {
    gap: 2px;
  }
}

/* 330px - Very Small */
@media (max-width: 330px) {
  .contact-list2 li {
    font-size: 12.5px;
    gap: 7px;
  }
}

/* 320px - Ultra Compact */
@media (max-width: 320px) {
  .contact-list2 li {
    font-size: 12px;
    gap: 6px;
  }
  
  .contact-list2 li i {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  
  .contact-list2 li .contact-text {
    gap: 1.5px;
  }
}


.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}


.legal-links { display: flex; gap: 30px; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-title { font-size: 32px; }
  .cta-buttons { flex-direction: column; padding: 0 20px; }
}

i {
  vertical-align: middle;
}

.badge i,
.features i,
.btn i {
  margin-right: 6px;
}

.step-icon i {
  font-size: 22px;
}

.cube i {
  font-size: 64px;
  color: white;
}

.social-icon i {
  font-size: 16px;
}

/* Tarif */

:root {
  --primary: #f97316; /* Zoranj */
  --dark-blue: #0f172a;
  --text-gray: #64748b;
  --bg-light: #f8fafc;
}

.pricing-section {
  padding: 80px 20px;
  background-color: white;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.pricing-sub { color: var(--primary); font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }
.pricing-title { font-size: 40px; font-weight: 800; color: var(--dark-blue); margin-bottom: 15px; }
.pricing-desc { color: var(--text-gray); margin-bottom: 50px; }

.pricing-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.pricing-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 40px 30px;
  flex: 1;
  min-width: 300px;
  position: relative;
  text-align: left;
  transition: all 0.3s ease;
}

/* Style pou kat zoranj la (Express) */
.pricing-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05); /* Li parèt pi gwo yon ti kras */
  z-index: 2;
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

.icon-box {
  width: 50px;
  height: 50px;
  background: #f1f5f9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.icon-box i {
  color: black;
}
.featured .icon-box i{ background: #fff7ed; color: var(--primary); }

.pricing-card h3 { font-size: 22px; color: var(--dark-blue); margin-bottom: 5px; }
.plan-info { color: var(--text-gray); font-size: 14px; margin-bottom: 20px; }

.price { font-size: 48px; font-weight: 800; color: var(--dark-blue); margin-bottom: 30px; }
.currency { font-size: 24px; vertical-align: top; margin-right: 4px; }
.unit { font-size: 16px; color: var(--text-gray); font-weight: normal; }

.features {
  margin-bottom: 45px;
  padding: 0 10px;
  list-style: none;
}

.features li {
  display: flex;
  align-items: center;
  gap: 15px;
  
  padding: 8px 0 8px 5px;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-blue);

  border-radius: 8px;
  transition: all 0.2s ease;
}

.features li:hover {
  transform: translateX(5px);
}

.features li::before {
  content: "✓";
  color: var(--primary, #f97316);
  font-weight: 800;
  font-size: 18px;
  margin-right: 5px;
}

/* Bouton yo */
.btn-outline {
  display: block;
  text-align: center;
  padding: 12px;
  border: 2px solid var(--dark-blue);
  border-radius: 10px;
  color: var(--dark-blue);
  font-weight: bold;
  transition: 0.3s;
  width: 100%;
}

.btn-filled {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
  border: none;
  width: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .pricing-card.featured { transform: scale(1); }
  .pricing-grid { flex-direction: column; align-items: center; }
}

/* Small Screens: 394px → 320px */
@media (max-width: 394px) {

  .pricing-section {
    padding: 50px 12px;
  }

  .pricing-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .pricing-desc {
    font-size: 14px;
    margin-bottom: 35px;
  }

  /* Grid vin plis sere */
  .pricing-grid {
    gap: 18px;
  }

  .pricing-card {
    padding: 30px 20px;
    border-radius: 16px;
    min-width: 100%; /* Sa fè li adapte san scroll */
  }

  .pricing-card.featured {
    transform: scale(1);
    border-width: 2px;
  }

  .badge {
    font-size: 11px;
    padding: 4px 12px;
    top: -12px;
  }

  .icon-box {
    width: 42px;
    height: 42px;
    font-size: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
  }

  .pricing-card h3 {
    font-size: 20px;
  }

  .plan-info {
    font-size: 13px;
  }

  /* Pri a vin plis adapte */
  .price {
    font-size: 38px;
    margin-bottom: 25px;
  }

  .currency {
    font-size: 18px;
  }

  .unit {
    font-size: 14px;
  }

  .features li {
    font-size: 14px;
    margin-bottom: 10px;
  }

  /* Bouton yo sou ti ekran */
  .btn-outline,
  .btn-filled {
    font-size: 14px;
    padding: 12px;
    border-radius: 8px;
  }
}

:root {
  --primary-orange: #f97316;
  --bg-soft-orange: #fff7ed;
  --border-color: #e2e8f0;
  --text-dark: #0f172a;
  --text-gray: #64748b;
}

.additional-info {
  padding: 60px 20px;
  background-color: #f8fafc; /* Koulè background paj la */
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.space-top { margin-top: 60px; }

/* STYLE TABLO FRÈ YO */
.fees-table {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.fee-row {
  display: flex;
  justify-content: space-between;
  padding: 20px 30px;
  border-bottom: 1px solid var(--border-color);
  font-size: 16px;
  color: var(--text-dark);
  text-align: left;
}

.fee-row.no-border { border-bottom: none; }

.fee-row .value {
  font-weight: 600;
}

.fee-row .highlight {
  color: #10b981; /* Vè pou "Gratis" la */
}

/* STYLE KAT TAN LIVREZON YO */
.delivery-times {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.time-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  flex: 1;
  min-width: 250px;
  transition: transform 0.2s;
}

/* Kat Express la ki zoranj nan imaj la */
.time-card.express {
  background-color: var(--bg-soft-orange);
  border-color: #fed7aa;
}

.icon-circle1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.icon-circle1 i {
  color: #617084;
}

.icon-circle2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.icon-circle2 i {
  color: var(--primary-orange);
}
.method-name {
  color: var(--text-gray);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.days {
  color: var(--text-dark);
  font-size: 24px;
  font-weight: 800;
}

.express .days {
  color: var(--primary-orange);
}

/* Responsive pou telefòn */
@media (max-width: 600px) {
  .delivery-times { flex-direction: column; }
  .fee-row { padding: 15px 20px; font-size: 14px; }
}

/* CTA BLUE SECTION */
.cta-blue { 
    background: radial-gradient(circle at center, #1e4b8a 0%, #081e36 100%); 
    padding: 45px 5px; color: white; text-align: center;
}
.glass-pill { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); display: inline-block; padding: 8px 20px; border-radius: 50px; font-size: 14px; margin-bottom: 30px; }

.cta-content h2 { font-size: 45px; font-weight: 800; margin-bottom: 20px; }
.cta-content p { font-size: 18px; opacity: 0.8; margin-bottom: 40px; }
.cta-btns { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
.btn-orange.big { width: auto; padding: 18px 35px; font-size: 18px; }
.btn-glass { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: white; padding: 18px 35px; border-radius: 12px; font-weight: bold; cursor: pointer; }
.small-text { font-size: 13px; opacity: 0.5; display: block; }

@media (max-width: 768px) {
    .cta-btns { flex-direction: column; }
    .card.featured { transform: scale(1); }
}

/* CONTACT */

  .seksyon-ou {
    background: linear-gradient(135deg, #0f2f55 0%, #163f6f 50%, #1e88e5 100%);
    box-shadow: inset 0 0 100px rgba(0,0,0,0.2); /* Sa ba li plis pwofondè */
    color: white;
  }
  
/* =========================================
   SECTION CONTACT - PROFESSIONAL STYLE
   ========================================= */

#contact {
  padding: 80px 0;
  max-width: 1200px;
  margin: 0 auto;
}

#contact h1 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 10px;
  color: #fff;
}

.contact_intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  opacity: 0.8;
  line-height: 1.6;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

/* INFOS DE CONTACT */
.contact-infos {
  background: #1e88e5;
  padding: 40px;
  border-radius: 20px;
  color: white;
}

.contact-infos h2 {
  font-size: 24px;
  margin-bottom: 25px;
}

.contact-infos ul {
  list-style: none;
}

.contact-infos ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  font-size: 15px;
}


.Netoyer_Lien {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
  font-size: 15px;
}

.contact-list li i {
  width: 40px;
  height: 40px;
  min-width: 40px;
  max-width: 40px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 9999px;
  aspect-ratio: 1 / 1;

  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-text span,
.contact-text a {
  line-height: 1.4;
}

.Netoyer_Lien:hover {
  opacity: 0.75;
}

.icon-circle {
  width: 40px;
  height: 40px;
  min-width: 40px;

  background: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.icon-circle i {
  font-size: 16px;
  line-height: 1;
  color: white;
}

/* SOCIAL ICONS CONTACT */
.contact-social {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background: white;
  color: #1e88e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.3s;
}

.social-icons a:hover {
  transform: translateY(-5px);
  background: #ff7a18;
  color: white;
}

/* FORMULAIRE */
.contact-form {
  padding: 20px;
}

.contact-form h2 {
  margin-bottom: 30px;
  font-size: 28px;
}

.contact-form label {
  display: block;
  margin-bottom: 20px;
}

.contact-form span {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
  color: #cbd5e1;
}

.contact-form input, 
.contact-form textarea {
  width: 100%;
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: white;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input:focus, 
.contact-form textarea:focus {
  border-color: #ff7a18;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.btn3 {
  width: 100%;
  background: #ff7a18;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.btn3:hover {
  background: #e66a15;
  transform: translateY(-2px);
}

.rgpd {
  font-size: 12px;
  margin-top: 15px;
  opacity: 0.6;
}

.success-message {
  display: none; /* Map parèt ak JS */
  margin-top: 15px;
  font-weight: bold;
}

.contact-form .required::after {
  content: " *";
  color: #ff7a18;
  font-weight: 700;
}

.tit-map{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 10px;
}

/* MAP & HOURS */
.hotel-map {
  margin-top: 60px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-hours {
  margin-top: 60px;
  background: #fff7ed;
  color: #1e293b;
  padding: 40px;
  border-radius: 24px;
  text-align: center;
}

.contact-hours h2 { color: #f97316; margin-bottom: 15px; }
.contact-hours ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* FAQ SECTION */
.faq-section {
  padding: 80px 0;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  color: white;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover { background: rgba(255, 255, 255, 0.1); }

.faq-icon { color: #ff7a18; }

.faq-answer {
  padding: 0 20px 20px 55px;
  display: none; /* Map louvri ak JS */
  color: #cbd5e1;
  line-height: 1.6;
}

.faq-answer p {
  list-style: disc;
  margin-top: 20px;
}

/* FAQ OPEN STATE */
.faq-answer.active {
  display: block;
  animation: fadeFaq 0.3s ease;
}

@keyframes fadeFaq {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item.active .faq-icon {
  transform: rotate(50deg);
  transition: transform 0.3s ease;
}

@media (max-width: 320px) {
  .icon-circle {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .icon-circle i {
    font-size: 13px;
  }
}

@media (max-width: 320px) {

  .contact-infos {
    padding: 20px 15px;
  }

  .contact-list li {
    font-size: 13px;
    gap: 10px;
  }

  .contact-list li i {
    width: 32px;
    height: 32px;
    min-width: 32px;
    max-width: 32px;

    border-radius: 9999px;
    aspect-ratio: 1 / 1;

    font-size: 13px;
    line-height: 1;
  }

  .contact-text {
    gap: 4px;
  }

  .contact-list li i {
    aspect-ratio: 1 / 1;
  }

}

@media (max-width: 1400px) {

  /* SECTION GLOBAL */
  #contact {
    padding: 50px 15px;
  }

  #contact h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .contact_intro {
    font-size: 14px;
    margin-bottom: 35px;
  }

  /* CONTAINER */
  .contact-container {
    padding: 20px;
    gap: 25px;
    border-radius: 18px;
  }

  /* INFOS CONTACT */
  .contact-infos {
    padding: 25px 20px;
    border-radius: 16px;
  }

  .contact-infos h2 {
    font-size: 20px;
  }

  .contact-infos ul li {
    font-size: 14px;
    gap: 12px;
  }

  .contact-infos ul li i {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  /* SOCIAL ICONS */
  .social-icons {
    gap: 12px;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  /* FORM */
  .contact-form {
    padding: 10px 5px;
  }

  .contact-form h2 {
    font-size: 22px;
    text-align: center;
  }

  .contact-form span {
    font-size: 13px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    font-size: 14px;
  }

  .btn3 {
    padding: 14px;
    font-size: 15px;
  }

  /* MAP */
  .hotel-map {
    margin-top: 40px;
    border-radius: 18px;
  }

  /* HOURS */
  .contact-hours {
    padding: 25px 20px;
    margin-top: 40px;
  }

  .contact-hours h2 {
    font-size: 22px;
  }

  /* FAQ */
  .faq-section {
    padding: 50px 15px;
  }

  .faq-question {
    font-size: 15px;
    padding: 16px;
  }

  .faq-answer {
    font-size: 14px;
    padding: 0 16px 16px 45px;
  }

}

/* =========================================
   RESPONSIVE
   ========================================= */

/* TABLET */
@media (max-width: 900px) {

  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-hours ul {
    flex-direction: column;
    gap: 15px;
  }

}


/* SMALL TABLET */
@media (max-width: 768px) {

  #contact {
    padding: 60px 20px;
  }

  #contact h1 {
    font-size: 32px;
  }

  .contact_intro {
    font-size: 15px;
  }

  .contact-container {
    padding: 25px;
  }

  .contact-infos {
    padding: 25px;
  }

  .contact-form h2 {
    font-size: 24px;
    text-align: center;
  }

}


/* MOBILE */
@media (max-width: 480px) {

  #contact {
    padding: 50px 15px;
  }

  #contact h1 {
    font-size: 26px;
  }

  .contact-container {
    padding: 20px;
    gap: 25px;
  }

  .contact-infos {
    padding: 20px;
  }

  .contact-infos ul li {
    font-size: 14px;
  }

  .contact-infos ul li i {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
    padding: 12px;
  }

  .btn3 {
    padding: 14px;
    font-size: 15px;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

}

/* =========================================
   MOBILE CLEANUP (428px - 320px)
   ========================================= */

@media screen and (max-width: 428px) {
    #contact {
        padding: 40px 12px !important; /* Mwens padding sou kote pou n gen plis plas */
    }

    /* Container Prensipal */
    .contact-container {
        display: block !important; /* Anile Grid la nèt sou mobil */
        padding: 0 !important; /* Retire padding bò gòch/dwat pou bwat ble a ka gwo */
        background: transparent !important; /* Retire background anba a */
        border: none !important;
        backdrop-filter: none !important;
    }

    /* Bwat Ble (Infos) */
    .contact-infos {
        padding: 30px 20px !important;
        border-radius: 20px;
        margin-bottom: 30px; /* Espas ant bwat ble ak fòmilè */
        width: 100% !important;
    }

    .contact-list li {
        gap: 12px;
        margin-bottom: 20px;
        align-items: flex-start;
    }

    .icon-circle {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important; /* Peyi icon yo tounen oval */
        background: rgba(255, 255, 255, 0.15) !important;
    }

    /* Fòmilè (Ekri nou yon mesaj) */
    .contact-form {
        padding: 10px 5px !important;
        width: 100% !important;
    }

    .contact-form h2 {
        font-size: 22px;
        text-align: left; /* Plis pro pou mobil */
        margin-bottom: 25px;
    }

    /* Ranje Input yo */
    .contact-form label {
        margin-bottom: 18px;
        width: 100%;
    }

    .contact-form input, 
    .contact-form textarea {
        width: 100% !important; /* Fòse yo pran tout lajè a */
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 14px;
        font-size: 16px; /* Egzak pou iOS pa zoom */
        color: #fff;
    }

    /* Bouton an */
    .btn3 {
        width: 100% !important;
        padding: 16px;
        border-radius: 12px;
        font-size: 16px;
        margin-top: 10px;
    }

    /* Ranje reCAPTCHA a pou l pa soti deyò */
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: left top;
        margin-bottom: 20px;
    }
}

/* Fix pou telefòn ki piti anpil (320px) */
@media screen and (max-width: 350px) {
    .contact-infos {
        padding: 20px 15px !important;
    }
    .contact-list li {
        font-size: 13px;
    }
    .g-recaptcha {
        transform: scale(0.78);
    }
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 60px;
  right: 30px;
  background: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: 0.3s;
}

.whatsapp-float:hover { transform: scale(1.1); }

@media (max-width: 600px) {
  .whatsapp-float{
    width: 50px;
    height: 50px;
    bottom: 80px;
    
  }
}

@media (max-width: 320px) {
  .whatsapp-float{
    width: 50px;
    height: 50px;
    bottom: 80px;
    
  }
}