@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* --- Modern Design Tokens --- */
:root {
  /* Colors - Luxury Navy & Champagne Gold */
  --primary: #0c1824;
  /* Deep Luxury Navy */
  --primary-light: #cda266;
  /* Champagne Gold */
  --primary-dark: #070e15;
  /* Ultra Dark Navy */
  --secondary: #e6c88c;
  /* Soft Gold */

  --bg-color: #fdfcfb;
  /* Warm White */
  --surface: #ffffff;

  --text-main: #1a202c;
  /* Rich Dark Gray */
  --text-muted: #64748b;
  /* Slate 500 */
  --text-light: #a0aec0;
  /* Gray 400 */

  --border: #e2e8f0;
  /* Slate 200 */
  --danger: #ef4444;
  --success: #10b981;
  --warning: #f59e0b;

  /* Typography */
  --font: 'Poppins', sans-serif;

  /* Shadows - Modern & Soft */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.05), 0 4px 6px -4px rgb(0 0 0 / 0.05);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.05);

  /* Radii */
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-pill: 9999px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container-width: 1280px;
  --container-padding: 1.5rem;
}

/* --- Resets --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: var(--primary-light);
  transition: var(--transition);
}

a:hover {
  color: var(--primary);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Layout --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: 5rem 0;
}

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-head.left {
  text-align: left;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  color: var(--text-main);
  letter-spacing: -0.025em;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-head.left p {
  margin: 0;
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.gap-2 {
  gap: 1rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  gap: 0.5rem;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-light);
  color: #fff;
  box-shadow: 0 4px 14px 0 rgba(205, 162, 102, 0.4);
}

.btn-primary:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
  color: white;
  box-shadow: 0 6px 20px rgba(12, 24, 36, 0.4);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--border);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--primary-light);
  color: var(--primary-light);
  background: rgba(205, 162, 102, 0.05);
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 0.75rem 0;
  /* COMPACT PADDING */
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 0.5rem 0;
  /* COMPACT PADDING */
  border-bottom: 1px solid var(--border);
}

.header.solid {
  background: var(--surface);
  padding: 0.5rem 0;
  /* COMPACT PADDING */
  border-bottom: 1px solid var(--border);
  position: sticky;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  /* COMPACT LOGO */
  font-weight: 800;
  color: var(--text-main);
  /* FIX INVISIBLE HEADER */
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.025em;
}

.header.scrolled .logo,
.header.solid .logo {
  color: var(--text-main);
}

.logo i {
  color: var(--primary-light);
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  /* COMPACT GAP */
  align-items: center;
}

.nav-link {
  color: var(--text-main);
  /* FIX INVISIBLE HEADER */
  font-weight: 600;
  font-size: 0.9rem;
  /* COMPACT FONT */
  position: relative;
  padding: 0.5rem 0;
}

.header.scrolled .nav-link,
.header.solid .nav-link {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-light);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
  z-index: 1000;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 992px) {
  .nav-actions {
    flex-direction: column;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    width: 100%;
  }
}

.header.scrolled .mobile-toggle,
.header.solid .mobile-toggle {
  color: var(--text-main);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --- Ultra Modern Premium Hero --- */
.hero-premium {
  min-height: 85vh;
  /* COMPACT -> was 100vh */
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
  /* COMPACT -> was 100px */
  padding-bottom: 2rem;
  /* COMPACT -> was 4rem */
  background: var(--bg-color);
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  filter: blur(80px);
  border-radius: 50%;
  opacity: 0.4;
  animation: float-shapes 20s infinite alternate linear;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: rgba(205, 162, 102, 0.15);
  top: -10%;
  left: -10%;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: rgba(12, 24, 36, 0.2);
  bottom: 10%;
  right: -5%;
  animation-delay: -5s;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: rgba(205, 162, 102, 0.2);
  top: 40%;
  left: 40%;
  animation-delay: -10s;
}

@keyframes float-shapes {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(50px, 30px) scale(1.1);
  }

  100% {
    transform: translate(-30px, 50px) scale(0.9);
  }
}

.hero-content-premium {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "text bento"
    "search search";
  gap: 1.5rem;
  /* COMPACT GAP -> was 3rem */
  align-items: center;
}

@media (max-width: 1024px) {
  .hero-content-premium {
    grid-template-columns: 1fr;
    grid-template-areas: "text" "bento" "search";
    text-align: center;
  }
}

.hero-text-area {
  grid-area: text;
}

