@charset "UTF-8";
:root {
  /* --- Couleurs (Basées sur ta maquette) --- */
  --color-teal: #009688;
  --color-orange: #f39c12;
  --color-white: #ffffff;
  --color-gray-dark: #333333;
  --color-gray-light: #7a7a7a;
  --color-orange-light:#f39d12b3;
  /* --- Typographie Responsive (en VW) --- */
  /* On part du principe que ton Figma fait 1920px de large */
  /* Formule : (Taille Figma / 1920) * 100 */
  --font-h1: 3.64vw; /* ~70px sur Desktop */
  --font-h2: 2.34vw; /* ~45px sur Desktop */
  --font-h3: 1.56vw; /* ~30px sur Desktop */
  --font-body: 0.94vw; /* ~18px sur Desktop */
  --font-small: 0.73vw; /* ~14px sur Desktop */
}

/* --- Base --- */
body {
  font-family: "Montserrat", sans-serif; /* À adapter selon ton Figma */
  font-size: var(--font-body);
  color: var(--color-gray-dark);
  width: 100%;
  margin: 0;
}

input[type=date]::-webkit-calendar-picker-indicator {
  cursor: pointer;
}

input[type=date]:invalid {
  border-color: #f39c12;
}

.editorMsg {
  position: fixed;
  bottom: 2vw;
  z-index: 555;
  display: none;
  border-radius: 1.4vw;
  right: 2vw;
  color: rgb(255, 255, 255);
  background-color: #007BFF;
}
.editorMsg .editorMsgMove {
  display: flex;
  margin-left: 2vw;
  margin-right: 2vw;
}
.editorMsg .editorMsgMove .msgAlertIcon {
  display: flex;
}
.editorMsg .editorMsgMove .msgAlertIcon img {
  height: 2vw !important;
  margin: auto;
}

.txt-h1 {
  font-size: var(--font-h1);
  font-weight: 800;
  line-height: 1.1;
}

.txt-h2 {
  font-size: var(--font-h2);
  font-weight: 700;
  color: var(--color-teal);
}
.txt-h2.orange {
  color: var(--color-orange);
}

.txt-h3 {
  font-size: var(--font-h3);
  font-weight: 600;
}

.txt-body {
  font-size: var(--font-body);
  line-height: 1.5;
}

.txt-small {
  font-size: var(--font-small);
  color: var(--color-gray-light);
}

/* --- Variables de calcul (Figma 1920px) --- */
/* 400px / 1920 */
/* 20px / 1920 */
/* 25px / 1920 */
.destinations-section {
  margin-bottom: 13vw;
}
.destinations-section .section-title {
  text-align: center;
}

.travel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20.83vw, 1fr));
  gap: 2vw;
  padding: 3vw;
}

#travel-grid-top {
  background-color: var(--color-orange-light);
  width: 95%;
  margin: auto;
  padding: 1vw;
  border-radius: 3vw;
  border: solid 0.2vw #f39c12;
}

.travel-card {
  background: white;
  border-radius: 2vw;
  overflow: hidden;
  box-shadow: 0 1vw 3vw rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.travel-card:hover {
  transform: translateY(-0.8vw);
  box-shadow: 0 1.5vw 4vw rgba(0, 0, 0, 0.12);
}
.travel-card .card-img-container {
  position: relative;
  height: 18vw;
  overflow: hidden;
}
.travel-card .card-img-container .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.travel-card .card-img-container .top-badge {
  position: absolute;
  top: 1vw;
  right: 1vw;
  background: var(--color-orange-light);
  color: var(--color-orange);
  padding: 0.4vw 1vw;
  border-radius: 2vw;
  font-size: 0.8vw;
  font-weight: 700;
}
.travel-card .card-content {
  padding: 1.5vw;
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
}
.travel-card .card-content .price-tag .amount {
  display: block;
  font-size: 2.2vw;
  font-weight: 700;
  color: var(--color-orange);
}
.travel-card .card-content .price-tag .per-person {
  color: var(--color-teal);
  font-weight: 600;
}
.travel-card .card-content h3 {
  font-size: 1.4vw;
  color: #000;
  margin-top: 0.5vw;
}
.travel-card .card-content .date-range {
  color: #888;
}
.travel-card .card-content .card-separator {
  border: 0;
  height: 2px;
  background: var(--color-teal-light);
  width: 80%;
  margin: 0.5vw 0;
}
.travel-card .card-content .card-icons {
  margin: 1vw 0;
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
}
.travel-card .card-content .card-icons .icon-item {
  display: flex;
  align-items: center;
  gap: 0.8vw;
  color: #444;
}
.travel-card .card-content .card-icons .icon-item i {
  color: var(--color-orange);
}
.travel-card .card-content .card-footer {
  margin-top: 1vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.travel-card .card-content .card-footer .btn-more {
  background: var(--color-teal);
  color: white;
  border: none;
  padding: 0.8vw 1.5vw;
  border-radius: 0.8vw;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5vw;
}
.travel-card .card-content .card-footer .transport-icon {
  font-size: 2vw;
  color: var(--color-blue-light);
  opacity: 0.6;
}

.dynamic-hero-container {
  margin-top: 7vw;
}

.public-layout {
  margin-top: 7vw;
}

/* --- Header Styles (VW) --- */
.main-header {
  width: 100%;
}
.main-header .auth-nav .btn-open-login {
  text-decoration: none;
  color: var(--color-teal);
}
.main-header .auth-nav {
  display: flex;
  align-items: center;
  gap: 1.5vw;
}
.main-header .auth-nav .nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.main-header .auth-nav .nav-link:hover {
  color: #54a595;
}
.main-header .auth-nav .nav-link.btn-register {
  background-color: #f39c12;
  color: #ffffff !important;
  padding: 0.6vw 1.5vw;
  border-radius: 1.5vw;
  box-shadow: 0 4px 10px rgba(243, 156, 18, 0.2);
}
.main-header .auth-nav .nav-link.btn-register:hover {
  background-color: rgba(243, 157, 18, 0.7019607843);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(243, 156, 18, 0.3);
}
.main-header .auth-nav .nav-link.btn-account {
  display: flex;
  align-items: center;
  gap: 0.5vw;
  color: #54a595;
}
.main-header .auth-nav .nav-link.btn-account i {
  font-size: 1.2rem;
}
.main-header .auth-nav .nav-link.btn-account:hover {
  color: #006666;
}
.main-header .auth-nav .nav-link.btn-logout {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: #333;
  padding: 0.5vw;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}
.main-header .auth-nav .nav-link.btn-logout:hover {
  color: #e74c3c;
}
.main-header {
  /* --- Barre de Navigation --- */
}
.main-header .nav-bar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 2000;
  height: 6.25vw;
  background: rgba(255, 255, 255, 0.9490196078);
  display: flex;
  align-items: center;
  box-shadow: 0 0.2vw 1vw rgba(0, 0, 0, 0.05);
}
.main-header .nav-bar .header-container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-header .nav-bar .logo-img {
  height: 4vw;
}
.main-header .nav-bar .nav-list {
  display: flex;
  gap: 2.5vw;
  list-style: none;
}
.main-header .nav-bar .nav-list .nav-link {
  text-decoration: none;
  color: var(--color-teal);
  font-weight: 500;
  transition: color 0.3s;
}
.main-header .nav-bar .nav-list .nav-link:hover {
  color: var(--color-orange);
}
.main-header {
  /* --- Section Hero (Slider / Bannière) --- */
}
.main-header .hero-section {
  position: relative;
  width: 100%;
  height: 42vw;
  background: #eee;
  overflow: hidden;
}
.main-header .hero-section .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-header .hero-section .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}
.main-header {
  /* --- Spécificités Home (Slider) --- */
}
.main-header .hero-slider {
  position: relative;
  height: 100%;
}
.main-header .hero-slider .hero-content {
  position: absolute;
  top: 50%;
  left: 10vw;
  transform: translateY(-50%);
  color: white;
}
.main-header .hero-slider .hero-content h1 {
  font-size: 3.5vw;
  line-height: 1.1;
}
.main-header .hero-slider .hero-content span {
  color: var(--color-white);
}
.main-header .hero-slider .hero-content .hero-accent-line {
  width: 12vw;
  height: 3px;
  background: var(--color-orange);
  margin: 1.5vw 0;
}
.main-header .hero-slider .hero-content .destination-name {
  font-size: 2.8vw;
  color: var(--color-orange);
  font-weight: 700;
}
.main-header .hero-slider .slider-dots {
  position: absolute;
  bottom: 3vw;
  left: 10vw;
  display: flex;
  gap: 0.8vw;
}
.main-header .hero-slider .slider-dots .dot {
  width: 1.2vw;
  height: 1.2vw;
  border: 2px solid var(--color-teal);
  border-radius: 50%;
}
.main-header .hero-slider .slider-dots .dot.active {
  background: var(--color-orange);
  border-color: var(--color-orange);
}

