/* ==========================================
   HelalBook.com - Modern UI Revize
   Clean, Elegant, Contemporary Design
   ========================================== */

/* === CSS Variables === */
:root {
  --primary: #1B4965;
  --primary-light: #5FA8D3;
  --primary-dark: #0B2838;
  --accent: #CAE9FF;
  --gold: #D4A853;
  --gold-light: #F5E6C8;
  --success: #2D936C;
  --danger: #E74C3C;
  --dark: #1a1a2e;
  --dark-2: #16213e;
  --light: #f8f9fa;
  --light-2: #e9ecef;
  --gray: #6c757d;
  --gray-light: #adb5bd;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Reset & Base === */
* { box-sizing: border-box; }

body {
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* === Modern Navbar === */
.hb-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: var(--transition);
  background: transparent;
}

.hb-navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 8px 0;
}

.hb-navbar .nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hb-navbar .logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
}

.hb-navbar .logo img {
  height: 52px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

/* Stack both logos on top of each other */
.hb-navbar .logo .logo-dark {
  position: absolute;
  top: 0;
  left: 0;
}

/* Logo visibility - default: light visible, dark hidden */
.hb-navbar .logo-light { opacity: 1; visibility: visible; }
.hb-navbar .logo-dark { opacity: 0; visibility: hidden; }

/* Scrolled: dark visible, light hidden */
.hb-navbar.scrolled .logo-light { opacity: 0; visibility: hidden; }
.hb-navbar.scrolled .logo-dark { opacity: 1; visibility: visible; }

/* Solid navbar - for pages without hero (detail, reservation, etc.) */
.hb-navbar.navbar-solid {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.hb-navbar.navbar-solid .logo-light { opacity: 0; visibility: hidden; }
.hb-navbar.navbar-solid .logo-dark { opacity: 1; visibility: visible; }
.hb-navbar.navbar-solid .nav-links a { color: var(--dark); }
.hb-navbar.navbar-solid .nav-links a:hover { background: var(--light); color: var(--primary); }
.hb-navbar.navbar-solid .nav-phone { color: var(--primary); border-color: var(--primary); }
.hb-navbar.navbar-solid .nav-phone:hover { background: var(--primary); color: var(--white); }
.hb-navbar.navbar-solid .mobile-toggle svg { stroke: var(--dark); }

.hb-navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hb-navbar .nav-links a {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.hb-navbar.scrolled .nav-links a {
  color: var(--dark);
}

.hb-navbar .nav-links a:hover {
  background: rgba(255,255,255,0.15);
}

.hb-navbar.scrolled .nav-links a:hover {
  background: var(--light);
  color: var(--primary);
}

.hb-navbar .nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 20px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  transition: var(--transition);
}

.hb-navbar.scrolled .nav-phone {
  color: var(--primary);
  border-color: var(--primary);
}

.hb-navbar .nav-phone:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.hb-navbar.scrolled .nav-phone:hover {
  background: var(--primary);
  color: var(--white);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
  max-height: 400px;
  overflow-y: auto;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.nav-dropdown .dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--dark) !important;
  font-size: 14px;
  border-radius: var(--radius-sm);
}

.nav-dropdown .dropdown-menu a:hover {
  background: var(--light) !important;
  color: var(--primary) !important;
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}

.hb-navbar.scrolled .mobile-toggle {
  color: var(--dark);
}

@media (max-width: 991px) {
  .mobile-toggle { display: block; }
  .hb-navbar .nav-links {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 24px 24px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    z-index: 999;
    align-items: flex-start;
  }
  .hb-navbar .nav-links.active { right: 0; }
  .hb-navbar .nav-links a { color: var(--dark) !important; width: 100%; }
  .nav-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding-left: 12px;
  }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    display: none;
  }
  .mobile-overlay.active { display: block; }
}

/* === Hero Section === */
.hb-hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hb-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hb-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hb-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,73,101,0.85) 0%, rgba(11,40,56,0.7) 100%);
  z-index: 1;
}

.hb-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hb-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.2);
}

.hb-hero h1 {
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hb-hero .hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .hb-hero { height: 70vh; min-height: 500px; }
  .hb-hero h1 { font-size: 32px; }
  .hb-hero .hero-subtitle { font-size: 15px; }
}

/* === Search Box === */
.hb-search-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: var(--shadow-xl);
  max-width: 680px;
  margin: 0 auto;
}

.hb-search-box input,
.hb-search-box select {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 18px;
  font-size: 15px;
  font-family: inherit;
  background: transparent;
  color: var(--dark);
}

.hb-search-box .search-divider {
  width: 1px;
  height: 32px;
  background: var(--light-2);
}

