/* ===================================
   HOTEL DETAILS - ULTRA PREMIUM STYLING V3
   CSS COMPLET OPTIMISÉ & RESPONSIVE
   =================================== */

/* Hero Image Gallery */
.news-details-post .news-details-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  margin-bottom: 40px;
}

.news-details-post .news-details-image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 767px) {
  .news-details-post .news-details-image img {
    height: 400px;
  }
}

.news-details-post .news-details-image:hover img {
  transform: scale(1.08);
}

/* Premium Header Section */
.news-details-wrapper {
  padding: 50px 0;
}

.news-details-wrapper .news-details-content h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 1199px) {
  .news-details-wrapper .news-details-content h2 {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .news-details-wrapper .news-details-content h2 {
    font-size: 28px;
  }
}

/* Breadcrumb & Meta Info */
.news-details-wrapper .news-details-content .news-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.news-details-wrapper .news-details-content .news-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #64748b;
  font-weight: 600;
}

.news-details-wrapper .news-details-content .news-list li i {
  font-size: 18px;
}

.news-details-wrapper .news-details-content .news-list li .fa-star {
  color: #fbbf24;
  font-size: 18px;
  filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.4));
}

.news-details-wrapper .news-details-content .news-list li .fa-location-dot {
  color: #ef4444;
  font-size: 20px;
}

/* Quick Info Bar - Enhanced */
.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 50px 0;
}

.quick-info-grid .col-6.col-lg-3 {
    display: contents;
}

