/* nexus_theme.css - Replicating NexusDMC UI/UX */

:root {
    --nexus-bg: #f5f7fa;
    --nexus-card-bg: #ffffff;
    --nexus-text: #333333;
    --nexus-text-muted: #666666;
    --nexus-orange: #f58220;
    --nexus-orange-hover: #e0711a;
    --nexus-blue: #003580;
    --nexus-red: #d92128;
    --nexus-border: #e6e9ee;
    
    --v7-bg: #000000;
    --v7-accent: #d0021b;
    --v7-glass: rgba(255, 255, 255, 0.05);
    --v7-glass-border: rgba(255, 255, 255, 0.1);
    --v7-text: #ffffff;
    --v7-text-muted: #a0a0a0;

    /* v7 Light Theme Tokens */
    --v7-light-bg: #f8fafc;
    --v7-light-card: #ffffff;
    --v7-light-text: #1e293b;
    --v7-light-muted: #64748b;
    --v7-light-border: #e2e8f0;
    --v7-light-glass: rgba(255, 255, 255, 0.8);
}

body.nexus-v7 {
    background: var(--v7-bg);
    color: var(--v7-text);
    font-family: 'Outfit', 'Inter', sans-serif;
}

body.v7-light-theme {
    background-color: var(--v7-light-bg) !important;
    color: var(--v7-light-text) !important;
}

body.nexus-mode {
    background-color: var(--nexus-bg) !important;
    color: var(--nexus-text) !important;
    font-family: 'Inter', sans-serif !important;
}

.nexus-mode .neural-bg { display: none !important; }

/* Sidebar */
.nexus-sidebar {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid var(--nexus-border);
}

.nexus-filter-group {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--nexus-border);
}

.nexus-filter-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #444;
}

.nexus-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nexus-checkbox-label {
    font-size: 0.85rem;
    color: var(--nexus-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Horizontal Card */
.nexus-package-card {
    background: #fff;
    border: 1px solid var(--nexus-border);
    border-radius: 4px;
    margin-bottom: 20px;
    display: flex;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.nexus-package-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.nexus-card-left {
    position: relative;
    width: 250px;
    flex-shrink: 0;
}

.nexus-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nexus-duration-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255,255,255,0.9);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #333;
    border: 1px solid rgba(0,0,0,0.1);
}

.nexus-card-center {
    flex-grow: 1;
    padding: 20px;
    border-right: 1px solid var(--nexus-border);
}

.nexus-pkg-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.nexus-pkg-route {
    font-size: 0.8rem;
    color: var(--nexus-text-muted);
    margin-bottom: 15px;
}

.nexus-meta-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.nexus-meta-badge {
    background: #f0f3f8;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #555;
    border: 1px solid #dfe4ec;
}

.nexus-inclusions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nexus-inclusion-item {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nexus-inclusion-item i {
    color: var(--nexus-orange);
    font-size: 0.7rem;
}

.nexus-card-right {
    width: 200px;
    flex-shrink: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: #fafbfc;
}

.nexus-flight-badge {
    background: #df6464;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 2px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
}

.nexus-star-rating {
    color: var(--nexus-orange);
    font-size: 0.75rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.nexus-price-per {
    font-size: 0.65rem;
    color: var(--nexus-text-muted);
}

.nexus-price-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 5px 0;
}

.btn-nexus-view {
    background: var(--nexus-red);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 0;
    width: 100%;
    font-weight: 700;
    font-size: 0.8rem;
    transition: 0.2s;
}

.btn-nexus-view:hover {
    background: #b21a20;
    color: #fff;
}

/* Sort Dropdown */
.nexus-sort-wrap {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
}

.nexus-sort-btn {
    background: #fff;
    border: 1px solid var(--nexus-border);
    padding: 6px 15px;
    font-size: 0.85rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}
/* --- Fanning Card Stack (Destinations) --- */
.fan-container-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 50px 0;
}

.fan-container {
    position: relative;
    width: 200px;
    height: 300px;
    cursor: pointer;
}

.fan-card {
    position: absolute;
    height: 250px;
    width: 180px;
    background-color: #1a1a1a;
    border: 2px solid var(--v7-glass-border);
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.5) -5px 5px 15px;
    transform-origin: bottom right;
    scale: 1;
    transition: transform 0.4s ease, opacity 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    text-align: center;
    overflow: hidden;
}

