/* Modern & Clean Design 2026 — TravelRay Tunisie */

:root {
  --primary: #1B4FD8;
  --primary-dark: #1239A6;
  --accent: #F59E0B;
  --bg: #FFFFFF;
  --surface: #F8FAFC;
  --border: #E2E8F0;
  --text: #0F172A;
  --muted: #64748B;
  --nav-bg: #FFFFFF;
  --footer-bg: #0F172A;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

/* Base / Reset */
html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-size: 15px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

a:hover {
  color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.4rem;
}

h4 {
  font-size: 1.2rem;
}

img {
  border-radius: 8px;
}

/* Header & Navbar */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--nav-bg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid var(--primary);
  animation: slideInDown 0.5s ease-out;
}

header .row {
  padding-top: 8px;
  padding-bottom: 8px;
}

header img {
  max-width: 200px;
  height: auto;
}

.navbar {
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.navbar-nav a,
.nav-item a {
  color: var(--text) !important;
  font-weight: 500;
  font-size: 14px;
  padding: 6px 14px !important;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.nav-item {
  padding: 6px 10px !important;
}

.nav-item:hover {
  background: var(--surface);
  color: var(--text);
}

.nav-item:hover a {
  color: var(--text);
  background: none;
}

.nav-item i {
  font-size: 18px;
  margin-right: 4px;
  float: left;
}

.nav-item span {
  font-size: 14px;
  float: left;
}

.nav-item.bg-danger {
  background: var(--primary) !important;
  border-radius: 8px;
}

.nav-item.bg-danger a {
  color: white !important;
}

.nav-item.bg-danger:hover {
  background: var(--primary-dark) !important;
}

/* Hero Slider */
#slider .carousel-item img {
  max-height: 520px;
  object-fit: cover;
  width: 100%;
  border-radius: 0;
  display: block;
}

#slider .carousel-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
  bottom: 0;
  padding: 60px 40px 40px;
  left: 0;
  right: 0;
}

#slider .carousel-caption h3 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: #ffffff;
}

#slider .carousel-caption p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.carousel-indicators li {
  background-color: var(--primary);
  border-radius: 4px;
  width: 8px;
  height: 8px;
  margin: 0 4px;
}

.carousel-indicators li.active {
  background-color: var(--primary);
}

/* Section Headings */
.lined-heading {
  position: relative;
  margin-top: 60px;
  margin-bottom: 40px;
  text-align: center;
  display: block;
  background: linear-gradient(135deg, rgba(27, 79, 216, 0.05) 0%, transparent 100%);
  padding: 20px 0;
  border-bottom: 4px solid var(--primary);
  border-radius: 8px;
}

.lined-heading span {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  background: transparent;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}

h2.lined-heading:before {
  display: none;
}

/* Cards Hôtels Homepage */
.hotel-index {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: var(--transition);
  background: var(--bg);
  animation: fadeInUp 0.6s ease-out;
  position: relative;
}

.hotel-index:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(27, 79, 216, 0.2);
}

.hotel-index img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  transition: var(--transition);
}

.hotel-index:hover img {
  filter: brightness(1.05);
  transform: scale(1.08);
}

.hotel-index h3 {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 16px;
  margin: 0;
  text-align: center;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(27, 79, 216, 0.15);
}

.hotel-index .m-2 {
  padding: 18px;
}

.hotel-index li {
  margin-bottom: 10px;
  list-style: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.hotel-index li:last-child {
  border-bottom: none;
}

.hotel-index li a {
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
}

.hotel-index li a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

/* Badges */
.badge-success {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: white;
  border-radius: 20px;
  padding: 8px 16px;
  font-weight: 700;
  border: none;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
  display: inline-block;
  font-size: 14px;
}

.badge-warning {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: white;
  border-radius: 20px;
  padding: 10px 16px;
  font-weight: 700;
  border: none;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.25);
  display: inline-block;
  font-size: 14px;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-color: var(--primary);
  color: white;
  border-radius: 8px;
  font-weight: 700;
  padding: 10px 24px;
  font-size: 15px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(27, 79, 216, 0.25);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 79, 216, 0.35);
  color: white;
}

.btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(27, 79, 216, 0.25);
  color: white;
}