.quick-info-grid .single-sideber-widget {
    background: white;
    padding: 28px;
    border-radius: 18px;
    border: 2px solid #e2e8f0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quick-info-grid .single-sideber-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(180deg, #1053f3, #0d42c7);
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-info-grid .single-sideber-widget:hover {
    background: #fafbfc;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
    border-color: #1053f3;
}

.quick-info-grid .single-sideber-widget:hover::before {
    height: 100%;
}

.quick-info-grid .single-sideber-widget .widget-title {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-info-grid .single-sideber-widget .widget-title i {
    color: #1053f3;
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.quick-info-grid .single-sideber-widget strong {
    font-size: 20px;
    color: #0f172a;
    font-weight: 800;
    display: block;
    line-height: 1.3;
    word-wrap: break-word;
}

/* Responsive Design pour la Quick Info Bar */
@media (max-width: 1199px) {
    .quick-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .quick-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 30px 0;
    }
    
    .quick-info-grid .single-sideber-widget {
        padding: 20px;
    }
    
    .quick-info-grid .single-sideber-widget strong {
        font-size: 18px;
    }
    
    .quick-info-grid .single-sideber-widget .widget-title {
        font-size: 11px;
    }
}

@media (max-width: 575px) {
    .quick-info-grid .single-sideber-widget {
        padding: 18px;
    }
    
    .quick-info-grid .single-sideber-widget strong {
        font-size: 16px;
    }
    
    .quick-info-grid .single-sideber-widget .widget-title i {
        font-size: 18px;
    }
}

/* Animation d'apparition pour les cartes */
.quick-info-grid .single-sideber-widget {
    animation: fadeInUp 0.6s ease-out backwards;
}

.quick-info-grid .single-sideber-widget:nth-child(1) { animation-delay: 0.1s; }
.quick-info-grid .single-sideber-widget:nth-child(2) { animation-delay: 0.2s; }
.quick-info-grid .single-sideber-widget:nth-child(3) { animation-delay: 0.3s; }
.quick-info-grid .single-sideber-widget:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* États de chargement */
.quick-info-grid .single-sideber-widget.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    min-height: 120px;
}

.quick-info-grid .single-sideber-widget.skeleton .widget-title,
.quick-info-grid .single-sideber-widget.skeleton strong {
    visibility: hidden;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Amélioration de l'accessibilité */
.quick-info-grid .single-sideber-widget:focus-within {
    outline: 2px solid #1053f3;
    outline-offset: 2px;
}

/* Mode sombre optionnel */
@media (prefers-color-scheme: dark) {
    .quick-info-grid .single-sideber-widget {
        background: #1e293b;
        border-color: #334155;
    }
    
    .quick-info-grid .single-sideber-widget:hover {
        background: #0f172a;
    }
    
    .quick-info-grid .single-sideber-widget strong {
        color: #f1f5f9;
    }
    
    .quick-info-grid .single-sideber-widget .widget-title {
        color: #94a3b8;
    }
}

.single-sideber-widget {
  background: white;
  padding: 28px;
  border-radius: 18px;
  border: 2px solid #e2e8f0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.single-sideber-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(180deg, #1053f3, #0d42c7);
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.single-sideber-widget:hover {
  background: #fafbfc;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
  border-color: #1053f3;
}

.single-sideber-widget:hover::before {
  height: 100%;
}

.single-sideber-widget .widget-title {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.single-sideber-widget .widget-title i {
  color: #1053f3;
  font-size: 20px;
}

.single-sideber-widget strong {
  font-size: 20px;
  color: #0f172a;
  font-weight: 800;
  display: block;
  line-height: 1.3;
}

/* Content Sections - Enhanced */
.news-details-post .news-details-content h4 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 30px;
  color: #0f172a;
  position: relative;
  padding-bottom: 18px;
  display: inline-block;
  letter-spacing: -0.5px;
}

.news-details-post .news-details-content h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 5px;
  background: linear-gradient(90deg, #1053f3, #0d42c7);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(16, 83, 243, 0.3);
}

@media (max-width: 575px) {
  .news-details-post .news-details-content h4 {
    font-size: 26px;
  }
}

.news-details-post .news-details-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 20px;
}

/* Highlights Grid - Enhanced */
.news-details-post .news-details-content .list {
  margin-top: 30px;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 18px;
}

.news-details-post .news-details-content .list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 14px;
  font-size: 16px;
  color: #1e293b;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.news-details-post .news-details-content .list li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(16, 83, 243, 0.12), transparent);
  transition: left 0.6s ease;
}

.news-details-post .news-details-content .list li:hover::before {
  left: 100%;
}

.news-details-post .news-details-content .list li:hover {
  background: white;
  border-color: #1053f3;
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(16, 83, 243, 0.2);
}

.news-details-post .news-details-content .list li img {
  width: 28px;
  height: 28px;
  margin-right: 0;
  filter: drop-shadow(0 3px 6px rgba(16, 83, 243, 0.25));
}

/* Amenities Cloud - Enhanced */
.news-details-post .news-details-content .tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.news-details-post .news-details-content .tagcloud a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #475569;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.news-details-post .news-details-content .tagcloud a:hover {
  background: linear-gradient(135deg, #1053f3 0%, #0d42c7 100%);
  border-color: #1053f3;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(16, 83, 243, 0.3);
}

.news-details-post .news-details-content .tagcloud a i {
  font-size: 14px;
  transition: transform 0.4s ease;
}

.news-details-post .news-details-content .tagcloud a:hover i {
  transform: scale(1.3) rotate(10deg);
}

/* Services List - Enhanced */
.news-details-post .news-details-content .list-item {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}

.news-details-post .news-details-content .list-item li {
  position: relative;
  padding: 20px 24px 20px 65px;
  background: white;
  border-radius: 14px;
  border: 2px solid #e2e8f0;
  margin-left: 0;
  line-height: 1.7;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
  color: #334155;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.news-details-post .news-details-content .list-item li::before {
  display: none;
}

.news-details-post .news-details-content .list-item li i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  background: linear-gradient(135deg, #1053f3, #0d42c7);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 16px;
  box-shadow: 0 6px 18px rgba(16, 83, 243, 0.35);
}

.news-details-post .news-details-content .list-item li:hover {
  background: #fafbfc;
  border-color: #1053f3;
  transform: translateX(10px);
  box-shadow: 0 10px 35px rgba(16, 83, 243, 0.2);
}

/* Media Frames */
.news-details-post .news-details-image iframe {
  width: 100%;
  height: 550px;
  border: none;
  display: block;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 767px) {
  .news-details-post .news-details-image iframe {
    height: 350px;
  }
}

/* Reviews Section - Ultra Premium */
.news-details-post .news-details-content .sideber {
  border: none;
  border-radius: 28px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 60px;
  margin-top: 50px;
  margin-bottom: 60px;
  color: white;
  box-shadow: 0 25px 70px rgba(102, 126, 234, 0.45);
  position: relative;
  overflow: hidden;
}

.news-details-post .news-details-content .sideber::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 65%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 1199px) {
  .news-details-post .news-details-content .sideber {
    padding: 40px;
  }
}