.fan-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    z-index: 1;
}

.fan-card .card-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.fan-card .dest-name {
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.fan-card .pkg-info {
    font-size: 0.8rem;
    margin-top: 10px;
    opacity: 0.9;
    background: rgba(0,0,0,0.6);
    padding: 4px 8px;
    border-radius: 4px;
}

/* Base state: stacked */
.fan-card:nth-child(n) {
    transform: rotate(0deg) translate(0px, 0px);
}

/* Hover state: fanned */
.fan-container:hover .fan-card:nth-child(1) { transform: rotate(-35deg) translate(-20px, -15px); opacity: 0.2; }
.fan-container:hover .fan-card:nth-child(2) { transform: rotate(-25deg) translate(-15px, -10px); opacity: 0.4; }
.fan-container:hover .fan-card:nth-child(3) { transform: rotate(-15deg) translate(-10px, -5px); opacity: 0.6; }
.fan-container:hover .fan-card:nth-child(4) { transform: rotate(-5deg) translate(-5px, -2px); opacity: 0.8; }
.fan-container:hover .fan-card:nth-child(5) { transform: rotate(5deg) translate(5px, 2px); opacity: 0.9; }
.fan-container:hover .fan-card:nth-child(6) { transform: rotate(15deg) translate(10px, 5px); opacity: 1; z-index: 10; border-color: var(--v7-accent); box-shadow: var(--v7-accent) 0px 0px 20px -5px; }

/* --- Interactive 3D Card Effect (Packages V2) --- */
.card-effect {
  perspective: 1000px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.card-inner {
  --card-bg: var(--v7-glass);
  --card-accent: var(--v7-accent);
  --card-text: #ffffff;
  --card-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 350px;
  min-height: 480px;
  background: var(--card-bg);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--v7-glass-border);
  font-family: 'Outfit', sans-serif;
  transform-style: preserve-3d;
}

.card-inner:hover {
  transform: rotateY(8deg) rotateX(8deg) translateZ(15px);
  box-shadow: 0 30px 60px rgba(208, 2, 27, 0.2);
  border-color: var(--v7-accent);
}

.card__liquid {
  position: absolute;
  top: -80px;
  left: 0;
  width: 300px;
  height: 200px;
  background: var(--v7-accent);
  border-radius: 50%;
  transform: translateZ(-80px);
  filter: blur(80px);
  transition:
    transform 0.7s cubic-bezier(0.36, 0, 0.66, -0.56),
    opacity 0.3s ease-in-out;
  opacity: 0;
}

.card-inner:hover .card__liquid {
  transform: translateZ(-50px) translateY(30px) translateX(-20px) rotate(-20deg)
    scale(1.2);
  opacity: 0.4;
}

.card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  z-index: 3;
}

.card-inner:hover .card__shine {
  opacity: 1;
  animation: shine-effect 2s infinite linear;
}

.card__glow {
  position: absolute;
  inset: -15px;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(208, 2, 27, 0.3) 0%,
    rgba(208, 2, 27, 0) 60%
  );
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.card-inner:hover .card__glow {
  opacity: 1;
}

.card__content {
  padding: 1.5em;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1em;
  position: relative;
  z-index: 2;
}

.card__badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--v7-accent);
  color: white;
  padding: 0.4em 0.8em;
  border-radius: 999px;
  font-size: 0.7em;
  font-weight: 800;
  letter-spacing: 1px;
  transform: scale(0.7);
  opacity: 0;
  transition: all 0.5s ease 0.2s;
  z-index: 10;
}

