/* =====================================================
   VARIABLES CSS - COULEURS PAR NATIONALITÃƒâ€°
   ===================================================== */
:root {
	--nationality-france: #1d4ed8;      /* Bleu France */
	--nationality-italy: #16a34a;       /* Vert Italie */
	--nationality-spain: #eab308;       /* Jaune Espagne */
	--nationality-germany: #000000;     /* Noir Allemagne */
	--nationality-croatia: #60a5fa;     /* Bleu clair Croatie */

	/* Tous les pays rouges → nuances bien distinctes */
	--nationality-portugal: #1b4b0c;    /* Rouge foncé Portugal */
	--nationality-poland: #e80808;      /* Rouge vif Pologne */
	--nationality-japan: #dc2626;       /* Rouge classique Japon */
	--nationality-turkey: #e7e7e7;      /* Rouge sombre Turquie */
	--nationality-switzerland: #e31b1b; /* Rouge Suisse (léger bordeaux) */
	--nationality-austria: #930404;     /* Rouge clair pastel Autriche */
--nationality-belgium: #f59e0b;     /* Orange Belgique */
	--nationality-southkorea: #051e9b;  /* Rose foncé (dérivé du rouge du drapeau) */
	--nationality-brazil: #10a37f;      /* Vert Brésil (différent de l’Italie) */
	--nationality-colombia: #fbbf24;    /* Jaune Colombie */
	--nationality-czechia: #1e40af;     /* Bleu foncé Tchéquie */

	--nationality-others: #6b7280;      /* Gris neutre */
}


/* General structure */
.trip-page {
	width: 100%;
	background: #f9f9f9;
}

/* Main wrapper for semantic structure */
.trip-main {
	display: block;
	width: 100%;
}

/* Full width hero */
.hero-full {
	width: 100%;

	padding: 60px 20px;
}

.hero-content {
	max-width: var(--max-width);
	margin: 0 auto;
}

.hero-content h1 {
	font-size: 36px;
	margin-bottom: 20px;
}

/* =====================================================
   HERO REDESIGNED - STYLE AIRBNB
   ===================================================== */
.hero-redesigned {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 20px; /* Alignement avec trip-container */
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.hero-text {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Breadcrumb - Style retour simple */
.breadcrumb {
	font-size: 14px;
	color: var(--color-light-grey);
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 10px;
}

.breadcrumb-back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--color-dark);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s;
}

.breadcrumb-back:hover {
	color: var(--color-primary);
}

.breadcrumb-back svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.breadcrumb a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color 0.2s;
}

.breadcrumb a:hover {
	color: var(--color-primary);
	text-decoration: underline;
}

.breadcrumb span {
	color: var(--color-grey);
}

.hero-text h1 {
	font-size: 48px;
	line-height: 1.15;
	color: var(--color-dark);
	margin: 0;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.hero-description {
	font-size: 16px;
	line-height: 1.7;
	color: var(--color-text-light);
	margin: 0;
}

.hero-description strong {
	color: var(--color-dark);
}

.hero-image {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	height: 400px; /* Hauteur fixe */
}

.hero-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover; /* Image en cover */
}