@media (max-width: 767px) {
  .news-details-post .news-details-content .sideber {
    padding: 30px;
  }
}

.news-details-post .news-details-content .sideber h3 {
  color: white;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.news-details-post .news-details-content .sideber .display-4 {
  font-size: 80px;
  font-weight: 900;
  color: white;
  text-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .news-details-post .news-details-content .sideber .display-4 {
    font-size: 56px;
  }
}

.news-details-post .news-details-content .sideber .text-warning i {
  color: #ffd700 !important;
  font-size: 22px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.25));
}

/* Sidebar Sticky */
.main-sideber {
  position: sticky;
  top: 100px;
}

/* Booking Card - Premium */
.main-sideber .single-sideber-widget {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
}

.main-sideber .single-sideber-widget:hover {
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
  transform: translateY(-8px);
}

.main-sideber .single-sideber-widget .widget-title h3 {
  font-size: 28px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.main-sideber .single-sideber-widget > p {
  color: #64748b;
  font-size: 15px;
  margin-bottom: 30px;
  font-weight: 500;
}

/* Contact Items - Enhanced & Responsive */
.main-sideber .recent-post-area .recent-items {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 16px;
  border: 2px solid transparent;
  min-height: 90px;
}

.main-sideber .recent-post-area .recent-items:hover {
  background: white;
  border-color: #1053f3;
  transform: translateX(8px);
  box-shadow: 0 10px 35px rgba(16, 83, 243, 0.15);
}

.main-sideber .recent-post-area .recent-items .recent-thumb {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1053f3 0%, #0d42c7 100%);
  border-radius: 14px;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(16, 83, 243, 0.35);
}

.main-sideber .recent-post-area .recent-items .recent-thumb i {
  color: white;
  font-size: 22px;
}

.main-sideber .recent-post-area .recent-items .recent-content {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.main-sideber .recent-post-area .recent-items .recent-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-sideber .recent-post-area .recent-items .recent-content ul li {
  font-size: 11px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  font-weight: 800;
}

.main-sideber .recent-post-area .recent-items .recent-content h6 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  color: #0f172a;
  word-break: break-word;
  overflow-wrap: break-word;
}

.main-sideber .recent-post-area .recent-items .recent-content h6 a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main-sideber .recent-post-area .recent-items:hover .recent-content h6 a {
  color: #1053f3;
  text-overflow: clip;
  white-space: normal;
}

/* Responsive pour les contacts */
@media (max-width: 1199px) {
  .main-sideber .recent-post-area .recent-items {
    padding: 18px;
    gap: 14px;
  }
  
  .main-sideber .recent-post-area .recent-items .recent-thumb {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }
  
  .main-sideber .recent-post-area .recent-items .recent-content h6 {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .main-sideber .recent-post-area .recent-items {
    padding: 16px;
    gap: 12px;
    min-height: 80px;
  }
  
  .main-sideber .recent-post-area .recent-items .recent-thumb {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
  }
  
  .main-sideber .recent-post-area .recent-items .recent-thumb i {
    font-size: 20px;
  }
  
  .main-sideber .recent-post-area .recent-items .recent-content h6 {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .main-sideber .recent-post-area .recent-items .recent-content ul li {
    font-size: 10px;
    margin-bottom: 4px;
  }
}

@media (max-width: 575px) {
  .main-sideber .recent-post-area .recent-items {
    padding: 14px;
    gap: 10px;
  }
  
  .main-sideber .recent-post-area .recent-items .recent-thumb {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
  
  .main-sideber .recent-post-area .recent-items .recent-thumb i {
    font-size: 18px;
  }
  
  .main-sideber .recent-post-area .recent-items .recent-content h6 {
    font-size: 12px;
  }
}

/* Similar Hotels - FIXED & ENHANCED */
.main-sideber .recent-items.hotel-similar {
  padding: 0;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
  display: block;
  margin-bottom: 20px;
}

.main-sideber .recent-items.hotel-similar:hover {
  border-color: #1053f3;
  box-shadow: 0 12px 40px rgba(16, 83, 243, 0.18);
  transform: translateY(-5px);
}

.main-sideber .recent-items.hotel-similar .recent-thumb {
  position: relative;
  width: 100%;
  height: 200px;
  flex-shrink: 0;
  border-radius: 0;
  overflow: hidden;
  background: #f1f5f9;
}

.main-sideber .recent-items.hotel-similar .recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-sideber .recent-items.hotel-similar:hover .recent-thumb img {
  transform: scale(1.15);
}

.main-sideber .recent-items.hotel-similar .position-absolute {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 800;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.5);
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 10;
}

.main-sideber .recent-items.hotel-similar .position-absolute i {
  font-size: 12px;
}

.main-sideber .recent-items.hotel-similar .recent-content {
  padding: 20px;
}

.main-sideber .recent-items.hotel-similar .recent-content h6 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #0f172a;
  line-height: 1.4;
}

.main-sideber .recent-items.hotel-similar .recent-content h6 a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.main-sideber .recent-items.hotel-similar:hover .recent-content h6 a {
  color: #1053f3;
}

.main-sideber .recent-items.hotel-similar .recent-content ul li {
  font-size: 15px;
  color: #64748b;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-sideber .recent-items.hotel-similar .recent-content ul li strong {
  color: #1053f3;
  font-size: 20px;
  font-weight: 900;
}

/* CTA Button */
.main-sideber .theme-btn.w-100 {
  width: 100%;
  justify-content: center;
  padding: 20px 32px;
  font-size: 17px;
  font-weight: 800;
  margin-top: 30px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Trust Badge */
.main-sideber .text-center.trust-badge {
  padding: 20px;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 14px;
  border: 2px solid #86efac;
  margin-top: 25px;
}

.main-sideber .text-center.trust-badge i {
  color: #22c55e;
  font-size: 22px;
  margin-right: 10px;
}

.main-sideber .text-center.trust-badge small {
  color: #166534;
  font-weight: 800;
  font-size: 14px;
}

/* Section Dividers */
.news-details-post .news-details-content.mb-4 {
  margin-bottom: 70px !important;
  padding-bottom: 60px;
  border-bottom: 2px solid #f1f5f9;
  position: relative;
}

.news-details-post .news-details-content.mb-4:last-child {
  border-bottom: none;
}

.news-details-post .news-details-content.mb-4::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, #1053f3, transparent);
}

/* Responsive */
@media (max-width: 991px) {
  .main-sideber {
    position: static;
    margin-top: 60px;
  }
  
  .news-details-post .news-details-content .list {
    grid-template-columns: 1fr;
  }
  
  .news-details-post .news-details-content .list-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .main-sideber .recent-items.hotel-similar .recent-thumb {
    height: 180px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.news-details-wrapper > * {
  animation: fadeInUp 0.7s ease-out backwards;
}

.news-details-wrapper > *:nth-child(1) { animation-delay: 0.1s; }
.news-details-wrapper > *:nth-child(2) { animation-delay: 0.2s; }
.news-details-wrapper > *:nth-child(3) { animation-delay: 0.3s; }

/* Loading State */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===================================
   GALERIE CAROUSEL - PREMIUM STYLING
   =================================== */

/* Galerie principale - Carousel amélioré */
.hotel-gallery-section {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: auto;
}

/* Galerie principale - Full Responsive */
#hotelGalleryCarousel .carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    background: #f8fafc;
}

/* Versions Desktop/Tablette */
@media (min-width: 992px) {
    #hotelGalleryCarousel .carousel-item img {
        max-height: 550px;
        min-height: 450px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #hotelGalleryCarousel .carousel-item img {
        max-height: 450px;
        min-height: 350px;
    }
}

/* Versions Mobile */
@media (max-width: 767px) {
    #hotelGalleryCarousel .carousel-item img {
        max-height: 400px;
        min-height: 300px;
    }
}

@media (max-width: 575px) {
    #hotelGalleryCarousel .carousel-item img {
        max-height: 350px;
        min-height: 250px;
        border-radius: 16px;
    }
}