/* Hotel Listing Cards */
.border.border-secondary {
  border: 1px solid var(--border) !important;
  border-radius: 12px !important;
  padding: 16px !important;
}

.border.border-secondary img {
  border-radius: 8px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Rating Stars */
.material-icons[style*="color"] {
  color: var(--accent) !important;
}

/* Footer */
.footer-top {
  background: var(--footer-bg);
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer-top div,
.footer-top p,
footer div,
footer p {
  color: #CBD5E1;
  font-size: 13px;
  line-height: 1.8;
}

.footer-top h3,
footer h3 {
  color: #94A3B8;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-top .material-icons,
footer .material-icons {
  color: #94A3B8;
  margin-right: 8px;
  vertical-align: middle;
}

.hreff {
  color: #94A3B8;
  transition: color 0.2s ease;
}

.hreff:hover {
  color: #ffffff;
}

footer .destinations {
  line-height: 24px;
}

footer .destinations li {
  margin-bottom: 8px;
}

.footer-bottom.bg-dark {
  background: #060D1F !important;
  padding: 16px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.footer-bottom.bg-dark .white-text {
  color: #94A3B8;
  font-size: 12px;
}

.footer-bottom.bg-dark a {
  color: #94A3B8;
}

.footer-bottom.bg-dark a:hover {
  color: #ffffff;
}

/* Text Utilities */
.text-orange {
  color: var(--accent);
  font-weight: 700;
}

/* Utility Classes for Modern Style */
.bg-primary-custom {
  background: var(--primary) !important;
}

.border-light {
  border-color: var(--border) !important;
}

/* Modern Sections & Presentations */
.presentation {
  display: flex;
  gap: 40px;
  align-items: stretch;
  margin-top: 30px;
}

.presentation > div {
  flex: 1;
}

.presentation .col-md-7 {
  flex: 0 0 calc(58.333% - 20px);
}

.presentation .col-md-5 {
  flex: 0 0 calc(41.667% - 20px);
}

.presentation h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--primary);
  letter-spacing: -0.02em;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.presentation .description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  animation: fadeInUp 0.7s ease-out 0.2s both;
  text-align: left;
}

.presentation .description p {
  margin-bottom: 16px;
  color: var(--text);
}

.presentation .list-unstyled {
  list-style: none;
  padding: 0;
}

.presentation .list-unstyled li {
  margin-bottom: 28px !important;
  animation: slideInLeft 0.6s ease-out;
  animation-fill-mode: both;
  padding: 16px;
  background: var(--surface);
  border-radius: 8px;
  border-left: 4px solid var(--primary);
  transition: var(--transition);
}

.presentation .list-unstyled li:hover {
  background: linear-gradient(135deg, var(--surface) 0%, #E3F2FD 100%);
  border-left-color: var(--accent);
  transform: translateX(8px);
}

.presentation .list-unstyled li:nth-child(1) { animation-delay: 0.1s; }
.presentation .list-unstyled li:nth-child(2) { animation-delay: 0.2s; }
.presentation .list-unstyled li:nth-child(3) { animation-delay: 0.3s; }

.presentation .material-icons {
  font-size: 28px !important;
  color: var(--primary) !important;
  transition: var(--transition);
  display: block;
  margin-bottom: 8px;
}

.presentation li:hover .material-icons {
  color: var(--accent) !important;
  transform: scale(1.2);
}

.presentation .h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  margin-top: 0;
  display: block;
}

.presentation p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

.presentation .row {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.presentation .col-1 {
  flex: 0 0 auto;
  padding-right: 12px;
}

.presentation .col-11 {
  flex: 1;
}

/* Hero Section Improvements */
.wrapper {
  animation: fadeInDown 0.6s ease-out;
}

.container > h1 {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Info Badges */
.badge-warning {
  transition: var(--transition);
}

.badge-warning:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(254, 243, 199, 0.4);
}

/* Feature List Items */
.list-unstyled li .clearfix {
  transition: var(--transition);
  padding: 12px;
  border-radius: 8px;
}

.list-unstyled li .clearfix:hover {
  background: var(--surface);
}

/* Spacing Improvements */
.mt-4, .mt-5 {
  margin-top: 2rem !important;
}

.mb-4, .mb-5 {
  margin-bottom: 2rem !important;
}

.p-3 {
  padding: 1.5rem !important;
}

/* Image Overlays */
.hotel-index img {
  transition: var(--transition);
}

.hotel-index:hover img {
  transform: scale(1.05);
}

/* Section Dividers */
hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

/* Single Hotel Page Styles */
.wrapper.single {
  background: linear-gradient(135deg, var(--surface) 0%, #ffffff 100%);
  padding: 30px 0;
}

.wrapper.single h1 {
  animation: fadeInUp 0.6s ease-out;
}

.wrapper.single .lined-heading span {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
}

/* Hotel Gallery/Carousel */
#slider {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

#slider .carousel-item {
  min-height: 400px;
  background: var(--surface);
}

#slider .carousel-item img {
  max-height: 500px;
  object-fit: cover;
  width: 100%;
  border-radius: 12px 12px 0 0;
}

#slider .carousel-caption {
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding-bottom: 30px;
  border-radius: 0 0 12px 12px;
}

/* Star Rating Section */
.wrapper.single .material-icons {
  color: var(--accent) !important;
  font-size: 20px;
}

/* Price Badge - Hotel Detail */
.wrapper.single .badge-success {
  font-size: 16px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
  border: 2px solid #10B981;
  border-radius: 20px;
}

/* Buttons - Hotel Detail */
.wrapper.single .btn-primary {
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 8px;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(27, 79, 216, 0.2);
}

.wrapper.single .btn-primary:hover {
  box-shadow: 0 8px 24px rgba(27, 79, 216, 0.3);
  transform: translateY(-2px);
}

/* Hotel Description Content */
.cms-content {
  background: var(--bg);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border);
  animation: fadeInUp 0.7s ease-out 0.2s both;
}