.card-inner:hover .card__badge {
  transform: scale(1);
  opacity: 1;
}

.card__image {
  width: 100%;
  height: 220px;
  background: #111;
  border-radius: 16px;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-inner:hover .card__image {
  transform: translateY(-8px) scale(1.02);
}

.card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.8));
  opacity: 0.8;
}

.card__text {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.card__title {
  color: var(--card-text);
  font-size: 1.3em;
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
  transition:
    color 0.4s ease-in-out,
    transform 0.4s ease-in-out;
}

.card-inner:hover .card__title {
  color: var(--card-accent);
  transform: translateX(3px);
}

.card__description {
  color: var(--v7-text-muted);
  font-size: 0.95em;
  margin: 0;
  line-height: 1.6;
  transition:
    opacity 0.4s ease-in-out,
    transform 0.4s ease-in-out;
}

.card-inner:hover .card__description {
  opacity: 1;
  color: #fff;
  transform: translateX(3px);
}

.card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--v7-glass-border);
}

.card__price {
  color: var(--card-text);
  font-weight: 800;
  font-size: 1.3em;
  transition:
    color 0.4s ease-in-out,
    transform 0.4s ease-in-out;
}

.card-inner:hover .card__price {
  color: var(--card-accent);
  transform: translateX(3px);
}

.card__button {
  width: 40px;
  height: 40px;
  background: var(--card-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition:
    transform 0.4s ease-in-out,
    box-shadow 0.4s ease-in-out;
  transform: scale(0.9);
}

.card-inner:hover .card__button {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(208, 2, 27, 0.4);
}

.card-inner:hover .card__button svg {
  animation: pulse-button 1.5s infinite;
}

/* Animations */
@keyframes shine-effect {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(250%); }
}

@keyframes pulse-button {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
/* --- V7 Advanced Filtering System --- */
.v7-filter-container {
  --s: 1.1em;
  --g: 12px;
  --c: var(--v7-accent);
  display: grid;
  grid-auto-rows: 1fr;
  gap: var(--g);
  position: relative;
}

.v7-filter-container:before {
  content: "";
  position: absolute;
  height: calc(var(--s) / 2);
  left: calc(var(--s) / 4 + var(--_x, 0px));
  top: calc(var(--s) / 4);
  background: var(--c);
  border-radius: 50%;
  aspect-ratio: 1;
  transition: 0.4s, left cubic-bezier(0.1, -2000, 0.7, -2000) 0.4s;
}

.v7-filter-container label {
  display: inline-flex;
  line-height: var(--s);
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: var(--v7-text-muted);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.v7-filter-container label:hover {
  color: #fff;
}

.v7-filter-container input {
  height: var(--s);
  aspect-ratio: 1;
  border: calc(var(--s) / 8) solid rgba(255,255,255,0.2);
  border-radius: 50%;
  outline-offset: calc(var(--s) / 10);
  padding: calc(var(--s) / 8);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
  transition: 0.3s;
  background: rgba(255,255,255,0.05);
}

.v7-filter-container input:checked {
  --_c: var(--c);
  border-color: var(--c);
}

.v7-filter-container:not(:has(input:checked)):before {
  --_i: -1;
  opacity: 0;
}

.v7-filter-container:has(input:checked):before {
  opacity: 1;
  transform: translateY(calc(var(--_i) * (var(--s) + var(--g))));
}

.v7-filter-container:has(label:nth-child(1) input:checked):before { --_i: 0; --_x: 0.02px; }
.v7-filter-container:has(label:nth-child(2) input:checked):before { --_i: 1; --_x: 0.04px; }
.v7-filter-container:has(label:nth-child(3) input:checked):before { --_i: 2; --_x: 0.06px; }
.v7-filter-container:has(label:nth-child(4) input:checked):before { --_i: 3; --_x: 0.08px; }
.v7-filter-container:has(label:nth-child(5) input:checked):before { --_i: 4; --_x: 0.1px; }
.v7-filter-container:has(label:nth-child(6) input:checked):before { --_i: 5; --_x: 0.12px; }
.v7-filter-container:has(label:nth-child(7) input:checked):before { --_i: 6; --_x: 0.14px; }
.v7-filter-container:has(label:nth-child(8) input:checked):before { --_i: 7; --_x: 0.16px; }

/* Apply Button */
.button-v7 {
  height: 45px;
  width: 100%;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  background: transparent;
}

.button-v7:hover {
  box-shadow: 0 0 30px rgba(208, 2, 27, 0.3);
}

.type-apply::after {
  content: "Apply Filters";
  height: 45px;
  width: 100%;
  background-color: var(--v7-accent);
  color: #fff;
  position: absolute;
  top: 0; left: 0;
  transform: translateY(45px);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
}

.type-apply::before {
  content: "Ready?";
  height: 45px;
  width: 100%;
  background-color: rgba(255,255,255,0.05);
  color: var(--v7-accent);
  position: absolute;
  top: 0; left: 0;
  transform: translateY(0) scale(1.1);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
  border: 1px solid var(--v7-glass-border);
  border-radius: 12px;
}

.type-apply:hover::after { transform: translateY(0); }
.type-apply:hover::before { transform: translateY(-45px) scale(0) rotate(10deg); }

/* Sort Menu */
.v7-sort-menu {
  font-size: 14px;
  color: #fff;
  width: fit-content;
  display: flex;
  list-style: none;
  margin: 0; padding: 0;
}

.v7-sort-menu .item { position: relative; }

.v7-sort-menu .link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--v7-glass-border);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
  color: #fff;
}