/* Responsive Hero */
@media (max-width: 992px) {
	.hero-redesigned {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.hero-text {
		order: 1;
	}

	.hero-image {
		order: 2;
		max-width: 600px;
		margin: 0 auto;
			height: 300px; /* Hauteur fixe */
	}

	.hero-text h1 {
		font-size: 36px;
	}
}

@media (max-width: 768px) {
	.hero-full {
		padding: 40px 15px;
	}

	.hero-text h1 {
		font-size: 32px;
	}

	.hero-description {
		font-size: 15px;
	}
}

/* Table responsive wrapper */
.table-responsive {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin-bottom: 20px;
}

.table-responsive table {
	min-width: 800px;
	border-collapse: collapse;
	width: 100%;
}

/* Full width sticky navigation */
.trip-nav {
	width: 100%;
	background: white;
	border-bottom: 2px solid var(--color-light-grey);
	position: sticky;
	top: 0;
	z-index: 100;
	transition: box-shadow 0.2s;
}

.trip-nav.scrolled {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.trip-nav-inner {
	max-width: var(--max-width);
	margin: 0 auto;
	display: flex;
	gap: 30px;
	padding: 0 20px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.trip-nav-inner::-webkit-scrollbar {
	display: none;
}

.nav-link {
	display: block;
	padding: 15px 0;
	color: #6b7280;
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	white-space: nowrap;
	border-bottom: 3px solid transparent;
	transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
	color: var(--color-primary);
	border-bottom-color: var(--color-primary);
}

/* Container with max-width */
.trip-container {
	display: grid;
	grid-template-columns: 1fr 400px;
	gap: 40px;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 40px 20px;
}

.trip-content {
	min-width: 0;


}

.content-sections {
	margin-top: 20px;
		margin-bottom: 60px;
	scroll-margin-top: 80px;
		 display: flex;
  flex-direction: column;
  gap: 80px;
}



.content-sections h2 {
	font-size: 28px;
	color: var(--color-dark);
	margin-bottom: 40px;
	font-weight: 700;
}


.content-sections h3 {
	font-size: 26px;
	color: var(--color-dark);
    margin-top: 60px;
	margin-bottom: 20px;
	font-weight: 700;
}

.content-sections h4 {
	font-size: 22px;
	color: var(--color-dark);
	margin-top: 20px;
	margin-bottom: 20px;
	font-weight: 700;
}

.content-sections p {
	margin-bottom: 15px;
	line-height: 1.8;
	color: var(--color-text-light);
	font-size: 16px;
}

.content-sections p a {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--color-text-light);
    font-size: 16px;

    text-decoration: underline;
    text-decoration-thickness: 2px; /* Ã©paisseur du trait */
    text-underline-offset: 4px; /* distance entre le texte et le soulignement */
}

/* =====================================================
   NATIONALITY CHART (DONUT)
   ===================================================== */
.nationality-chart-container {
	border-radius: 12px;
	padding: 30px;
	margin-top: 30px;
}

.nationality-chart-container h3 {
	font-size: 20px;
	color: var(--color-dark);
	margin-bottom: 25px;
	font-weight: 600;
	text-align: center;
}

.nationality-chart {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.pie-chart-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}

.pie-chart {
	width: 100%;
	max-width: 280px;
	height: auto;
}

.pie-chart path {
	transition: opacity 0.2s ease;
	cursor: pointer;
}

.pie-chart path:hover {
	opacity: 0.8;
}

.nationality-legend {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.nationality-legend li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	color: #374151;
	padding: 0;
}

.nationality-legend li::before {
	display: none;
}

.legend-color {
	width: 24px;
	height: 24px;
	border-radius: 4px;
	flex-shrink: 0;
}

.nationality-legend li[data-country="france"] .legend-color {
	background: var(--nationality-france);
}

.nationality-legend li[data-country="italy"] .legend-color {
	background: var(--nationality-italy);
}

.nationality-legend li[data-country="spain"] .legend-color {
	background: var(--nationality-spain);
}

.nationality-legend li[data-country="germany"] .legend-color {
	background: var(--nationality-germany);
}

.nationality-legend li[data-country="croatia"] .legend-color {
	background: var(--nationality-croatia);
}

.nationality-legend li[data-country="portugal"] .legend-color {
	background: var(--nationality-portugal);
}

.nationality-legend li[data-country="southkorea"] .legend-color {
	background: var(--nationality-southkorea);
}

.nationality-legend li[data-country="brazil"] .legend-color {
	background: var(--nationality-brazil);
}

.nationality-legend li[data-country="colombia"] .legend-color {
	background: var(--nationality-colombia);
}

.nationality-legend li[data-country="japan"] .legend-color {
	background: var(--nationality-japan);
}

.nationality-legend li[data-country="turkey"] .legend-color {
	background: var(--nationality-turkey);
}

.nationality-legend li[data-country="switzerland"] .legend-color {
	background: var(--nationality-switzerland);
}

.nationality-legend li[data-country="austria"] .legend-color {
	background: var(--nationality-austria);
}

.nationality-legend li[data-country="czechia"] .legend-color {
	background: var(--nationality-czechia);
}

.nationality-legend li[data-country="others"] .legend-color {
	background: var(--nationality-others);
}


.nationality-legend li[data-country="belgium"] .legend-color {
    background: var(--nationality-belgium);
}

.nationality-legend li[data-country="poland"] .legend-color {
    background: var(--nationality-poland);
}



.legend-label {
	flex: 1;
	font-weight: 500;
}

.legend-value {
	font-weight: 700;
	color: var(--color-dark);
	min-width: 45px;
	text-align: right;
}

.nationality-note {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #d1d5db;
	color: var(--color-text-light);
	font-size: 13px;
	text-align: center;
	font-style: italic;
}

/* Responsive nationality chart */
@media (max-width: 768px) {
	.nationality-chart {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.pie-chart {
		max-width: 240px;
	}
}

/* =====================================================
   PRESENTATION SECTION - VIDÃƒâ€°O & GALERIE
   ===================================================== */
.presentation-media,
.presentation-gallery {
	margin-top: 40px;
}

.presentation-media h3,
.presentation-gallery h3 {
	font-size: 20px;
	color: var(--color-dark);
	font-weight: 600;
}

/* VidÃƒÂ©o YouTube */
.video-container {
  width: 100%;
  max-width: 840px;;
  aspect-ratio: 16 / 9;
  position: relative;
}




/* La zone vidÃ©o (ou image) remplit entiÃ¨rement bk_1 */
.media_video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: var(--stay-shadow);
  background: black;
  cursor: pointer;
}

.media_video img,
.media_video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

@media only screen and (min-width: 0px) {
  .media_video {
    border-radius: 10px;
  }
  .media_video img,
  .media_video iframe {
    border-radius: 10px;
  }
}

/* Bouton play dans la vidÃ©o */
.media_video div {
  background: var(--color-red);
  width: 70px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: white;
}












/* Galerie d'images */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	margin-bottom: 20px;
}

.gallery-item {
	position: relative;
	padding-bottom: 75%;
	overflow: hidden;
	border-radius: 8px;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.gallery-item:hover {
	transform: scale(1.05);
}

.gallery-item img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Masquer les images aprÃ¨s les 3 premiÃ¨res */
.gallery-item:nth-child(n+4) {
	display: none;
}

/* Bouton sobre style pill */
.gallery-view-all {
	display: block;
	width: auto;
	max-width: 300px;
	margin: 0 auto;
	padding: 12px 40px;
	background: transparent;
	color: #374151;
	border: 1px solid #d1d5db;
	border-radius: 50px;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
}

.gallery-view-all:hover {
	border-color: var(--color-grey);
	color: var(--color-dark);
}

/* Gallery Modal Fullscreen */
.gallery-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 10002;
	overflow-y: auto;
}

.gallery-modal.active {
	display: block;
}

.gallery-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(247, 247, 247, 0.95);
	z-index: 10002;
}