@media (max-width: 400px) {
    #hotelGalleryCarousel .carousel-item img {
        max-height: 300px;
        min-height: 200px;
        border-radius: 12px;
    }
}

/* Correction pour la largeur des images */
.carousel-item img.d-block.w-100 {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
}

/* Assurer que le carousel prend toute la largeur */
#hotelGalleryCarousel .carousel-inner {
    width: 100% !important;
}

#hotelGalleryCarousel .carousel-item {
    width: 100% !important;
}

/* Animation zoom */
@keyframes hotelZoomIn {
    from {
        transform: scale(1.1);
        opacity: 0.8;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Overlay gradient pour meilleure lisibilité */
.carousel-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    pointer-events: none;
}

/* Controls stylés */
.hotel-carousel-control-prev,
.hotel-carousel-control-next {
    width: 60px;
    opacity: 0;
    transition: all 0.3s ease;
}

#hotelGalleryCarousel:hover .hotel-carousel-control-prev,
#hotelGalleryCarousel:hover .hotel-carousel-control-next {
    opacity: 1;
}

.hotel-carousel-control-prev-icon,
.hotel-carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hotel-carousel-control-prev-icon:hover,
.hotel-carousel-control-next-icon:hover {
    background-color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Indicateurs modernes */
.hotel-carousel-indicators {
    margin-bottom: 30px;
    gap: 8px;
}

.hotel-carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    margin: 0 4px;
}

