/* =========================================================
   SLWoRLD – Homepage Styles (index.css)
   ========================================================= */

/* ---------------------------------------------------------
   1. Premium Hero Section
   --------------------------------------------------------- */
.hero-luxury {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(3, 16, 19, 0.75) 0%, rgba(3, 16, 19, 0.95) 100%),
              url('../../assets/img/travel/showcase-8.webp') no-repeat center center / cover;
  color: #ffffff;
  padding: 100px 0 60px 0;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero-tagline {
  font-family: var(--nav-font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: inline-block;
  background: rgba(255, 140, 0, 0.1);
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 140, 0, 0.2);
}

.hero-title {
  color: #ffffff !important;
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 25px;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.9);
}

@media (max-width: 991px) {
  .hero-title { font-size: 3rem; }
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 40px auto;
  opacity: 0.9;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ---------------------------------------------------------
   2. Hero Search Bar
   --------------------------------------------------------- */
.hero-search-wrapper {
  max-width: 650px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35), 0 0 25px rgba(255, 140, 0, 0.25);
  border-radius: 50px;
  overflow: visible;
  background: #ffffff;
  padding: 6px;
  border: 2px solid #ff8c00;
  transition: all 0.3s ease;
  position: relative;
}

.hero-search-input {
  font-size: 1.15rem;
  font-weight: 500;
  color: #06314a !important;
}

.hero-search-btn {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #ff8c00, #ffb347);
  border: none;
}

.hero-search-btn i {
  font-size: 1.35rem;
  color: #fff;
}

/* Typewriter cursor */
#typewriter-title {
  color: var(--accent-color);
  border-right: 3px solid var(--accent-color);
  padding-right: 5px;
}

/* ---------------------------------------------------------
   3. Search Suggestions Dropdown
   --------------------------------------------------------- */
.hero-search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 20px;
  margin-top: 12px;
  box-shadow: 0 15px 45px rgba(3, 16, 19, 0.18);
  max-height: 400px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
  border: 1px solid rgba(255, 140, 0, 0.2);
  padding: 10px 0;
  text-align: left;
}

.hero-search-suggestions.active {
  display: block;
}

/* Category header in suggestions */
.suggestion-cat-header {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ff8c00;
  padding: 8px 20px;
  letter-spacing: 1px;
  background: #f7fafb;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.suggestion-cat-header:first-of-type {
  border-top: none;
  margin-top: -10px;
}

/* Suggestion item */
.suggestion-item-unified {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  text-decoration: none !important;
}

.suggestion-item-unified:last-child {
  border-bottom: none;
}

.suggestion-item-unified:hover {
  background: rgba(255, 140, 0, 0.05);
  padding-left: 25px;
}

.suggestion-thumb {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.suggestion-thumb-icon {
  width: 45px;
  height: 45px;
  background: rgba(0, 140, 173, 0.08);
  color: #008cad;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.suggestion-item-unified:hover .suggestion-thumb-icon {
  background: var(--accent-color);
  color: #fff;
}

.suggestion-details {
  flex-grow: 1;
  min-width: 0;
}

.suggestion-title-unified {
  font-size: 14px;
  font-weight: 600;
  color: #06314a;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.suggestion-subtitle-unified {
  font-size: 12px;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.suggestion-arrow {
  color: rgba(0, 0, 0, 0.25);
  font-size: 16px;
  transition: transform 0.2s ease;
}

.suggestion-item-unified:hover .suggestion-arrow {
  transform: translateX(5px);
  color: var(--accent-color);
}

/* ---------------------------------------------------------
   4. Glassmorphic Quick Navigation Grid
   --------------------------------------------------------- */
.quick-nav-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .quick-nav-container {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

.quick-nav-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 30px 25px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none !important;
}

.quick-nav-card:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-8px);
  border-color: rgba(255, 140, 0, 0.45);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.quick-nav-icon {
  width: 55px;
  height: 55px;
  background: rgba(255, 140, 0, 0.15);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.quick-nav-card:hover .quick-nav-icon {
  background: var(--accent-color);
}

.quick-nav-icon i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.quick-nav-card:hover .quick-nav-icon i {
  color: #fff;
}

.quick-nav-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.quick-nav-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 0;
}

/* ---------------------------------------------------------
   5. Section Header
   --------------------------------------------------------- */
.section-premium-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-premium-header .tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-color);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.section-premium-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: #06314a;
  margin-bottom: 15px;
}

.section-premium-header p {
  font-size: 16px;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------------------------------------------------------
   6. Premium Item Cards
   --------------------------------------------------------- */
.premium-item-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 140, 173, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-item-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 140, 0, 0.25);
}

.card-img-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.premium-item-card:hover .card-img-wrapper img {
  transform: scale(1.08);
}

.card-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(3, 16, 19, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
}

.card-rating-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(3, 16, 19, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffc107;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.card-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(3, 16, 19, 0.85) 0%, rgba(3, 16, 19, 0) 100%);
  padding: 20px;
  color: #fff;
  z-index: 2;
}

.card-body-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-body-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #06314a;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.premium-item-card:hover .card-body-content h4 {
  color: var(--accent-color);
}

.card-body-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-footer-stats {
  border-top: 1px solid rgba(0, 140, 173, 0.08);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #666;
  font-weight: 500;
}

.card-footer-stats i {
  color: var(--accent-color);
  margin-right: 4px;
}

.card-footer-stats .card-link {
  color: var(--accent-color);
  font-weight: 700;
  text-decoration: underline;
}

.card-footer-stats .card-city {
  color: var(--accent-color);
  font-weight: bold;
}

/* ---------------------------------------------------------
   7. Why Choose Us – Benefit Cards
   --------------------------------------------------------- */
.benefit-card {
  background: #ffffff;
  border: 1px solid rgba(0, 140, 173, 0.06);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.4s ease;
}

.benefit-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
  border-color: rgba(255, 140, 0, 0.25);
  transform: translateY(-5px);
}

.benefit-icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(255, 140, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--accent-color);
  font-size: 26px;
}

/* ---------------------------------------------------------
   8. Call-to-Action Banner
   --------------------------------------------------------- */
.cta-banner-premium {
  background: linear-gradient(135deg, #051d22 0%, #0d3840 100%);
  border-radius: 24px;
  padding: 60px 40px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.btn-cta-gold {
  background: linear-gradient(135deg, var(--accent-color) 0%, #e07b00 100%);
  color: #fff;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.25);
  transition: all 0.3s ease;
  border: none;
}

.btn-cta-gold:hover {
  color: #fff;
  border: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}