.hb-search-box .btn-search {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.hb-search-box .btn-search:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .hb-search-box {
    flex-direction: column;
    gap: 0;
  }
  .hb-search-box .search-divider { width: 100%; height: 1px; }
  .hb-search-box input,
  .hb-search-box select { width: 100%; }
  .hb-search-box .btn-search { width: 100%; }
}

/* === Section Titles === */
.hb-section-title {
  margin-bottom: 40px;
}

.hb-section-title .badge-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.hb-section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.2;
}

.hb-section-title p {
  font-size: 16px;
  color: var(--gray);
  margin: 0;
}

/* === Hotel Card - Modern === */
.hb-hotel-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0,0,0,0.04);
}

.hb-hotel-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.hb-hotel-card .card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.hb-hotel-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hb-hotel-card:hover .card-image img {
  transform: scale(1.08);
}

.hb-hotel-card .card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.hb-hotel-card .card-badge.badge-campaign {
  background: var(--gold);
  color: var(--white);
}

.hb-hotel-card .card-badge.badge-early {
  background: var(--primary);
  color: var(--white);
}

.hb-hotel-card .card-body {
  padding: 20px;
}

.hb-hotel-card .card-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hb-hotel-card .card-location {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 16px;
}

.hb-hotel-card .card-location svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.hb-hotel-card .card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--light-2);
}

.hb-hotel-card .card-price .old-price {
  font-size: 13px;
  color: var(--gray-light);
  text-decoration: line-through;
  margin-bottom: 2px;
}

.hb-hotel-card .card-price .current-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}

.hb-hotel-card .card-price .price-note {
  font-size: 12px;
  color: var(--gray);
}

.hb-hotel-card .card-action {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  padding: 8px 16px;
  background: var(--accent);
  border-radius: 50px;
  white-space: nowrap;
  transition: var(--transition);
}

.hb-hotel-card:hover .card-action {
  background: var(--primary);
  color: var(--white);
}

/* === Grid Layout === */
.hb-grid {
  display: grid;
  gap: 24px;
}

.hb-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.hb-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.hb-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 1200px) { .hb-grid.cols-4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 991px) { .hb-grid.cols-4, .hb-grid.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .hb-grid.cols-4, .hb-grid.cols-3, .hb-grid.cols-2 { grid-template-columns: 1fr; } }

/* === Section Spacing === */
.hb-section {
  padding: 80px 0;
}

.hb-section.bg-light {
  background: var(--light);
}

.hb-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Feature Cards === */
.hb-feature-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--light-2);
  transition: var(--transition);
}

.hb-feature-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.hb-feature-card .feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.hb-feature-card .feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.hb-feature-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.hb-feature-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* === CTA Banner === */
.hb-cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.hb-cta .cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hb-cta .cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hb-cta .cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, rgba(27,73,101,0.9) 100%);
  z-index: 1;
}

.hb-cta .cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.hb-cta h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.hb-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  margin-bottom: 32px;
}

/* === Buttons === */
.hb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.hb-btn-primary {
  background: var(--primary);
  color: var(--white);
}

.hb-btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.hb-btn-white {
  background: var(--white);
  color: var(--primary);
}

.hb-btn-white:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--primary);
}

.hb-btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.hb-btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.hb-btn-gold {
  background: var(--gold);
  color: var(--white);
}

.hb-btn-gold:hover {
  background: #c49a47;
  color: var(--white);
  transform: translateY(-2px);
}

/* === Why Us === */
.hb-why-us {
  background: var(--dark);
  padding: 80px 0;
}

.hb-why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  height: 100%;
}

.hb-why-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}

.hb-why-card .why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(95,168,211,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.hb-why-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.hb-why-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0;
}

/* === Modern Footer === */
.hb-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
}

.hb-footer .footer-top {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hb-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

@media (max-width: 991px) {
  .hb-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 576px) {
  .hb-footer .footer-grid { grid-template-columns: 1fr; }
}

.hb-footer .footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  color: rgba(255,255,255,0.5);
}

.hb-footer .footer-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.hb-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hb-footer .footer-links li { margin-bottom: 10px; }

.hb-footer .footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: var(--transition);
}

.hb-footer .footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.hb-footer .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.hb-footer .footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.hb-footer .footer-contact-item span {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.hb-footer .footer-contact-item a {
  color: var(--primary-light);
  font-weight: 500;
}

.hb-footer .footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* === Page Header === */
.hb-page-header {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.hb-page-header .page-header-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}

.hb-page-header .page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hb-page-header h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.hb-page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
}

/* === Pagination === */
.hb-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hb-pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--light-2);
  transition: var(--transition);
}

.hb-pagination a:hover,
.hb-pagination a.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* === Hotel Detail === */
.hb-detail-header {
  padding-top: 100px;
}

.hb-detail-title {
  padding: 32px 0;
}

