/* ==========================================================
   Ziaratt.com - Custom Styles for r=125 Version
   ==========================================================
   Author: Adib Group & AI Assistant
   Version: 1.0 Final
   ----------------------------------------------------------
   TABLE OF CONTENTS
   1.  HEADER STYLES
       - Slogan Bar
       - Main Header Container
       - Logo & Slogan
       - Right Side & Options
       - Currency Dropdown
       - Mobile Controls & Menu
   2.  FOOTER STYLES
       - Main Footer Container
       - Widgets (About, Links, Contact)
       - Social Links & Location
       - Bottom Bar
   3.  RESPONSIVE QUERIES
       - Tablet & Mobile Adjustments
/* ========================================================== */

/* ==========================================================
   1. HEADER STYLES
/* ========================================================== */

/* --- Slogan Bar --- */
.slogan-bar {
  background-color: #f8f9fa;
  color: #555;
  text-align: center;
  display: none; /* Hidden by default, shown in responsive */
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid #e9ecef;
  font-family: "Vazir-Regular-FD", sans-serif;
}

.desktop-slogan {
  padding-inline-start: 20px; /* Logical property */
  border-inline-start: 1px solid #e0e0e0; /* Logical property */
  color: #777;
  font-size: 14px;
  font-weight: 500;
  font-family: "Vazir-Regular-FD", sans-serif;
}

/* --- Main Header Container --- */
.new-header-placeholder {
  height: 80px;
}

.navbar-area.is-sticky .new-header-container {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.new-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  height: 80px;
  background-color: #ffffff;
  border-bottom: 1px solid #eaeaea;
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
  z-index: 999;
}

/* --- Logo & Slogan --- */
.new-header-logo-area {
  align-items: center;
  height: 100%;
  display: flex;
}

.new-header-logo-area .navbar-brand {
  height: 100%;
  display: flex;
  align-items: center;
}

.new-header-logo-area .navbar-brand img {
  transition: all 0.3s ease;
  padding-block: 0.5rem;
  object-fit: contain;
  max-width: 150px;
  height: 100%;
}

/* --- Right Side & Options --- */
.new-header-right-side {
  display: flex;
  align-items: center;
  gap: 20px;
}

.new-header-nav-options,
.new-header-options-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.option-item {
  display: flex;
  align-items: center;
  justify-content: center; /* Center content for icon-only buttons */
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
  border: 1px solid #e0e0e0;
  background-color: #fff;
}

.option-item i {
  color: #888;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
}

.option-item:hover {
  background-color: #f5f5f5;
  border-color: #ccc;
  color: #3eab3e;
}

.option-item:hover i {
  color: #3eab3e;
}

/* --- Currency Dropdown --- */
.dropdown-wrapper {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: -15px;
}

.dropdown-wrapper .dropdown-menu {
  position: absolute;
  top: calc(100% - 10px);
  inset-inline-start: 0; /* Logical property */
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  padding: 0;
  min-width: 200px;
  display: block;
  z-index: 1000;
  list-style: none;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown-wrapper:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu .dropdown-item {
  padding: 10px 20px;
  font-size: 12px;
  color: #333;
  display: block;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f5f5f5;
  color: #3eab3e;
}

/* --- Mobile Controls & Menu --- */
.contact-button .desktop-text-only {
  display: inline;
}

.mobile-controls {
  display: none;
  align-items: center;
  gap: 10px;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3125rem;
  width: 40px;
  background: transparent;
  padding: 0.5rem;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  height: 40px;
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
}

.mobile-menu-toggle:hover {
  background-color: #f5f5f5;
  border-color: #ccc;
}

.mobile-menu-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: #888;
  border-radius: 10px;
  transition: all 0.3s linear;
}

.mobile-nav-panel {
  position: fixed;
  top: 0;
  inset-inline-end: -100%; /* Logical property */
  width: 300px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: inset-inline-end 0.4s ease;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
}

.mobile-nav-panel.open {
  inset-inline-end: 0; /* Logical property */
}

.mobile-nav-panel .panel-header {
  padding: 0 20px 20px;
  border-bottom: 1px solid #eee;
}

.mobile-nav-panel .panel-header img {
  max-width: 120px;
}

.mobile-nav-panel .panel-links {
  list-style: none;
  padding: 20px 0;
  margin: 0;
  flex-grow: 1;
}

.mobile-nav-panel .panel-links a {
  display: block;
  padding: 15px 30px;
  color: #333;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f5f5f5;
}

.mobile-nav-panel .panel-links a:hover {
  background-color: #f5f5f5;
  color: #3eab3e;
  padding-inline-start: 35px; /* Logical property */
}

.mobile-nav-panel .panel-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-around;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  inset-inline-start: 0; /* Logical property */
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.mobile-nav-overlay.open {
  display: block;
}

/* ==========================================================
   2. FOOTER STYLES
/* ========================================================== */

.new-footer-section {
  position: relative;
  z-index: 1;
  /* background-image: url(../footer.png); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 70px;
  font-family: "Vazir-Regular-FD", sans-serif;
}

.new-footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  z-index: -1;
}

.footer-widget h4 {
  color: #121212;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.footer-widget h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 45px;
  height: 3px;
  background-color: #3eab3e;
  border-radius: 2px;
}

/* --- Widgets --- */
.footer-about-widget .footer-logo img {
  max-width: 150px;
  background: #fff;
  padding: 5px;
  border-radius: 5px;
}

.footer-about-widget p {
  color: #232323;
  font-size: 14px;
  line-height: 26px;
}

.footer-social-links {
  padding: 0;
  margin-top: 25px;
  list-style: none;
}

.footer-social-links li {
  display: inline-block;
  margin-inline-end: 10px;
}

.footer-social-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #555;
  color: #232323;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-social-links li a:hover {
  background-color: #3eab3e;
  border-color: #3eab3e;
  transform: scale(1.1);
}

.footer-links-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-widget ul li {
  margin-bottom: 15px;
}

.footer-links-widget ul li a {
  color: #232323;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
}

.footer-links-widget ul li a:hover {
  color: #3eab3e;
  padding-inline-start: 8px;
}

.footer-contact-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-widget ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 14px;
  color: #232323;
}

.footer-contact-widget ul li i {
  color: #3eab3e;
  font-size: 18px;
  margin-inline-end: 15px;
  margin-top: 3px;
  width: 20px;
}

.footer-contact-widget ul li a {
  color: #232323;
  text-decoration: none;
}

.footer-contact-widget ul li a:hover {
  color: #3eab3e;
}

.location-widget iframe {
  border-radius: 6px;
  height: 170px;
}

/* --- Bottom Bar --- */
.footer-bottom-bar {
  padding: 25px 0;
  margin-top: 30px;
  background-color: rgba(220, 220, 220, 0.8);
  text-align: center;
}

.footer-bottom-bar p {
  margin: 0;
  color: #353535;
  font-size: 14px;
}

.footer-bottom-bar p a {
  color: #3eab3e;
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom-bar p a:hover {
  color: #353535;
}

/* ==========================================================
   3. RESPONSIVE QUERIES
/* ========================================================== */

@media only screen and (max-width: 991px) {
  /* --- Header Responsive --- */
  .desktop-slogan {
    display: none;
  }
  .slogan-bar {
    display: block;
  }
  .new-header-container {
    padding: 0 20px;
    height: 70px;
  }
  .new-header-placeholder {
    height: 70px;
  }
  .new-header-nav-options {
    display: none;
  }
  .mobile-controls {
    display: flex;
  }
  .contact-button .desktop-text-only {
    display: none;
  }
  .option-item {
    padding: 8px 12px;
    height: 40px;
  }
  .mobile-controls .option-item {
    width: 40px; /* Make mobile icons square */
  }
}

/* ==========================================================
   8. HERO & SEARCH SECTION (Premium Bootstrap Layout, v2)
   ========================================================== */

/* --- Main Hero Container --- */
.hero-section {
  position: relative;
  min-height: 580px;
  height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.5));
  opacity: 0;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1120px;
  padding-inline: 5px;
  display: flex;
  justify-content: center;
}

/* --- Main Search Module Card --- */
.search-module {
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.3);
  padding: 18px 20px 16px;
}

/* --- Header: Tabs + Subtitle --- */
.search-module-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.search-module-subtitle {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.72;
  white-space: nowrap;
}

/* --- Service Tabs (Premium Pills) --- */
.service-tabs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(243, 244, 246, 0.95);
  overflow-x: auto;
}

.service-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 5px 12px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: #4b5563;
  border-radius: 999px;
  transition: all 0.18s ease-out;
  white-space: nowrap;
}

.service-tab i {
  font-size: 13px;
  color: #6b7280;
  transition: color 0.18s ease-out;
}

.service-tab.active {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 118, 110, 0.35);
  transform: translateY(-1px);
}

.service-tab.active i {
  color: #ffffff;
}

/* --- Body Wrapper --- */
.search-module-body {
  border-top: 1px solid rgba(229, 231, 235, 0.9);
  padding-top: 14px;
}

/* --- Show / Hide Panels --- */
.search-form-panel {
  display: none;
}

.search-form-panel.active {
  display: block;
}