.cms-content h2,
.cms-content h3 {
  color: var(--primary) !important;
  border-bottom: 2px solid var(--accent) !important;
  padding-bottom: 12px;
  margin-bottom: 20px;
  font-weight: 700;
}

.cms-content h2 {
  font-size: 1.5rem;
}

.cms-content h3 {
  font-size: 1.2rem;
}

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

.cms-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.cms-content img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Breadcrumb Styling */
.breadcrumb {
  background: transparent;
  padding: 0 0 20px 0;
  border-bottom: 1px solid var(--border);
}

.breadcrumb-item {
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb-item a {
  color: var(--primary);
  transition: var(--transition);
}

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

.breadcrumb-item.active {
  color: var(--text);
  font-weight: 600;
}

/* Related Hotels Section */
.wrapper.single h4 {
  color: var(--text);
  font-weight: 700;
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.wrapper.single .row > a {
  display: block;
  padding: 12px;
  background: var(--surface);
  border-radius: 8px;
  border-left: 3px solid var(--primary);
  transition: var(--transition);
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 12px;
}

.wrapper.single .row > a:hover {
  background: #E3F2FD;
  border-left-color: var(--primary-dark);
  transform: translateX(8px);
  color: var(--primary);
}

/* Responsive Presentation Section */
@media (max-width: 768px) {
  .presentation {
    flex-direction: column;
    gap: 30px;
  }

  .presentation .col-md-7,
  .presentation .col-md-5 {
    flex: 1;
  }

  .presentation h3 {
    font-size: 1.3rem;
  }

  .presentation .list-unstyled li {
    padding: 12px;
    margin-bottom: 16px !important;
  }

  .presentation .material-icons {
    font-size: 24px !important;
  }
}

/* Responsive Hotel Page */
@media (max-width: 768px) {
  .wrapper.single {
    padding: 16px 0;
  }

  .cms-content {
    padding: 20px;
  }

  #slider .carousel-item {
    min-height: 300px;
  }

  #slider .carousel-item img {
    max-height: 350px;
  }

  .wrapper.single .btn-primary {
    width: 100%;
    padding: 12px;
    margin-bottom: 8px;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #slider .carousel-caption {
    padding: 40px 20px 20px;
  }

  #slider .carousel-caption h3 {
    font-size: 1.5rem;
  }

  #slider .carousel-caption p {
    font-size: 1rem;
  }

  .lined-heading span {
    font-size: 1.2rem;
  }

  header img {
    max-width: 140px;
  }

  .nav-item {
    padding: 4px 8px !important;
  }

  .nav-item a {
    padding: 4px 8px !important;
    font-size: 13px;
  }
}