.main-footer {
  position: relative;
  width: 100%;
  min-height: 40vw;
  overflow: hidden;
  color: white;
}
.main-footer .txt-small {
  color: var(--color-white);
}
.main-footer .contact-details {
  margin: 1.5vw 0;
}
.main-footer .contact-details p {
  display: flex;
  align-items: center;
  gap: 0.8vw;
  margin-bottom: 0.6vw;
}
.main-footer .contact-details p i {
  width: 1.2vw;
  color: white;
}
.main-footer .contact-details p a {
  color: white;
  text-decoration: none;
}
.main-footer {
  /* --- Conteneur du fond --- */
}
.main-footer .footer-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.main-footer .footer-bg-container .footer-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.main-footer .footer-bg-container .footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(23, 116, 110, 0.88) 0%, rgba(13, 75, 71, 0.25) 100%);
}
.main-footer {
  /* --- Contenu (devant le fond) --- */
}
.main-footer .footer-content {
  position: relative;
  z-index: 2;
  padding: 6vw 10vw 3vw 10vw;
  display: flex;
  flex-direction: column;
  gap: 4vw;
}
.main-footer .footer-content .txt-body {
  color: var(--color-white);
}
.main-footer .footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 4vw;
}
.main-footer .footer-col .footer-logo {
  width: 14vw;
  margin-bottom: 2vw;
  filter: brightness(0) invert(1);
}
.main-footer .footer-col ul {
  list-style: none;
  padding: 0;
}
.main-footer .footer-col ul li {
  margin-bottom: 1vw;
}
.main-footer .footer-col ul a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.main-footer .footer-col ul a:hover {
  color: white;
  text-decoration: underline;
}
.main-footer .footer-extra {
  margin-top: 2vw;
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
}
.main-footer .footer-extra .logos-row {
  display: flex;
  gap: 0.5vw;
  margin-top: 0.5vw;
}
.main-footer .footer-extra .logos-row .mini-logo {
  height: 1.5vw;
  width: auto;
}
.main-footer .footer-extra .partner-logo {
  height: 3vw;
  width: auto;
  margin-top: 0.5vw;
}
.main-footer .horaires-text p {
  margin-bottom: 0.3vw;
}
.main-footer .horaires-text p:first-child {
  margin-bottom: 1vw;
}
.main-footer .footer-bottom {
  padding-top: 2vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.main-footer .footer-bottom .footer-bottom-links {
  display: flex;
  gap: 2vw;
}
.main-footer .footer-bottom .footer-bottom-links a {
  color: white;
  text-decoration: none;
  position: relative;
}
.main-footer .footer-bottom .footer-bottom-links a:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -1.2vw;
  color: var(--color-orange);
}
.main-footer .footer-bottom .social-links {
  display: flex;
  gap: 1.5vw;
  font-size: 1.2vw;
}
.main-footer .footer-bottom .social-links a {
  color: white;
  transition: transform 0.2s;
}
.main-footer .footer-bottom .social-links a:hover {
  transform: scale(1.2);
}

.admin-nav-bar {
  height: 4vw;
  background: var(--color-teal);
  color: white;
  display: flex;
  align-items: center;
  padding: 0 5vw;
}
.admin-nav-bar .admin-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-nav-bar .admin-logo {
  display: flex;
  align-items: center;
  gap: 1vw;
  text-decoration: none;
}
.admin-nav-bar .admin-logo img {
  height: 2.5vw;
  filter: brightness(0) invert(1);
}
.admin-nav-bar .admin-logo span {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.admin-nav-bar .admin-menu {
  display: flex;
  gap: 2vw;
}
.admin-nav-bar .admin-menu a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
}
.admin-nav-bar .admin-menu a:hover {
  color: white;
}
.admin-nav-bar .admin-menu a.view-site {
  color: var(--color-orange);
}

/* --- Admin Login Style --- */
.admin-login-page {
  min-height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f9fbfb;
  padding: 2vw;
}
.admin-login-page .login-card {
  background: white;
  width: 100%;
  max-width: 32vw;
  padding: 3.5vw;
  border-radius: 2vw;
  box-shadow: 0 1vw 4vw rgba(0, 0, 0, 0.06);
  text-align: center;
}
.admin-login-page .login-card .login-header {
  margin-bottom: 2.5vw;
}
.admin-login-page .login-card .login-header .login-logo {
  height: 5vw;
  margin-bottom: 1.5vw;
}
.admin-login-page .login-card .login-header h1 {
  color: var(--color-teal);
  margin-bottom: 0.5vw;
}
.admin-login-page .login-card .login-header p {
  color: #888;
}
.admin-login-page .login-card .login-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
}
.admin-login-page .login-card .login-form .form-group label {
  display: block;
  margin-bottom: 0.6vw;
  font-weight: 600;
  color: var(--color-teal);
}
.admin-login-page .login-card .login-form .form-group .input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.admin-login-page .login-card .login-form .form-group .input-wrapper i {
  position: absolute;
  left: 1.2vw;
  color: #ccc;
  font-size: 1vw;
  transition: color 0.3s ease;
}
.admin-login-page .login-card .login-form .form-group .input-wrapper input {
  width: 100%;
  padding: 1vw 1vw 1vw 3vw;
  border: 1px solid #eee;
  border-radius: 0.8vw;
  font-size: 1vw;
  background: #fdfdfd;
  transition: all 0.3s ease;
}
.admin-login-page .login-card .login-form .form-group .input-wrapper input:focus {
  outline: none;
  border-color: var(--color-teal);
  background: white;
  box-shadow: 0 0.2vw 1vw rgba(0, 0, 0, 0.03);
}
.admin-login-page .login-card .login-form .form-group .input-wrapper input:focus + i {
  color: var(--color-teal);
}
.admin-login-page .login-card .login-form .login-error {
  background: #fff5f5;
  color: #e53e3e;
  padding: 1vw;
  border-radius: 0.6vw;
  border-left: 4px solid #e53e3e;
  display: flex;
  align-items: center;
  gap: 0.8vw;
}
.admin-login-page .login-card .login-form .btn-login {
  margin-top: 1vw;
  background: var(--color-orange);
  color: white;
  border: none;
  padding: 1.2vw;
  border-radius: 1vw;
  font-size: 1.1vw;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8vw;
  transition: all 0.3s ease;
}
.admin-login-page .login-card .login-form .btn-login i {
  transition: transform 0.3s ease;
}
.admin-login-page .login-card .login-form .btn-login:hover {
  background: #e67e22;
  transform: translateY(-0.2vw);
  box-shadow: 0 0.5vw 1.5vw rgba(230, 126, 34, 0.25);
}
.admin-login-page .login-card .login-form .btn-login:hover i {
  transform: translateX(0.3vw);
}
.admin-login-page .login-card .login-form .btn-login:active {
  transform: translateY(0);
}
.admin-login-page .login-card .login-footer {
  margin-top: 2.5vw;
  border-top: 1px solid #f0f0f0;
  padding-top: 1.5vw;
}
.admin-login-page .login-card .login-footer a {
  color: #aaa;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5vw;
  transition: color 0.3s ease;
}
.admin-login-page .login-card .login-footer a:hover {
  color: var(--color-teal);
}

.admin-dashboard-layout {
  display: flex;
  width: 100%;
  gap: 2vw;
  background-color: #f4f7f6;
  min-height: 100vh;
  padding: 2vw;
  /* --- Sidebar (Ton design Figma) --- */
}
.admin-dashboard-layout .admin-sidebar {
  width: 18vw;
  min-width: 220px;
  background-color: #54a595;
  display: flex;
  flex-direction: column;
  padding-top: 2vw;
}
.admin-dashboard-layout .admin-sidebar .sidebar-logo {
  padding: 0 2vw 3vw 2vw;
}
.admin-dashboard-layout .admin-sidebar .sidebar-logo img {
  width: 100%;
  filter: brightness(0) invert(1);
}
.admin-dashboard-layout .admin-sidebar .sidebar-nav {
  display: flex;
  flex-direction: column;
}
.admin-dashboard-layout .admin-sidebar .sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  gap: 1.2vw;
  padding: 1.2vw 2vw;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9vw;
  font-weight: 500;
  transition: all 0.3s ease;
}
.admin-dashboard-layout .admin-sidebar .sidebar-nav .nav-link i {
  font-size: 1.1vw;
  width: 1.5vw;
}
.admin-dashboard-layout .admin-sidebar .sidebar-nav .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}
.admin-dashboard-layout .admin-sidebar .sidebar-nav .nav-link.active {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-left: 0.4vw solid white;
  padding-left: 1.6vw;
}
.admin-dashboard-layout {
  /* --- Zone de contenu (Où on injecte les partials) --- */
}
.admin-dashboard-layout #adminDashboardContent {
  flex: 1;
  height: 100%;
  overflow-y: auto;
  padding: 3vw;
  background-color: white;
}