/* --- Coming Soon Panel --- */
.coming-soon-panel {
  text-align: center;
  padding: 22px 16px 16px;
  background: rgba(249, 250, 251, 0.95);
  border-radius: 14px;
  border: 1px dashed #d1d5db;
}

.coming-soon-panel h3 {
  font-size: 14px;
  margin-bottom: 4px;
}

.coming-soon-panel p {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}

/* ==========================================================
   SEARCH ROW (Bootstrap based)
   ========================================================== */

.search-row {
  width: 100%;
}

.search-row-secondary {
  border-top: 1px solid rgba(229, 231, 235, 0.7);
  margin-top: 16px;
}

/* Field label */
.field-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 4px;
  color: #6b7280;
}

/* ==========================================================
   INPUT GROUPS & CONTROLS
   ========================================================== */

.date-picker-wrapper {
  z-index: 1000 !important;
}

/* base input-group */
.input-group {
  position: relative;
  background: #f9fafb;
  border-radius: 12px;
}

/* حالت پریمیوم */
.premium-input-group {
  display: flex;
  align-items: center;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding-inline: 10px 12px;
  min-height: 40px;
  transition: all 0.18s ease-out;
}

/* آیکن ورودی‌ها */
.input-group .icon {
  position: absolute;
  top: 50%;
  inset-inline-start: 12px;
  transform: translateY(-50%);
  color: #9ca3af;
  font-size: 14px;
  z-index: 2;
}

/* TomSelect wrapper */
.input-group .ts-wrapper,
.input-group > input {
  border-radius: 12px !important;
  width: 100%;
  margin: 0 !important;
}

/* TomSelect control */
.input-group .ts-wrapper .ts-control {
  background: transparent;
  border: none;
  border-radius: 12px;
  height: 40px;
  padding-inline-start: 26px!important;
  font-size: 13px;
  display: flex;
  align-items: center;
  box-shadow: none;
}

.premium-input-group .ts-wrapper.focus .ts-control {
  border: none;
}
.premium-input-group .nice-select {
  display: none !important;
}
.premium-input-group.nationality .nice-select {
  padding-inline-start: 2rem;
  display: block !important;
  height: 100%;
  border: none;
  width: 100%;
}


.premium-input-group:focus-within {
  border-color: #0f766e;
  box-shadow: 0 0 0 1px rgba(15, 118, 110, 0.25);
  background: #ffffff;
}

/* سایر ورودی‌ها */
.form-control-new {
  width: 100%;
  height: 40px;
  background: transparent;
  border: none;
  border-radius: 12px;
  padding-inline-start: 26px;
  padding-inline-end: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #111827;
  box-shadow: none;
}

.form-control-new:focus {
  outline: none;
}

.form-control-new::placeholder {
  color: #9ca3af;
}

/* ==========================================================
   SEARCH BUTTON
   ========================================================== */

.search-button {
  height: 40px;
  border: none;
  background-color: #0f766e;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 12px;
  padding: 0 20px;
  cursor: pointer;
  transition: all 0.16s ease-out;
}

.search-button--primary {
  border-radius: 999px;
  padding: 9px 22px;
  width: 100%;
  height: 40px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(15, 118, 110, 0.35);
}

.search-button--primary i {
  font-size: 13px;
}

.search-button--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(15, 118, 110, 0.45);
}


.search-button--danger {
  border-radius: 999px;
  padding: 9px 22px;
  width: 100%;
  height: 40px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #760f0f, #b81414);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(118, 15, 15, 0.35);
}

.search-button--danger i {
  font-size: 13px;
}

.search-button--danger:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(118, 15, 15, 0.45);
}

/* ==========================================================
   HOTEL NAME TOGGLE (OPTIONAL FIELD)
   ========================================================== */

.hotel-toggle-area {
  font-size: 11px;
  color: #6b7280;
}

.hotel-toggle-link {
  border-radius: 999px;
  padding-inline: 10px 12px;
  padding-block: 3px;
  font-size: 11px;
  font-weight: 600;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  color: #374151;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hotel-toggle-link i {
  font-size: 10px;
  transition: transform 0.18s ease-out;
}

.hotel-toggle-link--active {
  background: #ecfdf5;
  border-color: #10b981;
  color: #065f46;
}

.hotel-toggle-link--active i {
  transform: rotate(180deg);
}

.hotel-toggle-hint {
  font-size: 10px;
  opacity: 0.7;
}

/* ردیف نام هتل – نزدیک به فرم، بدون فاصله زیاد */
.hotel-name-row {
  transition: all 0.18s ease-out;
  opacity: 0;
  transform: translateY(-3px);
  margin-top: 6px;
}

.hotel-name-row--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   PASSENGER / ROOMS DROPDOWN
   ========================================================== */

.user_box_select {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  inset-inline-start: 0;
  width: 320px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  border: 1px solid #e5e7eb;
  padding: 16px 14px;
  z-index: 1500;
}