.hero-badge-glow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.80rem;
  font-weight: 700;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
  margin-bottom: 1rem;
  /* COMPACT -> was 2rem */
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.hero-title-mega {
  font-size: clamp(2rem, 4vw, 3.2rem);
  /* COMPACT FONT -> was up to 4.2rem */
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-main);
  margin-bottom: 1rem;
  /* COMPACT */
  letter-spacing: -0.03em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc-premium {
  font-size: 1rem;
  /* COMPACT FONT -> was 1.125rem */
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  /* COMPACT */
  max-width: 550px;
}

@media (max-width: 1024px) {
  .hero-desc-premium {
    margin-inline: auto;
  }

  .trust-indicators {
    justify-content: center;
  }
}

.trust-indicators {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  /* COMPACT */
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatars img {
  width: 35px;
  height: 35px;
  /* COMPACT */
  border-radius: 50%;
  border: 2px solid var(--surface);
  margin-left: -15px;
  object-fit: cover;
}

.avatars img:first-child {
  margin-left: 0;
}

.avatar-more {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--bg-color);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.70rem;
  font-weight: 700;
  color: var(--text-main);
  margin-left: -15px;
  z-index: 4;
}

.stars-group {
  color: var(--warning);
  font-size: 1rem;
}

.trust-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-divider {
  width: 1px;
  height: 30px;
  background: var(--border);
}

/* Bento Images */
.hero-bento-images {
  grid-area: bento;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 220px;
  /* COMPACT HEIGHT */
  gap: 1rem;
  /* COMPACT GAP */
  perspective: 1000px;
}

.hero-bento-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-1 {
  grid-column: 1 / span 2;
  grid-row: 1;
}

.bento-2 {
  grid-column: 1;
  grid-row: 2;
  transform: translateY(-1.5rem);
}

.bento-3 {
  grid-column: 2;
  grid-row: 2;
}

@media (min-width: 1025px) {
  .hero-bento-images:hover .bento-1 img {
    transform: scale(1.02) translateY(-5px);
  }

  .hero-bento-images:hover .bento-2 img {
    transform: scale(1.05) rotate(-2deg);
  }

  .hero-bento-images:hover .bento-3 img {
    transform: scale(1.05) rotate(2deg);
  }
}

.bento-float-badge {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: var(--surface);
  color: var(--text-main);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  z-index: 10;
  animation: float 4s ease-in-out infinite alternate;
}

.bento-float-badge i {
  color: #f59e0b;
  font-size: 1.25rem;
}

/* Glass Search Widget */
.hero-search-glass {
  grid-area: search;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 1.25rem;
  padding: 1.25rem;
  /* COMPACT */
  box-shadow: 0 15px 35px -12px rgba(59, 130, 246, 0.15);
  margin-top: 0.5rem;
}

.search-tabs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 0.75rem;
}

.s-tab {
  background: transparent;
  border: none;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.s-tab:hover {
  background: rgba(59, 130, 246, 0.05);
  color: var(--primary);
}

.s-tab.active {
  background: var(--primary);
  color: white;
}

.search-form-complex {
  display: flex;
  background: var(--surface);
  border-radius: 0.75rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border);
  padding: 0.4rem;
}

.s-group {
  flex: 1;
  padding: 0.25rem 0.75rem;
}

.s-group label {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
  letter-spacing: 0.05em;
}

.s-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.s-input-wrap i {
  color: var(--primary-light);
  font-size: 1rem;
}

.s-input-wrap input,
.s-input-wrap select {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  width: 100%;
}

.s-divider {
  width: 1px;
  background: var(--border);
  margin: 0.5rem 0;
}

.btn-search-mega {
  background: var(--primary);
  color: white;
  border: none;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 0.5rem;
  padding: 0 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.btn-search-mega:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.popular-searches {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.popular-searches span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-main);
}

.popular-searches a {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-light);
  background: rgba(59, 130, 246, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: var(--transition);
}

.popular-searches a:hover {
  background: var(--primary);
  color: white;
}

@media (max-width: 900px) {
  .search-form-complex {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .s-group {
    background: var(--surface);
    padding: 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
  }

  .s-divider {
    display: none;
  }

  .btn-search-mega {
    padding: 1rem;
    justify-content: center;
  }

  .search-tabs {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0.5rem;
  }

  .hero-bento-images {
    grid-template-rows: 150px 170px;
  }
}

/* --- Cards --- */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
}

.hotel-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hotel-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(59, 130, 246, 0.3);
}

