/* ===================================================
   ASPEN JOURNEYS — CATEGORY PAGE STYLES
   Includes: Hero, Category Tabs, Products, Why Choose Us,
   Newsletter, Footer, Info Bars
   =================================================== */
   
  /* ===================================================
   SECTION 0: MAIN HEADER (Blue Theme)
   =================================================== */
.main-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  z-index: 1000;
}

.nav-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

/* Logo */
.nav-logo img {
  height: 72px;
  width: auto;
  transition: transform .3s ease;
}
.nav-logo img:hover { transform: scale(1.03); }

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 35px;
}
.nav-menu a,
.drop-btn {
  text-decoration: none;
  color: #0b4da2;
  font-weight: 600;
  font-size: 1.02rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .25s ease;
}
.nav-menu a:hover,
.drop-btn:hover { color: #157efb; }

/* Dropdown */
.nav-dropdown { position: relative; }
.drop-content {
  position: absolute;
  top: 130%;
  left: 0;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
  border-radius: 6px;
  display: none;
  flex-direction: column;
  min-width: 180px;
  z-index: 10;
}
.drop-content a {
  padding: 10px 15px;
  color: #0b4da2;
  text-decoration: none;
  font-weight: 500;
  transition: background .25s ease;
}
.drop-content a:hover { background: #f5f7ff; }
.nav-dropdown:hover .drop-content { display: flex; }

/* Right Side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.nav-number {
  color: #0b4da2;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
}
.account-btn {
  background: #ffce00;
  color: #0b4da2;
  padding: 9px 18px;
  border-radius: 25px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s ease;
}
.account-btn:hover { background: #ffd93a; }

/* Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #0b4da2;
  cursor: pointer;
}

/* -------- Responsive (Tablet + Mobile) -------- */
@media(max-width:992px){
  /* Hide number & account */
  .nav-number,
  .account-btn {
    display: none !important;
  }

  /* Mobile Menu */
  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    width: 260px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    border-radius: 0 0 10px 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all .35s ease;
  }
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-menu a,
  .drop-btn {
    width: 100%;
    padding: 10px 0;
  }

  .drop-content {
    position: static;
    display: none !important;
    box-shadow: none;
    padding-left: 15px;
  }
  .nav-dropdown.open .drop-content {
    display: flex !important;
  }

  .nav-right { gap: 8px; }

  .nav-container {
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
  }

  .nav-logo img { height: 60px; }

  .nav-toggle {
    display: block;
    font-size: 2rem;
    color: #0b4da2;
  }
}



/* ===================================================
   SECTION 1: HERO BANNER (Optimized for All Devices)
   =================================================== */
.hero {
  position: relative;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}
.hero__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
  transition: transform 1.5s ease;
}
.hero:hover .hero__bg {
  transform: scale(1.05);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.75));
}
.hero__content {
  position: relative;
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 0 15px;
}
.hero__title {
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #ffd36a, #ff9c33);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__subtitle {
  font-size: 1.2rem;
  color: #f0f0f0;
}

/* ========== RESPONSIVE OPTIMIZATION (Final Locked) ========== */
@media (max-width: 992px) {
  .hero {
    height: 380px !important;
    transition: height 0.3s ease;
  }
  .hero__title {
    font-size: 2.3rem !important;
  }
  .hero__subtitle {
    font-size: 1rem !important;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 300px !important;
    align-items: flex-end !important;
    padding-bottom: 40px !important;
    transition: height 0.3s ease;
  }
  .hero__content {
    padding: 0 10px !important;
  }
  .hero__title {
    font-size: 1.8rem !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
  }
  .hero__subtitle {
    font-size: 0.9rem !important;
    color: #f8f8f8 !important;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 250px !important;
    padding-bottom: 30px !important;
    transition: height 0.3s ease;
  }
  .hero__title {
    font-size: 1.5rem !important;
  }
  .hero__subtitle {
    font-size: 0.85rem !important;
  }
}



/* ===================================================
   SECTION 2: CATEGORY TABS
   =================================================== */
.main-cats {
  text-align: center;
  padding: 50px 0 20px;
  background: #fff;
}
.main-cats h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0b4da2;
  margin-bottom: 30px;
}
.main-cats .cat-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.cat-tab {
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  color: #0b4da2;
  background: #f3f6fa;
  border: 2px solid transparent;
  transition: all 0.3s;
}
.cat-tab:hover,
.cat-tab.active {
  background: linear-gradient(135deg, #0b4da2, #ff7f11);
  color: #fff;
  border-color: #ff7f11;
  box-shadow: 0 4px 15px rgba(255,140,0,0.25);
}


/* ===================================================
   SECTION 3: PRODUCTS GRID
   =================================================== */
.products-section {
  padding: 70px 0;
  background: #f9fafc;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  max-width: 1300px;
  margin: auto;
}
.product-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover img {
  transform: scale(1.05);
}
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay a {
  background: linear-gradient(135deg, #0b4da2, #ff7f11);
  color: #fff;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
}
.product-body {
  padding: 22px 20px;
}
.product-body h3 {
  font-size: 20px;
  color: #0b4da2;
  font-weight: 700;
  margin-bottom: 8px;
}
.product-body p {
  font-size: 15px;
  color: #555;
  margin-bottom: 10px;
}
.product-price {
  font-weight: 700;
  color: #007c7c;
  font-size: 17px;
}


/* ===================================================
   SECTION 4: WHY CHOOSE US (THOMAS-STYLE)
   =================================================== */
.why-thomas {
  background: #fff;
  padding: 70px 0 50px;
}
.why-thomas .why__head h2 {
  color: #0b4da2;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.why-thomas .why__head p {
  color: #4a607a;
  font-size: 1rem;
  margin: 0 auto;
  max-width: 700px;
}
.why-thomas .why__divider {
  width: 70px;
  height: 3px;
  background: #0b4da2;
  margin: 20px auto 40px;
  border-radius: 3px;
}

/* desktop grid */
.why__thomas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 35px;
  justify-items: center;
}

/* card design */
.why__thomas-item {
  text-align: center;
  transition: 0.3s;
  max-width: 230px;
  flex-shrink: 0;
  scroll-snap-align: start;
}
.why__thomas-item:hover { transform: translateY(-4px); }

.thomas-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0b4da2, #1a66d1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0 auto 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.thomas-icon svg { width: 32px; height: 32px; }

.why__thomas-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0b4da2;
  margin-bottom: 6px;
}
.why__thomas-item p {
  font-size: 0.9rem;
  color: #445;
  line-height: 1.45;
}