.passenger-select {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.passenger-count {
  display: flex;
  align-items: center;
  gap: 8px;
}

.passenger-count button {
  width: 28px;
  height: 28px;
  border: 1px solid #e5e7eb;
  color: #374151;
  background: #f9fafb;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
}

.passenger-input {
  width: 28px;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 15px;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1100px) {
  .search-module-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-module-subtitle {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: auto;
    min-height: 100vh;
    padding: 50px 15px;
  }

  .search-module {
    padding: 16px 14px 14px;
    border-radius: 18px;
  }

  .hotel-toggle-area {
    margin-bottom: 4px;
  }

  .search-row-secondary {
    padding-top: 6px;
    margin-top: 8px;
  }

  .service-tabs {
    width: 100%;
    justify-content: space-between;
  }

  .service-tab {
    flex: 1;
    justify-content: center;
    padding-inline: 4px;
    font-size: 11px;
  }

  .search-module-subtitle {
    font-size: 9px;
  }
}

/* ==========================================================
   9. HOME PAGE CONTENT SECTIONS (FINAL & OPTIMIZED)
   ----------------------------------------------------------
   TABLE OF CONTENTS
   1.  General Section Styles
   2.  Why Choose Us Section
   3.  Content Slider Section (Abouts)
   4.  Featured Hotels Section
   5.  Video Section
   6.  Statistics Section (Parallax)
   7.  Partners Section
   8.  Content Sections Responsive
/* ========================================================== */

/* --- 1. General Section Styles --- */
.section-new {
  padding: 80px 0;
}
.section-new.bg-light {
  background-color: #f8f9fa;
}
.section-title-new {
  text-align: center;
  margin-bottom: 50px;
}
.section-title-new span {
  font-size: 14px;
  color: #3eab3e;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}
.section-title-new h2 {
  font-size: 34px;
  font-weight: 700;
  color: #222;
}

/* --- 2. Why Choose Us Section (3D Card Design) --- */
.why-choose-us-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.feature-card-3d {
  background: #fff;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid #eee;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.feature-card-3d:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}
.feature-card-3d .icon {
  font-size: 40px;
  color: #3eab3e;
  margin-bottom: 20px;
}
.feature-card-3d h4 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}
.feature-card-3d p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

/* --- 3. Content Slider Section (Abouts) --- */
.content-slider-section {
  padding: 0;
}
.content-slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.content-slider .swiper-wrapper .swiper-slide {
  height: auto;
}
.about-section-premium {
  padding: 2rem;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease; /* For potential hover effects */
}
.about-overlay-content {
  position: relative;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.about-section-premium.mirrored .container .row {
  justify-content: flex-end; /* Pushes content to the right */
}
.about-overlay-content span {
  font-size: 14px;
  color: #3eab3e;
  font-weight: 700;
  text-transform: uppercase;
}
.about-overlay-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0 20px;
  color: #222;
}
.about-overlay-content p {
  color: #555;
  line-height: 1.8;
}
.content-slider .swiper-pagination-bullet {
  transition: all ease-in-out 300ms;
  background: #fff !important;
  border-radius: 3rem;
  opacity: 0.75;
}
.content-slider .swiper-pagination-bullet-active {
  transition: all ease-in-out 300ms;
  background: #3eab3e !important;
  width: 2rem;
}

/* --- 4. Featured Hotels Section --- */
.hotel-card-new {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin: 5px; /* Added margin for swiper */
}
.hotel-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.card-image {
  position: relative;
  height: 220px;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-price {
  position: absolute;
  bottom: 15px;
  inset-inline-start: 15px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}
.card-content {
  padding: 20px;
}
.card-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-location {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}
.card-location i {
  margin-inline-end: 5px;
}
.card-rating {
  color: #f5b301;
}
.swiper-button-next,
.swiper-button-prev {
  color: #3eab3e !important;
}

/* --- 5. Video Section (Polished) --- */
.video-section-premium {
  position: relative;
  padding: 200px 0;
  border-radius: 2rem;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.video-section-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.video-play-button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #fff;
  color: #3eab3e;
  font-size: 32px;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: pulse 1.5s infinite;
  transition: all 0.3s ease;
  text-decoration: none;
}
.video-play-button a:hover {
  transform: scale(1.1);
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.video-title-premium h3 {
  margin-top: 25px;
  font-size: 32px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* --- 6. Stats Section (PARALLAX-ENABLED) --- */
.stats-section-parallax {
  padding: 100px 0;
  background-image: url("../img/counter.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* THE PARALLAX EFFECT */
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
}
.stats-section-parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(30, 30, 30, 0.75);
  z-index: -1;
}
.counter-item-premium img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(218deg) brightness(105%) contrast(101%);
  object-fit: contain;
  aspect-ratio: 1/1;
  width: 60px;
}
.counter-item-premium h3 {
  font-size: 48px;
  font-weight: 700;
  margin-block: 0.5rem;
}
.counter-item-premium p {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
  text-transform: uppercase;
  color: #f0f0f0;
}

/* --- 7. Partners Section --- */
.partners-section-new .partner-item img {
  max-height: 60px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
  margin: 0 auto;
}
.partners-section-new .partner-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* --- 8. Content Sections Responsive --- */
@media (max-width: 991px) {
  .about-section-premium {
    height: auto;
    padding: 50px 1rem;
    display: block;
  }
  .about-background {
    position: absolute;
    height: 100%;
    top: 0;
  }
  .about-section-premium .container {
    padding-top: 200px; /* Push content below the image top */
  }
  .about-overlay-content {
    background: rgba(255, 255, 255, 0.5);
    max-width: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
  }
  .about-section-premium.mirrored .container .row,
  .about-section-premium .container .row {
    justify-content: center !important;
  }
  .content-slider {
    padding-bottom: 40px; /* Space for pagination */
  }
}

/* ==========================================================
   HOTEL RESULTS PAGE LAYOUT
   ========================================================== */

.hotel-results-page {
  padding-block: 80px 40px;
  background: #f3f4f6;
}

/* ==========================================================
   COMPACT PAGE BANNER FOR HOTEL RESULTS
   ========================================================== */

.page-banner--compact {
  position: relative;
  margin: 0;
  padding-block: 16px 14px;
  background: radial-gradient(circle at top left, #0f766e 0%, #022c22 45%, #020617 100%);
  color: #ffffff;
  overflow: hidden;
}

/* .page-banner--compact::before {
   content: '';
   position: absolute;
   inset-inline-end: -60px;
   top: -40px;
   width: 220px;
   height: 220px;
   border-radius: 999px;
   background: radial-gradient(circle, rgba(16, 185, 129, 0.35), transparent 70%);
   opacity: 0.9;
} */

.page-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.page-banner-main {
  min-width: 0;
}

.page-banner-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.page-banner-breadcrumb {
  font-size: 12px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.page-banner-breadcrumb a {
  color: #a5f3fc;
  text-decoration: none;
}

.page-banner-breadcrumb span {
  color: #e5e7eb;
}

.page-banner-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 11px;
  opacity: 0.95;
}

.page-banner-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.page-banner-meta-item i {
  font-size: 12px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .page-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-banner-title {
    font-size: 18px;
  }

  .page-banner-meta {
    width: 100%;
  }

  .page-banner-meta-item {
    padding-inline: 8px;
  }
}

/* --- Results Header --- */
.results-header-section {
  padding-block: 16px 4px;
}

.results-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.results-header-main {
  flex: 1;
  min-width: 0;
}

.results-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #111827;
}

.results-meta {
  font-size: 12px;
  color: #6b7280;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  margin: 0;
}

.results-meta-separator {
  opacity: 0.5;
}

.btn-modify-search {
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #111827;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.16s ease-out;
}

.btn-modify-search:hover {
  background: #f9fafb;
  border-color: #0f766e;
}

/* --- Search panel wrapper (collapsible) --- */
.results-search-section {
  padding-block: 4px 10px;
}

.results-search-panel {
  display: none; /* hidden by default; will be opened via JS by toggling a modifier class */
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 14px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.results-search-panel.results-search-panel--open {
  display: block;
}

/* --- Main layout --- */
.results-layout-section {
  padding-top: 8px;
}

.results-layout-row {
  align-items: flex-start;
  gap: 18px 0;
}

/* Filters card container */
.results-filters-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 14px 10px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
}

/* Make sidebar sticky on desktop */
@media (min-width: 992px) {
  .results-filters-card {
    position: sticky;
    top: 16px;
  }
}

/* Filters header */
.filters-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.filters-card-header-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.filters-card-title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #111827;
}

.filters-card-title i {
  font-size: 13px;
  color: #0f766e;
}

.filters-card-subtitle {
  font-size: 11px;
  color: #6b7280;
}

/* Clear all button */
.filters-clear-btn {
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.16s ease-out;
  white-space: nowrap;
}

.filters-clear-btn:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
  color: #111827;
}

/* Divider */
.filters-divider {
  height: 1px;
  background: rgba(229, 231, 235, 0.9);
  margin: 8px 0 10px;
}

/* Selected filters summary */
.filters-selected-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px dashed #e5e7eb;
  margin-bottom: 8px;
}

.filters-selected-summary--empty {
  opacity: 0.7;
}

.filters-selected-label {
  font-size: 11px;
  color: #6b7280;
}

.filters-summary-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  font-size: 11px;
  color: #065f46;
}

.filters-summary-badge i {
  font-size: 11px;
}

.filters-summary-count {
  font-weight: 700;
}

/* Filter block header with icons */
.filter-block {
  background: transparent;
}

.filter-block + .filter-block {
  border-top: 1px solid rgba(229, 231, 235, 0.9);
  margin-top: 10px;
  padding-top: 10px;
}

.filter-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
}

.filter-block-header-main {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.filter-block-icon {
  font-size: 13px;
  color: #0f766e;
}

.filter-block-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin: 0;
  color: #4b5563;
}

/* Toggle button */
.filter-block-toggle {
  border: none;
  background: transparent;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  color: #6b7280;
  transition: background 0.16s ease-out, color 0.16s ease-out;
}

.filter-block-toggle:hover {
  background: #f3f4f6;
  color: #111827;
}

.filter-block-chevron {
  font-size: 11px;
  transition: transform 0.18s ease-out;
}

/* Accordion behavior */
.filter-block-body {
  margin-top: 6px;
  display: none;
}

.filter-block.is-open .filter-block-body {
  display: block;
}

.filter-block.is-open .filter-block-chevron {
  transform: rotate(0deg);
}

.filter-block.is-collapsed .filter-block-chevron {
  transform: rotate(180deg);
}

/* Checklist */
.filter-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-checklist-item + .filter-checklist-item {
  margin-top: 4px;
}

/* Base checkbox line */
.filter-checkbox-label {
  font-size: 12px;
  color: #4b5563;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.filter-checkbox-label input[type="checkbox"] {
  width: 14px;
  height: 14px;
}

/* Stars visual row */
.filter-stars-label {
  align-items: center;
}

.filter-stars-visual {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.filter-stars-icons {
  display: inline-flex;
  gap: 2px;
  font-size: 11px;
  color: #f59e0b;
}

.filter-stars-icons i.far.fa-star {
  color: #e5e7eb;
}

.filter-stars-text {
  font-size: 12px;
  color: #374151;
}

/* Results column */
.results-list-column {
  margin-bottom: 16px;
}

/* Toolbar */
.results-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.results-toolbar-count {
  font-size: 12px;
  color: #6b7280;
}

.results-sort-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.results-sort-label {
  font-size: 11px;
  color: #6b7280;
}

/* Sort tabs */
.results-sort-tabs {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: none;
}
.results-sort-group .nice-select {
  cursor: pointer;
  border-radius: 3rem;
}
.results-sort-tabs .nav-link {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #4b5563;
  background: #f3f4f6;
  line-height: 1.3;
}

.results-sort-tabs .nav-link.active {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: #ffffff;
  border: none;
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.35);
}

/* Results list */
.results-list-wrapper {
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 12px 10px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
}

.results-empty-state {
  border-radius: 12px;
}

/* Mobile filter toggle */
.filter-mobile-toggle {
  position: fixed;
  bottom: 18px;
  inset-inline-end: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 118, 110, 0.5);
  z-index: 990;
}

.filter-mobile-toggle .filter_mobile_i {
  font-size: 18px;
}

/* On mobile, slide filters panel */
@media (max-width: 991.98px) {
  .results-layout-row {
    position: relative;
  }

  .results-filters-column {
    position: fixed;
    top: 70px;
    bottom: 0;
    inset-inline-start: 0;
    width: 280px;
    max-width: 90%;
    transform: translateX(-105%);
    transition: transform 0.22s ease-out;
    z-index: 980;
  }

  .results-filters-column.open {
    transform: translateX(0);
  }

  .results-filters-card {
    height: 100%;
    overflow-y: auto;
  }

  .filter-mobile-toggle {
    display: flex;
  }
}

@media (min-width: 992px) {
  .filter-mobile-toggle {
    display: none;
  }
}

/* Results search panel uses the same search-module styling as hero */
.results-search-panel .search-module {
  padding: 14px 16px 12px;
  border-radius: 18px;
}

/* Slightly tighter spacing for results search form */
.results-search-panel .field-label {
  margin-bottom: 2px;
}

.results-search-panel .search-button--primary {
  height: 38px;
  font-size: 11px;
}
.results-search-panel .search-button--danger {
  height: 38px;
  font-size: 11px;
}

/* Results search guests dropdown uses the same base styles */
.user_box_select--results {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  inset-inline-start: 0;
  width: 320px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  border: 1px solid #e5e7eb;
  padding: 16px 14px;
  z-index: 1500;
}