.card-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.hotel-card:hover .card-img-wrap img {
  transform: scale(1.1);
}

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary-light);
  color: white;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.card-rating {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  color: var(--text-main);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.card-rating i {
  color: var(--warning);
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-meta {
  color: var(--text-muted);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  color: var(--text-main);
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature-tag {
  background: var(--bg-color);
  color: var(--text-muted);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--border);
}

.feature-tag i {
  color: var(--primary-light);
}

.card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--border);
}

.price span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.price strong {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 800;
  line-height: 1;
}

/* --- Categories --- */
.categories-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.cat-box {
  background: var(--surface);
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cat-box:hover {
  transform: translateY(-8px);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.cat-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.cat-box:hover .cat-icon-wrap {
  background: var(--primary-light);
  color: white;
}

.cat-icon-wrap i {
  font-size: 2rem;
  color: var(--primary-light);
  transition: var(--transition);
}

.cat-box:hover .cat-icon-wrap i {
  color: white;
}

.cat-box h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-main);
}

/* --- Features & Testimonials --- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-list-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.feature-list-text h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.feature-list-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.stars {
  color: var(--warning);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.25rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h5 {
  font-size: 1rem;
  margin-bottom: 0.125rem;
}

.author-info span {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 600;
}

/* --- FAQ --- */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-main);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary-light);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question {
  color: var(--primary-light);
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* --- Footer --- */
.footer {
  background-color: var(--text-main);
  color: var(--text-light);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
  color: white;
  display: inline-flex;
}

.footer-brand p {
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: 0.95rem;
  opacity: 0.8;
}

.socials {
  display: flex;
  gap: 1rem;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.125rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.socials a:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  border-color: var(--primary-light);
}

.ft-title {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-family: var(--font);
}

.ft-links li {
  margin-bottom: 0.75rem;
}

.ft-links a {
  color: var(--text-light);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.ft-links a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.75rem;
  opacity: 0;
  transform: translateX(-5px);
  transition: var(--transition);
}

.ft-links a:hover {
  color: white;
  padding-left: 0.25rem;
}

.ft-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
  color: var(--primary-light);
}

.newsletter {
  position: relative;
}

.newsletter input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: var(--radius-md);
  padding: 1rem;
  width: 100%;
  outline: none;
  transition: var(--transition);
  margin-bottom: 1rem;
}

.newsletter input:focus {
  border-color: var(--primary-light);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter .btn {
  width: 100%;
  border-radius: var(--radius-md);
  font-weight: 600;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* --- Responsive & Mobile --- */
@media (max-width: 1024px) {
  .search-widget {
    flex-direction: column;
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
    align-items: stretch;
  }

  .search-input-group {
    background: var(--surface);
    border-radius: var(--radius-md);
    margin-bottom: 0.5rem;
    border: 1px solid var(--border);
    padding: 1rem 1.5rem;
    width: 100%;
  }

  .search-widget .btn {
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-top: 0.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.25rem;
  }

  .section {
    padding: 4rem 0;
  }

  .header {
    padding: 1rem 0;
  }

  .mobile-toggle {
    display: block;
  }

  /* Mobile Side Drawer Menu */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--surface);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    box-shadow: var(--shadow-xl);
    transition: right 0.4s ease;
    z-index: 999;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    color: var(--text-main);
    font-size: 1.125rem;
    font-weight: 600;
    width: 100%;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
  }

  .nav-link::after {
    display: none;
  }

  .nav-menu .btn {
    width: 100%;
    margin-top: 1rem;
  }

  .header .logo {
    color: white;
  }

  .header.scrolled .logo,
  .header.solid .logo {
    color: var(--text-main);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .socials {
    justify-content: center;
  }

  .ft-links a {
    justify-content: center;
  }

  .ft-links a::before {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
  }

  .grid-cards {
    grid-template-columns: 1fr;
  }

  .section-head h2 {
    font-size: 2rem;
  }
}

/* Utils */
.d-none {
  display: none;
}

.w-100 {
  width: 100%;
}

/* --- Toast Notification System --- */
#toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toast {
  background: var(--surface);
  color: var(--text-main);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  border-left: 4px solid var(--primary-light);
  transform: translateX(120%);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast-success {
  border-left-color: var(--success);
}

.toast-success i {
  color: var(--success);
  font-size: 1.25rem;
}

.toast-error {
  border-left-color: var(--danger);
}

.toast-error i {
  color: var(--danger);
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  #toast-container {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
  }

  .toast {
    width: 100%;
  }
}