.v7-sort-menu .link::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--v7-accent);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 11px;
}

.v7-sort-menu .link svg {
  width: 12px;
  height: 12px;
  fill: #fff;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.v7-sort-menu .submenu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 0;
  width: 200px;
  background: #0a0a0a;
  border-radius: 0 0 16px 16px;
  border: 1px solid var(--v7-glass-border);
  border-top: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 100;
  padding: 0;
  list-style: none;
}

.v7-sort-menu .item:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.v7-sort-menu .item:hover .link {
  border-color: var(--v7-accent);
  border-radius: 12px 12px 0 0;
}

.v7-sort-menu .item:hover .link::after { transform: scaleX(1); }
.v7-sort-menu .item:hover .link svg { transform: rotate(-180deg); }

.v7-sort-menu .submenu-link {
  display: block;
  padding: 12px 20px;
  color: var(--v7-text-muted);
  text-decoration: none;
  position: relative;
  transition: 0.3s;
  text-align: left;
}

.v7-sort-menu .submenu-link:hover {
  color: #fff;
  padding-left: 25px;
}

.v7-sort-menu .submenu-link::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 100%;
  background: var(--v7-accent);
  transform: scaleY(0);
  transition: 0.3s;
}

.v7-sort-menu .submenu-link:hover::before { transform: scaleY(1); }

/* ==========================================================================
   V7 PACKAGE DETAIL OVERHAUL (Accordions & Detailed Cards)
   ========================================================================== */

/* Itinerary Accordion */
.v7-itinerary-accordion .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 15px;
}
.v7-itinerary-accordion .accordion-button {
    background: #fff;
    border: 1px solid var(--v7-light-border);
    border-radius: 16px !important;
    padding: 20px 25px;
    font-weight: 700;
    color: var(--v7-light-text);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}
.v7-itinerary-accordion .accordion-button:not(.collapsed) {
    background: #fff;
    color: var(--v7-accent);
    box-shadow: 0 8px 20px rgba(208, 2, 27, 0.08);
}
.v7-itinerary-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2364748b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.v7-itinerary-accordion .accordion-body {
    background: #fff;
    border: 1px solid var(--v7-light-border);
    border-top: none;
    border-radius: 0 0 16px 16px;
    margin-top: -10px;
    padding: 30px 25px 25px;
    color: var(--v7-light-muted);
    line-height: 1.8;
}
.v7-day-badge {
    background: var(--v7-accent);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 0.8rem;
    font-weight: 800;
}