/* ==========================================================
   HOTEL RESULT CARDS
   ========================================================== */

.hotel-card {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 16px;
  background: #ffffff;
  border-radius: 18px;
  padding: 12px 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out, border-color 0.16s ease-out;
}

.hotel-card + .hotel-card {
  margin-top: 10px;
}

.hotel-card:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 116, 144, 0.5);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
}

/* --- Media column --- */
.hotel-card-media {
  position: relative;
  flex: 0 0 200px;
  border-radius: 16px;
  overflow: hidden;
  background: #020617;
}

.hotel-card-media-link {
  display: block;
  height: 100%;
}

.hotel-card-image {
  width: 100%;
  height: 100%;
  max-height: 180px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.24s ease-out, opacity 0.24s ease-out;
}

.hotel-card:hover .hotel-card-image {
  transform: scale(1.06);
}

/* Media badges */
.hotel-card-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  color: #f9fafb;
}

.hotel-card-badge--rating {
  left: 8px;
  top: 8px;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.5);
}

.hotel-card-badge-score i {
  font-size: 11px;
  margin-inline-end: 2px;
}

.hotel-card-badge--online {
  right: 8px;
  top: 8px;
  background: rgba(30, 64, 175, 0.9);
  box-shadow: 0 10px 24px rgba(30, 64, 175, 0.5);
}

.hotel-card-badge--online i {
  font-size: 11px;
}

.hotel-card-badge--city {
  left: 8px;
  bottom: 8px;
  background: rgba(15, 23, 42, 0.85);
}

/* --- Body (center column) --- */
.hotel-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
  padding-block: 4px;
}

.hotel-card-header {
  align-items: center;
  display: flex;
  gap: 6px;
}

.hotel-card-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: #111827;
}

.hotel-card-title a {
  color: inherit;
  text-decoration: none;
}

.hotel-card-title a:hover {
  text-decoration: underline;
}

/* Rating (stars + label) */
.hotel-card-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #4b5563;
}

.hotel-card-rating--inline {
  margin-top: 2px;
}

.hotel-card-stars {
  display: inline-flex;
  gap: 2px;
  font-size: 11px;
  color: #fbbf24;
}

.hotel-card-stars i.far.fa-star {
  color: #e5e7eb;
}

.hotel-card-rating-label {
  font-weight: 600;
}

/* Location */
.hotel-card-location {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  color: #4b5563;
  margin: 0;
}

.hotel-card-location-icon {
  font-size: 11px;
  margin-top: 2px;
  color: #0f766e;
}

.hotel-card-location-text {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Meta tags */
.hotel-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}

.hotel-card-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  color: #065f46;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
}

.hotel-card-meta-pill i {
  font-size: 11px;
}

/* Footer CTA for legacy card */
.hotel-card-footer {
  margin-top: auto;
}

.hotel-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  font-size: 11px;
  font-weight: 600;
  color: #111827;
  text-decoration: none;
  background: #f9fafb;
  transition: all 0.16s ease-out;
}

.hotel-card-cta:hover {
  background: #0f766e;
  border-color: #0f766e;
  color: #ffffff;
}

/* --- Right column (price + CTA) --- */
.hotel-card-aside {
  flex: 0 0 230px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  padding-block: 4px;
  gap: 10px;
}

/* Top area: discount + pricing */
.hotel-card-aside-top {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  width: 100%;
}

/* Discount badge */
.hotel-card-discount-row {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.hotel-card-discount-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
  max-width: 160px;
  text-align: center;
  white-space: nowrap;
}
/* Price block container */
.hotel-card-price-block {
  width: 100%;
  text-align: right;
}

/* Small label above price */
.hotel-card-price-label-row {
  margin-bottom: 4px;
}

.hotel-card-price-label-text {
  font-size: 11px;
  font-weight: 500;
  color: #6b7280;
}

/* Main price area */
.hotel-card-price-main {
  justify-content: end;
  align-items: end;
  display: flex;
  gap: 6px;
}

/* Old price chip */
.hotel-card-price-old-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  color: #212529;
  background: #efefef;
  border: 1px solid #777;
  text-decoration: line-through;
}
.hotel-card-price-old-chip .hotel-card-price-currency {
  font-size: 10px;
  color: #212529;
}
/* Current price (big) */
.hotel-card-price-current-row {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.hotel-card-price-amount {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  letter-spacing: 0.02em;
}

.hotel-card-price-currency {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
}

/* Night / per-night pill */
.hotel-card-price-meta-row {
  margin-top: 2px;
}

.hotel-card-price-night-pill {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  color: #0f172a;
  background: #e5f3ff;
  border: 1px solid #bfdbfe;
}

/* CTA (aside) */
.hotel-card-cta-wrapper {
  width: 100%;
}

.hotel-card-cta--primary {
  width: 100%;
  justify-content: center;
  padding: 8px 14px;
  border: none;
  font-size: 12px;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.4);
}

/* Legacy card variant (no aside, 2-column layout) */
.hotel-card--legacy {
  align-items: stretch;
}

.hotel-card--legacy .hotel-card-media {
  flex: 0 0 180px;
  max-width: 200px;
}

.hotel-card--legacy .hotel-card-body {
  padding-inline-end: 4px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .hotel-card {
    flex-direction: column;
    padding: 10px 10px;
  }

  .hotel-card-media {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    height: 190px;
  }

  .hotel-card-image {
    max-height: 190px;
  }

  .hotel-card-aside {
    flex: 0 0 auto;
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }

  .hotel-card-aside-top {
    align-items: flex-start;
  }

  .hotel-card-price-block {
    text-align: left;
  }

  .hotel-card-price-row {
    align-items: flex-start;
  }

  .hotel-card-discount-pill {
    max-width: 100%;
  }

  .hotel-card-cta-wrapper {
    margin-top: 6px;
    width: 100%;
  }

  .hotel-card-cta--primary {
    width: 100%;
  }
}
/* ==========================================================
   HOTEL DETAIL PAGE (Single Hotel)
   ========================================================== */

.single-room-section {
  padding-block: 16px;
}
.hotel-detail-page {
  position: relative;
}

/* ==========================================================
  HEADER (title + rating + address + meta)
  ========================================================== */

.hotel-detail-header {
  padding: 18px 0 10px;
}

.hotel-detail-header-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hotel-detail-title {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  margin: 0;
}

.hotel-detail-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hotel-detail-rating-stars {
  display: inline-flex;
  gap: 2px;
  font-size: 14px;
  color: #f59e0b;
}

.hotel-detail-rating-label {
  font-size: 12px;
  color: #4b5563;
}

.hotel-detail-address {
  font-size: 13px;
  color: #4b5563;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hotel-detail-address i {
  color: #0f766e;
}

/* Small meta row (dates, guests, rooms) */
.hotel-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.hotel-detail-meta-item {
  font-size: 11px;
  color: #4b5563;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e5f3f1;
}

/* ==========================================================
  MAIN GRID (Gallery + Sidebar)
  ========================================================== */

.hotel-detail-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(260px, 0.9fr);
  gap: 18px;
}

.hotel-detail-main-left,
.hotel-detail-main-right {
  min-width: 0;
}

.hotel-detail-main-left{
  flex-direction: column;
  display: flex;
  gap: 1rem;
}

@media (max-width: 991.98px) {
  .hotel-detail-main-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hotel-detail-main-right {
    order: -1; /* sidebar goes on top on mobile */
  }
}

/* ==========================================================
  HERO GALLERY CARD
  ========================================================== */

.hotel-hero-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
  margin-bottom: 14px;
  overflow: hidden;
}

.hotel-hero-card-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1.4fr);
  gap: 8px;
  padding: 12px 12px 8px;
}

.hotel-hero-main-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  display: block;
  background: #020617;
}

.hotel-hero-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease-out;
}

.hotel-hero-main-image:hover img {
  transform: scale(1.02);
}

/* "View gallery" badge */
.hotel-hero-main-badge {
  position: absolute;
  inset-inline-end: 12px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(15, 23, 42, 0.78);
  color: #f9fafb;
  backdrop-filter: blur(10px);
}

.hotel-hero-main-badge i {
  font-size: 12px;
}

/* Placeholder when no image */
.hotel-hero-main-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 260px;
  border-radius: 18px;
  background: linear-gradient(135deg, #e5e7eb, #f9fafb);
  color: #4b5563;
}

.hotel-hero-main-placeholder i {
  font-size: 32px;
  margin-bottom: 6px;
}

/* Thumbnails column */
.hotel-hero-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 80px;
  gap: 8px;
}

.hotel-hero-thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  background: #111827;
}

.hotel-hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.22s ease-out;
}

.hotel-hero-thumb:hover img {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .hotel-hero-card-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hotel-hero-main-image img {
    max-height: 260px;
  }
  .hotel-hero-thumbs {
    grid-auto-rows: 72px;
  }
}

/* Info strip under gallery */
.hotel-info-strip {
  border-top: 1px solid #e5e7eb;
  padding: 8px 12px 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hotel-info-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f3f4f6;
  font-size: 11px;
  color: #4b5563;
}

.hotel-info-pill i {
  color: #0f766e;
}