/* --- Layout Global --- */
#mainContent.admin-layout {
  height: calc(100vh - 60px);
}
#mainContent .auth-card {
  margin: 2vw auto;
  background: #ffffff;
  padding: 2.5vw;
  border-radius: 1.5vw;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
}
#mainContent .auth-card .input-row {
  display: flex;
  gap: 1.5vw;
  margin-bottom: 0.5vw;
  align-items: flex-start;
  width: max-content;
}
#mainContent .auth-card .input-row > div {
  flex: 1;
  width: 100%;
}
#mainContent .auth-card .input-auth, #mainContent .auth-card select.input-auth {
  width: 23vw;
  padding: 0.8vw 1vw;
  border: 1px solid #e0eee9;
  border-radius: 0.8vw;
  font-family: inherit;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
#mainContent .auth-card .input-auth:focus, #mainContent .auth-card select.input-auth:focus {
  outline: none;
  border-color: #54a595;
  box-shadow: 0 0 0 3px rgba(84, 165, 149, 0.1);
}
#mainContent .auth-card select.input-auth {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2354a595' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1vw center;
  padding-right: 2.5vw;
}
#mainContent .auth-card .btn-submit-auth {
  width: 100%;
  padding: 1vw;
  margin-top: 1.5vw;
  background: #54a595;
  color: #ffffff;
  border: none;
  border-radius: 1.5vw;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}
#mainContent .auth-card .btn-submit-auth:hover {
  background: #006666;
  transform: translateY(-2px);
}
#mainContent .auth-card .btn-submit-auth:disabled {
  background: #e0eee9;
  cursor: not-allowed;
  transform: none;
}
#mainContent .auth-card .form-feedback {
  margin-top: 1.5vw;
  padding: 1vw;
  border-radius: 0.8vw;
  text-align: center;
  font-weight: 500;
}
#mainContent .auth-card .form-feedback.success {
  background-color: #e0eee9;
  color: #54a595;
  border: 1px solid #54a595;
}
#mainContent .auth-card .form-feedback.error {
  background-color: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  border: 1px solid #e74c3c;
}

.main-admin-header {
  height: 60px;
  background: white;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3vw;
}
.main-admin-header .top-admin-nav {
  display: flex;
  gap: 2vw;
  align-items: center;
}
.main-admin-header .top-admin-nav a {
  text-decoration: none;
  color: #666;
  font-size: 0.9vw;
}
.main-admin-header .top-admin-nav a:hover {
  color: #54a595;
}
.main-admin-header .top-admin-nav a.view-site {
  color: var(--color-orange);
  font-weight: 600;
}
.main-admin-header .top-admin-nav .logout-btn {
  color: #e74c3c;
  font-size: 1.2vw;
}

.admin-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2vw;
}

.btn-back {
  background: transparent;
  border: none;
  color: #54a595;
  font-weight: bold;
  cursor: pointer;
  margin-right: 1vw;
}
.btn-back:hover {
  text-decoration: underline;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 1vw;
  overflow: hidden;
}
.admin-table th, .admin-table td {
  padding: 1.5vw;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.admin-travels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2vw;
  margin-top: 2vw;
}

.admin-vignette {
  position: relative;
  border-radius: 1.2vw;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.admin-vignette .vignette-img {
  height: 12vw;
  position: relative;
}
.admin-vignette .vignette-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.admin-vignette .btn-circle-edit {
  position: absolute;
  top: 1vw;
  right: 1vw;
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  background: #fff;
  border: none;
  color: #54a595;
  cursor: pointer;
}

#adminDashboardContent {
  padding: 2vw;
  background-color: #f8fbfb;
  min-height: 100vh;
}

.manage-card-style {
  background: #ffffff;
  border: 1px solid #e0eee9;
  border-radius: 1.5vw;
  padding: 2.5vw;
  margin-bottom: 2vw;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.manage-card-style .txt-h2 {
  font-size: 1.8vw;
  font-weight: 800;
  color: #333;
  margin-bottom: 2vw;
}
.manage-card-style .manage-footer-actions {
  margin-top: 2rem;
  margin-bottom: 3vw;
  display: flex;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e0eee9;
}
.manage-card-style .manage-footer-actions button {
  padding: 0.8rem 1.5rem;
  border-radius: 1.5vw;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
}
.manage-card-style .manage-footer-actions button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.manage-card-style .manage-footer-actions button:active {
  transform: translateY(0);
}
.manage-card-style .manage-footer-actions .btn-secondary-teal {
  background-color: #008080;
}
.manage-card-style .manage-footer-actions .btn-secondary-teal:hover {
  background-color: #006666;
}
.manage-card-style .manage-footer-actions .btn-orange {
  background-color: #f39c12;
}
.manage-card-style .manage-footer-actions .btn-orange:hover {
  background-color: rgb(199.8795180723, 126.5060240964, 10.1204819277);
}
.manage-card-style .manage-footer-actions .btn-main-teal {
  background-color: #54a595;
}
.manage-card-style .manage-footer-actions .btn-main-teal:hover {
  background-color: rgb(66.7951807229, 131.2048192771, 118.4819277108);
}

@keyframes pulseFade {
  0% {
    box-shadow: 0 0 0 0 rgba(95, 158, 160, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(95, 158, 160, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(95, 158, 160, 0);
  }
}
.manage-row-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
  padding: 10px 0;
}

.filter-control-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.filter-control-item .filter-label-name {
  font-size: 0.95rem;
  color: #444;
  font-weight: 500;
}

/* --- Le Switch (Le contenant) --- */
.switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 44px;
  height: 22px;
  cursor: pointer;
}
.switch input {
  display: none;
}
.switch input:checked + .slider-switch {
  background-color: #008080;
}
.switch input:checked + .slider-switch::before {
  transform: translateX(22px);
}

.slider-switch {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}
.slider-switch::before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  top: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.manage-row {
  display: flex;
  gap: 3vw;
}
.manage-row .manage-col-img {
  flex: 1;
}
.manage-row .manage-col-img .mini-upload-zone {
  height: 15vw;
  border: 2px dashed #e0eee9;
  border-radius: 1vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  background-image: url("/img/vignette-placeholder.jpg");
  background-size: cover;
}
.manage-row .manage-col-img .mini-upload-zone i {
  font-size: 2vw;
  color: #54a595;
  margin-bottom: 1vw;
}
.manage-row .manage-col-img .mini-upload-zone .txt-mini {
  font-size: 0.9vw;
  color: #54a595;
  font-weight: bold;
}
.manage-row .manage-col-img .mini-upload-zone:hover {
  background-color: rgba(224, 238, 233, 0.3);
}
.manage-row .manage-col-img .mini-upload-zone #img_headerUploadInput img {
  width: 3vw;
  height: 3vw;
}
.manage-row .manage-col-info {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.teal-label {
  color: #54a595;
  font-size: 0.9vw;
  font-weight: 700;
  margin-bottom: 0.3vw;
  display: block;
}

.admin-input-teal {
  width: 100%;
  padding: 0.8vw;
  border: 1px solid #e0eee9;
  border-radius: 0.5vw;
  font-size: 1vw;
  outline: none;
}
.admin-input-teal:focus {
  border-color: #54a595;
}

.manage-dots {
  display: flex;
  gap: 0.5vw;
  margin-top: 0.5vw;
}
.manage-dots .dot {
  width: 1vw;
  height: 1vw;
  border-radius: 50%;
  border: 1px solid #54a595;
  cursor: pointer;
}
.manage-dots .dot.active {
  background: #f39c12;
  border-color: #f39c12;
}

.filters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5vw;
}
.filters-grid .filter-toggle {
  display: flex;
  align-items: center;
  gap: 1vw;
}
.filters-grid .filter-toggle .txt-small {
  font-size: 1vw;
  font-weight: 500;
}