/* horizontal scroll for mobile */
@media(max-width:768px){
  .why__scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 15px;
  }
  .why__thomas-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
  }
  .why__thomas-item {
    background: #f7faff;
    border-radius: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    padding: 18px 10px;
    min-width: 200px;
  }
  .thomas-icon { width: 55px; height: 55px; margin-bottom: 10px; }
  .thomas-icon svg { width: 24px; height: 24px; }
  .why__thomas-item h3 { font-size: 1rem; }
  .why__thomas-item p { font-size: 0.85rem; }
}


/* ===================================================
   SECTION 5: NEWSLETTER SIGNUP
   =================================================== */
.newsletter {
  background: #f9f9f9;
  padding: 60px 20px;
  border-top: 1px solid #eaeaea;
}
.newsletter__wrap {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-left: 5px solid #ff7f11;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 50px;
  transition: transform .3s ease;
}
.newsletter__wrap:hover { transform: translateY(-3px); }

.newsletter__text { flex: 1 1 55%; }
.newsletter__text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0b4da2;
  margin-bottom: 10px;
}
.newsletter__text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.newsletter__form {
  flex: 1 1 40%;
  display: flex;
  gap: 10px;
}
.newsletter__form input {
  flex: 1;
  padding: 12px 18px;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color .3s, box-shadow .3s;
}
.newsletter__form input:focus {
  border-color: #0b4da2;
  box-shadow: 0 0 0 3px rgba(11,77,162,0.15);
}
.newsletter__form button {
  background: #0b4da2;
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .3s ease, transform .3s;
}
.newsletter__form button:hover {
  background: #ff7f11;
  transform: translateY(-2px);
}

/* responsive */
@media(max-width:992px){
  .newsletter__wrap {
    flex-direction: column;
    text-align: center;
    padding: 35px 25px;
  }
  .newsletter__form {
    width: 100%;
    flex-direction: column;
  }
  .newsletter__form input,
  .newsletter__form button { width: 100%; }
  .newsletter__form button { margin-top: 10px; }
}


/* ===================================================
   PROFESSIONAL COMPACT FOOTER (Desktop + Mobile)
   =================================================== */
.aj-footer {
  background: #041b38;
  color: #dce3f4;
  border-top: 3px solid #0b4da2;
  padding: 35px 15px 15px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  text-align: center;
}

/* Left */
.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo img {
  width: 130px;
  height: auto;
}
.footer-tagline {
  font-size: 0.9rem;
  color: #c8d6ef;
  margin: 0;
}

/* Center Links */
.footer-center {
  display: flex;
  gap: 25px;
}
.footer-center a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.footer-center a:hover {
  color: #ff9c33;
}

/* Right icons */
.footer-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-right a {
  color: #ff9c33;
  font-size: 1.2rem;
  transition: 0.3s;
}
.footer-right a:hover {
  color: #00b3b3;
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 10px;
  font-size: 0.85rem;
  color: #a5b9d5;
  margin-top: 10px;
}

/* ================= MOBILE VIEW ================= */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .footer-left {
    flex-direction: column;
    gap: 6px;
  }
  .footer-logo img {
    width: 110px;
  }
  .footer-tagline {
    font-size: 0.85rem;
  }
  .footer-center {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
  .footer-center a {
    font-size: 0.9rem;
  }
  .footer-right {
    justify-content: center;
    gap: 14px;
  }
  .footer-right a {
    font-size: 1.1rem;
  }
}



/* ===================================================
   SECTION: BLOG HOME SLIDER (Premium Horizontal Design)
   =================================================== */
.blog-home {
  padding: 80px 0;
  background: #f9fafc;
  position: relative;
  overflow: hidden;
}
.blog__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.blog__title {
  font-size: 2rem;
  font-weight: 700;
  color: #0b4da2;
}
.btn.btn--outline {
  border: 2px solid #0b4da2;
  color: #0b4da2;
  padding: 8px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn.btn--outline:hover {
  background: #0b4da2;
  color: #fff;
}

/* Slider */
.blog-slider {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 15px;
}
.blog-slider::-webkit-scrollbar { display: none; }

/* Blog card */
.blog-card {
  flex: 0 0 360px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}
.blog-card__img img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.blog-card__info {
  padding: 18px 20px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.blog-card__info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0b4da2;
  margin-bottom: 10px;
  min-height: 48px;
  line-height: 1.4;
}
.blog-card__info p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.5;
  flex-grow: 1;
  min-height: 60px;
  margin-bottom: 15px;
}
.blog-btn {
  align-self: flex-start;
  background: linear-gradient(135deg,#ff9c33,#ff7f11);
  color: #fff;
  padding: 9px 22px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}
.blog-btn:hover { background: #ff7f11; }

/* Arrows */
.blog-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #0b4da2;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: all 0.3s;
  z-index: 5;
}
.blog-arrow:hover {
  background: #0b4da2;
  color: #fff;
}
.blog-arrow.prev { left: 20px; }
.blog-arrow.next { right: 20px; }

/* ===== Responsive ===== */
@media (max-width:992px) {
  .blog-card { flex: 0 0 300px; }
  .blog-card__img img { height: 180px; }
  .blog-card__info h3 { font-size: 1rem; min-height: auto; }
  .blog-card__info p { font-size: 0.85rem; min-height: 50px; }
}
@media (max-width:768px) {
  .blog__head { flex-direction: column; text-align: center; gap: 10px; }
  .blog-card { flex: 0 0 270px; }
  .blog-card__img img { height: 160px; }
  .blog-card__info { padding: 15px; }
  .blog-btn { padding: 7px 18px; font-size: 0.85rem; }
}




/* ===================================================
   Aspen Journeys Floating Chatbot
   =================================================== */
.chatbot-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: 'Poppins', sans-serif;
}