.gallery-modal-close {
	position: fixed;
	top: 25px;
	right: 25px;
	width: 50px;
	height: 50px;
	background: white;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10004;
	transition: all 0.3s ease;
}

.gallery-modal-close:hover {
	background: var(--color-red);
	transform: rotate(90deg);
}

.gallery-modal-close svg {
	width: 24px;
	height: 24px;
	color: var(--color-dark);
}

.gallery-modal-close:hover svg {
	color: white;
}

.gallery-modal-content {
	position: relative;
	z-index: 10003;
	padding: 80px 40px 40px;
	max-width: 1400px;
	margin: 0 auto;
}

.gallery-modal-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
}

.gallery-modal-item {
	position: relative;
	padding-bottom: 75%;
	overflow: hidden;
	border-radius: 12px;
}

.gallery-modal-item img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Responsive Presentation */
@media (max-width: 768px) {
	.gallery-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.video-play-button {
		font-size: 48px;
	}

	.gallery-modal-content {
		padding: 60px 15px 20px;
	}

	.gallery-modal-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.gallery-modal-close {
		top: 15px;
		right: 15px;
		width: 45px;
		height: 45px;
	}
}

/* Sidebar with FloatSidebar system */
.trip-sidebar {
	position: relative;
	align-self: start;
}

.sidebar-wrapper {
	position: relative;
	width: 400px;
}

.sidebar-sticky {
	width: 400px;
	background: #fff;
	border: 2px solid var(--color-light-grey);
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.sidebar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
}

.sidebar-header h3 {
	margin: 0;
	font-size: 20px;
	color: var(--color-dark);
}

.mobile-close-btn {
	display: none;
	background: none;
	border: none;
	font-size: 30px;
	color: #6b7280;
	cursor: pointer;
	padding: 0;
	line-height: 1;
}

.form-group {
	margin-bottom: 20px;
	position: relative;
}

.form-group label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: #374151;
	font-size: 14px;
}

.form-group small {
	display: block;
	color: #6b7280;
	font-size: 12px;
	margin-top: 4px;
}

/* Trip duration info */
.duration-info {
	display: block;
	color: var(--color-primary);
	font-size: 13px;
	font-weight: 600;
	margin-top: 8px;
	text-align: center;
}

/* Duration selector */
.duration-selector {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 15px 0;
	height: 80px;
}

.duration-nav {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid var(--color-primary);
	background: white;
	color: var(--color-primary);
	font-size: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	flex-shrink: 0;
}

.duration-nav:hover:not(:disabled) {
	background: var(--color-primary);
	color: white;
}

.duration-nav:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.duration-options {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	padding: 5px 0;
	flex: 1;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.duration-options::-webkit-scrollbar {
	display: none;
}

.duration-option {
	min-width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 2px solid var(--color-light-grey);
	background: white;
	color: #6b7280;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	flex-shrink: 0;
}

.duration-option:hover {
	border-color: var(--color-primary);
	color: var(--color-primary);
}

.duration-option.active {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: white;
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Dates */
.booking-dates-wrapper {
	display: flex;
	align-items: stretch;
	border: 2px solid var(--color-light-grey);
	border-radius: 8px;
	background: white;
	cursor: pointer;
	transition: all 0.2s;
	overflow: hidden;
}

.booking-dates-wrapper:hover {
	border-color: var(--color-primary);
}

.date-box {
	flex: 1;
	padding: 12px 15px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.date-box:first-child {
	border-right: 1px solid var(--color-light-grey);
}

.date-label {
	font-size: 11px;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
}

.date-value {
	font-size: 14px;
	font-weight: 600;
	color: var(--color-dark);
}

.date-value.placeholder {
	color: var(--color-grey);
	font-weight: 400;
}

.date-separator {
	display: flex;
	align-items: center;
	color: var(--color-grey);
	font-size: 18px;
	padding: 0 8px;
}

/* Calendar */
.calendar-popup {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	margin-top: 8px;
	background: white;
	border: 2px solid var(--color-light-grey);
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
	padding: 20px;
	z-index: 1000;
}

.calendar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.calendar-header button {
	background: none;
	border: none;
	font-size: 24px;
	color: #374151;
	cursor: pointer;
	padding: 5px 10px;
	transition: color 0.2s;
}

.calendar-header button:hover {
	color: var(--color-primary);
}

#current-month {
	font-weight: 600;
	font-size: 16px;
	color: var(--color-dark);
}

.calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 5px;
}

.calendar-day-header {
	text-align: center;
	font-size: 12px;
	color: #6b7280;
	font-weight: 600;
	padding: 8px 0;
}

.calendar-day {
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.2s;
}

.calendar-day:hover:not(.disabled):not(.empty) {
	background: #eff6ff;
	color: var(--color-primary);
}

.calendar-day.disabled {
	color: #d1d5db;
	cursor: not-allowed;
}

.calendar-day.available {
	background: var(--color-white-grey);
	color: var(--color-dark);
	font-weight: 600;
}

.calendar-day.available:hover {
	background: var(--color-primary);
	color: white;
}

.calendar-day.selected {
	background: var(--color-primary);
	color: white;
}

.calendar-day.empty {
	cursor: default;
}

/* Radio cards */
.radio-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.radio-card {
	display: block;
	position: relative;
	cursor: pointer;
}

.radio-card input[type="radio"] {
	position: absolute;
	opacity: 0;
}

.radio-content {
	display: block;
	padding: 15px;
	border: 2px solid var(--color-light-grey);
	border-radius: 8px;
	transition: all 0.2s;
}

.radio-content strong {
	display: block;
	color: var(--color-dark);
	margin-bottom: 4px;
}

.radio-content small {
	color: #6b7280;
	display: block;
}

.radio-badge {
	display: inline-block;
	background: #dbeafe;
	color: #1e40af;
	font-size: 10px;
	padding: 2px 8px;
	border-radius: 4px;
	margin-top: 6px;
	font-weight: 600;
}

.radio-card input[type="radio"]:checked+.radio-content {
	border-color: var(--color-primary);
	background: #eff6ff;
}

/* Included */
.trip-included {
	background: #f0fdf4;
	border: 1px solid #86efac;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 20px;
}

.trip-included h4 {
	margin: 0 0 12px 0;
	font-size: 14px;
	color: #166534;
	font-weight: 600;
}

.trip-included ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.trip-included li {
	padding: 6px 0;
	padding-left: 20px;
	position: relative;
	color: #166534;
	font-size: 13px;
}

.trip-included li:before {
content: "✔";
	position: absolute;
	left: 0;
	color: #10b981;
	font-weight: bold;
}

/* Not Included */
.trip-not-included {
	background: var(--color-soft-red);
	border: 1px solid #fecaca;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 20px;
}

.trip-not-included h4 {
	margin: 0 0 12px 0;
	font-size: 14px;
	color: var(--color-dark-red);
	font-weight: 600;
}

.trip-not-included ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.trip-not-included li {
	padding: 6px 0;
	padding-left: 20px;
	position: relative;
	color: var(--color-dark-red);
	font-size: 13px;
}

.trip-not-included li:before {
content: "✗";
	position: absolute;
	left: 0;
	color: var(--color-red);
	font-weight: bold;
}

/* Price */
.price-result {
	margin-top: 20px;
}

.price-result hr {
	border: none;
	border-top: 1px solid var(--color-light-grey);
	margin: 15px 0;
}

.price-result h4 {
	margin: 15px 0 10px 0;
	font-size: 16px;
	color: #374151;
}

.total-price {
	font-size: 36px;
	font-weight: 700;
	color: var(--color-dark);
	text-align: center;
	margin: 10px 0;
}

.registration-fees {
	display: block;
	text-align: center;
	color: #6b7280;
	font-size: 12px;
	margin-top: 8px;
}

.error-message {
	background: #fee2e2;
	border: 1px solid #fecaca;
	color: var(--color-dark-red);
	padding: 12px;
	border-radius: 8px;
	margin-top: 15px;
	font-size: 14px;
}

/* =====================================================
   ACTION BUTTONS
   ===================================================== */
.action-buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 20px;
}