.switch {
  position: relative;
  display: inline-block;
  width: 3.5vw;
  height: 1.8vw;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 1.4vw;
  width: 1.4vw;
  left: 0.2vw;
  bottom: 0.2vw;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
.switch input:checked + .slider {
  background-color: #54a595;
}
.switch input:checked + .slider:before {
  transform: translateX(1.7vw);
}

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

.btn-teal-add {
  background: #54a595;
  color: white;
  border: none;
  padding: 0.8vw 2vw;
  border-radius: 0.8vw;
  font-weight: bold;
  font-size: 1vw;
  cursor: pointer;
}
.btn-teal-add:hover {
  filter: brightness(1.1);
}

#new-travel {
  margin-left: 4vw;
}

.sort-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1vw;
  margin: 1.5vw 0;
}
.sort-actions .btn-sort {
  border: none;
  padding: 0.5vw 1.2vw;
  border-radius: 0.5vw;
  font-size: 0.8vw;
  font-weight: bold;
  cursor: pointer;
  background: #f0f0f0;
}
.sort-actions .btn-sort.active {
  background: #54a595;
  color: white;
}
.sort-actions .btn-sort.orange {
  background: #f39c12;
  color: white;
}

.admin-travels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2vw;
}

.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}
.custom-modal-overlay .custom-modal-card {
  background: #ffffff;
  width: 90%;
  max-width: 400px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
  animation: slideUp 0.3s ease;
}
.custom-modal-overlay .custom-modal-card .modal-title {
  color: #008080;
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
}
.custom-modal-overlay .custom-modal-card .modal-body {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 25px;
}
.custom-modal-overlay .custom-modal-card .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.custom-modal-overlay .custom-modal-card .modal-actions button {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-size: 0.95rem;
}
.custom-modal-overlay .custom-modal-card .modal-actions button.btn-cancel {
  background: #eee;
  color: #666;
}
.custom-modal-overlay .custom-modal-card .modal-actions button.btn-cancel:hover {
  background: #e0e0e0;
}
.custom-modal-overlay .custom-modal-card .modal-actions button.btn-confirm-delete {
  background: #e74c3c;
  color: #ffffff;
}
.custom-modal-overlay .custom-modal-card .modal-actions button.btn-confirm-delete:hover {
  background: rgb(213.698630137, 43.8356164384, 26.301369863);
  transform: scale(1.05);
}
.custom-modal-overlay .custom-modal-card .modal-actions button.btn-confirm-delete:active {
  transform: scale(0.95);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sortable-slides-container {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sortable-slides-container .sortable-slide-item {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  padding: 10px 15px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: grab;
  transition: background 0.2s;
}
.sortable-slides-container .sortable-slide-item:hover {
  background: #f0f0f0;
}
.sortable-slides-container .sortable-slide-item i {
  color: #008080;
  font-size: 1.1rem;
}
.sortable-slides-container .sortable-slide-item .txt-mini {
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
}

.sortable-ghost {
  opacity: 0.4;
  border: 1px dashed #008080;
}

.travel-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 8px;
  transition: transform 0.2s;
}
.travel-item-row:hover {
  background: #f5fbfb;
  transform: translateX(5px);
}
.travel-item-row .travel-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.travel-item-row .travel-info .travel-thumb {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  object-fit: cover;
}
.travel-item-row .travel-info .travel-name {
  display: block;
  font-weight: 600;
  color: #333;
}
.travel-item-row .travel-info .travel-price {
  font-size: 0.85rem;
  color: #008080;
}
.travel-item-row .travel-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.travel-item-row.is-top-destination {
  background-color: rgba(255, 166, 0, 0.408); /* Orange très léger pour le fond */
  border-left: 5px solid var(#f39c12); /* Une barre orange sur le côté */
}

.badge-status {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.badge-status.ouvert {
  background: #e6f4ea;
  color: #1e7e34;
}
.badge-status.complet {
  background: #fce8e6;
  color: #d93025;
}

.edit-voyage-container {
  padding: 20px;
  background: #fff;
  min-height: 100vh;
}
.edit-voyage-container .edit-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.edit-voyage-container .edit-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.edit-voyage-container .edit-tabs .tab-btn {
  padding: 10px 20px;
  border: 1px solid #008080;
  background: transparent;
  color: #008080;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}
.edit-voyage-container .edit-tabs .tab-btn.active {
  background: #008080;
  color: #fff;
}
.edit-voyage-container .edit-content-layout {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 20px;
}

/* Colonne Preview (Fixe à droite) */
.preview-column {
  width: 320px;
  position: sticky;
  top: 20px;
}
.preview-column .card-preview {
  border: 1px solid #eee;
  border-radius: 15px;
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.preview-column .card-preview .preview-img-container {
  position: relative;
  width: 100%;
  height: 200px;
  background: #f0f0f0;
  overflow: hidden;
  cursor: pointer;
}
.preview-column .card-preview .preview-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.preview-column .card-preview .preview-img-container .upload-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 128, 128, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: white;
  font-size: 2.5rem;
  z-index: 2;
}
.preview-column .card-preview .preview-img-container:hover .upload-overlay {
  opacity: 1;
}
.preview-column .card-preview .preview-img-container.upload-mode {
  border: 2px dashed #ddd;
  background-color: #fdfdfd;
}
.preview-column .card-preview .preview-img-container.upload-mode img[src*=transparent] {
  opacity: 0;
}
.preview-column .card-preview .preview-img-container.upload-mode .upload-overlay {
  opacity: 0.8;
}
.preview-column .card-preview .preview-details {
  padding: 20px;
}
.preview-column .card-preview .preview-details #preview-price {
  color: #f39c12;
  font-weight: bold;
  font-size: 1.3rem;
}
.preview-column .card-preview .preview-details #preview-title {
  font-size: 1.2rem;
  margin: 10px 0;
  color: #2c3e50;
}

.transport-selector {
  display: flex;
  gap: 10px;
}
.transport-selector .transport-btn {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
}
.transport-selector .transport-btn.active {
  border-color: #008080;
  color: #008080;
  background: rgba(0, 128, 128, 0.1);
}

.preview-meta {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  font-size: 0.8rem;
  color: #888;
}

.form-column {
  flex: 1;
  background: #fff;
}
.form-column .input-group {
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
}
.form-column .input-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}
.form-column .input-group .admin-input {
  padding: 12px;
  border: 1px solid #c7e0df;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}
.form-column .input-group .admin-input:focus {
  border-color: #008080;
  box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.1);
}
.form-column .input-group textarea.admin-input {
  min-height: 80px;
  resize: vertical;
}

/* Bouton Retour */
.btn-back {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #008080;
  cursor: pointer;
  margin-right: 15px;
  transition: transform 0.2s;
}
.btn-back:hover {
  transform: scale(1.2);
}

#programme-days-container {
  max-height: 500px;
  overflow-y: auto;
  padding-right: 10px;
  margin-bottom: 20px;
}

.day-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}
.day-item .day-header {
  background: #008080;
  color: white;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}
.day-item .day-header .btn-remove-day {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
.day-item .day-header .btn-remove-day:hover {
  color: #ff7675;
}
.day-item .day-body {
  padding: 15px;
}
.day-item .day-body .day-title {
  font-weight: 600;
  margin-bottom: 10px;
}
.day-item .day-body .day-desc {
  min-height: 100px;
  font-size: 0.9rem;
}

.users-management-wrapper {
  margin-bottom: 3vw;
  /* Quand on est en mode "Tri Top", on masque les autres */
}
.users-management-wrapper .mode-tri-top .travel-item-row:not(.is-top-destination) {
  display: none !important;
}
.users-management-wrapper {
  /* On affiche la poignée de drag uniquement en mode tri */
}
.users-management-wrapper .mode-tri .drag-handle {
  display: block !important;
}
.users-management-wrapper .badge {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
}
.users-management-wrapper .badge-admin {
  background: #ffeeba;
  color: #856404;
  border: 1px solid #ffeeba;
}
.users-management-wrapper .badge-user {
  background: #e2e3e5;
  color: #383d41;
  border: 1px solid #d6d8db;
}
.users-management-wrapper .header-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 4vw;
}
.users-management-wrapper #userSearch {
  padding: 10px 15px 10px 35px;
  border: 1px solid #ddd;
  border-radius: 25px;
  width: 280px;
  background: url("https://cdn-icons-png.flaticon.com/512/622/622669.png") no-repeat 12px center;
  background-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}
.users-management-wrapper #userSearch:focus {
  border-color: #2c3e50;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: white;
  padding: 25px;
  border-radius: 12px;
  width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-form-group {
  margin-bottom: 15px;
}

.modal-form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