/* Detailed Horizontal Cards (Hotels/Activities) */
.v7-detailed-card {
    background: #fff;
    border: 1px solid var(--v7-light-border);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 25px;
    display: flex;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.v7-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    border-color: var(--v7-accent);
}
.v7-card-img-wrap {
    width: 320px;
    min-height: 240px;
    position: relative;
    flex-shrink: 0;
}
.v7-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.v7-card-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.v7-card-tag {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--v7-accent);
    margin-bottom: 8px;
    display: block;
}
.v7-card-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--v7-light-text);
    margin-bottom: 5px;
}
.v7-card-meta {
    font-size: 0.85rem;
    color: var(--v7-light-muted);
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    align-items: center;
}
.v7-card-highlights {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.v7-card-highlights li {
    font-size: 0.85rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
}
.v7-card-highlights li i {
    color: #22c55e;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .v7-detailed-card { flex-direction: column; }
    .v7-card-img-wrap { width: 100%; height: 200px; }
}

/* Enquiry Sidebar Premium */
.v7-enquiry-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 30px; padding: 35px; position: sticky; top: 100px; z-index: 10; box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.v7-price-badge { background: #1e293b; color: #fff; padding: 25px; border-radius: 20px; text-align: center; margin-bottom: 25px; }
.v7-price-badge .price { font-size: 2.2rem; font-weight: 800; color: #ff2d46; display: block; }
.v7-enquiry-form input, .v7-enquiry-form textarea { width: 100%; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; padding: 12px 15px; color: #1e293b; margin-bottom: 15px; transition: 0.3s; }
.v7-enquiry-form input:focus, .v7-enquiry-form textarea:focus { border-color: var(--v7-accent); outline: none; background: #fff; box-shadow: 0 0 0 4px rgba(208, 2, 27, 0.05); }

/* ==========================================================================
   V7 ULTRA PREMIUM REDESIGN (Phase 2)
   ========================================================================== */

/* Modern Hero */
.v7-hero-modern {
    position: relative;
    height: 75vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-radius: 0 0 50px 50px;
    margin-top: 80px;
    margin-bottom: -80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.v7-hero-modern::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}
.v7-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 30px;
}
.v7-hero-subtitle {
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 25px;
    opacity: 0.9;
    color: var(--v7-accent);
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.2);
}
.v7-hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 30px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Floating Info Bar */
.v7-info-bar-wrap {
    position: relative;
    z-index: 10;
    margin-bottom: 60px;
    transform: translateY(-20px);
}
.v7-info-bar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 35px;
    padding: 30px 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.02);
}
.v7-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s;
}
.v7-info-item:hover {
    transform: translateY(-5px);
}
.v7-info-label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--v7-light-muted);
}
.v7-info-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--v7-light-text);
}
.v7-info-icon {
    font-size: 1.4rem;
    color: var(--v7-accent);
    margin-bottom: 8px;
    background: linear-gradient(135deg, rgba(208, 2, 27, 0.1) 0%, rgba(208, 2, 27, 0.05) 100%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    border: 1px solid rgba(208, 2, 27, 0.1);
}

/* Premium Section Layout */
.v7-section-card {
    background: #fff;
    border-radius: 40px;
    padding: 50px;
    margin-bottom: 40px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.v7-section-card .section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 40px;
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #1e293b !important;
}
.v7-section-card .section-title span {
    color: #d0021b !important;
}

/* Price Sidebar Premium */
.v7-sticky-sidebar {
    position: sticky;
    top: 110px;
}
.v7-price-card {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    border-radius: 40px;
    padding: 45px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255,255,255,0.1);
}
.v7-price-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0; width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
}
.v7-price-card .label { font-size: 0.85rem; font-weight: 600; opacity: 0.8; text-transform: uppercase; letter-spacing: 1px; }
.v7-price-card .amount { font-size: 3.5rem; font-weight: 900; color: #ff385c; line-height: 1; margin: 20px 0; text-shadow: 0 5px 15px rgba(255, 56, 92, 0.3); }
.v7-price-card .subtext { font-size: 0.85rem; opacity: 0.7; line-height: 1.5; }

.btn-v7-primary {
    background: var(--v7-accent);
    color: #fff;
    border: none;
    border-radius: 18px;
    padding: 18px 30px;
    width: 100%;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 20px rgba(208, 2, 27, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-v7-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(208, 2, 27, 0.3);
    color: #fff;
}

/* Mobile Sticky Bottom Bar */
.v7-mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 15px 20px;
    z-index: 1000;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
}
@media (max-width: 991px) {
    .v7-mobile-bottom-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    body { padding-bottom: 90px; }
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .v7-info-bar { flex-wrap: wrap; gap: 20px; border-radius: 20px; padding: 20px; transform: translateY(-10px); }
    .v7-info-item { width: 45%; }
    .v7-section-card { padding: 30px; border-radius: 30px; margin-bottom: 30px; }
    .v7-hero-modern { height: 60vh; border-radius: 0 0 30px 30px; background-attachment: scroll; }
    .v7-hero-title { font-size: 2.5rem; }
}

/* ═══════════════════════════════════════════════════════
   PREMIUM ITINERARY — Timeline with Transfer Cards
   ═══════════════════════════════════════════════════════ */

/* Accordion Premium Styling */
.v7-itinerary-accordion .accordion-item {
    border: none !important;
    border-radius: 16px !important;
    margin-bottom: 16px;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.v7-itinerary-accordion .accordion-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

/* Day Badge — Gradient Circle */
.v7-day-badge {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d0021b 0%, #ff4757 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(208, 2, 27, 0.3);
    transition: all 0.3s ease;
}
.accordion-button:not(.collapsed) .v7-day-badge {
    box-shadow: 0 6px 20px rgba(208, 2, 27, 0.4);
    transform: scale(1.1);
}

/* Accordion Header */
.v7-itinerary-accordion .accordion-button {
    padding: 18px 24px;
    font-weight: 600;
    font-size: 1rem;
    color: #1e293b !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    gap: 14px;
    letter-spacing: -0.01em;
}
.v7-itinerary-accordion .accordion-button:not(.collapsed) {
    color: #d0021b !important;
    background: linear-gradient(135deg, rgba(208, 2, 27, 0.03), rgba(255, 71, 87, 0.02)) !important;
}
.v7-itinerary-accordion .accordion-button::after {
    background-size: 16px;
    transition: transform 0.3s ease;
}

/* Accordion Body */
.v7-itinerary-accordion .accordion-body {
    padding: 0 24px 24px 24px;
}
.v7-itinerary-accordion .accordion-body > p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #475569;
    padding: 16px 20px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 3px solid #d0021b;
}

/* ═══ Transfer / Excursion Cards ═══ */
.v7-transfer-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fafbff 0%, #f0f4ff 100%);
    border-radius: 12px;
    border: 1px solid rgba(30, 64, 175, 0.06);
    transition: all 0.25s ease;
}
.v7-transfer-card:hover {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
    border-color: rgba(30, 64, 175, 0.12);
    transform: translateX(4px);
}
.v7-transfer-card .icon-circle {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-top: 2px;
}
.v7-transfer-card .icon-circle.transfer {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    color: #dc2626;
}
.v7-transfer-card .icon-circle.excursion {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #d97706;
}
.v7-transfer-card .icon-circle.ferry {
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    color: #0284c7;
}
.v7-transfer-card .transfer-title {
    font-weight: 600;
    font-size: 0.88rem;
    color: #1e40af;
    line-height: 1.4;
}
.v7-transfer-card .vehicle-name {
    font-size: 0.78rem;
    color: #64748b;
    margin-top: 2px;
}
.v7-transfer-card .type-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 6px;
    background: rgba(208, 2, 27, 0.08);
    color: #d0021b;
}
.v7-transfer-card .type-badge.ferry {
    background: rgba(2, 132, 199, 0.08);
    color: #0284c7;
}