.btn-reserve {
	width: 100%;
	padding: 16px;
	background: var(--color-primary);
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
}

.btn-reserve:hover {
	background: #2563eb;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-reserve:active {
	transform: translateY(0);
}

.btn-contact {
	width: 100%;
	padding: 14px;
	background: transparent;
	color: #374151;
	border: 2px solid #d1d5db;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s;
}

.btn-contact:hover {
	border-color: var(--color-grey);
	color: var(--color-dark);
	background: #f9fafb;
}

.btn-contact:active {
	background: var(--color-white-grey);
}

/* Accommodation Grid */
.accommodation-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-top: 30px;
}


.accommodation-box {
  background: #fff;
  border: 2px solid var(--color-light-grey);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.accommodation-box:hover {
  border-color: var(--color-primary);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
  transform: translateY(-5px);
}

/* Image */
.accommodation-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
  background: var(--color-white-grey);
}

.accommodation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.accommodation-box:hover .accommodation-image img {
  transform: scale(1.05);
}

/* Content */
.accommodation-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

h3.accommodation-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0 0 12px 0;
}

/* Location â€” 1 ligne MAX, propre avec ellipse */
.accommodation-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 15px;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.accommodation-location svg {
  width: 18px;
  height: 18px;
  fill: var(--color-primary);
  flex-shrink: 0;
}

/* Description â€” exactement 3 lignes, VRAI "â€¦" sans lettres coupÃ©es */
.accommodation-description {
  color: var(--color-text-light);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;  /* 3 lignes max */
  overflow: hidden;
  text-overflow: ellipsis; /* ajoute "â€¦" correctement */
}

/* Bouton */
.accommodation-btn {
  background: transparent;
  color: #374151;
  border: 1px solid #d1d5db;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  align-self: flex-start;
}

.accommodation-btn:hover {
  border-color: var(--color-grey);
  color: var(--color-dark);
}


/* Accommodation Modal */
.accommodation-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	display: none;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.accommodation-modal.active {
	display: block;
	opacity: 1;
}

.accommodation-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
}

.accommodation-modal-content {
	position: relative;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	background: white;
}

.accommodation-modal-close {
	position: fixed;
	top: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	background: white;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: all 0.2s;
	z-index: 10001;
}

.accommodation-modal-close:hover {
	background: var(--color-red);
	transform: rotate(90deg);
}

.accommodation-modal-close svg {
	width: 24px;
	height: 24px;
	color: var(--color-dark);
}

.accommodation-modal-close:hover svg {
	color: white;
}

.accommodation-modal-inner {
	max-width: 880px;
	margin: 0 auto;
	padding: 80px 40px 40px;
}

.accommodation-modal-inner h2 {
	font-size: 42px;
	color: var(--color-dark);
	margin-bottom: 30px;
	font-weight: 700;
}