.modal-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-sizing: border-box;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.btn-save {
  background: #2c3e50;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}

.btn-cancel {
  background: #eee;
  color: #333;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}

.settings-wrapper {
  padding: 2vw;
  max-width: 1200px;
  margin: 0 auto;
}
.settings-wrapper .header-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.settings-wrapper .header-action #btnSaveSettings {
  margin-left: 2vw;
}
.settings-wrapper .header-action h2 {
  color: #333;
  font-size: 1.8rem;
  margin: 0;
}
.settings-wrapper .settings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}
.settings-wrapper .settings-grid .settings-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1.5vw;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0eee9;
}
.settings-wrapper .settings-grid .settings-card h3 {
  font-size: 1.2rem;
  color: #008080;
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #e0eee9;
  display: flex;
  align-items: center;
  gap: 10px;
}
.settings-wrapper .settings-grid .settings-card h3 i {
  color: #54a595;
}
.settings-wrapper .settings-grid .settings-card .form-group {
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
}
.settings-wrapper .settings-grid .settings-card .form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}
.settings-wrapper .settings-grid .settings-card .form-group .setting-input {
  padding: 0.8rem 1rem;
  border: 1px solid #e0eee9;
  border-radius: calc(1.5vw / 2);
  font-size: 1rem;
  color: #333;
  background-color: #fcfdfd;
  transition: all 0.3s ease;
}
.settings-wrapper .settings-grid .settings-card .form-group .setting-input:focus {
  outline: none;
  border-color: #54a595;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(84, 165, 149, 0.1);
}
.settings-wrapper .settings-grid .settings-card .form-group textarea.setting-input {
  min-height: 100px;
  resize: none;
}

.btn-primary {
  background: #008080;
  color: #ffffff;
  border: none;
  padding: 1vw;
  border-radius: 1.5vw;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: #006666;
  transform: translateY(-2px);
}
.btn-primary:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.d-none {
  display: none !important;
}

.admin-input-teal.input-error {
  border: 1px solid #ff4d4d !important;
  background-color: #fff0f0;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}
.hero-slider .slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slider .hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s;
  z-index: 1;
}
.hero-slider .hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.hero-slider .hero-slide .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slider .hero-slide .hero-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 10;
  color: #fff;
}
.hero-slider .hero-slide .hero-content .txt-h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.hero-slider .hero-slide .hero-content .hero-accent-line {
  width: 80px;
  height: 4px;
  background: #008080;
  margin: 20px 0;
}
.hero-slider .slider-dots {
  position: absolute;
  bottom: 30px;
  left: 10%;
  z-index: 20;
  display: flex;
  gap: 10px;
}
.hero-slider .slider-dots .dot {
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.hero-slider .slider-dots .dot.active {
  background: #008080;
  border-color: #008080;
  transform: scale(1.2);
}

.search-bar-container {
  position: relative;
  z-index: 100;
  margin-top: -50px;
  display: flex;
  justify-content: center;
}
.search-bar-container .search-bar-wrapper {
  background: white;
  padding: 15px 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  gap: 20px;
}
.search-bar-container .search-bar-wrapper .search-inputs {
  display: flex;
  align-items: center;
}
.search-bar-container .search-bar-wrapper .search-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.search-bar-container .search-bar-wrapper .search-item .search-icon {
  color: #f39c12;
  font-size: 1.2rem;
}
.search-bar-container .search-bar-wrapper .search-item .search-label {
  display: block;
  font-size: 0.8rem;
  color: #95a5a6;
}
.search-bar-container .search-bar-wrapper .search-item .search-label h3 {
  margin-bottom: 0;
}
.search-bar-container .search-bar-wrapper .search-item .search-select {
  border: none;
  font-weight: 600;
  color: #2c3e50;
  outline: none;
  background: transparent;
  cursor: pointer;
}
.search-bar-container .search-bar-wrapper .search-divider {
  width: 1px;
  height: 30px;
  background: #eee;
}
.search-bar-container .search-bar-wrapper .btn-validate-search {
  background: #00bfa5;
  color: white;
  border: none;
  padding: 12px 35px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.search-bar-container .search-bar-wrapper .btn-validate-search:hover {
  background: #00897b;
  transform: scale(1.05);
}

.center-btn {
  display: flex;
  justify-content: center;
  width: 100%;
}

.btn-all {
  padding: 12px 35px;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
}
.btn-all.btn-teal {
  background-color: #00bfa5;
  color: white;
}
.btn-all.btn-teal:hover {
  background-color: #00897b;
  transform: translateY(-2px);
}
.btn-all.btn-orange {
  background-color: #f39c12;
  color: white;
}
.btn-all.btn-orange:hover {
  background-color: #e67e22;
  transform: translateY(-2px);
}

.section-title.orange {
  color: #f39c12;
}
.section-title.orange::after {
  background: #f39c12;
}

.search-field-wrapper .selectContainer {
  display: flex;
  flex-direction: column;
}
.search-field-wrapper .selectContainer label {
  margin-bottom: 0;
}
.search-field-wrapper .selectContainer label h3 {
  font-size: 0.75rem;
  color: #95a5a6;
  text-transform: uppercase;
  margin: 0;
  font-weight: 600;
}
.search-field-wrapper .selectContainer select.search-select-custom {
  border: none;
  background: transparent;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #2c3e50;
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
  padding: 2px 0;
  width: 100%;
}
.search-field-wrapper .selectContainer select.search-select-custom option {
  font-weight: normal;
  color: #333;
}

.search-bar-wrapper {
  background: #fff;
  border-radius: 60px;
  padding: 10px 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  display: inline-block;
}
.search-bar-wrapper .search-inputs-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.search-bar-wrapper .search-field-wrapper {
  width: max-content;
}
.search-bar-wrapper .search-divider {
  width: 1px;
  height: 35px;
  background: #eee;
  margin: 0.2vw;
}
.search-bar-wrapper .btn-search-validate {
  background-color: #00bfa5;
  color: white;
  border: none;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 700;
  margin-left: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.search-bar-wrapper .btn-search-validate:hover {
  background-color: #00897b;
}

.custom-select-container {
  position: relative;
  width: 150px;
  cursor: pointer;
}
.custom-select-container .custom-select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}
.custom-select-container .custom-select-trigger .current-value {
  font-weight: 700;
  color: #2c3e50;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.custom-select-container .custom-select-trigger i {
  font-size: 0.8rem;
  color: #95a5a6;
  transition: 0.3s;
}
.custom-select-container .custom-options-list {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 10px 0;
  margin: 10px 0 0 0;
  display: none;
  z-index: 1000;
}
.custom-select-container .custom-options-list .custom-option {
  padding: 10px 20px;
  font-size: 0.9rem;
  transition: 0.2s;
}
.custom-select-container .custom-options-list .custom-option:hover {
  background: #f8f9fa;
  color: #00bfa5;
}
.custom-select-container.active .custom-options-list {
  display: block;
}
.custom-select-container.active i {
  transform: rotate(180deg);
}

.destinations-view {
  width: 95%;
  margin: auto;
}
.destinations-view .dest-layout {
  padding: 0;
  margin-top: 2vw;
}
.destinations-view .dest-hero .hero-text-content {
  margin: auto;
  text-align: center;
}
.destinations-view .dest-hero .hero-text-content h1 {
  color: #f39c12;
}
.destinations-view .dest-hero .hero-text-content {
  max-width: 800px;
}

.presentation-container {
  width: 95%;
  margin: auto;
}
.presentation-container .atouts-section h2 {
  text-align: center;
}
.presentation-container .presentation-hero {
  border-radius: 2vw;
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.presentation-container .presentation-hero .hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.presentation-container .presentation-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 0;
}
.presentation-container .presentation-hero .hero-overlay .hero-text-content h1 {
  font-family: "Poppins", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.presentation-container .presentation-hero .hero-overlay .hero-text-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 400;
}
.presentation-container .presentation-content-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding: 80px 0;
}
.presentation-container .presentation-content-wrapper .text-side {
  flex: 0 0 40%;
}
.presentation-container .presentation-content-wrapper .text-side .txt-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: 800;
  color: #1a1a1a;
}
.presentation-container .presentation-content-wrapper .text-side .txt-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}
.presentation-container .presentation-content-wrapper .image-side {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.presentation-container .presentation-content-wrapper .image-side .img-responsive {
  width: 100%;
  max-width: 750px;
  height: 500px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.presentation-container .atouts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px 10%;
}
.presentation-container .atouts-grid .atout-card {
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
}
.presentation-container .atouts-grid .atout-card .atout-icon img {
  height: 80px;
  margin-bottom: 15px;
}
.presentation-container .devise-banner {
  background: #fff;
  text-align: center;
}
.presentation-container .devise-banner p {
  color: #2c3e50;
  font-weight: 700;
  font-style: italic;
  font-size: 1.5rem;
}
.presentation-container .devise-banner h3 {
  color: #f39c12;
  font-size: 2rem;
}
.presentation-container .contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fdfdfd;
  padding: 80px 10%;
  gap: 60px;
}
.presentation-container .contact-section .contact-intro .newsletter-form-group {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
}
.presentation-container .contact-section .contact-intro .newsletter-form-group .newsletter-input {
  padding: 0.8rem 1.2rem;
  border: 2px solid #e0eee9;
  border-radius: 1.5vw;
  font-size: 1rem;
  color: #333;
  transition: all 0.3s ease;
}
.presentation-container .contact-section .contact-intro .newsletter-form-group .newsletter-input:focus {
  outline: none;
  border-color: #f39c12;
  box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}