/* ═══ Hotel Stay Card ═══ */
.v7-hotel-stay-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    margin: 10px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border-radius: 12px;
    border: 1px solid rgba(22, 163, 74, 0.08);
    transition: all 0.25s ease;
}
.v7-hotel-stay-card:hover {
    transform: translateX(4px);
    border-color: rgba(22, 163, 74, 0.15);
}
.v7-hotel-stay-card .icon-circle {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.v7-hotel-stay-card .hotel-title {
    font-weight: 600;
    font-size: 0.88rem;
    color: #166534;
}
.v7-hotel-stay-card .room-type {
    font-size: 0.78rem;
    color: #64748b;
    margin-top: 2px;
}

/* ═══ Meals Bar ═══ */
.v7-meals-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 14px 18px;
    margin-top: 10px;
    background: #fafbff;
    border-radius: 12px;
    border: 1px dashed #e2e8f0;
}
.v7-meal-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.v7-meal-item i {
    font-size: 1.15rem;
}
.v7-meal-item.included i { color: #16a34a; }
.v7-meal-item.not-included i { color: #cbd5e1; }
.v7-meal-item .meal-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: #334155;
}
.v7-meal-item .meal-status {
    font-size: 0.72rem;
    font-weight: 600;
}
.v7-meal-item.included .meal-status { color: #16a34a; }
.v7-meal-item.not-included .meal-status { color: #94a3b8; text-decoration: line-through; }

/* ═══ Section Titles ═══ */
.v7-section-card .section-title {
    color: #1e293b !important;
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}
.v7-section-card .section-title span {
    color: #d0021b !important;
    background: linear-gradient(135deg, #d0021b, #ff4757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.v7-section-card .section-title i {
    color: #d0021b;
    margin-right: 10px;
    font-size: 1.4rem;
}

/* ═══ Premium Sidebar ═══ */
.v7-sidebar-card {
    position: sticky;
    top: 90px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.v7-price-header {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 28px 24px;
    text-align: center;
}
.v7-price-header .price-label {
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}
.v7-price-header .price-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: #f87171;
    line-height: 1.1;
    margin: 8px 0 6px;
}
.v7-price-header .price-subtext {
    font-size: 0.78rem;
    color: #64748b;
}

/* ═══ Micro Animations ═══ */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-soft {
    0%, 100% { box-shadow: 0 4px 15px rgba(208,2,27,0.3); }
    50% { box-shadow: 0 4px 25px rgba(208,2,27,0.5); }
}
.v7-transfer-card { animation: slideInLeft 0.4s ease-out both; }
.v7-transfer-card:nth-child(2) { animation-delay: 0.1s; }
.v7-transfer-card:nth-child(3) { animation-delay: 0.2s; }
.v7-hotel-stay-card { animation: slideInLeft 0.4s ease-out 0.3s both; }
.v7-meals-bar { animation: slideInUp 0.4s ease-out 0.4s both; }

/* ═══ Location Badge ═══ */
.v7-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: #f1f5f9;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 14px;
}
.v7-location-badge i {
    color: #d0021b;
    font-size: 0.9rem;
}

/* ═══ Premium Card Hover ═══ */
.v7-detailed-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.v7-detailed-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

/* ═══ Activity Card Premium ═══ */
.activity-h-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}
.activity-h-card:hover {
    border-color: #d0021b;
    box-shadow: 0 8px 25px rgba(208, 2, 27, 0.08);
    transform: translateY(-3px);
}