.hb-detail-title h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.hb-detail-title .detail-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray);
  font-size: 15px;
}

.hb-detail-title .detail-stars {
  display: flex;
  gap: 2px;
  margin-top: 8px;
}

.hb-detail-title .detail-stars svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  fill: var(--gold);
}

.hb-detail-price-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--light);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  margin-bottom: 32px;
}

.hb-detail-price-bar .price {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

.hb-detail-price-bar .price small {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray);
}

/* Gallery */
.hb-gallery {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
}

.hb-gallery .swiper-slide img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

/* Overview */
.hb-overview {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-2);
  margin-bottom: 32px;
}

.hb-overview h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}

.hb-overview p {
  color: var(--gray);
  line-height: 1.8;
  font-size: 15px;
}

/* Alert Banner */
.hb-alert {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.hb-alert.alert-success {
  background: rgba(45,147,108,0.08);
  border: 1px solid rgba(45,147,108,0.15);
}

.hb-alert.alert-info {
  background: rgba(95,168,211,0.08);
  border: 1px solid rgba(95,168,211,0.15);
}

.hb-alert .alert-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hb-alert.alert-success .alert-icon {
  background: rgba(45,147,108,0.15);
  color: var(--success);
}

.hb-alert .alert-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.hb-alert .alert-text p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

/* === Room Card === */
.hb-room-card {
  display: grid;
  grid-template-columns: 200px 1fr 220px;
  gap: 24px;
  align-items: center;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--light-2);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  transition: var(--transition);
}

.hb-room-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.hb-room-card .room-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
}

.hb-room-card .room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hb-room-card .room-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.hb-room-card .room-concept {
  display: inline-flex;
  padding: 4px 12px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 12px;
}

.hb-room-card .room-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hb-room-card .room-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
}

.hb-room-card .room-features svg {
  width: 16px;
  height: 16px;
  color: var(--success);
}

.hb-room-card .room-pricing {
  text-align: center;
  padding: 20px;
  background: var(--light);
  border-radius: var(--radius-md);
}

.hb-room-card .room-pricing .discount-badge {
  display: inline-flex;
  padding: 4px 12px;
  background: var(--success);
  color: var(--white);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}

.hb-room-card .room-pricing .old-price {
  font-size: 14px;
  color: var(--gray-light);
  text-decoration: line-through;
}

.hb-room-card .room-pricing .new-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  margin: 4px 0;
}

.hb-room-card .room-pricing .night-info {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 12px;
}

@media (max-width: 991px) {
  .hb-room-card {
    grid-template-columns: 1fr;
  }
}

/* === Reservation Sidebar === */
.hb-reservation-box {
  background: var(--white);
  border: 1px solid var(--light-2);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 80px;
  box-shadow: var(--shadow-md);
}

.hb-reservation-box h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--light-2);
}

.hb-reservation-box .form-group {
  margin-bottom: 16px;
}

.hb-reservation-box label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.hb-reservation-box input,
.hb-reservation-box select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-2);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
  color: var(--dark);
  background: var(--white);
}

.hb-reservation-box input:focus,
.hb-reservation-box select:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(27,73,101,0.1);
}

/* === Facilities Grid === */
.hb-facilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 991px) { .hb-facilities { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 576px) { .hb-facilities { grid-template-columns: repeat(2, 1fr); } }

.hb-facility-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--light);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--dark);
}

.hb-facility-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

/* === Distance List === */
.hb-distance-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hb-distance-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-2);
  font-size: 14px;
}

.hb-distance-list li:last-child { border-bottom: none; }

.hb-distance-list .distance-label { color: var(--dark); }
.hb-distance-list .distance-value { color: var(--gray); font-weight: 500; }

/* === Content Page === */
.hb-content-section {
  padding: 60px 0 80px;
}

.hb-content-section .content-body {
  max-width: 800px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
}

.hb-content-section .content-body h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin: 32px 0 12px;
}

.hb-content-section .content-body p {
  margin-bottom: 16px;
}

/* === Contact === */
.hb-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .hb-contact-grid { grid-template-columns: 1fr; }
}

.hb-contact-card {
  background: var(--white);
  border: 1px solid var(--light-2);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}

.hb-contact-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.hb-contact-card .contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.hb-contact-card .contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.hb-contact-card h4 {
  font-size: 14px;
  color: var(--gray);
  font-weight: 400;
  margin-bottom: 4px;
}

.hb-contact-card a, .hb-contact-card p {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
}

/* === Company Info Table === */
.hb-info-table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--light-2);
}

.hb-info-table thead th {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  padding: 16px 20px;
  font-size: 16px;
}

.hb-info-table tbody td {
  padding: 12px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--light-2);
}