/* Modal Carousel */
.modal-carousel {
	position: relative;
	width: 100%;
	max-width: 900px;
	height: 500px;
	margin: 0 auto 40px;
	border-radius: 12px;
	overflow: hidden;
	background: var(--color-white-grey);
}

.modal-carousel-track {
	display: flex;
	height: 100%;
	transition: transform 0.4s ease;
	width: 100%;
}

.modal-carousel-slide {
	min-width: 100%;
	width: 100%;
	height: 100%;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: var(--color-white-grey);
}

.modal-carousel-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.9);
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	z-index: 10;
}

.modal-carousel-nav:hover {
	background: white;
	transform: translateY(-50%) scale(1.1);
}

.modal-carousel-nav.prev {
	left: 20px;
}

.modal-carousel-nav.next {
	right: 20px;
}

.modal-carousel-nav svg {
	width: 24px;
	height: 24px;
	color: var(--color-dark);
}

.modal-carousel-nav.hidden {
	display: none;
}

/* Modal Content */
.modal-content-body {
	max-width: 900px;
	margin: 0 auto;
}

.modal-section {
	margin-bottom: 40px;
}

.modal-section h3 {
	font-size: 24px;
	color: var(--color-dark);
	margin-bottom: 15px;
	font-weight: 600;
}

.modal-description {
	font-size: 16px;
	line-height: 1.8;
	color: var(--color-text-light);
}




/* Modal Description (HTML gÃ©nÃ©rÃ© automatiquement) */
.modal-section h3 {
	font-size: 24px;
	color: var(--color-dark);
	margin-bottom: 15px;
	font-weight: 600;
}

.modal-section p {
	font-size: 16px;
	line-height: 1.75;
	color: var(--color-text-light);
	margin-bottom: 16px;
	text-align: justify;
}

.modal-section strong {
	color: #111827;
	font-weight: 600;
}



.modal-equipment-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.modal-equipment-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 15px;
	background: #f9fafb;
	border-radius: 8px;
	font-size: 15px;
	color: #374151;
}

.modal-equipment-list li::before {
	content: "✔";
	color: #10b981;
	font-weight: bold;
	font-size: 18px;
}


/* Modal Extra Info (Check-in / Check-out) */
.modal-extra-info-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.modal-extra-info-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 15px;
	background: #f9fafb;
	border-radius: 8px;
	font-size: 15px;
	color: #374151;
	border: 1px solid var(--color-light-grey);
}

/* IcÃ´nes SVG intÃ©grÃ©es */
.modal-extra-info-list li svg {
	width: 26px;
	height: 26px;
	flex-shrink: 0;
}

.modal-extra-info-list strong {
	margin-right: 6px;
	color: #111827;
	font-weight: 600;
}


.modal-map {
	width: 100%;
	height: 450px;
	border-radius: 12px;
	overflow: hidden;
	border: 2px solid var(--color-light-grey);
}

.modal-map iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

/* Responsive Accommodation */
@media (max-width: 768px) {
	.accommodation-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.accommodation-image {
		height: 200px;
	}

	.accommodation-content {
		padding: 20px;
	}

	.accommodation-name {
		font-size: 20px;
	}

	.accommodation-modal-inner {
		padding: 60px 20px 20px;
		max-width: 100%;
		overflow-x: hidden;
	}

	.accommodation-modal-content {
		padding: 20px;
		max-width: 100vw;
		overflow-x: hidden;
		box-sizing: border-box;
	}

	.accommodation-modal-inner h2 {
		font-size: 28px;
		word-wrap: break-word;
	}

	.accommodation-modal-close {
		top: 15px;
		right: 15px;
		width: 45px;
		height: 45px;
	}

	.modal-carousel {
		height: 280px;
		margin-bottom: 30px;
		width: 100%;
		max-width: 100%;
	}

	.modal-carousel-nav {
		width: 40px;
		height: 40px;
	}

	.modal-carousel-nav.prev {
		left: 10px;
	}

	.modal-carousel-nav.next {
		right: 10px;
	}

	.modal-equipment-list {
		grid-template-columns: 1fr;
	}

	.modal-map {
		height: 300px;
	}

	/* Table responsive improvements */
	.table-responsive {
		margin: 0 -20px 20px;
		width: calc(100% + 40px);
		overflow-x: auto;
		border-radius: 0;
	}
	
	.table-responsive table {
		font-size: 13px;
	}
	
	.table-responsive td,
	.table-responsive th {
		padding: 8px 6px !important;
		white-space: nowrap;
	}
	
	.table-responsive .time {
		font-size: 11px;
	}

	/* Modal content sections */
	.modal-section {
		word-wrap: break-word;
		overflow-wrap: break-word;
	}

	.modal-section h3 {
		font-size: 20px;
	}

	.modal-content-body {
		max-width: 100%;
		overflow-x: hidden;
	}
}

/* Mobile */
.mobile-price-bar,
.mobile-overlay {
	display: none;
}