/* Hotels Listing Page Styles */
.flexible-div-list {
  background: linear-gradient(135deg, var(--surface) 0%, #ffffff 100%);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
}

#showMore, #showMin {
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: underline;
}

#showMore:hover, #showMin:hover {
  color: var(--primary-dark);
}

/* Hotel Listing Cards */
.semi-colomn-content {
  border: 1px solid var(--border) !important;
  border-radius: 12px !important;
  padding: 20px !important;
  background: var(--bg);
  transition: var(--transition);
  animation: fadeInUp 0.6s ease-out;
}

.semi-colomn-content:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(27, 79, 216, 0.12);
}

.semi-colomn-content h2 {
  color: var(--text) !important;
  border-color: var(--primary) !important;
  font-weight: 700;
  font-size: 1.1rem;
}

.semi-colomn-content h2 a {
  color: var(--primary);
  text-decoration: none;
}

.semi-colomn-content h2 a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.semi-colomn-content p {
  color: var(--muted) !important;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.semi-colomn-content * {
  color: var(--text) !important;
}

/* Star Rating in Listing */
.semi-colomn-content .material-icons {
  color: var(--accent) !important;
  font-size: 16px;
}

/* Price in Listing */
.semi-colomn-content .badge-success {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
  color: white !important;
  font-weight: 700;
  padding: 8px 14px !important;
  border-radius: 20px !important;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

/* Phone Badge */
.semi-colomn-content .badge-warning {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%) !important;
  color: white !important;
  font-weight: 600;
  padding: 10px 16px !important;
  border-radius: 20px !important;
  width: 100% !important;
  margin-bottom: 16px !important;
}

/* Google CSE Search Box */
.gcse-searchbox-only {
  margin: 16px 0;
}

.gcse-searchbox-only input {
  border-radius: 8px;
  border: 1px solid var(--border) !important;
  padding: 10px 14px !important;
}

/* Google AdSense Optimization */
.adsense-container {
  margin: 20px 0;
  text-align: center;
  background: var(--surface);
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.adsense-container:hover {
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(27, 79, 216, 0.1);
}

.adsense-container ins.adsbygoogle {
  display: block;
  margin: 0 auto;
}

/* Header Ad Container */
.adsense-container[data-ad-slot="5116863951"] {
  margin: 12px 0 16px 0;
  padding: 8px;
}

/* Sidebar Ad Container */
.adsense-container[data-ad-slot="7311852734"] {
  margin-bottom: 24px;
}

/* Content Inline Ad Container */
.adsense-container[data-ad-slot="9876543210"] {
  margin: 30px auto;
  max-width: 800px;
}

/* Ad Label */
.adsense-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: block;
}

/* Mobile Responsive Ads */
@media (max-width: 768px) {
  .adsense-container {
    margin: 16px 0;
    padding: 8px;
  }

  .adsense-container[data-ad-slot="5116863951"] {
    margin: 8px 0 12px 0;
  }

  .adsense-container ins.adsbygoogle {
    display: block !important;
    width: 100% !important;
    height: auto !important;
  }
}

/* FAQs Section Styling */
.faqs-section {
  background: linear-gradient(135deg, var(--surface) 0%, #ffffff 100%);
  padding: 40px 20px;
  margin: 40px 0;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  animation: fadeInUp 0.6s ease-out;
}

.faqs-section h2 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.faqs-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(27, 79, 216, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  padding: 16px;
  background: var(--bg);
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
  user-select: none;
}

.faq-question:hover {
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg) 100%);
  color: var(--primary);
}

.faq-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  text-align: center;
  transition: transform 0.3s ease;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-text {
  flex: 1;
  font-size: 15px;
}