/* =======================================================
   APP-LIKE MOBILE UX & PRELOADER EXPERIENCES (V6.0)
======================================================= */

/* 1) Smooth Page Transition & Loading Effect */
body {
  animation: pageFadeIn 0.5s ease-out forwards;
  -webkit-tap-highlight-color: transparent;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Page Preloader Overlay */
#app-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-color);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#app-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


/* 2) Pull-to-Refresh & Scroll Bounce Tweaks (iOS style) */
html {
  overscroll-behavior-y: none;
  scroll-behavior: smooth;
}


/* 3) Bottom App Navigation Bar (Only visible on mobile) */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.5rem 0.5rem 1.5rem 0.5rem;
  padding-bottom: env(safe-area-inset-bottom, 1.5rem);
  z-index: 990;
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bottom-nav.visible {
  transform: translateY(0);
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.65rem;
  font-weight: 600;
  gap: 0.35rem;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
  flex: 1;
}

.bottom-nav-item i {
  font-size: 1.25rem;
  margin-bottom: 2px;
  transition: transform 0.2s;
}

.bottom-nav-item.active {
  color: var(--primary);
}

.bottom-nav-item.active i {
  transform: translateY(-2px);
}

.bottom-nav-action {
  background: var(--primary);
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
  transform: translateY(-15px);
  border: 4px solid var(--surface);
  margin: 0 0.5rem;
}

.bottom-nav-action i {
  font-size: 1.4rem;
  color: white !important;
  margin: 0;
}

@media (max-width: 992px) {
  body {
    padding-bottom: 90px;
  }
}

@media (min-width: 993px) {
  .bottom-nav {
    display: none !important;
  }
}

/* =======================================================
   PREMIUM HOTEL UX UPGRADES (V7.0)
======================================================= */

/* Typography & Spacing Enhancements */
.section-head {
  margin-bottom: 4rem;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.section-head p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Horizontal Scroll Area (Modern Native App UX) */
.horizontal-scroll-wrapper {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  padding-bottom: 2rem;
  padding-top: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.horizontal-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.horizontal-scroll-wrapper {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hs-item {
  scroll-snap-align: start;
  min-width: 350px;
  flex: 0 0 auto;
}

@media (max-width: 768px) {
  .hs-item {
    min-width: 85vw;
  }
}

/* Redesigned Hotel Cards (Minimalist Luxury) */
.hotel-card-luxury {
  background: var(--surface);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hotel-card-luxury:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.hcl-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.hcl-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hotel-card-luxury:hover .hcl-img-wrap img {
  transform: scale(1.05);
}

.hcl-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hcl-fav {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  z-index: 2;
  transition: 0.3s;
  cursor: pointer;
}

.hcl-fav:hover,
.hcl-fav.active {
  color: var(--danger);
}

.hcl-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hcl-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.hcl-location {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hcl-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--primary);
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.8rem;
}

.hcl-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.hcl-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hcl-footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hcl-price span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.hcl-price strong {
  font-size: 1.4rem;
  color: var(--text-main);
  font-weight: 800;
}

.hcl-btn {
  background: var(--bg-color);
  color: var(--text-main);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  font-size: 1.1rem;
}

.hotel-card-luxury:hover .hcl-btn {
  background: var(--primary);
  color: white;
  transform: rotate(-45deg);
}

/* Editorial Experience Box (Masonry Grid Feel) */
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.ed-item {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  height: 400px;
}

.ed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s;
}

.ed-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  padding: 2.5rem 2rem 2rem 2rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ed-item:hover img {
  transform: scale(1.05);
}

.ed-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.ed-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.ed-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.4s;
}

.ed-item:hover .ed-action {
  opacity: 1;
  transform: translateY(0);
}

.ed-large {
  grid-column: span 8;
}

.ed-small {
  grid-column: span 4;
}

@media (max-width: 992px) {

  .ed-large,
  .ed-small {
    grid-column: span 12;
    height: 300px;
  }
}

/* Category Pills (Modern approach instead of large boxes) */
.category-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3rem;
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: var(--shadow-sm);
}

.cat-pill i {
  font-size: 1.25rem;
  color: var(--primary);
}

.cat-pill:hover,
.cat-pill.active {
  background: var(--text-main);
  color: white;
  border-color: var(--text-main);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cat-pill:hover i,
.cat-pill.active i {
  color: white;
}