/* Chat Icon */
.chatbot-icon {
  background: linear-gradient(135deg,#0b4da2,#157efb);
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 18px rgba(0,0,0,0.3);
  cursor: pointer;
  font-size: 1.8rem;
  transition: 0.3s;
}
.chatbot-icon:hover { transform: scale(1.05); }

/* Chat Box */
.chatbot-box {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 290px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.25);
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.chatbot-box.open { display: flex; }

.chatbot-header {
  background: #0b4da2;
  color: #fff;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chatbot-header .chat-logo {
  width: 35px;
  height: auto;
  border-radius: 50%;
}
.chatbot-header button {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}

.chatbot-body {
  padding: 15px;
  font-size: 0.9rem;
  color: #333;
}
.chatbot-body ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}
.chatbot-body ul li {
  margin: 8px 0;
}
.chatbot-body a {
  text-decoration: none;
  color: #0b4da2;
  font-weight: 600;
  transition: 0.3s;
}
.chatbot-body a:hover { color: #ff9c33; }

@media (max-width: 600px) {
  .chatbot-box {
    width: 95vw;
    right: 2.5vw;
  }
}


/* ===================================================
   CATEGORY PRODUCT GRID – Modern Card Design
   =================================================== */
.products-section {
  background: #f8fafc;
  padding-bottom: 60px;
}

.products-section .section-heading {
  color: #0b4da2;
  font-weight: 700;
  font-size: 1.8rem;
}

.product-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.product-image {
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid #ff9c33;
}

.product-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.product-card:hover .product-image img {
  transform: scale(1.07);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.4s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay .btn {
  background: #ff9c33;
  border: none;
  font-weight: 600;
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.product-overlay .btn:hover {
  background: #0b4da2;
}

.product-body {
  text-align: center;
  padding: 25px 20px 30px;
}

.product-title {
  color: #0b4da2;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.product-desc {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 0;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .product-image img {
    height: 200px;
  }
  .product-title {
    font-size: 1rem;
  }
  .product-desc {
    font-size: 0.9rem;
  }
}

/* ===================================================
   HOME PAGE – 3 CATEGORY GRID (CINEMATIC + LIFTED SHADOW)
   =================================================== */

.top-categories {
  background: radial-gradient(circle at center, #f8fafc 60%, #e9eef7 100%);
  padding: 90px 0;
  position: relative;
  z-index: 1;
}

/* subtle pattern glow behind */
.top-categories::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(11,77,162,0.04), transparent 70%);
  z-index: 0;
}

/* ===== Section Heading ===== */
.section-heading {
  font-size: 2.3rem;
  color: #0b4da2;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
  z-index: 1;
}
.section-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #f6b300, #ff8c00);
  border-radius: 3px;
}

/* ===== Category Card ===== */
.cat-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 507px; /* ✅ fixed cinematic height */
  background: #000;
  display: block;
  transition: all 0.5s ease;
  box-shadow:
    0 20px 35px rgba(0,0,0,0.15),
    0 0 25px rgba(11,77,162,0.06),
    inset 0 0 10px rgba(255,255,255,0.05);
}
.cat-card::before {
  /* soft back glow behind each image */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, transparent 70%);
  z-index: 0;
}
.cat-card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 30px 55px rgba(0,0,0,0.25),
    0 0 50px rgba(11,77,162,0.15);
}

/* ===== Image ===== */
.cat-img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  display: block;
}
.cat-card:hover img {
  transform: scale(1.08);
}

/* ===== Overlay Text ===== */
.cat-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 45px;
  background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.05) 65%);
  color: #fff;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
  z-index: 2;
}
.cat-card:hover .cat-body {
  opacity: 1;
  transform: translateY(0);
}
.cat-name {
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}
.cat-sub {
  font-size: 1rem;
  color: #ffcf87;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .cat-card {
    height: 420px;
  }
  .cat-name {
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  .cat-card {
    height: 330px;
  }
  .section-heading {
    font-size: 1.8rem;
  }
}
@media (max-width: 576px) {
  .cat-card {
    height: 250px;
  }
}

/* ===================================================
   CATEGORY HERO SECTION
   =================================================== */
.category-hero {
  background: linear-gradient(90deg,#0b4da2,#ff9c33);
  color:#fff;
  padding:90px 0 60px;
  text-align:center;
}
.category-title {
  font-size:2.4rem;
  font-weight:700;
}
.category-subtitle {
  font-size:1rem;
  color:#f4f4f4;
  margin-top:10px;
}

/* ===================================================
   HORIZONTAL TOUR CARD SLIDER STYLE (LIKE REFERENCE)
   =================================================== */
.tour-slider {
  overflow-x:auto;
  white-space:nowrap;
  padding:40px 0;
  background:#f9f9f9;
  scroll-behavior:smooth;
}
.tour-track {
  display:flex;
  gap:25px;
  justify-content:center;
  flex-wrap:wrap;
  max-width:1600px;
  margin:auto;
}

/* Single Card */
.tour-card {
  background:#fff;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,0.12);
  transition:all 0.4s ease;
  overflow:hidden;
  flex:0 0 calc(33.333% - 20px);
  display:flex;
  flex-direction:column;
}
.tour-card:hover {
  transform:translateY(-6px);
  box-shadow:0 16px 35px rgba(0,0,0,0.18);
}

/* Image Section */
.tour-img {
  position:relative;
  height:300px;
  overflow:hidden;
}
.tour-img img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.5s ease;
}
.tour-card:hover img { transform:scale(1.08); }
.tour-duration {
  position:absolute;
  top:14px;
  right:14px;
  background:#00b894;
  color:#fff;
  font-weight:600;
  padding:6px 12px;
  border-radius:20px;
  font-size:0.9rem;
  box-shadow:0 3px 8px rgba(0,0,0,0.25);
}