/* Loading states */
.loading-fade {
	opacity: 0.4;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.loading-hidden {
	visibility: hidden;
}

@media (max-width: 980px) {
	.trip-container {
		grid-template-columns: 1fr;
		padding: 20px 15px 100px 15px;
	}

	.trip-sidebar {
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100vh;
		z-index: 9999;
		transition: left 0.3s ease;
		overflow-y: auto;
		background: white;
	}

	.trip-sidebar.mobile-open {
		left: 0;
	}

	.sidebar-wrapper {
		width: 100%;
	}

	.sidebar-sticky {
		position: static;
		width: 100%;
		border-radius: 0;
		min-height: 100vh;
		padding: 20px 20px 100px 20px;
	}

	.mobile-close-btn {
		display: block;
	}

	/* Fixed mobile bar ALWAYS visible at bottom */
	.mobile-price-bar {
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 999;
		background: white;
		border-top: 2px solid var(--color-light-grey);
		padding: 15px 20px;
		box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
	}

	.mobile-price-content {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 15px;
	}

	.mobile-price-info {
		display: flex;
		flex-direction: column;
	}

	.mobile-price-label {
		font-size: 12px;
		color: #6b7280;
		text-transform: uppercase;
		letter-spacing: 0.5px;
	}

	.mobile-price-amount {
		font-size: 24px;
		font-weight: 700;
		color: var(--color-dark);
	}

	.mobile-open-calculator {
		background: var(--color-primary);
		color: white;
		border: none;
		padding: 12px 24px;
		border-radius: 8px;
		font-weight: 600;
		font-size: 14px;
		cursor: pointer;
		white-space: nowrap;
	}

	.mobile-overlay {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: rgba(0, 0, 0, 0.5);
		z-index: 9998;
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.mobile-overlay.active {
		display: block;
		opacity: 1;
	}

	/* Responsive Action Buttons */
	.action-buttons {
		margin-top: 15px;
	}
	
	.btn-reserve {
		padding: 14px;
		font-size: 15px;
	}
	
	.btn-contact {
		padding: 12px;
		font-size: 14px;
	}
}

.hero-down {
	position: relative;
	width: 100%;
	
	padding: 80px 20px;
}



.hero-down-container {

	margin: 0 auto;
	padding: 40px 20px;

	gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;

}


@media (max-width: 980px) {

	.hero-down-container {
padding: 20px;
		}
		}

.hero-down-container h2 {
	color: var(--color-dark);
	font-size: 36px;
	text-align: center;
	margin-bottom: 15px;
	font-weight: 700;
}


/* =====================================================
   REVIEWS SECTION
   ===================================================== */
/* =====================================================
   REVIEWS SECTION
   ===================================================== */
.reviews-intro {
	padding:40px;
}

@media (max-width: 980px) {
.reviews-intro {
	padding:0px;
}
	}

.reviews-intro p{
	font-size: 15px;
	line-height: 1.6;
	color: var(--color-text-light);

	margin-bottom: 15px;
  line-height: 1.8;
  color: var(--color-text-light);
  font-size: 16px;
}

.reviews-rating {
	background: white;
	border-radius: 16px;
	padding: 40px;
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 60px;
	align-items: center;
	justify-items: center;
}

.rating-left {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 20px 0;
}

.rating-label {
	font-size: 18px;
	font-weight: 600;
	color: var(--color-dark);
	margin: 0 0 15px 0;
}

.item_stars {
	display: flex;
	gap: 3px;
	margin-bottom: 15px;
}

.item_stars svg {
	width: 24px;
	height: 24px;
}

.rating-score {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 5px;
}

.score-number {
	font-size: 56px;
	font-weight: 700;
	color: var(--color-dark);
	line-height: 1;
}

.score-max {
	font-size: 32px;
	font-weight: 500;
	color: #6b7280;
}

.rating-categories {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px 30px;
	width: 100%;
	justify-items: center;
}

.rating-item {
	display: grid;
	grid-template-columns: 110px 1fr 50px;
	align-items: center;
	gap: 12px;
	width: 100%;
}

.category-name {
	font-size: 15px;
	font-weight: 500;
	color: var(--color-dark);
}

.rating-bar-container {
	background: var(--color-light-grey);
	height: 8px;
	border-radius: 4px;
	overflow: hidden;
	width: 100%;
}

.rating-bar {
	height: 100%;
	background: linear-gradient(90deg, var(--color-primary) 0%, #2563eb 100%);
	border-radius: 4px;
	transition: width 0.6s ease;
}

.category-score {
	font-size: 16px;
	font-weight: 600;
	color: var(--color-dark);
	text-align: right;
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
	.reviews-rating {
		grid-template-columns: 1fr;
		padding: 20px;
	}
	.rating-categories {
		grid-template-columns: repeat(2, 1fr);
	}
	.rating-item {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.reviews-rating {
		grid-template-columns: 1fr;
		padding: 20px;
	}
	.rating-categories {
		grid-template-columns: 1fr;
	}
	.item_stars {
		margin-bottom: 10px;
	}
	.rating-score {
		flex-direction: column;
	}
	.score-number {
		font-size: 48px;
	}
	.score-max {
		font-size: 28px;
	}
}

@media (max-width: 480px) {
	.reviews-intro {
		font-size: 14px;
	}
	.rating-label {
		font-size: 16px;
	}
	.category-name {
		font-size: 14px;
	}
	.category-score {
		font-size: 14px;
	}
	.item_stars svg {
		width: 20px;
		height: 20px;
	}
}


/* =====================================================
   FAQ SECTION - IMPROVED SEMANTIC STRUCTURE
   ===================================================== */



.faq-list {
  display: grid;
  grid-template-columns: 1fr; /* mobile */
  gap: 12px;
  margin-top:40px;
  align-items: start; /* Évite que les items de la même ligne s'étirent */
}

/* Tablette & Desktop : 2 colonnes */
@media (min-width: 768px) {
  .faq-list {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto; /* Chaque ligne a sa propre hauteur indépendante */
  }
}

/* Grand Ã©cran */
@media (min-width: 1200px) {
  .faq-list {
    gap: 18px;
  }
}

.faq-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--color-light-grey);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: #d1d5db;
}

.faq-item.active {
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

/* Question - AMÉLIORATION ALIGNEMENT */
.faq-question {
  width: 100%;
  background: white;
  border: none;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Changé de center à flex-start */
  gap: 15px; /* Ajout d'un gap */
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark);
  transition: all 0.2s;
  margin: 0;
  line-height: 1.5; /* Augmenté pour meilleur espacement */
}

.faq-question h3 {
  margin: 0;
  flex: 1; /* Le texte prend tout l'espace disponible */
  line-height: 1.5;
}

.faq-question:hover {
  background: #f9fafb;
  color: var(--color-primary);
}

.faq-item.active .faq-question {
  color: var(--color-primary);
  background: #eff6ff;
}

/* Icone - AMÉLIORATION POSITIONNEMENT */
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  margin-top: 2px; /* Petit décalage pour aligner avec la première ligne du texte */
}

.faq-question:hover svg {
  fill: var(--color-primary);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  fill: var(--color-primary);
}

/* RÃ©ponse */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fafbfc;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 25px 20px 25px;
  margin: 0;
  color: var(--color-text-light);
  line-height: 1.7;
  font-size: 15px;
}