.faq-answer {
  display: none;
  padding: 20px 16px;
  background: linear-gradient(135deg, #ffffff 0%, var(--surface) 100%);
  border-top: 1px solid var(--border);
  color: var(--text);
  line-height: 1.8;
  font-size: 14px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

.faq-item.active .faq-answer {
  display: block !important;
  max-height: 1000px !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer p {
  margin: 0 0 10px 0;
  color: var(--muted);
  line-height: 1.6;
}

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

/* FAQs on Mobile */
@media (max-width: 768px) {
  .faqs-section {
    padding: 20px;
    margin: 20px 0;
  }

  .faqs-section h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .faq-item {
    margin-bottom: 8px;
  }

  .faq-question {
    padding: 14px;
  }

  .faq-answer {
    padding: 16px 14px;
    font-size: 13px;
  }

  .faq-icon {
    font-size: 12px;
  }
}

/* ============================================
   HOTEL DETAIL PAGE IMPROVEMENTS
   ============================================ */

/* Breadcrumb - Modern styled navigation */
.breadcrumb {
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg) 100%);
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  border-left: 3px solid var(--primary);
  font-size: 14px;
}

.breadcrumb-item {
  margin-right: 8px;
}

.breadcrumb-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

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

.breadcrumb-item.active {
  color: var(--text);
  font-weight: 600;
}

/* Hotel Detail Container - Better spacing */
.cms-content {
  padding: 0 !important;
}

.cms-content > .row {
  border: none !important;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 0 !important;
}

.cms-content > .row > .col-md-12:first-child {
  padding: 24px !important;
}

/* Gallery/Carousel - Larger and better positioned */
#slider {
  margin: 0 -24px -24px -24px;
  border-radius: 0;
  overflow: hidden;
}

#slider .carousel-item {
  min-height: 450px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg) 100%);
}

#slider .carousel-item img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 0;
}

#slider .carousel-indicators {
  bottom: 16px;
  padding: 0 12px;
}

#slider .carousel-indicators li {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 10px;
  height: 10px;
  margin: 0 6px;
  border: none;
  transition: var(--transition);
}

#slider .carousel-indicators li.active {
  background-color: var(--primary);
  width: 12px;
  height: 12px;
}

/* Gallery title - Better positioned */
#slider h2 {
  position: absolute;
  top: 16px;
  left: 20px;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  z-index: 10;
}

/* Stars in gallery */
#slider .float-right {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
}

/* Price badge - More visible */
.hotel-price-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, #F59E0B 100%);
  color: white;
  padding: 10px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
  animation: fadeInUp 0.5s ease-out;
}

/* Reserve button - Large and prominent */
.btn-primary {
  padding: 12px 32px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(27, 79, 216, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(27, 79, 216, 0.35);
}

.btn-primary.float-right {
  display: block;
  margin-bottom: 20px;
  width: auto;
  float: right;
}

/* Hotel description section */
.hotel-descriptions {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.hotel-descriptions h2 {
  font-size: 1.3rem;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 0;
}

.hotel-descriptions p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Contact info section */
.hotel-contact-section {
  margin-top: 32px;
  padding: 20px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg) 100%);
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.hotel-contact-section h2 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 16px;
}

/* Similar hotels section */
.similar-hotels-section {
  margin-top: 40px;
}

.similar-hotels-section h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}

/* Hotel card links in similar section */
.similar-hotels-section a {
  display: block;
  padding: 12px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg) 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.similar-hotels-section a:hover {
  background: var(--surface);
  border-color: var(--primary);
  transform: translateX(4px);
}

/* Mobile responsiveness for hotel detail */
@media (max-width: 768px) {
  .cms-content > .row > .col-md-12:first-child {
    padding: 16px !important;
  }

  #slider {
    margin: 0 -16px -16px -16px;
  }

  #slider .carousel-item img {
    height: 300px;
  }

  #slider h2 {
    font-size: 1.2rem;
    top: 12px;
    left: 12px;
  }

  .btn-primary.float-right {
    width: 100%;
    float: none;
    text-align: center;
    margin-bottom: 16px;
  }

  .breadcrumb {
    font-size: 12px;
    padding: 10px 12px;
  }

  .hotel-price-badge {
    font-size: 12px;
    padding: 8px 12px;
  }
}

/* Print & Dark mode support (future-proofing) */
@media (prefers-color-scheme: dark) {
  /* Keep light mode for now, can expand later */
}