/* ==========================================================
  GENERIC CONTENT SECTIONS
  (Description / Facilities / Rooms)
  ========================================================== */

.hotel-section {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
  padding: 16px 16px 18px;
}

.hotel-section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.hotel-section-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.hotel-section-subtitle {
  font-size: 12px;
  color: #6b7280;
  margin: 2px 0 0;
}

.hotel-section-body {
  font-size: 13px;
  color: #374151;
}

/* Description body */
.hotel-description-body {
  line-height: 1.7;
}

.hotel-description-text p {
  margin-bottom: 8px;
}

.hotel-section-divider {
  margin: 10px 0;
  border-color: #e5e7eb;
}

/* Nearby places */
.hotel-subtitle {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px;
}

.hotel-nearby-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  color: #4b5563;
}

.hotel-nearby-item + .hotel-nearby-item {
  margin-top: 4px;
}

/* ==========================================================
  FACILITIES
  ========================================================== */

.hotel-section--facilities .hotel-section-body {
  padding-top: 2px;
}

.hotel-facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px 12px;
}

.hotel-facility-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #4b5563;
}

.hotel-facility-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
}

.hotel-facility-icon svg {
  width: 14px;
  height: 14px;
}

.hotel-facility-label {
  flex: 1;
}

@media (max-width: 992px) {
  .hotel-facilities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .hotel-facilities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ==========================================================
  ROOMS TABLE (booking)
  ========================================================== */

.hotel-section--rooms .hotel-section-body {
  padding-top: 0;
}

.hotel-rooms-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

/* Base table */
.hotel-rooms-table {
  width: 100%;
  margin-bottom: 12px;
  font-size: 12px;
  color: #111827;
  border-collapse: separate;
  border-spacing: 0 8px;
}

.hotel-rooms-thead th {
  border: none;
  border-bottom: 1px solid #e5e7eb;
  font-weight: 600;
  font-size: 11px;
  color: #6b7280;
  white-space: nowrap;
  padding: 6px 8px;
}

/* Row as card */
.hotel-room-row {
  background: #f9fafb;
  border-radius: 14px;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
}

.hotel-room-row td {
  vertical-align: middle;
  border: none;
  padding: 10px 8px;
  border-bottom: 1px solid #e5e7eb;
}

.hotel-room-row td:last-child {
  border-bottom: none;
}

/* Room type column */
.hotel-room-cell--type {
  width: 230px;
}

.hotel-room-type {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hotel-room-name {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}

.hotel-room-description {
  font-size: 11px;
  color: #6b7280;
}

/* Discount pill near room name */
.hotel-room-badge-discount,
.hotel-room-discount-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  background: #fee2e2;
  color: #b91c1c;
  max-width: max-content;
}

/* Capacity icons */
.hotel-room-capacity {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 3px;
  justify-content: center;
}

.hotel-room-capacity-icon svg {
  width: 14px;
  height: 14px;
}

/* Breakfast badges */
.hotel-room-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 10px;
  white-space: nowrap;
}

.hotel-room-badge--success {
  background: #ecfdf5;
  color: #047857;
}

.hotel-room-badge--muted {
  background: #f3f4f6;
  color: #6b7280;
}

.hotel-room-badge i {
  font-size: 10px;
}

/* Extra bed */
.hotel-room-extra-bed {
  font-weight: 600;
}

/* Price cells – stronger hierarchy */
.hotel-room-price,
.hotel-room-price-total {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-end;
}

.hotel-room-price-old {
  font-size: 11px;
  color: #9ca3af;
  text-decoration: line-through;
  white-space: nowrap;
}

.hotel-room-price-current {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  white-space: nowrap;
  padding: 3px 10px;
  border-radius: 999px;
  background: #ecfdf5;
}

.hotel-room-price-amount {
  font-size: 14px;
  font-weight: 800;
  color: #065f46;
}

.hotel-room-price-currency {
  font-size: 11px;
  color: #047857;
}

.hotel-room-price-note {
  font-size: 10px;
  color: #6b7280;
}

/* CTA column */
.hotel-room-cell--cta {
  width: 170px;
}

.hotel-room-select-btn {
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  padding-inline: 14px;
}

/* Quantity selector */
.hotel-room-quantity-wrapper {
  margin-top: 6px;
}

.hotel-room-quantity-group {
  display: inline-flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid #10b981;
}
.input-group_reserve:has(.input-group-append){
   padding: 0;
   border-color: transparent;
}
.input-group_reserve .form-control{
   height: unset;
}
.hotel-room-qty-input {
  width: 54px;
  text-align: center;
  border: none;
  font-size: 12px;
  font-weight: 600;
}

.hotel-room-qty-input:focus {
  outline: none;
  box-shadow: none;
}

.hotel-room-qty-btn {
  border-radius: 0;
}

/* Rooms summary block (uses .reserve_sum wrapper from Blade) */
.reserve_sum {
  margin-top: 8px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #0f172a;
  color: #e5e7eb;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.reserve_sum p {
   font-size: 12px;
   line-height: 1.5;
   color: white;
   margin: 0;
}

.reserve_sum_price {
  font-size: 16px;
  font-weight: 800;
}

.reserve_sum .btn {
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

/* ==========================================================
  ROOMS TABLE – MOBILE MODE
  ========================================================== */

/* old helper span label */
.mobile_basket {
  display: none;
}

@media (max-width: 576px) {
  .basket_thead {
    display: none !important;
  }

  .hotel-rooms-table {
    border-collapse: separate;
    border-spacing: 0 8px;
  }

  .hotel-rooms-table tr {
    display: block;
    width: 100%;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    margin-bottom: 10px;
    background: #ffffff;
  }

  .hotel-rooms-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    border: none;
    border-bottom: 1px solid #e5e7eb;
    font-size: 12px;
  }

  .hotel-rooms-table td:last-child {
    border-bottom: none;
  }

  .hotel-room-cell--type {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .hotel-room-cell--type .hotel-room-type {
    width: 100%;
  }

  .hotel-room-cell--cta {
    justify-content: center !important;
  }

  .mobile_basket {
    display: inline-block;
    font-size: 11px;
    color: #6b7280;
    margin-inline-end: 6px;
  }

  .hotel-room-price,
  .hotel-room-price-total {
    align-items: flex-end;
  }

  .reserve_sum {
    position: fixed;
    inset-inline: 10px;
    bottom: 10px;
    z-index: 980;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.6);
  }

  .hotel-rooms-table-wrapper {
    padding-bottom: 90px; /* space for sticky summary bar */
  }
}

/* ==========================================================
  SIDEBAR (booking summary + map + benefits)
  ========================================================== */

.hotel-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 100px;
}

.sidebar.position-sticky {
  top: 100px; /* backward compatible with old class */
}

@media (max-width: 991.98px) {
  .hotel-sidebar {
    position: static;
  }
}

.hotel-sidebar-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
  padding: 14px 14px 12px;
}

.hotel-sidebar-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111827;
}

.hotel-sidebar-card-body {
  font-size: 12px;
  color: #374151;
}

/* Booking summary info */
.hotel-sidebar-booking-dates {
  font-size: 13px;
  color: #374151;
  margin-bottom: 8px;
}

.hotel-sidebar-summary-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}

.hotel-sidebar-summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding-block: 2px;
}

.hotel-sidebar-summary-label {
  color: #6b7280;
  font-size: 11px;
}

.hotel-sidebar-summary-value {
  font-weight: 600;
}

/* Big CTA button – main conversion */
.hotel-sidebar-primary-cta,
.hotel-sidebar-cta-btn {
  width: 100%;
  border-radius: 999px;
  padding: 9px 14px;
  border: none;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.18s ease-out;
}

.hotel-sidebar-primary-cta:hover,
.hotel-sidebar-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(15, 118, 110, 0.4);
}

.hotel-sidebar-help-text {
  font-size: 11px;
  color: #6b7280;
  margin-top: 6px;
}

/* Map card */
.hotel-sidebar-map-link {
  position: relative;
  display: block;
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
}

.hotel-sidebar-map-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.75), transparent 55%);
}

.hotel-sidebar-map-label {
  position: absolute;
  inset-inline-start: 10px;
  bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.88);
  color: #f9fafb;
  font-size: 11px;
  font-weight: 600;
}

.hotel-sidebar-map-icon {
  position: absolute;
  inset-inline-end: 12px;
  bottom: 12px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotel-sidebar-map-icon svg {
  width: 14px;
  height: 14px;
  fill: #ffffff;
}

.hotel-sidebar-map-hint {
  font-size: 11px;
  color: #6b7280;
  margin: 8px 0 0;
}

/* Benefits / why book with us */
.hotel-sidebar-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hotel-sidebar-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  color: #4b5563;
}

.hotel-sidebar-why-list i {
  color: #16a34a;
  font-size: 13px;
  margin-top: 1px;
}

/* ==========================================================
   HOTEL CHECKOUT PAGE (Hotel Request / Payment Page)
   ========================================================== */

.hotel-checkout-page {
  background: #f3f4f6;
  padding-block: 80px 40px; /* Top offset handled by JS (floating navbar) */
}

/* ----------------------------------------------------------
   PAGE HEADER (Hotel summary)
   ---------------------------------------------------------- */