/* =====================================================
   ACCREDITATIONS & LABELS
   ===================================================== */
ul.labels {
	list-style: none;
	padding: 0;
	margin: 30px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
	justify-content: flex-start;
}

ul.labels li {
	flex-shrink: 0;
}

ul.labels img {
	height: 50px;
	width: auto;
	object-fit: contain;
	filter: grayscale(20%);
	transition: all 0.3s ease;
	opacity: 0.9;
}



/* =====================================================
   GOOGLE MAPS IFRAME
   ===================================================== */
.school-map {
	margin: 30px 0;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.school-map iframe {
	width: 100%;
	height: 400px;
	border: 0;
	display: block;
}

@media (max-width: 768px) {
	.school-map iframe {
		height: 300px;
	}
	
	ul.labels {
		justify-content: center;
	}
	
	ul.labels img {
		height: 40px;
	}
}

/* Responsive FAQ */
@media (max-width: 768px) {
	.hero-down {
		padding: 50px 15px;
	}
	
	.faq-container h2 {
		font-size: 28px;
		margin-bottom: 12px;
	}
	
	
	
	.faq-question {
		padding: 18px 20px;
		font-size: 15px;
	}
	
	.faq-answer p {
		padding: 0 20px 18px 20px;
		font-size: 14px;
	}
}

/* Hide accommodation data in HTML */
.accommodation-data {
	display: none !important;
}

/* Show specific accommodation sections - Rules in Modal */
.modal-section.accommodation-rules,
.accommodation-modal .accommodation-rules {
	display: block !important;
	margin: 20px 0;
	padding: 20px;
	background-color: #f9fafb;
	border-left: 4px solid var(--color-primary);
	border-radius: 8px;
}

.modal-section.accommodation-rules h4,
.accommodation-modal .accommodation-rules h4 {
	margin-top: 0;
	margin-bottom: 15px;
	color: var(--color-dark);
	font-size: 18px;
	font-weight: 600;
}

.modal-section.accommodation-rules ul,
.accommodation-modal .accommodation-rules ul {
	margin: 0;
	padding-left: 20px;
	list-style: none;
}

.modal-section.accommodation-rules li,
.accommodation-modal .accommodation-rules li {
	margin-bottom: 10px;
	line-height: 1.6;
	color: var(--color-text-light);
	position: relative;
	padding-left: 0;
}

.modal-section.accommodation-rules li strong,
.accommodation-modal .accommodation-rules li strong {
	color: var(--color-dark);
	font-weight: 600;
}

/* Dynamic names styling */
.dynamic-course-name,
.dynamic-accommodation-name {
	font-weight: 600;
	color: var(--color-primary);
}

/* =====================================================
   COURSES GRID - BOXES DESIGN
   ===================================================== */

.courses-grid {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 30px;
}

.course-box {
	background: white;
	border: 2px solid var(--color-light-grey);
	border-radius: 12px;
	overflow: hidden;
}

.course-header {
	background: var(--color-white-grey);
	padding: 18px 20px;
	position: relative;
}

h3.course-name {
	font-size: 20px;
	font-weight: 700;
	color: var(--color-dark);
	margin: 0;
}

.course-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.2);
	color: white;
	font-size: 11px;
	padding: 4px 12px;
	border-radius: 20px;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.course-details {
	padding: 18px 20px;
}