/* Body */
.tour-body {
  padding:20px;
  flex:1;
  display:flex;
  flex-direction:column;
}
.tour-title {
  color:#0b4da2;
  font-size:1.05rem;
  font-weight:700;
  margin-bottom:6px;
}
.tour-desc {
  color:#555;
  font-size:0.9rem;
  line-height:1.5;
  margin-bottom:10px;
}
.tour-price {
  font-size:0.95rem;
  color:#111;
  font-weight:600;
  margin-bottom:14px;
}
.btn-enquiry {
  background:#00b894;
  color:#fff;
  font-weight:600;
  border-radius:6px;
  padding:8px 16px;
  font-size:0.9rem;
  text-decoration:none;
  width:fit-content;
  transition:0.3s;
}
.btn-enquiry:hover {
  background:#0b4da2;
  color:#fff;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width:1200px){
  .tour-card{flex:0 0 calc(50% - 20px);}
}
@media (max-width:768px){
  .tour-card{flex:0 0 100%;}
  .tour-img{height:250px;}
  .category-title{font-size:2rem;}
}



/* ===================================================
   TOUR DETAIL PAGE
   =================================================== */
.detail-hero {
  position:relative;
  background-size:cover;
  background-position:center;
  height:500px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}
.hero-overlay {
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.4);
}
.hero-content {
  position:relative;
  z-index:2;
}
.hero-content h1 {
  font-size:2.6rem;
  font-weight:700;
  margin-bottom:10px;
}
.hero-content p {
  font-size:1rem;
  color:#f2f2f2;
}

/* ===================================================
   DETAILS + SIDEBAR
   =================================================== */
.tour-detail {
  margin-top:50px;
}
.detail-box h2,
.detail-box h3 {
  color:#0b4da2;
  font-weight:700;
}
.detail-box p {
  color:#444;
  line-height:1.7;
}
.highlights li {
  margin:6px 0;
  color:#333;
}

.price-box {
  background:#fff;
  box-shadow:0 8px 20px rgba(0,0,0,0.1);
  border-radius:12px;
  padding:25px;
  text-align:center;
}
.price-box h4 {
  color:#0b4da2;
  font-weight:700;
}
.price-box p {
  font-size:1rem;
  color:#444;
}
.btn-book {
  background:#00b894;
  color:#fff;
  font-weight:600;
  padding:10px 25px;
  border-radius:6px;
  text-decoration:none;
  display:inline-block;
  transition:0.3s;
}
.btn-book:hover {
  background:#0b4da2;
  color:#fff;
}

.quick-info {
  background:#f9f9f9;
  border-radius:10px;
  padding:20px;
}
.quick-info h5 {
  color:#0b4da2;
  font-weight:700;
}
.quick-info ul {
  margin:0;
  padding:0;
  list-style:none;
}
.quick-info li {
  padding:5px 0;
  border-bottom:1px solid #eaeaea;
  font-size:0.9rem;
}

/* ===================================================
   ENQUIRY FORM
   =================================================== */
.enquiry-section {
  background:#f8fafc;
  border-top:2px solid #eee;
}
.enquiry-section h2 {
  color:#0b4da2;
  font-weight:700;
}
.enquiry-form input,
.enquiry-form textarea {
  width:100%;
  border:1px solid #ccc;
  border-radius:6px;
  padding:10px 12px;
}
.btn-submit {
  background:#0b4da2;
  color:#fff;
  font-weight:600;
  border:none;
  padding:10px 25px;
  border-radius:6px;
  transition:0.3s;
}
.btn-submit:hover {
  background:#ff9c33;
  color:#fff;
}