.hotel-detail-header {
  padding: 18px 0 10px;
}

.hotel-detail-title {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  margin: 0;
}

.hotel-detail-address {
  font-size: 13px;
  color: #4b5563;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hotel-detail-address i {
  color: #0f766e;
}

.hotel-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.hotel-detail-meta-item {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e5f3f1;
  color: #374151;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ----------------------------------------------------------
   STANDARD SECTION CARD
   ---------------------------------------------------------- */

.hotel-section {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px 16px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
}

.hotel-section-header {
  margin-bottom: 10px;
}

.hotel-section-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.hotel-section-subtitle {
  font-size: 12px;
  color: #6b7280;
  margin: 4px 0 0;
}

.hotel-section-divider {
  margin: 12px 0;
  border-color: #e5e7eb;
}

/* ----------------------------------------------------------
   SIDEBAR (RIGHT COLUMN)
   ---------------------------------------------------------- */

.hotel-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 100px;
}

.hotel-sidebar-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 14px 12px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
}

.hotel-sidebar-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.hotel-sidebar-summary-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}

.hotel-sidebar-summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding-block: 4px;
}

.hotel-sidebar-summary-label {
  font-size: 11px;
  color: #6b7280;
}

.hotel-sidebar-summary-value {
  font-size: 13px;
  font-weight: 600;
}

/* CTA Button */
.hotel-sidebar-primary-cta {
  width: 100%;
  border-radius: 999px;
  padding: 10px 14px;
  border: none;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.18s ease-out;
}

.hotel-sidebar-primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(15, 118, 110, 0.45);
}

.hotel-sidebar-help-text {
  font-size: 11px;
  color: #6b7280;
  margin-top: 8px;
}

/* ----------------------------------------------------------
   PRICE BLOCK (inside sidebar)
   ---------------------------------------------------------- */

.hotel-checkout-price-block {
  background: #f9fafb;
  border-radius: 14px;
  padding: 12px 12px 10px;
  border: 1px solid #e5e7eb;
}

.hotel-checkout-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hotel-checkout-price-label {
  font-size: 12px;
  color: #6b7280;
}

.hotel-checkout-price-amount {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

.hotel-checkout-price-amount.is-old del {
  font-size: 12px;
  color: #b91c1c;
}

.hotel-checkout-price-currency {
  font-size: 12px;
  color: #6b7280;
}

.hotel-checkout-price-note {
  font-size: 11px;
  color: #6b7280;
}

/* ----------------------------------------------------------
   ROOM TABLE (LEFT COLUMN)
   ---------------------------------------------------------- */

.hotel-rooms-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.hotel-rooms-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}

.hotel-rooms-thead th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  border: none;
  padding: 8px;
  white-space: nowrap;
}