.presentation-container .contact-section .contact-intro .newsletter-form-group #btn-newsletter {
  width: 100%;
  justify-content: center;
}
.presentation-container .contact-section .contact-form {
  background: #ffffff;
}
.presentation-container .contact-section .contact-form .form-row-flex {
  display: flex;
  gap: 5vw;
  width: 100%;
}
.presentation-container .contact-section .contact-form .form-row-flex .form-group {
  flex: 1;
}
.presentation-container .contact-section .contact-form .form-group {
  margin-bottom: 20px;
}
.presentation-container .contact-section .contact-form .form-group label h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  text-transform: none;
}
.presentation-container .contact-section .contact-form .input-contact,
.presentation-container .contact-section .contact-form .input-contact-area {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  background-color: #fff;
}
.presentation-container .contact-section .contact-form .input-contact::placeholder,
.presentation-container .contact-section .contact-form .input-contact-area::placeholder {
  color: #ccc;
}
.presentation-container .contact-section .contact-form .input-contact:focus,
.presentation-container .contact-section .contact-form .input-contact-area:focus {
  border-color: #00bfa5;
  box-shadow: 0 0 0 3px rgba(0, 191, 165, 0.1);
}
.presentation-container .contact-section .contact-form .input-contact-area {
  min-height: 150px;
  resize: none;
}
.presentation-container .contact-section .contact-form .btn-teal.w-100 {
  background-color: #00bfa5;
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}
.presentation-container .contact-section .contact-form .btn-teal.w-100:hover {
  background-color: #00a892;
}

.dest-layout {
  display: flex;
  gap: 40px;
  padding: 60px 0;
}
.dest-layout .dest-filters .filter-card {
  width: 23vw;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
.dest-layout .dest-filters .filter-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: #1a1a1a;
}
.dest-layout .dest-filters .filter-card h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #00bfa5;
  margin-top: 8px;
  border-radius: 2px;
}
.dest-layout .dest-filters .filter-card .transport-group {
  display: flex;
  flex-direction: column;
}
.dest-layout .dest-filters .filter-card .filter-group {
  margin-bottom: 30px;
}
.dest-layout .dest-filters .filter-card .filter-group label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 12px;
}
.dest-layout input[type=range].range-teal {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
}
.dest-layout input[type=range].range-teal::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  background: #eee;
  border-radius: 3px;
}
.dest-layout input[type=range].range-teal::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #00bfa5;
  cursor: pointer;
  margin-top: -6px;
  box-shadow: 0 2px 6px rgba(0, 191, 165, 0.4);
  border: 2px solid #fff;
}
.dest-layout #reset-filters {
  background: transparent;
  border: 1px solid #ddd;
  color: #666;
  font-weight: 600;
  padding: 12px;
  border-radius: 12px;
  width: 100%;
  transition: all 0.3s ease;
}
.dest-layout #reset-filters:hover {
  background: #f5f5f5;
  border-color: #bbb;
  color: #333;
}
.dest-layout .dest-results {
  flex: 1;
}
.dest-layout .dest-results .results-header {
  margin-bottom: 30px;
}
.dest-layout .dest-results .results-header h2 {
  font-size: 1.5rem;
  color: #333;
}

.range-teal {
  width: 100%;
  accent-color: #00bfa5;
}

.footprint-view {
  padding-bottom: 80px;
}
.footprint-view .footprint-hero {
  width: 95%;
  margin: auto;
}
.footprint-view .footprint-hero .hero-card-teal {
  background-color: #00bfa5;
  border-radius: 30px;
  padding: 40px;
}
.footprint-view .footprint-hero .hero-card-teal h1 {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  margin-bottom: 30px;
  line-height: 1.1;
}
.footprint-view .footprint-hero .hero-card-teal .hero-image-wrapper {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
}
.footprint-view .footprint-hero .hero-card-teal .hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footprint-view .footprint-content {
  margin-top: 60px;
}
.footprint-view .footprint-content .content-layout {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
.footprint-view .footprint-content .content-layout .image-side {
  flex: 0 0 45%;
}
.footprint-view .footprint-content .content-layout .image-side .styled-image-container {
  border: 1px solid #eee;
  border-radius: 25px;
  padding: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.footprint-view .footprint-content .content-layout .image-side .styled-image-container img {
  width: 100%;
  border-radius: 20px;
  display: block;
}
.footprint-view .footprint-content .content-layout .text-side {
  flex: 1;
}
.footprint-view .footprint-content .content-layout .text-side .teal-highlight {
  color: #00bfa5;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 30px;
}
.footprint-view .footprint-content .content-layout .text-side .description-text p {
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

/* --- VUE DÉTAIL VOYAGE --- */
.voyage-detail-view .voyage-hero {
  height: 450px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.voyage-detail-view .voyage-hero .hero-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
}
.voyage-detail-view .voyage-hero .hero-overlay .container-center {
  margin: auto;
}
.voyage-detail-view .voyage-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.voyage-detail-view .voyage-hero .hero-info {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.9;
}
.voyage-detail-view .voyage-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 50px;
  padding: 60px 0;
  align-items: start;
  width: 95%;
  margin: auto;
}
.voyage-detail-view .voyage-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 2rem;
  border-bottom: 2px solid #e0eee9;
}
.voyage-detail-view .voyage-tabs .tab-btn {
  background: none;
  border: none;
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: #333;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}
.voyage-detail-view .voyage-tabs .tab-btn i {
  margin-right: 8px;
  color: #54a595;
}
.voyage-detail-view .voyage-tabs .tab-btn.active {
  color: #54a595;
  border-bottom-color: #54a595;
}
.voyage-detail-view .voyage-tabs .tab-btn:hover {
  background: #e0eee9;
}
.voyage-detail-view .tab-content .hotel-card, .voyage-detail-view .tab-content .pricing-details {
  padding: 20px;
  background: #ffffff;
  border-radius: 1.5vw;
  border-left: 5px solid #54a595;
}
.voyage-detail-view .tab-content .hotel-card h3, .voyage-detail-view .tab-content .pricing-details h3 {
  color: #54a595;
  margin-bottom: 15px;
}
.voyage-detail-view .tab-content .hotel-card .hotel-desc, .voyage-detail-view .tab-content .pricing-details .hotel-desc {
  line-height: 1.6;
  color: #333;
}
.voyage-detail-view .programme-timeline {
  position: relative;
  padding-left: 50px;
}
.voyage-detail-view .programme-timeline::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: #00bfa5;
}
.voyage-detail-view .programme-timeline .etape-item {
  position: relative;
  margin-bottom: 40px;
}
.voyage-detail-view .programme-timeline .etape-item .etape-badge {
  position: absolute;
  left: -50px;
  width: 36px;
  height: 36px;
  background: #00bfa5;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  z-index: 2;
  border: 3px solid #fff;
}
.voyage-detail-view .programme-timeline .etape-item .etape-content h3 {
  color: #00bfa5;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.voyage-detail-view .programme-timeline .etape-item .etape-content p {
  color: #555;
  line-height: 1.6;
}
.voyage-detail-view .voyage-sidebar {
  position: sticky;
  top: 100px;
}
.voyage-detail-view .voyage-sidebar .booking-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}
.voyage-detail-view .voyage-sidebar .booking-card .price-tag {
  font-size: 2.2rem;
  font-weight: 800;
  color: #f39c12;
  margin-bottom: 5px;
}
.voyage-detail-view .voyage-sidebar .booking-card .price-tag span {
  font-size: 1rem;
  color: #888;
  font-weight: 400;
}
.voyage-detail-view .voyage-sidebar .booking-card .info-list {
  margin: 25px 0;
  list-style: none;
}
.voyage-detail-view .voyage-sidebar .booking-card .info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #666;
}
.voyage-detail-view .voyage-sidebar .booking-card .info-list li i {
  color: #00bfa5;
  width: 20px;
}
.voyage-detail-view .voyage-sidebar .booking-card .reduction-box {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.voyage-detail-view .voyage-sidebar .booking-card .reduction-box p {
  margin-bottom: 5px;
}
.voyage-detail-view .voyage-sidebar .booking-card .reduction-box .promo {
  color: #e74c3c;
  font-weight: 600;
}

.modal-auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.modal-auth-overlay #form-login {
  display: flex;
  flex-direction: column;
  width: max-content;
  margin: auto;
}
.modal-auth-overlay #form-login .inputObj {
  display: flex;
  flex-direction: column;
  margin: auto;
}
.modal-auth-overlay #form-login .inputObj label, .modal-auth-overlay #form-login .inputObj input {
  margin: auto;
  margin-left: 0;
}
.modal-auth-overlay .input-auth, .modal-auth-overlay select.input-auth {
  width: 40vw;
  padding: 1vw;
  border: 1px solid #e0eee9;
  border-radius: 0.8vw;
  font-family: inherit;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.modal-auth-overlay .input-auth:focus, .modal-auth-overlay select.input-auth:focus {
  outline: none;
  border-color: #54a595;
  box-shadow: 0 0 0 3px rgba(84, 165, 149, 0.1);
}
.modal-auth-overlay select.input-auth {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2354a595' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1vw center;
  padding-right: 2.5vw;
}
.modal-auth-overlay .btn-submit-auth {
  width: 100%;
  padding: 1vw;
  margin: auto;
  margin-top: 1.5vw;
  background: #54a595;
  color: #ffffff;
  border: none;
  border-radius: 1.5vw;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}
.modal-auth-overlay .btn-submit-auth:hover {
  background: #006666;
  transform: translateY(-2px);
}
.modal-auth-overlay .btn-submit-auth:disabled {
  background: #e0eee9;
  cursor: not-allowed;
  transform: none;
}
.modal-auth-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-auth-overlay.active .modal-auth-content {
  transform: scale(1);
}
.modal-auth-overlay .modal-auth-content {
  position: relative;
  width: 90%;
  background: #ffffff;
  border-radius: 1.5vw;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}
.modal-auth-overlay .modal-auth-content .auth-card {
  box-shadow: none !important;
  border: none !important;
  margin: 0 !important;
  padding: 3vw;
  background: transparent !important;
  text-align: center;
}
.modal-auth-overlay .modal-auth-content .auth-card .txt-h2 {
  margin-top: 0;
  color: #54a595;
}
.modal-auth-overlay .modal-auth-content .btn-close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #f8f8f8;
  border: none;
  color: #333;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
}
.modal-auth-overlay .modal-auth-content .btn-close-modal:hover {
  background: #54a595;
  color: #ffffff;
}