.hotel-carousel-indicators .active {
    width: 40px;
    border-radius: 6px;
    background-color: #fff;
    transform: scale(1.1);
}

/* Compteur d'images */
.hotel-image-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    z-index: 10;
    backdrop-filter: blur(10px);
    animation: hotelFadeInDown 0.5s ease;
}

@keyframes hotelFadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Grid de miniatures */
.hotel-gallery-thumbnails {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    padding: 0 15px;
}

.hotel-thumbnail-item {
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    aspect-ratio: 4/3;
}

.hotel-thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hotel-thumbnail-item:hover img {
    transform: scale(1.1);
}

.hotel-thumbnail-item.active {
    border-color: #007bff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.hotel-thumbnail-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hotel-thumbnail-item:hover::after {
    opacity: 1;
}

.hotel-thumbnail-item.active::after {
    opacity: 0;
}

/* Bouton voir toutes les photos */
.hotel-view-all-photos {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: hotelFadeInUp 0.5s ease;
}

@keyframes hotelFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hotel-view-all-photos:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #fff;
}

/* Responsive Galerie */
@media (max-width: 768px) {
    #hotelGalleryCarousel .carousel-item img {
        height: 400px;
    }
    
    .hotel-gallery-thumbnails {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 10px;
    }
    
    .hotel-image-counter {
        font-size: 12px;
        padding: 8px 16px;
    }
}

/* ===================================
   UTILITIES & ACCESSIBILITY
   =================================== */

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus Visible */
*:focus-visible {
  outline: 2px solid #1053f3;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .main-sideber,
  .hotel-carousel-control-prev,
  .hotel-carousel-control-next,
  .hotel-carousel-indicators {
    display: none !important;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}