.hotel-room-row {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.hotel-room-row td {
  padding: 10px 8px;
  vertical-align: middle;
  border: none;
}

/* ---------- Room type cell ---------- */

.hotel-room-type {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hotel-room-name {
  font-weight: 700;
  color: #111827;
}

.hotel-room-description {
  font-size: 12px;
  color: #6b7280;
}

.hotel-room-badge-discount {
  background: #fee2e2;
  color: #b91c1c;
  border-radius: 999px;
  font-size: 11px;
  padding: 2px 8px;
  font-weight: 700;
}

/* ---------- Capacity ---------- */

.hotel-room-capacity {
  display: inline-flex;
  gap: 3px;
}

.hotel-room-capacity-icon svg {
  width: 14px;
  height: 14px;
}

/* ---------- Breakfast ---------- */

.hotel-room-badge {
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hotel-room-badge--success {
  background: #ecfdf5;
  color: #065f46;
}

.hotel-room-badge--muted {
  background: #f3f4f6;
  color: #6b7280;
}

/* ---------- Price per night ---------- */

.hotel-room-price,
.hotel-room-price-total {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.hotel-room-price-old del {
  color: #9ca3af;
  font-size: 11px;
}

.hotel-room-price-current {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.hotel-room-price-amount {
  font-size: 14px;
  font-weight: 700;
}

.hotel-room-price-currency {
  font-size: 11px;
  color: #6b7280;
}

.hotel-room-price-note {
  font-size: 11px;
  color: #6b7280;
}

/* ----------------------------------------------------------
   INFO_PASSENGERS (Room guest details)
   ---------------------------------------------------------- */

.hotel-room-summary-text {
  font-size: 14px;
  color: #374151;
}

.hotel-room-price-block-inline {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.hotel-room-discount-pill {
  background: #fee2e2;
  color: #b91c1c;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
}

/* ----------------------------------------------------------
   MOBILE RESPONSIVENESS
   ---------------------------------------------------------- */

@media (max-width: 768px) {
  .hotel-sidebar {
    position: static;
    top: auto;
  }
}

@media (max-width: 576px) {
  .basket_thead {
    display: none !important;
  }

  .hotel-rooms-table tr {
    display: block;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
  }

  .hotel-rooms-table td {
    display: flex;
    justify-content: space-between;
    padding: 6px 10px;
    font-size: 12px;
    border-bottom: 1px solid #e5e7eb;
  }

  .hotel-rooms-table td:last-child {
    border-bottom: none;
  }

  .mobile_basket {
    display: inline-block;
    font-size: 11px;
    color: #6b7280;
    margin-inline-end: 6px;
  }

  .hotel-room-price,
  .hotel-room-price-total {
    align-items: flex-end;
  }
}
/* ==========================================================
   HOTEL CHECKOUT – PASSENGER / ROOM CARDS
   ========================================================== */

.hotel-checkout-card {
  /* Uses base .hotel-section styles; this adds small tweaks */
  border-radius: 18px;
}

.hotel-checkout-room-header {
  align-items: flex-start;
}

.hotel-checkout-room-header-left {
  max-width: 65%;
}

.hotel-section-room-mini {
  font-size: 13px;
  color: #4b5563;
}

.hotel-section-room-title {
  font-weight: 600;
  color: #111827;
}

.hotel-section-room-capacity {
  font-size: 12px;
  color: #6b7280;
}

.hotel-section-room-meta .hotel-room-badge {
  font-size: 11px;
  border-radius: 999px;
  padding: 2px 10px;
}

.hotel-room-badge--success {
  background: #ecfdf5;
  color: #047857;
}

.hotel-room-badge--muted {
  background: #f3f4f6;
  color: #6b7280;
}

/* Room summary text */
.hotel-room-summary-text {
  font-size: 13px;
  color: #374151;
}

.hotel-room-summary-title {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  align-items: baseline;
}

.hotel-room-summary-title b {
  font-size: 14px;
  color: #111827;
}

.hotel-room-summary-capacity,
.hotel-room-summary-breakfast {
  font-size: 12px;
  color: #6b7280;
}

.hotel-room-summary-subtitle {
  font-size: 12px;
  color: #4b5563;
}

/* Inline price block on the right */
.hotel-room-price-block-inline {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.hotel-room-price-old {
  font-size: 12px;
  color: #9ca3af;
}

.hotel-room-price-current {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.hotel-room-price-amount {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

.hotel-room-price-currency {
  font-size: 11px;
  color: #6b7280;
}

.hotel-room-discount-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 999px;
  background: #fee2e2;
  color: #b91c1c;
}

.hotel-room-price-note {
  font-size: 11px;
  color: #6b7280;
}

/* Small text below inputs */
.hotel-input-hint {
  font-size: 11px;
  color: #9ca3af;
}
.checkout-section-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.checkout-section-sub {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 12px;
}

/* ==========================================================
   HOTEL CHECKOUT – TERMS MODAL FIX
   ========================================================== */

/* Rules modal look & feel */
.hotel-rules-modal .modal-content {
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
  border: 1px solid #e5e7eb;
}

.hotel-rules-modal .modal-header {
  border-bottom-color: #e5e7eb;
}

.hotel-rules-modal .modal-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

.hotel-rules-modal .modal-body {
  font-size: 13px;
  line-height: 1.7;
  color: #374151;
}

/* Checkbox + error text alignment */
.hotel-checkout-rules .comment-form-cookies-consent {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #4b5563;
}

.hotel-checkout-rules .comment-form-cookies-consent input[type="checkbox"] {
  margin-top: 3px;
}

.hotel-checkout-rules .comment-form-cookies-consent label.error {
  position: absolute;
  inset-inline-start: 0;
  top: 100%;
  margin-top: 2px;
  font-size: 11px;
  color: #b91c1c;
}

/* Link under checkbox */
.hotel-checkout-rules-link {
  font-size: 12px;
  color: #0f766e;
  text-decoration: underline;
}

.hotel-checkout-rules-link:hover {
  color: #0d9488;
  text-decoration: none;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .hotel-checkout-room-header {
    flex-direction: column;
    gap: 8px;
  }

  .hotel-checkout-room-header-left {
    max-width: 100%;
  }

  .hotel-room-price-block-inline {
    align-items: flex-start;
    margin-top: 4px;
  }

  .hotel-section-room-mini {
    text-align: start;
  }
}
/* ==========================================================
   ABOUT PAGE – ROOT
   ========================================================== */

.about-page {
  background: #f3f4f6;
  padding-block: 80px 40px; /* top padding is handled by JS if navbar floats */
}

/* ==========================================================
    HERO CARD
    ========================================================== */

.about-hero-section {
  padding-block: 20px 10px;
}

.about-hero-card {
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
  padding: 18px 18px 18px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: center;
}

/* Left: text */

.about-hero-text {
  min-width: 0;
}

.about-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0f766e;
  font-weight: 700;
}

.about-hero-title {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  margin: 6px 0 10px;
}

.about-hero-body {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.8;
}

.about-hero-body p {
  margin-bottom: 8px;
}

/* Stats under text */

.about-hero-stats {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-hero-stat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 14px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.about-hero-stat i {
  color: #059669;
  margin-top: 2px;
}

.about-hero-stat-title {
  font-size: 13px;
  font-weight: 700;
  color: #065f46;
}

.about-hero-stat-text {
  font-size: 12px;
  color: #047857;
}

/* Right: image */

.about-hero-media {
  min-width: 0;
}

.about-hero-image-wrapper {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #020617;
}

.about-hero-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.3s ease-out;
}

.about-hero-image-wrapper:hover .about-hero-image {
  transform: scale(1.03);
}

.about-hero-image-badge {
  position: absolute;
  inset-inline: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.82);
  color: #f9fafb;
  backdrop-filter: blur(10px);
}

.about-hero-image-badge-main {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
}

.about-hero-image-badge-main i {
  color: #facc15;
}

.about-hero-image-badge-sub {
  margin-top: 2px;
  font-size: 11px;
  color: #d1d5db;
}

/* ==========================================================
    VIDEO SECTION
    ========================================================== */

.about-video-section {
  padding-block: 8px 18px;
}

.about-video-card {
  background: linear-gradient(135deg, #0f172a, #022c22);
  border-radius: 20px;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.7);
  padding: 14px 18px;
  color: #f9fafb;
}

.about-video-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.about-video-text {
  max-width: 540px;
}

.about-video-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.8;
}

.about-video-title {
  font-size: 18px;
  font-weight: 700;
  margin: 4px 0 0;
}

.about-video-play-button {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.about-video-play-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #f9fafb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.9);
}

.about-video-play-icon i {
  font-size: 22px;
  color: rgba(15, 23, 42, 0.9);
}

/* Modal */

.about-video-modal .modal-content {
  border-radius: 18px;
  overflow: hidden;
  background: #020617;
}

.about-video-modal-close {
  position: absolute;
  inset-inline-end: 10px;
  top: 10px;
  z-index: 2;
  filter: invert(1);
}

.about-video-player {
  width: 100%;
  max-height: 540px;
  display: block;
  background: #000;
}

/* ==========================================================
    SERVICES SECTION
    ========================================================== */

.about-services-section {
  padding-block: 10px 24px;
}

.about-services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 16px;
}

.about-services-title {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  margin: 0;
}

.about-services-subtitle {
  font-size: 13px;
  color: #6b7280;
  margin: 4px 0 0;
}

.about-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-service-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-service-image-wrapper {
  max-height: 170px;
  overflow: hidden;
}

.about-service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease-out;
}

.about-service-card:hover .about-service-image {
  transform: scale(1.03);
}

.about-service-body {
  padding: 10px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-service-title {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.about-service-text {
  font-size: 13px;
  color: #4b5563;
}

.about-service-text p {
  margin-bottom: 6px;
}

/* ==========================================================
    RESPONSIVE
    ========================================================== */

@media (max-width: 991.98px) {
  .about-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-hero-media {
    order: -1;
  }

  .about-hero-image {
    height: 230px;
  }

  .about-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .about-hero-card {
    padding: 14px 12px 16px;
  }

  .about-hero-title {
    font-size: 20px;
  }

  .about-hero-image {
    height: 210px;
  }

  .about-video-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-services-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* ==========================================================
   CONTACT PAGE – ROOT
   ========================================================== */

.contact-page {
  background: #f3f4f6;
  padding-block: 80px 40px; /* top padding is handled by JS with navbar height */
}

/* Optional: contact banner modifier (reuses .page-banner--compact styles) */
.page-banner--contact::before {
  /* slightly different glow tint for contact page */
  background: radial-gradient(circle, rgba(56, 189, 248, 0.45), transparent 70%);
}

/* ==========================================================
    MAIN LAYOUT
    ========================================================== */

.contact-main-section {
  padding-block: 18px 30px;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.9fr);
  gap: 20px;
  align-items: flex-start;
}

.contact-main-left,
.contact-main-right {
  min-width: 0;
}

/* On smaller screens: stack columns */
@media (max-width: 991.98px) {
  .contact-main-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-main-right {
    order: -1; /* show form first on mobile */
  }
}

/* ==========================================================
    SHARED CARD STYLES
    ========================================================== */

.contact-info-card,
.contact-map-card,
.contact-form-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  padding: 16px 16px 18px;
}

.contact-map-card {
  margin-top: 14px;
}

.contact-card-header {
  margin-bottom: 10px;
}

.contact-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  margin: 0;
}

.contact-card-subtitle {
  font-size: 13px;
  color: #6b7280;
  margin: 4px 0 0;
}

/* ==========================================================
    CONTACT INFO LIST
    ========================================================== */

.contact-card-body {
  font-size: 13px;
  color: #374151;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 8px;
  border-radius: 14px;
  background: #f9fafb;
}

.contact-info-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #ecfdf5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #047857;
}

.contact-info-icon i {
  font-size: 16px;
}

.contact-info-content {
  flex: 1;
  min-width: 0;
}

.contact-info-label {
  font-size: 12px;
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 2px;
}

.contact-info-value {
  font-size: 13px;
  color: #111827;
  word-break: break-word;
}

.contact-info-multi a {
  display: inline-block;
  margin-inline-end: 8px;
  font-size: 13px;
  color: #0f766e;
  text-decoration: none;
}

.contact-info-multi a:hover {
  text-decoration: underline;
}

/* ==========================================================
    MAP CARD
    ========================================================== */

.contact-map-header {
  margin-bottom: 8px;
}

.contact-map-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: #111827;
}

.contact-map-subtitle {
  font-size: 12px;
  color: #6b7280;
  margin: 3px 0 0;
}

.contact-map-frame {
  margin-top: 8px;
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #e5e7eb;
}

/* Make iframe responsive */
.contact-map-frame iframe {
  width: 100%;
  min-height: 220px;
  border: 0;
}

/* ==========================================================
    CONTACT FORM
    ========================================================== */
.contact-main-right {
  height: 100%;
}
.contact-form-card {
  position: sticky;
  top: 90px;
}

.contact-form-errors {
  margin-bottom: 10px;
  border-radius: 12px;
  padding: 8px 10px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  font-size: 12px;
  color: #b91c1c;
}

.contact-form-errors ul {
  margin: 0;
  padding-left: 18px;
}

/* Form groups */

.contact-form-group {
  margin-bottom: 10px;
}

.contact-form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 4px;
}

.contact-form-control {
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 13px;
  padding: 8px 10px;
  box-shadow: none;
  transition: border-color 0.16s ease-out, box-shadow 0.16s ease-out, background-color 0.16s ease-out;
}

.contact-form-control:focus {
  border-color: #0f766e;
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.4);
  background-color: #ffffff;
}

.contact-form-control::placeholder {
  color: #9ca3af;
}

/* Textarea specific */
textarea.contact-form-control {
  min-height: 120px;
  resize: vertical;
}

/* Footer (button + hint) */

.contact-form-footer {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.contact-submit-btn {
  border-radius: 999px;
  padding: 9px 18px;
  border: none;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out;
}

.contact-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(15, 118, 110, 0.4);
}

.contact-form-hint {
  font-size: 11px;
  color: #6b7280;
  margin: 0;
}

/* ==========================================================
    RESPONSIVE
    ========================================================== */

@media (max-width: 768px) {
  .contact-info-card,
  .contact-map-card,
  .contact-form-card {
    padding: 14px 12px 16px;
  }

  .contact-card-title {
    font-size: 17px;
  }

  .contact-main-section {
    padding-block: 16px 24px;
  }
}
/* ==========================================================
   GALLERY PAGE
   ========================================================== */

.gallery-page {
  background: #f3f4f6;
  padding-block: 20px 40px; /* top offset for navbar is handled via JS if needed */
}

.gallery-page-header {
  margin-block: 18px;
}

.gallery-page-title {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 4px;
}

.gallery-page-subtitle {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

/* Gallery card */

.gallery-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out, border-color 0.16s ease-out;
}

.gallery-card:hover {
  transform: translateY(-3px);
  border-color: #0f766e;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.gallery-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.gallery-card-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.gallery-card-image {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 210px;
  transition: transform 0.25s ease-out;
}

.gallery-card:hover .gallery-card-image {
  transform: scale(1.05);
}

/* Overlay */

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: stretch;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85), transparent 50%);
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-card-overlay-inner {
  width: 100%;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #f9fafb;
  font-size: 13px;
}

.gallery-card-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gallery-card-icon i {
  font-size: 13px;
}

.gallery-card-title {
  flex: 1;
  font-weight: 600;
  text-align: end;
}
/* Optional Gallery Banner Specific Tweaks */
.page-banner-gallery .page-banner-title {
  font-size: 22px;
}