body.modal-open {
  overflow: hidden;
}

.toast-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border-left: 5px solid #54a595;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  transform: translateX(120%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 10001;
}
.toast-notification.active {
  transform: translateX(0);
}
.toast-notification .toast-icon {
  color: #54a595;
  font-size: 1.5rem;
}
.toast-notification .toast-content .toast-title {
  font-weight: bold;
  color: #333;
}
.toast-notification .toast-content .toast-text {
  font-size: 0.9rem;
  color: #666;
}

.profile-card {
  max-width: 800px;
  margin: 2rem auto;
  background: #ffffff;
  border-radius: 1.5vw;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
  border: 1px solid #e0eee9;
}
.profile-card .profile-header {
  margin-bottom: 2rem;
  text-align: center;
  border-bottom: 2px solid #e0eee9;
  padding-bottom: 1.5rem;
}
.profile-card .profile-header h2 {
  color: #54a595;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.profile-card .profile-header .txt-small {
  color: #333;
  opacity: 0.8;
  font-size: 0.95rem;
}
.profile-card .profile-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
@media (max-width: 600px) {
  .profile-card .profile-form .form-row {
    grid-template-columns: 1fr;
  }
}
.profile-card .profile-form .form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}
.profile-card .profile-form .form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
  font-size: 0.9rem;
}
.profile-card .profile-form .form-group input {
  padding: 0.8rem 1rem;
  border: 1.5px solid #e0eee9;
  border-radius: calc(1.5vw / 2);
  font-size: 1rem;
  color: #333;
  transition: all 0.3s ease;
}
.profile-card .profile-form .form-group input:focus {
  outline: none;
  border-color: #54a595;
  box-shadow: 0 0 0 3px rgba(84, 165, 149, 0.1);
}
.profile-card .profile-form .form-group input.input-disabled {
  background-color: #e0eee9;
  color: #333;
  cursor: not-allowed;
  opacity: 0.7;
}
.profile-card .profile-form .form-group small {
  margin-top: 0.4rem;
  color: #e74c3c;
  font-size: 0.8rem;
}
.profile-card .profile-form .profile-actions {
  margin-top: 2.5rem;
  text-align: right;
}
.profile-card .profile-form .profile-actions .btn-main {
  background: #54a595;
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 1.5vw;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.profile-card .profile-form .profile-actions .btn-main:hover {
  background: #006666;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(84, 165, 149, 0.3);
}
.profile-card .profile-form .profile-actions .btn-main:disabled {
  background: rgba(0, 0, 0, 0.6);
  cursor: not-allowed;
  transform: none;
}

.alert {
  padding: 1rem;
  border-radius: calc(1.5vw / 2);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  text-align: center;
}
.alert.alert-success {
  background: #e0eee9;
  color: #006666;
  border: 1px solid #54a595;
}
.alert.alert-danger {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  border: 1px solid #e74c3c;
}

.actualites-view {
  padding-bottom: 5rem;
  background-color: #f8f9fa;
}
.actualites-view .actu-header {
  background-color: #e0eee9;
  padding: 5rem 0;
  text-align: center;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(84, 165, 149, 0.1);
}
.actualites-view .actu-header h1.txt-title {
  font-size: 2.5rem;
  color: #54a595;
  margin-bottom: 1rem;
  font-weight: 800;
}
.actualites-view .actu-header p.txt-body {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}
.actualites-view .actu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
  padding: 0 1rem;
}
.actualites-view .actu-card {
  background-color: #ffffff;
  border-radius: 1.5vw;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.actualites-view .actu-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.actualites-view .actu-card:hover .actu-card-img {
  transform: scale(1.05);
}
.actualites-view .actu-card .actu-card-img {
  height: 240px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  position: relative;
}
.actualites-view .actu-card .actu-card-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.1));
}
.actualites-view .actu-card .actu-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.actualites-view .actu-card .actu-card-body .actu-date {
  display: block;
  color: #f39c12;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}
.actualites-view .actu-card .actu-card-body h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.actualites-view .actu-card .actu-card-body p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.actualites-view .actu-card .actu-card-body .btn-read-more {
  align-self: flex-start;
  color: #54a595;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s ease;
}
.actualites-view .actu-card .actu-card-body .btn-read-more i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}
.actualites-view .actu-card .actu-card-body .btn-read-more:hover {
  color: #006666;
  gap: 15px;
}
.actualites-view .actu-card .actu-card-body .btn-read-more:hover i {
  transform: translateX(5px);
}

.article-detail-view {
  background: #ffffff;
  min-height: 100vh;
}
.article-detail-view .article-hero {
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
}
.article-detail-view .article-hero .hero-overlay {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.article-detail-view .article-hero .container-center {
  position: relative;
  z-index: 2;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}
.article-detail-view .article-hero .container-center .actu-category {
  display: inline-block;
  background: #f39c12;
  color: #ffffff;
  padding: 5px 15px;
  text-align: center;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.article-detail-view .article-hero .container-center h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 800;
  max-width: 900px;
  margin: auto;
}
.article-detail-view .article-hero .container-center .article-meta {
  font-size: 1.1rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: center;
  width: max-content;
  margin: auto;
}
.article-detail-view .article-hero .container-center .article-meta i {
  color: #f39c12;
}
.article-detail-view .article-content-wrapper {
  margin-top: -60px;
  position: relative;
  z-index: 3;
  padding-bottom: 5rem;
}
.article-detail-view .article-main-content {
  background: #ffffff;
  padding: 4rem;
  border-radius: 1.5vw;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 0 auto;
}
.article-detail-view .article-main-content .rich-text {
  color: #333;
  font-size: 1.15rem;
  line-height: 1.8;
}
.article-detail-view .article-main-content .rich-text p {
  margin-bottom: 1.5rem;
}
.article-detail-view .article-main-content .rich-text h2, .article-detail-view .article-main-content .rich-text h3 {
  color: #54a595;
  margin: 2.5rem 0 1.2rem;
  font-weight: 700;
}
.article-detail-view .article-main-content .rich-text h2 {
  font-size: 2rem;
  border-left: 5px solid #f39c12;
  padding-left: 20px;
}
.article-detail-view .article-main-content .rich-text img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 2rem 0;
}
.article-detail-view .article-main-content .rich-text ul, .article-detail-view .article-main-content .rich-text ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.article-detail-view .article-main-content .rich-text ul li, .article-detail-view .article-main-content .rich-text ol li {
  margin-bottom: 0.5rem;
}
.article-detail-view .article-main-content .rich-text blockquote {
  border-left: 4px solid #54a595;
  padding: 1rem 2rem;
  background: #e0eee9;
  font-style: italic;
  margin: 2rem 0;
}
.article-detail-view .article-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}
.article-detail-view .article-footer .btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 25px;
}
.article-detail-view .article-footer .btn-teal i {
  transition: transform 0.3s ease;
}
.article-detail-view .article-footer .btn-teal:hover i {
  transform: translateX(-5px);
}