.hb-info-table tbody tr:last-child td { border-bottom: none; }
.hb-info-table tbody tr:hover { background: var(--light); }
.hb-info-table tbody td:first-child { font-weight: 600; color: var(--dark); }
.hb-info-table tbody td:last-child { color: var(--gray); }

/* === Reservation Result === */
.hb-result-card {
  text-align: center;
  padding: 60px 40px;
  max-width: 500px;
  margin: 0 auto;
}

.hb-result-card .result-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.hb-result-card .result-icon svg {
  width: 36px;
  height: 36px;
  color: var(--white);
}

.hb-result-card h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.hb-result-card p {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 32px;
}

/* === Booking Summary === */
.hb-booking-summary {
  background: var(--white);
  border: 1px solid var(--light-2);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.hb-booking-summary .summary-hotel {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--light-2);
}

.hb-booking-summary .summary-hotel img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.hb-booking-summary .summary-hotel h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.hb-booking-summary .summary-hotel .location {
  font-size: 13px;
  color: var(--gray);
}

.hb-booking-summary .summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
}

.hb-booking-summary .summary-row .label { color: var(--gray); }
.hb-booking-summary .summary-row .value { font-weight: 500; color: var(--dark); }

.hb-booking-summary .summary-total {
  background: var(--accent);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hb-booking-summary .summary-total .total-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}

.hb-booking-summary .summary-total .total-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}

/* === Form Styles === */
.hb-form-group {
  margin-bottom: 20px;
}

.hb-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.hb-form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-2);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
  color: var(--dark);
}

.hb-form-input:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(27,73,101,0.1);
}

/* === KVKK Accordion === */
.hb-accordion-item {
  background: var(--white);
  border: 1px solid var(--light-2);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.hb-accordion-header {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
}

.hb-accordion-header:hover {
  background: var(--light);
}

.hb-accordion-header svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.hb-accordion-item.active .hb-accordion-header svg {
  transform: rotate(180deg);
}

.hb-accordion-body {
  padding: 0 24px;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.hb-accordion-item.active .hb-accordion-body {
  max-height: 2000px;
  padding: 0 24px 20px;
}

/* === Utilities === */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
.mt-6 { margin-top: 48px; }
.mb-6 { margin-bottom: 48px; }

/* === Smooth scroll === */
html { scroll-behavior: smooth; }

/* === Hide old theme main wrapper === */
.preloader { display: none !important; }

/* === Booking Steps === */
.hb-booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px 0;
  margin-bottom: 16px;
}

.hb-booking-steps .step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-light);
}

.hb-booking-steps .step.active {
  color: var(--primary);
}

.hb-booking-steps .step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  background: var(--light-2);
  color: var(--gray-light);
  transition: var(--transition);
}

.hb-booking-steps .step.active .step-num {
  background: var(--primary);
  color: var(--white);
}

.hb-booking-steps .step-line {
  width: 60px;
  height: 2px;
  background: var(--light-2);
  margin: 0 16px;
  border-radius: 2px;
}

.hb-booking-steps .step-line.active {
  background: var(--primary);
}

@media (max-width: 576px) {
  .hb-booking-steps .step span { display: none; }
  .hb-booking-steps .step-line { width: 32px; margin: 0 8px; }
}

/* === Booking Layout === */
.hb-booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .hb-booking-layout {
    grid-template-columns: 1fr;
  }
}

.hb-booking-sidebar {
  position: sticky;
  top: 80px;
}

/* === Form Sections === */
.hb-form-section {
  background: var(--white);
  border: 1px solid var(--light-2);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}

.hb-form-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--light-2);
}

.hb-form-section-title svg {
  color: var(--primary);
  flex-shrink: 0;
}

.hb-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hb-form-row.cols-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 576px) {
  .hb-form-row,
  .hb-form-row.cols-3 {
    grid-template-columns: 1fr;
  }
}

/* === Smooth Animations === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hb-section,
.hb-content-section,
.hb-page-header {
  animation: fadeInUp 0.6s ease forwards;
}

/* === Detail Page Responsive Fix === */
@media (max-width: 991px) {
  .hb-detail-header .hb-container > .hb-detail-title > div {
    flex-direction: column;
    align-items: flex-start !important;
  }
  .hb-detail-header .hb-container > .hb-detail-title > div > div:last-child {
    text-align: left !important;
  }
  section > .hb-container > div[style*="grid-template-columns: 1fr 380px"] {
    grid-template-columns: 1fr !important;
  }
}

/* === WhatsApp Float Button === */
.hb-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}

.hb-whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.hb-whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

/* === Selection highlight for inputs === */
.hb-form-input::placeholder {
  color: var(--gray-light);
}

select.hb-form-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* === Loading/Skeleton Effect === */
.hb-hotel-card .card-image {
  background: var(--light-2);
}

/* === Better scrollbar === */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray);
}