.course-detail-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.course-detail-col {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.course-detail-item {
	padding: 8px 0;
}

.course-detail-label {
	font-size: 11px;
	font-weight: 600;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 5px;
}

.course-detail-value {
	font-size: 14px;
	color: var(--color-dark);
	line-height: 1.5;
}

.course-detail-value small {
	display: block;
	font-size: 11px;
	color: var(--color-grey);
	margin-top: 3px;
	font-style: italic;
}

.course-detail-value br + small {
	margin-top: 5px;
}

/* =====================================================
   BANDEAU JOURS FÃƒâ€°RIÃƒâ€°S
   ===================================================== */
.holiday-notice {
	background: var(--color-soft-yellow);
	border: 2px solid var(--color-yellow);
	border-radius: 12px;
	padding: 20px 25px;
	margin-top: 30px;
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.holiday-notice svg {
	width: 28px;
	height: 28px;
	fill: var(--color-dark-orange);
	flex-shrink: 0;
	margin-top: 2px;
}

.holiday-notice p {
	margin: 0;
	color: var(--color-dark-orange);
	font-size: 15px;
	line-height: 1.6;
}

.holiday-notice a {
	color: #b45309;
	text-decoration: underline;
	font-weight: 600;
	transition: color 0.2s;
}

.holiday-notice a:hover {
	color: #92400e;
}

/* Responsive courses grid */
@media (max-width: 768px) {
	.course-detail-row {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.course-header {
		padding: 15px 18px;
	}

	.course-name {
		font-size: 18px;
		margin:0;
	}

	.course-details {
		padding: 15px 18px;
	}

	.course-detail-item {
		padding: 6px 0;
	}
	
	.holiday-notice {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 20px;
	}
	
	.holiday-notice svg {
		margin-top: 0;
	}
}

/* =====================================================
   LEISURE PLANNING - STYLE SOBRE
   ===================================================== */
   .leisure{
	width: 100%;
overflow-x: auto;
padding:10px;
}

.leisure-planning {
	width: 100%;
	border-collapse: collapse;
	font-family: inherit;
	margin-top: 20px;
	border: 1px solid var(--color-light-grey);
	border-radius: 8px;
	overflow: hidden;
}

.leisure-planning th {
	background: #f9fafb;
	color: #374151;
	padding: 12px 8px;
	text-align: center;
	font-weight: 600;
	font-size: 13px;
	border: 1px solid var(--color-light-grey);
}

.leisure-planning th:first-child {
	width: 80px;
}

.leisure-planning td {
	border: 1px solid var(--color-light-grey);
	padding: 10px 6px;
	text-align: center;
	vertical-align: middle;
	font-size: 12px;
	min-height: 40px;
	line-height: 1.4;
}

.leisure-planning .time {
	background-color: #f9fafb;
	font-weight: 600;
	color: #6b7280;
	font-size: 11px;
}

.leisure-planning .class {
	background-color: #eff6ff;
	color: #1d4ed8;
	font-weight: 500;
}

.leisure-planning .break {
	background-color: #fefce8;
	color: #a16207;
	font-size: 11px;
}

.leisure-planning .afternoon-activity {
	background-color: #f0fdf4;
	color: #15803d;
	font-weight: 500;
}

.leisure-planning .evening-activity {
	background-color: #faf5ff;
	color: #7e22ce;
	font-weight: 500;
}

.leisure-planning .bedtime {
	background-color: var(--color-white-grey);
	color: var(--color-text-light);
	font-weight: 500;
}

.leisure-planning .free-time {
	background-color: #fefefe;
	color: #6b7280;
	font-style: italic;
}

/* Responsive leisure planning */
@media (max-width: 768px) {
	.leisure-planning {
		font-size: 10px;
	}
	
	.leisure-planning th {
		padding: 8px 4px;
		font-size: 11px;
	}
	
	.leisure-planning td {
		padding: 6px 4px;
		font-size: 10px;
	}
	
	.leisure-planning .time {
		font-size: 9px;
	}
}




/* =====================================================
   ACCOMMODATION GRID STYLES FOR IELS
   ===================================================== */

.accommodation-grid {
	display: grid;
	gap: 1rem;
}

.accommodation-option {
	border: 1px solid var(--color-light-grey);
	border-radius: 8px;
	padding: 1rem;
	transition: border-color 0.2s;
}

.accommodation-option:has(input[name="accommodation"]:checked) {
	border-color: #007bff;
	background-color: #f8f9fa;
}

.accommodation-header {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	margin-bottom: 0;
}

.accommodation-header input[type="radio"] {
	cursor: pointer;
	width: 18px;
	height: 18px;
}

.accommodation-header strong {
	font-size: 1rem;
	color: #333;
}

.room-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 0.5rem;
	margin-top: 0.75rem;
	padding-left: 1.5rem;
}

.room-card {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem;
	border: 1px solid var(--color-light-grey);
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.2s;
	background-color: white;
}

.room-card:hover {
	background-color: #f9fafb;
	border-color: var(--color-primary);
}

.room-card:has(input[type="radio"]:checked) {
	background-color: #e7f3ff;
	border-color: var(--color-primary);
}

.room-card input[type="radio"] {
	cursor: pointer;
	width: 16px;
	height: 16px;
}

.room-card span {
	font-size: 0.875rem;
	color: #666;
	transition: all 0.2s;
}

.room-card:has(input[type="radio"]:checked) span {
	font-weight: 600;
	color: var(--color-primary);
}

/* Mobile adjustments */
@media (max-width: 768px) {
	.accommodation-grid {
		gap: 0.75rem;
	}
	
	.accommodation-option {
		padding: 0.75rem;
	}
	
	.room-options {
		grid-template-columns: 1fr 1fr;
		padding-left: 1rem;
	}
	
	.room-card {
		padding: 0.4rem;
		font-size: 0.8rem;
	}
}
/* =====================================================
   PRICE DISPLAY WITH PROMOTION
   ===================================================== */

.original-price-crossed {
	text-decoration: line-through;
	color: #9ca3af;
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 8px;
}

.final-price-promo {
	font-size: 32px;
	font-weight: 700;
	color: var(--color-text);
}

#price-display .original-price-crossed,
#price-display .final-price-promo {
	text-align: center;
}

/* Mobile price display with promotion */
.mobile-price-value .original-price-crossed {
	font-size: 16px;
	margin-bottom: 4px;
}

.mobile-price-value .final-price-promo {
	font-size: 24px;
}