.subscriberTable {
  margin-top: 3vw;
}

/* ============================================================
   GESTION DES ARTICLES - DASHBOARD ADMIN
   ============================================================ */
#articles-admin-section {
  padding-top: 2rem;
}
#articles-admin-section .admin-manage-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(84, 165, 149, 0.1);
}
#articles-admin-section .admin-manage-header .txt-title {
  font-size: 1.8rem;
  color: #333;
  font-weight: 700;
  margin: 0;
}
#articles-admin-section .manage-section {
  background: #ffffff;
  border-radius: 1.5vw;
  box-shadow: 0 1vw 3vw rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
#articles-admin-section .manage-section h2 {
  font-size: 1.8vw;
  font-weight: 800;
  color: #333;
  margin-bottom: 2vw;
}

.manage-item-row {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #eee;
  transition: background 0.3s ease;
}
.manage-item-row:last-child {
  border-bottom: none;
}
.manage-item-row:hover {
  background: rgba(224, 238, 233, 0.3);
}
.manage-item-row .item-img {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 1px solid #ddd;
  display: flex;
}
.manage-item-row .item-img i {
  margin: auto;
}
.manage-item-row .item-info {
  flex-grow: 1;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
}
.manage-item-row .item-info .item-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: #54a595;
  margin-bottom: 4px;
}
.manage-item-row .item-info .item-meta {
  font-size: 0.85rem;
  color: #777;
  display: flex;
  align-items: center;
  gap: 10px;
}
.manage-item-row .item-info .item-meta strong {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.manage-item-row .item-info .item-meta strong.status-publie {
  background: rgba(46, 204, 113, 0.15);
  color: #27ae60;
}
.manage-item-row .item-info .item-meta strong.status-brouillon {
  background: rgba(243, 156, 18, 0.15);
  color: #e67e22;
}
.manage-item-row .item-actions {
  display: flex;
  gap: 8px;
}
.manage-item-row .item-actions .btn-action {
  width: 35px;
  height: 35px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #f8f9fa;
  color: #555;
}
.manage-item-row .item-actions .btn-action.edit-article:hover {
  background: #54a595;
  color: #ffffff;
}
.manage-item-row .item-actions .btn-action.delete-article:hover {
  background: #e74c3c;
  color: #ffffff;
}
.manage-item-row .item-actions .btn-action i {
  font-size: 0.9rem;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}
.article-layout .form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.article-layout .form-group label {
  font-weight: 600;
  color: #555;
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.article-layout .form-group .admin-input {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}
.article-layout .form-group .admin-input:focus {
  border-color: #54a595;
  box-shadow: 0 0 0 3px rgba(84, 165, 149, 0.1);
}
.article-layout .form-group .admin-input::placeholder {
  color: #bbb;
}
.article-layout .form-group textarea.admin-input {
  resize: vertical;
  min-height: 100px;
}
.article-layout .form-group .rich-editor {
  background: #fff;
  border: 1px solid #ddd;
  overflow-y: auto;
  line-height: 1.6;
}
.article-layout .form-group .rich-editor:focus {
  border-color: #54a595;
}
.article-layout .preview-info {
  margin-top: 15px;
  padding: 5px;
}
.article-layout .preview-info #preview-titre {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #2c3e50;
  line-height: 1.3;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-layout .preview-info #preview-resume {
  display: block;
  font-size: 0.9rem;
  color: #7f8c8d;
  line-height: 1.5;
  font-weight: 400;
  font-style: normal;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-layout .preview-info::before {
  content: "ACTUALITÉ";
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #54a595;
  margin-bottom: 5px;
}

.dashboard-tabs-container {
  margin-top: 20px;
}
.dashboard-tabs-container .dashboard-tabs-nav {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}
.dashboard-tabs-container .dashboard-tabs-nav .tab-btn {
  background: none;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #777;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dashboard-tabs-container .dashboard-tabs-nav .tab-btn i {
  font-size: 1.1rem;
}
.dashboard-tabs-container .dashboard-tabs-nav .tab-btn:hover {
  background: rgba(224, 238, 233, 0.2);
  color: #54a595;
}
.dashboard-tabs-container .dashboard-tabs-nav .tab-btn.active {
  background: #54a595;
  color: white;
  box-shadow: 0 4px 10px rgba(84, 165, 149, 0.3);
}
.dashboard-tabs-container .dashboard-tabs-content .tab-pane {
  display: none;
}
.dashboard-tabs-container .dashboard-tabs-content .tab-pane.active {
  display: block;
}
.dashboard-tabs-container .dashboard-tabs-content .tab-pane .manage-card-style {
  margin-top: 0 !important;
}
@media only screen and (max-width: 1024px) {
  .search-bar-wrapper {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-around;
    padding: 10px !important;
    border-radius: 50px !important;
    width: 95% !important;
    margin: 0 auto;
  }
  .search-bar-wrapper .search-item {
    flex: 0 1 auto !important;
    padding: 10px !important;
    border: none !important;
    transition: all 0.3s ease;
  }
  .search-bar-wrapper .search-item .search-field-wrapper {
    display: none;
    margin: auto;
  }
  .search-bar-wrapper .search-item .search-field-wrapper .custom-select-container {
    margin: auto;
  }
  .search-bar-wrapper .search-item.active-mobile {
    background: #f8f8f8;
    border-radius: 30px;
  }
  .search-bar-wrapper .search-item.active-mobile .search-field-wrapper {
    display: block;
    margin-left: 10px;
  }
  .search-bar-wrapper .search-actions {
    width: auto !important;
  }
  .search-bar-wrapper .search-actions #btn-search-main {
    border-radius: 50% !important;
    width: 45px;
    height: 45px;
    padding: 0;
  }
  .search-bar-wrapper .search-actions #btn-search-main span {
    display: none;
  }
  .search-bar-wrapper .search-actions #btn-search-main i {
    margin: 0;
  }
  .travel-grid {
    grid-template-columns: repeat(auto-fill, minmax(30.83vw, 1fr));
    gap: 4vw;
  }
  .travel-grid .travel-card .card-content h3 {
    font-size: 3vw;
  }
  .travel-grid .travel-card .card-content .price-tag .per-person {
    font-size: 1.5vw;
  }
  .travel-grid .travel-card .card-content .date-range {
    font-size: 2vw;
  }
}
@media only screen and (max-width: 768px) {
  .search-bar-wrapper {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-around;
    padding: 10px !important;
    border-radius: 50px !important;
    width: 95% !important;
    margin: 0 auto;
  }
  .search-bar-wrapper .search-item {
    flex: 0 1 auto !important;
    padding: 10px !important;
    border: none !important;
    transition: all 0.3s ease;
  }
  .search-bar-wrapper .search-item .search-field-wrapper {
    display: none;
    margin: auto;
  }
  .search-bar-wrapper .search-item .search-field-wrapper .custom-select-container {
    margin: auto;
  }
  .search-bar-wrapper .search-item.active-mobile {
    background: #f8f8f8;
    border-radius: 30px;
  }
  .search-bar-wrapper .search-item.active-mobile .search-field-wrapper {
    display: block;
    margin-left: 10px;
  }
  .search-bar-wrapper .search-actions {
    width: auto !important;
  }
  .search-bar-wrapper .search-actions #btn-search-main {
    border-radius: 50% !important;
    width: 45px;
    height: 45px;
    padding: 0;
  }
  .search-bar-wrapper .search-actions #btn-search-main span {
    display: none;
  }
  .search-bar-wrapper .search-actions #btn-search-main i {
    margin: 0;
  }
}