.page-banner-gallery .page-banner-breadcrumb {
  font-size: 12px;
}

/* Responsive tweaks */

@media (max-width: 768px) {
  .gallery-card-image {
    height: 190px;
  }

  .gallery-page {
    padding-block: 16px 30px;
  }

  .gallery-page-title {
    font-size: 20px;
  }
}
/* ==========================================================
   FAQ PAGE (New UI)
   ========================================================== */

.faq-page {
  padding-block: 80px 40px;
  background: #f3f4f6;
}

.page-banner--faq {
  background: radial-gradient(circle at top left, #1d4ed8 0%, #0f172a 55%, #020617 100%);
}

/* Layout */
.faq-layout-row {
  row-gap: 18px;
}

/* -----------------------------------------
    LEFT: FAQ CARD + ACCORDION
    ----------------------------------------- */

.faq-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 16px 16px 14px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
}

.faq-card-header {
  margin-bottom: 12px;
}

.faq-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 4px;
}

.faq-card-subtitle {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}

/* Accordion list */
.faq-accordion-list {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
}

/* هر آیتم FAQ */
.faq-accordion-item {
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  margin-bottom: 8px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.18s ease-out, border-color 0.18s ease-out, background 0.18s ease-out, transform 0.12s ease-out;
}

/* نوار رنگی سمت چپ وقتی باز می‌شود */
.faq-accordion-item::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 0.18s ease-out;
}

.faq-accordion-item.is-open {
  border-color: #0f766e;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 118, 110, 0.12);
  transform: translateY(-1px);
}

.faq-accordion-item.is-open::before {
  background: linear-gradient(180deg, #0f766e, #14b8a6);
}

/* Trigger row */
.faq-accordion-trigger {
  width: 100%;
  border: none;
  background: transparent;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
}

/* سوال */
.faq-accordion-question {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  text-align: start;
}

/* آیکون */
.faq-accordion-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e5e7eb;
  color: #4b5563;
  transition: transform 0.2s ease-out, background 0.2s ease-out, color 0.2s ease-out;
}

.faq-accordion-item.is-open .faq-accordion-icon {
  background: #0f766e;
  color: #ffffff;
  transform: rotate(180deg);
}

.faq-accordion-body {
  padding: 0 12px 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease-out, padding-top 0.18s ease-out, padding-bottom 0.18s ease-out;
}

.faq-accordion-item.is-open .faq-accordion-body {
  padding-top: 4px;
  padding-bottom: 10px;
}

.faq-accordion-answer {
  font-size: 13px;
  color: #4b5563;
  margin: 0;
  line-height: 1.7;
}

.faq-accordion-item:hover:not(.is-open) {
  background: #f3f4f6;
}

/* -----------------------------------------
    RIGHT: CONTACT CARD (ASK QUESTION)
    ----------------------------------------- */

.faq-contact-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 16px 16px 14px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
}

.faq-contact-header {
  margin-bottom: 10px;
}

.faq-contact-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 4px;
}

.faq-contact-subtitle {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}

.faq-contact-form .form-group {
  margin-bottom: 8px;
}

.faq-contact-form .form-label {
  font-size: 12px;
  font-weight: 500;
  color: #4b5563;
  margin-bottom: 4px;
}

/* Inputs */
.faq-contact-form .form-control {
  font-size: 13px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  padding: 8px 12px;
  background: #f9fafb;
  transition: border-color 0.16s ease-out, box-shadow 0.16s ease-out, background 0.16s ease-out;
}

.faq-contact-form textarea.form-control {
  border-radius: 14px;
  min-height: 110px;
  resize: vertical;
}

/* Focus state */
.faq-contact-form .form-control:focus {
  outline: none;
  border-color: #0f766e;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.1);
}

/* Button + hint */
.faq-contact-submit .send-btn-one {
  width: 100%;
  border-radius: 999px;
}

.faq-contact-hint {
  font-size: 11px;
  color: #6b7280;
  margin: 8px 2px 0;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .faq-card,
  .faq-contact-card {
    border-radius: 18px;
  }
}

@media (max-width: 576px) {
  .faq-card-title {
    font-size: 16px;
  }

  .faq-accordion-question {
    font-size: 13px;
  }
}

/* ==========================================================
   SERVICES PAGE
   ========================================================== */

.services-page {
  padding-block: 80px 40px; /* top با JS نسبت به ارتفاع هدر ست می‌شود */
  background: #f3f4f6;
}

/* بنر سرویس‌ها (کمتر سبز، کمی آبی/تجاری) */
.page-banner--services {
  background: radial-gradient(circle at top left, #0369a1 0%, #0f172a 55%, #020617 100%);
}

/* Header بالای گرید سرویس‌ها */
.services-page-header {
  margin-bottom: 18px;
  text-align: start;
}

.services-page-title {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 6px;
}

.services-page-subtitle {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

/* -----------------------------------------
    Service cards
    ----------------------------------------- */

.service-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.14);
  border-color: rgba(16, 185, 129, 0.6);
}

/* Image wrapper */
.service-card-image-wrapper {
  position: relative;
  display: block;
  overflow: hidden;
}

.service-card-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease-out;
}

.service-card-image-wrapper:hover .service-card-image {
  transform: scale(1.04);
}

.service-card-badge {
  position: absolute;
  inset-inline-start: 12px;
  bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: #f9fafb;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Body */
.service-card-body {
  padding: 12px 14px 6px;
}

.service-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 6px;
}

.service-card-excerpt {
  font-size: 13px;
  color: #4b5563;
  margin: 0;
  line-height: 1.6;
}

/* Footer */
.service-card-footer {
  padding: 0 14px 12px;
  margin-top: auto;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #0f766e;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  transition: background 0.18s ease-out, color 0.18s ease-out, box-shadow 0.18s ease-out, transform 0.12s ease-out;
}

.service-card-link i {
  font-size: 11px;
}

.service-card-link:hover {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(16, 185, 129, 0.5);
  transform: translateY(-1px);
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .service-card-image {
    height: 190px;
  }

  .services-page-title {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .service-card-image {
    height: 180px;
  }

  .services-page-header {
    text-align: start;
  }
}
/* ==========================================================
   SERVICE DETAIL PAGE
   Used on: front.service.show
   Root: .services-page.services-page--single
   ========================================================== */

.services-page.services-page--single {
  position: relative;
  padding-block: 80px 40px;
  background: #f3f4f6;
}

/* Layout: main + sidebar */
.services-detail-layout {
  align-items: flex-start;
}

/* ----------------------------------------------------------
    MAIN CARD
    ---------------------------------------------------------- */

.service-detail-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

/* Hero image */
.service-detail-image-wrapper {
  border-bottom: 1px solid #e5e7eb;
}

.service-detail-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  max-height: 380px;
}

.service-detail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease-out;
}

.service-detail-figure:hover .service-detail-image {
  transform: scale(1.03);
}

/* Badge on image */
.service-detail-badge {
  position: absolute;
  inset-inline-end: 14px;
  bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #f9fafb;
  font-weight: 600;
}

.service-detail-badge i {
  font-size: 12px;
}

/* Body */
.service-detail-body {
  padding: 16px 16px 18px;
}

.service-detail-header {
  margin-bottom: 10px;
}

.service-detail-title {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 4px;
}

.service-detail-intro {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

/* Main content text */
.service-detail-content {
  font-size: 14px;
  color: #374151;
  line-height: 1.8;
}

.service-detail-content p {
  margin-bottom: 10px;
}

.service-detail-content ul,
.service-detail-content ol {
  margin-bottom: 10px;
  padding-inline-start: 20px;
}

/* ----------------------------------------------------------
    SIDEBAR
    ---------------------------------------------------------- */

.service-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-detail-sidebar-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
  padding: 14px 14px 12px;
}

.service-detail-sidebar-card--cta {
  border-color: #0f766e;
  background: #ecfdf5;
}

.service-detail-sidebar-title {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 6px;
}

.service-detail-sidebar-text {
  font-size: 13px;
  color: #374151;
  margin: 0 0 10px;
}

/* Bullet list */
.service-detail-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #374151;
}

.service-detail-sidebar-list li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 6px;
}

.service-detail-sidebar-list i {
  color: #16a34a;
  font-size: 13px;
  margin-top: 2px;
}

/* CTA button */
.service-detail-sidebar-btn {
  width: 100%;
  border-radius: 999px;
  padding: 9px 14px;
  border: none;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s ease-out;
}

.service-detail-sidebar-btn i {
  font-size: 12px;
}

.service-detail-sidebar-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(15, 118, 110, 0.4);
  color: #ffffff;
}

.service-detail-sidebar-hint {
  font-size: 11px;
  color: #6b7280;
  margin-top: 6px;
}

/* ----------------------------------------------------------
    RESPONSIVE
    ---------------------------------------------------------- */

@media (max-width: 991.98px) {
  .service-detail-figure {
    max-height: 260px;
  }

  .service-detail-title {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .service-detail-body {
    padding-inline: 12px;
  }
}
/*فقط گوشی های آیفون*/
@supports (-webkit-touch-callout: none) {
  .ts-control:focus,
  .ts-control input:focus {
    font-size: 16px !important;
  }
}