.category-hero {
  background: linear-gradient(90deg,#0b4da2,#ff9c33);
  color:#fff;
  padding:90px 0 60px;
  text-align:center;
}
.category-title {font-size:2.4rem;font-weight:700;}
.category-subtitle {font-size:1rem;color:#f4f4f4;margin-top:10px;}

.tour-slider {
  background:#f9f9f9;
  padding:60px 0;
}
.tour-track {
  display:flex;
  flex-wrap:wrap;
  gap:25px;
  justify-content:center;
  max-width:1600px;
  margin:auto;
}

.tour-card {
  background:#fff;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,0.12);
  transition:all 0.4s ease;
  overflow:hidden;
  flex:0 0 calc(33.333% - 20px);
  display:flex;
  flex-direction:column;
}
.tour-card:hover {
  transform:translateY(-6px);
  box-shadow:0 16px 35px rgba(0,0,0,0.18);
  text-decoration:none;
}

.tour-img {
  position:relative;
  height:300px;
  overflow:hidden;
}
.tour-img img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 0.5s ease;
}
.tour-card:hover img { transform:scale(1.08); }
.tour-duration {
  position:absolute;
  top:14px;
  right:14px;
  background:#00b894;
  color:#fff;
  font-weight:600;
  padding:6px 12px;
  border-radius:20px;
  font-size:0.9rem;
  box-shadow:0 3px 8px rgba(0,0,0,0.25);
}

.tour-body {
  padding:20px;
  flex:1;
  display:flex;
  flex-direction:column;
}
.tour-title {color:#0b4da2;font-size:1.05rem;font-weight:700;margin-bottom:6px;}
.tour-desc {color:#555;font-size:0.9rem;line-height:1.5;margin-bottom:10px;}
.tour-price {font-size:0.95rem;color:#111;font-weight:600;margin-bottom:14px;}
.btn-enquiry {
  background:#00b894;
  color:#fff;
  font-weight:600;
  border-radius:6px;
  padding:8px 16px;
  font-size:0.9rem;
  text-decoration:none;
  width:fit-content;
  transition:0.3s;
}
.tour-card:hover .btn-enquiry {background:#0b4da2;color:#fff;}

@media (max-width:1200px){.tour-card{flex:0 0 calc(50% - 20px);}}
@media (max-width:768px){.tour-card{flex:0 0 100%;}.tour-img{height:250px;}.category-title{font-size:2rem;}}


/* ===================================================
   DETAIL PAGE – MODERN PREMIUM STYLE
   =================================================== */
.detail-hero {
  position:relative;
  background-size:cover;
  background-position:center;
  height:480px;
  display:flex;
  align-items:flex-end;
  color:#fff;
}
.detail-hero .overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom,rgba(0,0,0,0.1),rgba(0,0,0,0.65));
}
.hero-content{
  position:relative;
  z-index:2;
  padding:40px 0;
}
.hero-content h1{
  font-size:2.6rem;
  font-weight:700;
  margin-bottom:8px;
}
.hero-content p{
  font-size:1.1rem;
  color:#e9e9e9;
}

/* CONTENT AREA */
.tour-content{
  background:#fff;
}
.tour-box{
  background:#fff;
  border-radius:14px;
  box-shadow:0 6px 20px rgba(0,0,0,0.08);
  padding:30px;
}
.section-title{
  font-weight:700;
  color:#0b4da2;
  font-size:1.6rem;
  margin-bottom:15px;
}
.sub-title{
  font-weight:700;
  color:#0b4da2;
  font-size:1.3rem;
}
.tour-box .lead{
  color:#444;
  font-size:1rem;
  line-height:1.8;
}
.itinerary{
  background:#f9fafc;
  padding:15px 18px;
  border-radius:8px;
  line-height:1.7;
  color:#333;
}
.highlights{
  margin-top:10px;
  list-style:none;
  padding:0;
}
.highlights li{
  padding:5px 0;
  color:#333;
}

/* RIGHT SIDEBAR */
.price-card{
  background:#fff;
  box-shadow:0 6px 25px rgba(0,0,0,0.1);
  border-radius:14px;
  padding:25px;
  text-align:center;
}
.price-card h2{
  color:#0b4da2;
  font-size:2rem;
  font-weight:700;
}
.price-card h4{
  font-weight:600;
  color:#444;
}
.btn-main{
  background:linear-gradient(90deg,#0b4da2,#ff9c33);
  color:#fff;
  font-weight:600;
  border:none;
  border-radius:8px;
  padding:10px 20px;
  text-decoration:none;
  display:inline-block;
  transition:0.3s;
}
.btn-main:hover{opacity:0.9;}

.info-card{
  background:#f8faff;
  border-radius:10px;
  padding:20px;
  box-shadow:0 3px 10px rgba(0,0,0,0.05);
}
.info-card h5{
  color:#0b4da2;
  font-weight:700;
}
.info-card ul{
  list-style:none;
  margin:0;
  padding:0;
}
.info-card li{
  padding:6px 0;
  font-size:0.95rem;
  border-bottom:1px solid #eee;
}

/* ENQUIRY SECTION */
.enquiry-area{
  background:#f9f9f9;
  border-top:2px solid #eee;
}
.enquiry-area h2{
  color:#0b4da2;
  font-weight:700;
}
.enquiry-form input,
.enquiry-form textarea{
  border:1px solid #ccc;
  border-radius:6px;
  padding:10px;
  width:100%;
}
.enquiry-form textarea{resize:none;}
@media(max-width:768px){
  .hero-content h1{font-size:2rem;}
  .price-card{margin-top:30px;}
}

/* ===================================================
   ENQUIRY MODAL POPUP
   =================================================== */
.enquiry-modal {
  border-radius:14px;
  box-shadow:0 8px 35px rgba(0,0,0,0.3);
}
.enquiry-modal .modal-header {
  background:linear-gradient(90deg,#0b4da2,#ff9c33);
  color:#fff;
  border-radius:14px 14px 0 0;
}
.enquiry-popup-form input,
.enquiry-popup-form textarea {
  border:1px solid #ccc;
  border-radius:6px;
  padding:10px;
}
.enquiry-popup-form button.btn-main {
  background:linear-gradient(90deg,#0b4da2,#ff9c33);
  border:none;
  color:#fff;
  font-weight:600;
  padding:10px;
  border-radius:8px;
}
.enquiry-popup-form button.btn-main:hover {
  opacity:0.9;
}

/* Floating Button */
.fixed-enquiry {
  position:fixed;
  bottom:25px;
  right:25px;
  z-index:999;
}
.fixed-enquiry .btn-main {
  background:linear-gradient(90deg,#0b4da2,#ff9c33);
  color:#fff;
  border:none;
  padding:12px 25px;
  font-weight:600;
  border-radius:30px;
  box-shadow:0 6px 15px rgba(0,0,0,0.2);
  transition:0.3s;
}
.fixed-enquiry .btn-main:hover {
  transform:translateY(-3px);
  box-shadow:0 10px 20px rgba(0,0,0,0.25);
}


/* ========== DETAIL PAGE STYLING ========== */
.detail-hero {
  position:relative;
  background-size:cover;
  background-position:center;
  height:450px;
  display:flex;
  align-items:flex-end;
  color:#fff;
}
.detail-hero .overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom,rgba(0,0,0,0.2),rgba(0,0,0,0.7));
}
.hero-content{
  position:relative;
  z-index:2;
  padding:40px 0;
}
.hero-content h1{
  font-size:2.6rem;
  font-weight:700;
}
.hero-content p{
  font-size:1.1rem;
  color:#f4f4f4;
}

/* BOXES */
.tour-box, .price-card{
  background:#fff;
  border-radius:14px;
  box-shadow:0 6px 20px rgba(0,0,0,0.1);
  padding:25px;
}
.section-title{font-size:1.6rem;color:#0b4da2;font-weight:700;}
.sub-title{font-size:1.2rem;color:#0b4da2;font-weight:700;}
.itinerary{background:#f9fafc;padding:15px;border-radius:8px;color:#333;}
.highlights{list-style:none;padding:0;}
.highlights li{padding:5px 0;color:#333;}
.price-card h2{color:#0b4da2;font-size:2rem;font-weight:700;}
.btn-main{
  background:linear-gradient(90deg,#0b4da2,#ff9c33);
  color:#fff;font-weight:600;border:none;
  border-radius:8px;padding:10px 20px;transition:0.3s;
}
.btn-main:hover{opacity:0.9;}

/* ========== POPUP MODAL ========== */
.enquiry-modal{border-radius:14px;box-shadow:0 8px 35px rgba(0,0,0,0.3);}
.enquiry-modal .modal-header{
  background:linear-gradient(90deg,#0b4da2,#ff9c33);
  color:#fff;border-radius:14px 14px 0 0;
}
.enquiry-modal .btn-close{filter:invert(1);}
.enquiry-modal .modal-body{padding:25px 30px;}
.enquiry-modal .form-control{
  border:1px solid #ccc;border-radius:6px;padding:10px;
}

/* ===================================
   PREMIUM TOUR GRID LAYOUT (Responsive)
   =================================== */
.category-hero {
  background: linear-gradient(90deg,#0b4da2,#ff9c33);
  color:#fff;
  padding:60px 15px;
}
.category-title {
  font-size:2.4rem;
  font-weight:700;
  text-transform:uppercase;
}
.category-subtitle {
  font-size:1.05rem;
  opacity:.9;
  margin-top:10px;
}

/* ====== Tour Grid ====== */
.tour-grid .tour-card {
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  transition:.4s;
  cursor:pointer;
}
.tour-grid .tour-card:hover {
  transform:translateY(-6px);
  box-shadow:0 8px 30px rgba(0,0,0,0.12);
}
.tour-img {
  position:relative;
  height:240px;
  overflow:hidden;
}
.tour-img img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}
.tour-card:hover .tour-img img {transform:scale(1.07);}
.tour-duration {
  position:absolute;
  bottom:10px;
  right:10px;
  background:#0b4da2;
  color:#fff;
  font-size:.9rem;
  padding:4px 10px;
  border-radius:30px;
  font-weight:600;
}

.tour-body {
  padding:20px;
  text-align:left;
}
.tour-body h4 {
  font-size:1.15rem;
  font-weight:700;
  color:#0b2e6d;
  margin-bottom:6px;
}
.tour-body p {
  font-size:.95rem;
  color:#555;
  margin-bottom:8px;
}
.tour-body .price {
  color:#111;
  font-weight:600;
}
.btn-main {
  background:linear-gradient(90deg,#0b4da2,#ff9c33);
  color:#fff;
  border:none;
  padding:8px 20px;
  border-radius:6px;
  transition:.3s;
  display:inline-block;
  text-decoration:none;
}
.btn-main:hover {opacity:.85;}

/* ====== Modal (Enquiry) ====== */
.enquiry-modal {
  border-radius:14px;
  box-shadow:0 8px 30px rgba(0,0,0,0.3);
}
.enquiry-modal .modal-header {
  background:linear-gradient(90deg,#0b4da2,#ff9c33);
  color:#fff;
  border-radius:14px 14px 0 0;
}
.enquiry-modal .form-control {
  border:1px solid #ccc;
  border-radius:6px;
  padding:10px;
}
.enquiry-modal .btn-main {
  width:100%;
  font-weight:600;
}
@media(max-width:768px){
  .tour-img{height:200px;}
  .tour-body{text-align:center;}
}

/* ===================================================
   PROFESSIONAL TOUR CARD LAYOUT (Aspen Journeys)
   =================================================== */

/* ===== HERO SECTION ===== */
.category-hero {
  background: linear-gradient(90deg, #0b4da2, #ff9c33);
  color: #fff;
  text-align: center;
  padding: 60px 15px;
}
.category-title {
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
}
.category-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ===== GRID ===== */
.tour-grid {
  background: #f8f9fa;
}
.tour-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  height: 100%;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* ===== IMAGE ===== */
.tour-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tour-card:hover .tour-img img {
  transform: scale(1.05);
}
.tour-duration {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #0b4da2;
  color: #fff;
  font-size: 0.9rem;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: 600;
}

/* ===== BODY ===== */
.tour-body {
  padding: 15px 18px 20px;
}
.tour-body h4 {
  color: #0b2e6d;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.tour-body p {
  color: #444;
  font-size: 0.92rem;
  margin-bottom: 6px;
}
.tour-body .price {
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
}

/* ===== BUTTON ===== */
.btn-main {
  background: linear-gradient(90deg,#0b4da2,#ff9c33);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.btn-main:hover {
  opacity: 0.85;
  color: #fff;
}

/* ===== POPUP ===== */
.enquiry-modal {
  border-radius: 14px;
  box-shadow: 0 8px 35px rgba(0,0,0,0.3);
}
.enquiry-modal .modal-header {
  background: linear-gradient(90deg,#0b4da2,#ff9c33);
  color:#fff;
  border-radius:14px 14px 0 0;
}
.enquiry-modal .form-control {
  border-radius:6px;
  border:1px solid #ccc;
  padding:10px;
}
.enquiry-modal .btn-main {
  width:100%;
  font-weight:600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .tour-img { height: 200px; }
  .tour-body { text-align: center; }
}

/* ===== HERO SECTION ===== */
.category-hero {
  background: linear-gradient(120deg, rgba(11,77,162,0.8), rgba(255,156,51,0.8)),
              url('../img/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 90px 20px 70px;
  position: relative;
}
.category-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}
.category-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
}
.category-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.category-hero p {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* ===== TOUR GRID ===== */
.tour-section {
  background: #f8fafc;
  padding: 80px 0;
}
.tour-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 35px;
}

/* ===== CARD ===== */
.tour-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: 0.4s;
  display: flex;
  flex-direction: column;
}
.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.tour-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tour-card:hover .tour-img img {
  transform: scale(1.08);
}
.duration-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #0b4da2;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
}

/* ===== BODY ===== */
.tour-body {
  padding: 22px 25px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tour-title {
  font-size: 1.1rem;
  color: #0b4da2;
  font-weight: 700;
  margin-bottom: 8px;
}
.tour-desc {
  color: #555;
  font-size: 0.93rem;
  line-height: 1.5;
  margin-bottom: 10px;
}
.tour-price {
  color: #111;
  font-weight: 700;
  margin-bottom: 14px;
}
.btn-main {
  background: linear-gradient(90deg,#0b4da2,#ff9c33);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  width: fit-content;
  transition: 0.3s;
}
.btn-main:hover {
  opacity: 0.85;
  color: #fff;
}

/* ===== POPUP ===== */
.enquiry-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.enquiry-modal.active {
  visibility: visible;
  opacity: 1;
}
.modal-box {
  background: #fff;
  border-radius: 14px;
  max-width: 500px;
  width: 90%;
  padding: 30px 25px;
  position: relative;
  animation: fadeIn 0.4s ease;
}
.modal-box h3 {
  color: #0b4da2;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: center;
}
.modal-box .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #555;
  cursor: pointer;
}
.modal-box input,
.modal-box textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.modal-box button {
  background: linear-gradient(90deg,#0b4da2,#ff9c33);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  width: 100%;
  transition: 0.3s;
}
.modal-box button:hover {
  opacity: 0.9;
}
@keyframes fadeIn {
  from {transform: scale(0.9);opacity:0;}
  to {transform: scale(1);opacity:1;}
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  .category-hero h1{font-size:2rem;}
  .category-hero p{font-size:0.95rem;}
  .tour-container{grid-template-columns:1fr;}
}


/* ===================================================
   ASPEN JOURNEYS – CATEGORY & DETAIL PAGES (FINAL RESPONSIVE)
   =================================================== */

/* ===== HERO SECTION ===== */
.category-hero {
  background: linear-gradient(120deg, rgba(11,77,162,0.8), rgba(255,156,51,0.8)),
              url('../img/hero-bg.jpg') center/cover no-repeat;
  color:#fff; text-align:center;
  padding:90px 20px 70px; position:relative;
}
.category-hero::after{content:"";position:absolute;inset:0;background:rgba(0,0,0,.35);}
.category-hero .hero-content{position:relative;z-index:2;max-width:900px;margin:auto;}
.category-hero h1{font-size:2.8rem;font-weight:800;text-transform:uppercase;margin-bottom:15px;}
.category-hero p{font-size:1.1rem;opacity:.95;line-height:1.6;}
@media(max-width:992px){.category-hero{padding:70px 15px 50px;}}
@media(max-width:768px){
  .category-hero{padding:60px 10px 40px;}
  .category-hero h1{font-size:1.9rem;}
  .category-hero p{font-size:.95rem;}
}
@media(max-width:480px){
  .category-hero h1{font-size:1.6rem;}
  .category-hero p{font-size:.85rem;}
}

/* ===== TOUR GRID ===== */
.tour-section{background:#f8fafc;padding:80px 0;}
.tour-container{
  max-width:1300px;margin:auto;
  display:grid;grid-template-columns:repeat(auto-fit,minmax(380px,1fr));
  gap:35px;padding:0 15px;
}
.tour-card{
  background:#fff;border-radius:18px;box-shadow:0 8px 25px rgba(0,0,0,0.08);
  overflow:hidden;transition:.4s;display:flex;flex-direction:column;
}
.tour-card:hover{transform:translateY(-6px);box-shadow:0 12px 28px rgba(0,0,0,0.15);}
.tour-img{position:relative;height:240px;overflow:hidden;}
.tour-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s;}
.tour-card:hover .tour-img img{transform:scale(1.08);}
.duration-badge{
  position:absolute;top:12px;right:12px;background:#0b4da2;color:#fff;
  padding:6px 14px;border-radius:20px;font-weight:600;font-size:.9rem;
  box-shadow:0 3px 8px rgba(0,0,0,0.25);
}
.tour-body{padding:22px 25px 30px;flex:1;display:flex;flex-direction:column;}
.tour-title{font-size:1.1rem;color:#0b4da2;font-weight:700;margin-bottom:8px;}
.tour-desc{color:#555;font-size:.93rem;line-height:1.5;margin-bottom:10px;}
.tour-price{color:#111;font-weight:700;margin-bottom:14px;}
.btn-main{
  background:linear-gradient(90deg,#0b4da2,#ff9c33);color:#fff;border:none;
  padding:10px 22px;border-radius:6px;text-decoration:none;font-weight:600;
  width:fit-content;transition:.3s;align-self:flex-start;
}
.btn-main:hover{opacity:.85;color:#fff;}
@media(max-width:992px){
  .tour-container{grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:25px;}
  .tour-img{height:220px;}
}
@media(max-width:768px){
  .tour-container{grid-template-columns:1fr;gap:20px;}
  .tour-img{height:200px;}
  .tour-body{text-align:center;}
  .btn-main{align-self:center;}
}

/* ===== ENQUIRY POPUP ===== */
.enquiry-modal{
  position:fixed;inset:0;background:rgba(0,0,0,.7);
  display:flex;align-items:center;justify-content:center;z-index:999;
  visibility:hidden;opacity:0;transition:.3s;
}
.enquiry-modal.active{visibility:visible;opacity:1;}
.modal-box{
  background:#fff;border-radius:14px;max-width:500px;width:90%;
  padding:30px 25px;position:relative;animation:fadeIn .4s ease;
  max-height:90vh;overflow-y:auto;
}
.modal-box h3{color:#0b4da2;font-weight:700;margin-bottom:18px;text-align:center;}
.close-btn{position:absolute;top:10px;right:15px;background:transparent;border:none;font-size:1.6rem;color:#555;cursor:pointer;}
.modal-box input,.modal-box textarea{
  width:100%;border:1px solid #ccc;border-radius:6px;padding:10px;margin-bottom:12px;font-size:.95rem;
}
.modal-box button{
  background:linear-gradient(90deg,#0b4da2,#ff9c33);color:#fff;border:none;
  padding:10px 20px;border-radius:6px;font-weight:600;width:100%;transition:.3s;
}
.modal-box button:hover{opacity:.9;}
@keyframes fadeIn{from{transform:scale(.9);opacity:0;}to{transform:scale(1);opacity:1;}}
@media(max-width:480px){
  .modal-box{width:95%;padding:20px;}
  .modal-box h3{font-size:1.1rem;}
}

/* ===== DETAIL PAGE ===== */
.detail-hero{
  position:relative;background-size:cover;background-position:center;
  height:500px;display:flex;align-items:center;justify-content:center;color:#fff;text-align:center;
}
.hero-overlay{position:absolute;inset:0;background:rgba(0,0,0,.45);}
.hero-content{position:relative;z-index:2;max-width:800px;padding:0 15px;}
.hero-content h1{font-size:2.6rem;font-weight:700;margin-bottom:10px;}
.hero-content p{font-size:1.05rem;color:#eee;}
@media(max-width:768px){
  .detail-hero{height:320px;padding-bottom:20px;}
  .hero-content h1{font-size:1.8rem;}
  .hero-content p{font-size:.9rem;}
}

.tour-detail{margin-top:60px;padding:0 15px;}
.detail-box{background:#fff;border-radius:14px;box-shadow:0 6px 20px rgba(0,0,0,0.08);padding:30px;}
.detail-box h2,.detail-box h3{color:#0b4da2;font-weight:700;}
.detail-box p{color:#444;line-height:1.7;}
.highlights li{margin:6px 0;color:#333;}
.itinerary{background:#f9fafc;padding:15px 18px;border-radius:8px;line-height:1.7;color:#333;}

.price-box{
  background:#fff;box-shadow:0 8px 20px rgba(0,0,0,0.1);
  border-radius:12px;padding:25px;text-align:center;
}
.price-box h4{color:#0b4da2;font-weight:700;}
.price-box h2{color:#0b4da2;font-size:2rem;font-weight:700;}
.price-box p{font-size:1rem;color:#444;}
.quick-info{background:#f9f9f9;border-radius:10px;padding:20px;margin-top:20px;}
.quick-info h5{color:#0b4da2;font-weight:700;}
.quick-info ul{list-style:none;padding:0;margin:0;}
.quick-info li{padding:5px 0;border-bottom:1px solid #eaeaea;font-size:.9rem;}
@media(max-width:992px){
  .price-box,.quick-info{margin-top:25px;}
  .price-box h2{font-size:1.7rem;}
}
@media(max-width:768px){
  .detail-box{padding:20px;}
  .price-box{padding:20px;}
}

/* ===== MODERN DETAIL PAGE STYLING (PREMIUM) ===== */

/* Hero */
.detail-hero {
  position: relative;
  height: 550px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.detail-hero .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
}
.glass-box {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 15px;
  padding: 30px 40px;
  max-width: 800px;
  margin-bottom: 60px;
}
.glass-box h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 10px;
  background: linear-gradient(90deg,#fff,#ffd36a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Floating Info */
.floating-info {
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  padding: 18px 25px;
  position: sticky;
  top: 0;
  z-index: 9;
}
.floating-info h3 {
  font-size: 1rem;
  color: #333;
  margin: 0;
}
.floating-info span {
  color: #0b4da2;
  font-weight: 700;
}
.floating-info .btn-main {
  background: linear-gradient(90deg,#0b4da2,#ff9c33);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}
.floating-info .btn-main:hover {opacity: 0.9;}

/* Overview */
.overview p {color:#444;font-size:1rem;line-height:1.7;}
.premium-list {list-style:none;padding:0;margin:0;}
.premium-list li {margin:8px 0;color:#333;font-weight:500;}
.premium-list i {color:#00b894;margin-right:8px;}

/* Itinerary */
.itinerary-section {background:#f8f9fc;}
.itinerary-day {
  display:flex;align-items:center;
  background:#fff;margin-bottom:40px;
  border-radius:16px;overflow:hidden;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
}
.itinerary-day.reverse {flex-direction:row-reverse;}
.itinerary-img {flex:1;overflow:hidden;}
.itinerary-img img {width:100%;height:100%;object-fit:cover;transition:transform .5s;}
.itinerary-day:hover img {transform:scale(1.08);}
.itinerary-content {flex:1;padding:35px;}
.itinerary-content h4 {color:#0b4da2;font-weight:700;margin-bottom:10px;}
.itinerary-content p {color:#555;margin:0;}
@media(max-width:992px){.itinerary-day,.itinerary-day.reverse{flex-direction:column;}}

/* Enquiry */
.enquiry-luxury {
  background: linear-gradient(135deg,#0b4da2,#ff9c33);
}
.enquiry-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px;
  max-width: 550px;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.enquiry-card input,
.enquiry-card textarea {
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.enquiry-card input:focus,
.enquiry-card textarea:focus {outline:none;box-shadow:0 0 0 3px rgba(255,255,255,0.3);}


/* ======= CARD GRID LAYOUT ======= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.tour-card {
  width: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-align: left;
  background: #fff;
}
.tour-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.tour-content {
  padding: 18px 20px;
}
.tour-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.tour-content p {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #444;
}
.price {
  font-weight: 700;
  color: #0fb5b3;
  margin-top: 5px;
  margin-bottom: 12px;
}
.btn-view {
  display: inline-block;
  background: #0fb5b3;
  color: #fff;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s ease;
}
.btn-view:hover {
  background: #08817e;
}

/* ======= HELICOPTER (Premium Look) ======= */
.tour-card.heli {
  background: linear-gradient(180deg, #0d1b3f, #162b61);
  color: #fff;
}
.tour-card.heli h4 {
  color: #ffd86b;
}
.tour-card.heli p {
  color: #f2f2f2;
}
.tour-card.heli .price {
  color: #ffd86b;
}
.tour-card.heli .btn-view {
  background: #ffd86b;
  color: #0b1c3f;
}
.tour-card.heli .btn-view:hover {
  background: #fff;
  color: #162b61;
}

/* ======= ROAD (Light Look) ======= */
.tour-card.road {
  background: #ffffff;
  color: #111;
}
.tour-card.road h4 {
  color: #009688;
}
.tour-card.road .price {
  color: #0fb5b3;
}
.tour-card.road .btn-view {
  background: #0fb5b3;
  color: #fff;
}
.tour-card.road .btn-view:hover {
  background: #08817e;
}

/* ======= Responsive ======= */
@media (max-width: 768px) {
  .tour-card { width: 100%; max-width: 340px; }
}
