/* ============================================
   GALLERY HERO SECTION (Gallery Style)
   ============================================ */

.gallery-hero-section {
    background-color: var(--white);
    padding: var(--space-16);
}

.gallery-hero-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-16);
    max-width: 100%;
}

.gallery-main-large {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 16 / 10;
    min-height: 400px;
}

.gallery-item-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.gallery-main-large .gallery-item-wrapper {
    border-radius: var(--radius-lg);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform var(--duration-normal) var(--ease-standard);
}

.gallery-main-large .gallery-image:hover {
    transform: scale(1.05);
}

/* Side Gallery Container */
.gallery-side-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-16);
}

.gallery-side-item {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--duration-normal) var(--ease-standard);
    border: 2px solid transparent;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-side-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.gallery-side-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15), var(--shadow-lg);
}

.gallery-side-item .gallery-image {
    cursor: pointer;
}

.gallery-side-item .gallery-image:hover {
    transform: scale(1.08);
}

/* See All Photos Badge */
.see-all-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    transition: background var(--duration-normal) var(--ease-standard);
    z-index: 5;
}

.gallery-side-item:hover .see-all-badge {
    background: rgba(0, 0, 0, 0.7);
}

.badge-content {
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
}

.badge-content i {
    font-size: var(--font-size-2xl);
}

.badge-content span {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-normal);
}

/* ============================================
   LIGHTBOX POPUP MODAL
   ============================================ */

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration-normal) var(--ease-standard),
                visibility var(--duration-normal) var(--ease-standard);
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
}

/* Close Button */
.lightbox-close {
    position: absolute;
    top: var(--space-16);
    right: var(--space-16);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: var(--space-40);
    height: var(--space-40);
    border-radius: var(--radius-full);
    color: white;
    font-size: var(--font-size-xl);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast) var(--ease-standard);
    z-index: 100;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Main Image Area */
.lightbox-main-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--space-24);
}

.lightbox-main-image {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

/* Navigation Buttons */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: var(--space-48);
    height: var(--space-48);
    border-radius: var(--radius-full);
    color: white;
    font-size: var(--font-size-xl);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast) var(--ease-standard);
    z-index: 50;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: var(--space-16);
}

.lightbox-next {
    right: var(--space-16);
}

/* Controls Bar */
.lightbox-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-16);
    padding: var(--space-16);
    background: rgba(0, 0, 0, 0.5);
    color: white;
}

.lightbox-counter {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    min-width: 60px;
}

.lightbox-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: var(--space-8) var(--space-16);
    border-radius: var(--radius-base);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-8);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    transition: all var(--duration-fast) var(--ease-standard);
    font-family: var(--font-family-base);
}

.lightbox-btn:hover,
.lightbox-btn.active {
    background: rgba(0, 123, 255, 0.6);
    border-color: var(--primary);
}

.lightbox-btn i {
    font-size: var(--font-size-lg);
}

/* Thumbnails Section */
.lightbox-thumbnails {
    background: rgba(0, 0, 0, 0.3);
    padding: var(--space-12);
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    transition: all var(--duration-normal) var(--ease-standard);
}

.lightbox-thumbnails.hidden {
    display: none;
}

.thumbnails-wrapper {
    display: flex;
    gap: var(--space-12);
    padding: var(--space-8);
}

.lightbox-thumb {
    min-width: 80px;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--duration-fast) var(--ease-standard);
    opacity: 0.6;
}

.lightbox-thumb:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.lightbox-thumb.active {
    border-color: var(--primary);
    opacity: 1;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3);
}

.lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   BREADCRUMBS SECTION
   ============================================ */

.breadcrumbs-section {
    background-color: var(--light);
    padding: var(--space-16);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.breadcrumbs-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs a {
    color: var(--primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    transition: color var(--duration-fast) var(--ease-standard);
}

.breadcrumbs a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.breadcrumbs .separator {
    color: var(--gray);
    margin: 0 var(--space-4);
}

.breadcrumbs .current {
    color: var(--gray-dark);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .gallery-hero-wrapper {
        grid-template-columns: 1.5fr 1fr;
        gap: var(--space-12);
    }

    .gallery-main-large {
        min-height: 350px;
    }

    .gallery-side-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large Tablet */
@media (max-width: 768px) {
    .gallery-hero-section {
        padding: var(--space-12);
    }

    .gallery-hero-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

    .gallery-main-large {
        min-height: 300px;
        aspect-ratio: 16 / 9;
    }

    .gallery-side-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-12);
    }

    .gallery-side-item {
        aspect-ratio: 1;
    }

    .lightbox-main-wrapper {
        padding: var(--space-16);
    }

    .lightbox-nav {
        width: var(--space-40);
        height: var(--space-40);
        font-size: var(--font-size-lg);
    }

    .breadcrumbs-section {
        padding: var(--space-12);
    }
}

/* Mobile */
@media (max-width: 640px) {
    .gallery-hero-section {
        padding: var(--space-12);
    }

    .gallery-main-large {
        min-height: 250px;
        aspect-ratio: 16 / 9;
    }

    .gallery-side-container {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-8);
    }

    .gallery-side-item {
        border-radius: var(--radius-md);
    }

    .lightbox-main-wrapper {
        padding: var(--space-12);
    }

    .lightbox-main-image {
        max-height: 75vh;
    }

    .lightbox-close {
        top: var(--space-8);
        right: var(--space-8);
        width: var(--space-36);
        height: var(--space-36);
    }

    .lightbox-nav {
        width: var(--space-36);
        height: var(--space-36);
        font-size: var(--font-size-md);
    }

    .lightbox-controls {
        flex-direction: column;
        gap: var(--space-8);
        padding: var(--space-12);
    }

    .lightbox-btn {
        padding: var(--space-6) var(--space-12);
        font-size: var(--font-size-xs);
    }

    .badge-content i {
        font-size: var(--font-size-xl);
    }

    .badge-content span {
        font-size: var(--font-size-xs);
    }

    .breadcrumbs-section {
        padding: var(--space-8);
    }

    .breadcrumbs a {
        font-size: var(--font-size-xs);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .gallery-hero-section {
        padding: var(--space-8);
    }

    .gallery-main-large {
        min-height: 200px;
        aspect-ratio: 16 / 10;
    }

    .gallery-side-container {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-8);
    }

    .gallery-side-item {
        border-radius: var(--radius-base);
    }

    .lightbox-thumbnails {
        padding: var(--space-8);
    }

    .thumbnails-wrapper {
        gap: var(--space-8);
    }

    .lightbox-thumb {
        min-width: 60px;
        width: 60px;
        height: 60px;
    }
}
/* ============================================
   PACKAGE CONTENT SECTION - MODERN DESIGN
   ============================================ */

.package-content-section {
  padding: var(--space-48) var(--space-20);
  background: linear-gradient(to bottom, #fafbfc 0%, #ffffff 100%);
}

.package-content-wrapper {
  max-width: var(--container-xl);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-32);
}

/* ============================================
   LEFT COLUMN - MAIN CONTENT (75%)
   ============================================ */

.package-main-content {
  width: 100%;
}

/* Package Title */
.package-title-block {
  margin-bottom: var(--space-40);
}

.package-title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--dark);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
}

/* Trip Details Grid */
.trip-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-20);
  margin-bottom: var(--space-48);
}

.detail-card {
  background: var(--white);
  border: 1px solid #e8ebef;
  border-radius: var(--radius-lg);
  padding: var(--space-20);
  display: flex;
  align-items: center;
  gap: var(--space-16);
  transition: all var(--duration-normal) var(--ease-standard);
  box-shadow: var(--shadow-sm);
}

.detail-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}

.detail-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue) 0%, #1443a8 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-icon i {
  color: var(--white);
  font-size: var(--font-size-xl);
}

.detail-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.detail-label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.detail-value {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-semibold);
  color: var(--dark);
  line-height: var(--line-height-tight);
}

/* Content Placeholder */
.content-placeholder {
  background: #f8f9fa;
  border: 2px dashed #dee2e6;
  border-radius: var(--radius-lg);
  padding: var(--space-40);
  text-align: center;
}

.content-placeholder p {
  color: var(--gray);
  font-size: var(--font-size-base);
  margin: 0;
}

/* ============================================
   RIGHT COLUMN - SIDEBAR (25%)
   ============================================ */

.package-sidebar {
  width: 100%;
}

.sidebar-sticky-content {
  position: sticky;
  top: var(--space-20);
}

/* Trip Price Card */
.trip-price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid #e8ebef;
}

.price-badge {
  background: linear-gradient(135deg, var(--blue) 0%, #1443a8 100%);
  color: var(--white);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  text-align: center;
  padding: var(--space-12) var(--space-16);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-display {
  padding: var(--space-32) var(--space-24);
  text-align: center;
  border-bottom: 1px solid #e8ebef;
}

.price-label {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--gray);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-amount {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--blue);
  line-height: var(--line-height-tight);
  margin: 0;
}

.price-unit {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-normal);
  color: var(--gray);
  margin-top: var(--space-8);
}

/* Group Price Section */
.group-price-section {
  border-bottom: 1px solid #e8ebef;
}

.group-price-toggle {
  width: 100%;
  background: transparent;
  border: none;
  padding: var(--space-20) var(--space-24);
  cursor: pointer;
  transition: background-color var(--duration-normal) var(--ease-standard);
}

.group-price-toggle:hover {
  background-color: #f8f9fa;
}

.group-price-toggle.active {
  background-color: #f0f4f8;
}

.toggle-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toggle-title {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--dark);
}

.toggle-icon {
  color: var(--blue);
  font-size: var(--font-size-sm);
  transition: transform var(--duration-normal) var(--ease-standard);
}

/* Group Price Content */
.group-price-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) var(--ease-standard);
}

.group-price-content.open {
  max-height: 500px;
}

.group-price-table {
  width: 100%;
  border-collapse: collapse;
}

.group-price-table tbody tr {
  border-top: 1px solid #e8ebef;
}

.group-price-table tbody tr:last-child {
  border-bottom: none;
}

.group-price-table td {
  padding: var(--space-16) var(--space-24);
}

.price-qty {
  font-size: var(--font-size-sm);
  color: var(--gray-dark);
  font-weight: var(--font-weight-medium);
}

.price-value {
  text-align: right;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--blue);
}

/* Action Buttons */
.price-actions {
  padding: var(--space-24);
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  padding: var(--space-16) var(--space-24);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  text-align: center;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-standard);
  border: none;
  text-decoration: none;
}

.btn-full {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, #1443a8 100%);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(30, 86, 165, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 86, 165, 0.35);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-secondary:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 86, 165, 0.25);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Mobile First - Price Card Appears First */
@media (max-width: 767px) {
  .package-content-wrapper {
    display: flex;
    flex-direction: column;
  }

  .package-sidebar {
    order: -1; /* Moves sidebar (price card) to the top */
    margin-bottom: var(--space-24);
  }
}

/* Tablet and Desktop (768px and up) */
@media (min-width: 768px) {
  .package-content-wrapper {
    grid-template-columns: 1fr 380px;
    gap: var(--space-40);
  }

  .trip-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large Desktop (1024px and up) */
@media (min-width: 1024px) {
  .package-content-wrapper {
    grid-template-columns: 1fr 400px;
  }

  .trip-details-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .package-title {
    font-size: 42px;
  }
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .package-content-section {
    padding: var(--space-32) var(--space-16);
  }

  .package-title {
    font-size: var(--font-size-3xl);
  }

  .trip-details-grid {
    grid-template-columns: 1fr;
    gap: var(--space-16);
  }

  .detail-card {
    padding: var(--space-16);
  }

  .detail-icon {
    width: 40px;
    height: 40px;
  }

  .detail-icon i {
    font-size: var(--font-size-lg);
  }

  .price-display {
    padding: var(--space-24) var(--space-20);
  }

  .price-amount {
    font-size: var(--font-size-3xl);
  }

  .sidebar-sticky-content {
    position: static;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .package-title {
    font-size: var(--font-size-2xl);
  }

  .price-actions {
    padding: var(--space-20);
  }

  .btn {
    padding: var(--space-12) var(--space-20);
    font-size: var(--font-size-sm);
  }
}
/* ============================================
   CONTENT SECTIONS - BASE STYLING
   ============================================ */

.highlights-section,
.description-section,
.post-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
    margin-bottom: var(--space-32);
}

/* ============================================
   SECTION HEADINGS - NO UNDERLINE
   ============================================ */

.section-heading {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--dark);
    margin: 0;
    padding: 0;
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
}

/* ============================================
   HIGHLIGHTS SECTION
   ============================================ */

.highlights-content {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--gray-dark);
}

.highlights-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.highlights-content ol {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: item;
}

.highlights-content li {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--gray-dark);
    margin: 0 0 var(--space-12) 0;
    padding: 0 0 0 var(--space-24);
    position: relative;
}

.highlights-content li:last-child {
    margin-bottom: 0;
}

/* Custom bullet point - Unordered */
.highlights-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--primary) 100%);
    border-radius: var(--radius-full);
}

/* Numbered bullets - Ordered */
.highlights-content ol li::before {
    content: counter(item);
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 0;
    width: var(--space-20);
    height: var(--space-20);
    background: linear-gradient(135deg, var(--blue) 0%, var(--primary) 100%);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
}

.highlights-content strong {
    font-weight: var(--font-weight-bold);
    color: var(--dark);
}

.highlights-content em {
    font-style: italic;
    color: var(--gray-dark);
}

/* ============================================
   DESCRIPTION SECTION
   ============================================ */

.description-content {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--gray-dark);
}

.description-content p {
    margin: 0 0 var(--space-16) 0;
    text-align: justify;
}

.description-content p:last-child {
    margin-bottom: 0;
}

.description-content strong {
    font-weight: var(--font-weight-bold);
    color: var(--dark);
}

.description-content em {
    font-style: italic;
    color: var(--gray-dark);
}

.description-content a {
    color: var(--blue);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: all var(--duration-fast) var(--ease-standard);
    position: relative;
}

.description-content a:hover {
    color: var(--primary);
}

.description-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue) 0%, var(--primary) 100%);
    transition: width var(--duration-normal) var(--ease-standard);
}

.description-content a:hover::after {
    width: 100%;
}

/* ============================================
   POST CONTENT - PROFESSIONAL TYPOGRAPHY
   ============================================ */

.content-typography {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--gray-dark);
}

/* Paragraphs */
.content-typography p {
    margin: 0 0 var(--space-16) 0;
    text-align: justify;
    hyphens: auto;
}

.content-typography p:first-child {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    color: var(--dark);
    line-height: var(--line-height-loose);
    margin-bottom: var(--space-20);
}

.content-typography p:last-child {
    margin-bottom: 0;
}

/* Headings - NO UNDERLINE */
.content-typography h1,
.content-typography h2,
.content-typography h3,
.content-typography h4,
.content-typography h5,
.content-typography h6 {
    margin: var(--space-24) 0 var(--space-16) 0;
    font-weight: var(--font-weight-bold);
    color: var(--dark);
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
    padding: 0;
    border: none;
}

.content-typography h1 {
    font-size: var(--font-size-4xl);
    margin-top: var(--space-32);
}

.content-typography h2 {
    font-size: var(--font-size-3xl);
}

.content-typography h3 {
    font-size: var(--font-size-2xl);
    color: var(--blue);
}

.content-typography h4 {
    font-size: var(--font-size-xl);
}

.content-typography h5 {
    font-size: var(--font-size-lg);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
}

.content-typography h6 {
    font-size: var(--font-size-base);
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
}

/* Strong & Emphasis */
.content-typography strong,
.content-typography b {
    font-weight: var(--font-weight-bold);
    color: var(--dark);
}

.content-typography em,
.content-typography i {
    font-style: italic;
    color: var(--gray-dark);
}

.content-typography mark {
    background: rgba(30, 86, 165, 0.15);
    padding: var(--space-2) var(--space-6);
    border-radius: var(--radius-sm);
}

/* ============================================
   LISTS
   ============================================ */

.content-typography ul {
    list-style: none;
    margin: var(--space-16) 0;
    padding: 0;
}

.content-typography ul li {
    margin: 0 0 var(--space-10) 0;
    padding: 0 0 0 var(--space-24);
    position: relative;
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--gray-dark);
}

.content-typography ul li:last-child {
    margin-bottom: 0;
}

/* Custom bullet point */
.content-typography ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--primary) 100%);
    border-radius: var(--radius-full);
}

/* Ordered lists */
.content-typography ol {
    list-style: none;
    margin: var(--space-16) 0;
    padding: 0;
    counter-reset: item;
}

.content-typography ol li {
    margin: 0 0 var(--space-10) 0;
    padding: 0 0 0 var(--space-32);
    position: relative;
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--gray-dark);
    counter-increment: item;
}

.content-typography ol li:last-child {
    margin-bottom: 0;
}

/* Numbered bullets */
.content-typography ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: var(--space-24);
    height: var(--space-24);
    background: linear-gradient(135deg, var(--blue) 0%, var(--primary) 100%);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
}

/* ============================================
   BLOCKQUOTES
   ============================================ */

.content-typography blockquote {
    margin: var(--space-20) 0;
    padding: var(--space-16) var(--space-20);
    border-left: 4px solid var(--blue);
    background: rgba(30, 86, 165, 0.05);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--dark);
    font-size: var(--font-size-lg);
}

.content-typography blockquote p {
    margin: 0;
}

/* ============================================
   CODE
   ============================================ */

.content-typography code {
    background: var(--light);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: var(--space-2) var(--space-6);
    border-radius: var(--radius-sm);
    font-family: 'Courier New', monospace;
    font-size: var(--font-size-sm);
    color: var(--dark);
}

.content-typography pre {
    background: var(--light);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--blue);
    padding: var(--space-16);
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin: var(--space-16) 0;
    font-size: var(--font-size-sm);
}

.content-typography pre code {
    background: none;
    border: none;
    padding: 0;
}

/* ============================================
   TABLES
   ============================================ */

.content-typography table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-16) 0;
    font-size: var(--font-size-sm);
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.content-typography table th {
    background: linear-gradient(135deg, var(--blue) 0%, var(--primary) 100%);
    color: var(--white);
    padding: var(--space-12);
    text-align: left;
    font-weight: var(--font-weight-bold);
}

.content-typography table td {
    padding: var(--space-12);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.content-typography table tr:hover {
    background: rgba(30, 86, 165, 0.05);
}

/* ============================================
   HORIZONTAL RULE
   ============================================ */

.content-typography hr {
    margin: var(--space-24) 0;
    border: none;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

/* ============================================
   IMAGES
   ============================================ */

.content-typography img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: var(--space-16) 0;
    box-shadow: var(--shadow-sm);
}

.content-typography img:hover {
    box-shadow: var(--shadow-lg);
}

/* ============================================
   LINKS
   ============================================ */

.content-typography a {
    color: var(--blue);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: all var(--duration-fast) var(--ease-standard);
    position: relative;
}

.content-typography a:hover {
    color: var(--primary);
}

.content-typography a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue) 0%, var(--primary) 100%);
    transition: width var(--duration-normal) var(--ease-standard);
}

.content-typography a:hover::after {
    width: 100%;
}

/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */

@media (max-width: 1024px) {
    .section-heading {
        font-size: var(--font-size-xl);
    }

    .highlights-content,
    .description-content,
    .content-typography {
        font-size: var(--font-size-base);
    }

    .content-typography h1 {
        font-size: var(--font-size-3xl);
    }

    .content-typography h2 {
        font-size: var(--font-size-2xl);
    }

    .content-typography h3 {
        font-size: var(--font-size-xl);
    }

    .highlights-content li,
    .content-typography ul li,
    .content-typography ol li {
        padding-left: var(--space-20);
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */

@media (max-width: 640px) {
    .highlights-section,
    .description-section,
    .post-content {
        gap: var(--space-12);
        margin-bottom: var(--space-24);
    }

    .section-heading {
        font-size: var(--font-size-lg);
    }

    .content-typography p {
        margin-bottom: var(--space-12);
        text-align: left;
    }

    .content-typography p:first-child {
        font-size: var(--font-size-base);
        margin-bottom: var(--space-16);
    }

    .content-typography h1 {
        font-size: var(--font-size-2xl);
        margin: var(--space-16) 0 var(--space-12) 0;
    }

    .content-typography h2 {
        font-size: var(--font-size-xl);
        margin: var(--space-14) 0 var(--space-8) 0;
    }

    .content-typography h3 {
        font-size: var(--font-size-lg);
    }

    .highlights-content li,
    .content-typography ul li {
        padding-left: var(--space-20);
        margin-bottom: var(--space-8);
        font-size: var(--font-size-base);
    }

    .highlights-content li::before,
    .content-typography ul li::before {
        top: 7px;
        width: 6px;
        height: 6px;
    }

    .content-typography ol li {
        padding-left: var(--space-24);
        margin-bottom: var(--space-8);
        font-size: var(--font-size-base);
    }

    .content-typography ol li::before {
        width: var(--space-20);
        height: var(--space-20);
        font-size: var(--font-size-xs);
    }

    .highlights-content ol li::before {
        width: var(--space-18);
        height: var(--space-18);
        font-size: var(--font-size-xs);
    }

    .content-typography blockquote {
        margin: var(--space-14) 0;
        padding: var(--space-12) var(--space-16);
        border-left-width: 3px;
        font-size: var(--font-size-base);
    }

    .content-typography pre {
        padding: var(--space-12);
        font-size: var(--font-size-xs);
        margin: var(--space-12) 0;
    }

    .content-typography table {
        font-size: var(--font-size-xs);
    }

    .content-typography table th,
    .content-typography table td {
        padding: var(--space-8);
    }

    .highlights-section,
    .description-section {
        margin-bottom: var(--space-20);
    }
}

/* ============================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ============================================ */

@media (max-width: 480px) {
    .section-heading {
        font-size: var(--font-size-md);
    }

    .content-typography p {
        font-size: var(--font-size-sm);
        margin-bottom: var(--space-10);
    }

    .content-typography h1 {
        font-size: var(--font-size-lg);
    }

    .content-typography h2 {
        font-size: var(--font-size-md);
    }

    .content-typography h3 {
        font-size: var(--font-size-base);
    }

    .highlights-content li,
    .content-typography ul li {
        padding-left: var(--space-18);
        font-size: var(--font-size-sm);
    }

    .highlights-content li::before,
    .content-typography ul li::before {
        width: 5px;
        height: 5px;
        top: 8px;
    }

    .content-typography ol li {
        padding-left: var(--space-20);
        font-size: var(--font-size-sm);
    }

    .content-typography ol li::before {
        width: var(--space-18);
        height: var(--space-18);
    }

    .highlights-content ol li::before {
        width: var(--space-16);
        height: var(--space-16);
        font-size: var(--font-size-xs);
    }

    .content-typography code {
        font-size: var(--font-size-xs);
    }

    .content-typography blockquote {
        padding: var(--space-10) var(--space-12);
        font-size: var(--font-size-sm);
    }
}

/* ============================================
   USEFUL INFO CONTENT - SIMPLE TEXT STYLE
   ============================================ */

.useful-info-content {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.useful-info-content p {
    margin: 0 0 16px 0;
    text-align: justify;
}

.useful-info-content p:last-child {
    margin-bottom: 0;
}

.useful-info-content strong {
    font-weight: 600;
    color: #000;
}

.useful-info-content em {
    font-style: italic;
    color: #1e56a5;
}

.useful-info-content mark {
    background: rgba(30, 86, 165, 0.15);
    padding: 2px 6px;
    border-radius: 4px;
}

/* ============================================
   LISTS - UNORDERED WITH CUSTOM BULLETS
   ============================================ */

.useful-info-content ul {
    list-style: none;
    margin: 16px 0;
    padding: 0;
}

.useful-info-content ul li {
    margin: 0 0 10px 0;
    padding: 0 0 0 24px;
    position: relative;
}

.useful-info-content ul li:last-child {
    margin-bottom: 0;
}

/* Custom blue gradient bullet point */
.useful-info-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #1e56a5 0%, #007bff 100%);
    border-radius: 50%;
}

/* ============================================
   LISTS - ORDERED
   ============================================ */

.useful-info-content ol {
    list-style: none;
    margin: 16px 0;
    padding: 0;
    counter-reset: item;
}

.useful-info-content ol li {
    margin: 0 0 10px 0;
    padding: 0 0 0 32px;
    position: relative;
    counter-increment: item;
}

.useful-info-content ol li:last-child {
    margin-bottom: 0;
}

/* Numbered bullets */
.useful-info-content ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #1e56a5 0%, #007bff 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* ============================================
   HEADINGS INSIDE CONTENT
   ============================================ */

.useful-info-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1e56a5;
    margin: 24px 0 12px 0;
    line-height: 1.3;
}

.useful-info-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin: 16px 0 8px 0;
}

/* ============================================
   BLOCKQUOTES
   ============================================ */

.useful-info-content blockquote {
    margin: 16px 0;
    padding: 12px 16px;
    border-left: 4px solid #1e56a5;
    background: rgba(30, 86, 165, 0.05);
    border-radius: 0 4px 4px 0;
    font-style: italic;
    color: #333;
}

.useful-info-content blockquote p {
    margin: 0;
}

/* ============================================
   LINKS
   ============================================ */

.useful-info-content a {
    color: #1e56a5;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s;
    position: relative;
}

.useful-info-content a:hover {
    color: #007bff;
}

.useful-info-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1e56a5 0%, #007bff 100%);
    transition: width 0.25s;
}

.useful-info-content a:hover::after {
    width: 100%;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 640px) {
    .useful-info-content {
        font-size: 14px;
    }

    .useful-info-content p {
        text-align: left;
        margin-bottom: 12px;
    }

    .useful-info-content ul li {
        margin-bottom: 8px;
    }

    .useful-info-content ol li {
        margin-bottom: 8px;
    }

    .useful-info-content h3 {
        font-size: 15px;
        margin: 16px 0 8px 0;
    }
}
/* ============================================
   ROUTE MAP SECTION
   ============================================ */

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: var(--space-20) 0;
    padding: var(--space-20);
    background: linear-gradient(135deg, rgba(30, 86, 165, 0.02) 0%, rgba(0, 123, 255, 0.01) 100%);
    border: 1px solid rgba(30, 86, 165, 0.1);
    border-radius: var(--radius-lg);
    transition: all var(--duration-normal) var(--ease-standard);
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: all var(--duration-normal) var(--ease-standard);
    cursor: zoom-in;
}

.image-container img:hover {
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

/* Zoomable image effect */
#zoomable-image {
    max-width: 100%;
    transition: transform 0.3s ease;
}

/* ============================================
   VIDEO SECTION - RESPONSIVE
   ============================================ */

.videopart {
    padding: var(--space-20) 0;
}

.videopart h2 {
    margin-bottom: var(--space-20);
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--dark);
}

/* Video Container */
.videopart iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(30, 86, 165, 0.1);
    transition: all var(--duration-normal) var(--ease-standard);
    display: block;
}

.videopart iframe:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(30, 86, 165, 0.2);
}

/* ============================================
   ROUTE MAP SECTION WRAPPER
   ============================================ */

.btnsection {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btnsection p {
    margin: 0;
    width: 100%;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (max-width: 1024px) {
    .image-container {
        padding: var(--space-16);
        margin: var(--space-16) 0;
    }

    .image-container img {
        border-radius: var(--radius-md);
    }

    .videopart {
        padding: var(--space-16) 0;
    }

    .videopart h2 {
        font-size: var(--font-size-xl);
        margin-bottom: var(--space-16);
    }

    .videopart iframe {
        min-height: 300px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 640px) {
    .image-container {
        padding: var(--space-14);
        margin: var(--space-14) 0;
        border-radius: var(--radius-md);
    }

    .image-container img {
        border-radius: var(--radius-sm);
    }

    .videopart {
        padding: var(--space-12) 0;
    }

    .videopart h2 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--space-14);
    }

    .videopart iframe {
        aspect-ratio: 16 / 9;
        min-height: 250px;
        border-radius: var(--radius-md);
    }

    .btnsection {
        padding: var(--space-10) 0;
        overflow: hidden;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE
   ============================================ */

@media (max-width: 480px) {
    .image-container {
        padding: var(--space-12);
        margin: var(--space-12) 0;
    }

    .videopart {
        padding: var(--space-8) 0;
    }

    .videopart h2 {
        font-size: var(--font-size-base);
        margin-bottom: var(--space-12);
    }

    .videopart iframe {
        min-height: 200px;
        border-radius: var(--radius-sm);
        aspect-ratio: 16 / 9;
    }

    .image-container img {
        border-radius: var(--radius-sm);
    }
}

/* ============================================
   DARK MODE SUPPORT
   ============================================ */

@media (prefers-color-scheme: dark) {
    .image-container {
        background: linear-gradient(135deg, rgba(30, 86, 165, 0.1) 0%, rgba(0, 123, 255, 0.05) 100%);
        border-color: rgba(30, 86, 165, 0.2);
    }

    .videopart iframe {
        border-color: rgba(30, 86, 165, 0.2);
    }
}

[data-color-scheme="dark"] .image-container {
    background: linear-gradient(135deg, rgba(30, 86, 165, 0.1) 0%, rgba(0, 123, 255, 0.05) 100%);
    border-color: rgba(30, 86, 165, 0.2);
}

[data-color-scheme="dark"] .videopart iframe {
    border-color: rgba(30, 86, 165, 0.2);
}

/* ============================================
   ACCESSIBILITY - FOCUS STATES
   ============================================ */

.videopart iframe:focus {
    outline: var(--focus-outline);
    outline-offset: 2px;
}

.image-container img:focus {
    outline: var(--focus-outline);
    outline-offset: 2px;
}

/* ============================================
   ANIMATION & TRANSITIONS
   ============================================ */

@keyframes slideInMap {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInVideo {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.image-container {
    animation: slideInMap var(--duration-normal) var(--ease-standard);
}

.videopart iframe {
    animation: slideInVideo var(--duration-normal) var(--ease-standard);
}
/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(30, 86, 165, 0.15);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-standard);
}

.faq-item:hover {
    border-color: rgba(30, 86, 165, 0.3);
    box-shadow: var(--shadow-sm);
}

.faq-item.active {
    border-color: var(--blue);
    box-shadow: 0 4px 16px rgba(30, 86, 165, 0.15);
}

/* ============================================
   FAQ QUESTION
   ============================================ */

.faq-question {
    display: flex;
    align-items: center;
    gap: var(--space-16);
    padding: var(--space-16) var(--space-20);
    background: linear-gradient(135deg, rgba(30, 86, 165, 0.02) 0%, rgba(0, 123, 255, 0.01) 100%);
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-standard);
    border: none;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(30, 86, 165, 0.08) 0%, rgba(0, 123, 255, 0.05) 100%);
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(30, 86, 165, 0.06) 0%, rgba(0, 123, 255, 0.04) 100%);
}

.faq-question h3 {
    margin: 0;
    flex: 1;
    font-weight: var(--font-weight-semibold);
    color: var(--dark);
    line-height: var(--line-height-tight);
}

.faq-question .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--space-32);
    height: var(--space-32);
    background: linear-gradient(135deg, var(--blue) 0%, var(--primary) 100%);
    color: var(--white);
    border-radius: var(--radius-md);
    flex-shrink: 0;
    font-size: var(--font-size-lg);
    transition: all var(--duration-normal) var(--ease-standard);
}

.faq-question:hover .icon {
    transform: scale(1.1);
}

/* ============================================
   FAQ ANSWER
   ============================================ */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-normal) var(--ease-standard);
}

.faq-item.active .faq-answer {
    max-height: 2000px;
}

.faq-answer-content {
    padding: 0 var(--space-20) var(--space-20) var(--space-20);
    border-top: 1px solid rgba(30, 86, 165, 0.1);
}

.faq-answer .highlights {
    padding: var(--space-16);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--gray-dark);
}

.faq-answer p {
    margin: 0 0 var(--space-12) 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 640px) {
    .faq-question {
        padding: var(--space-12) var(--space-14);
        gap: var(--space-10);
    }

    .faq-question h3 {
        font-size: var(--font-size-base);
    }

    .faq-question .icon {
        width: var(--space-28);
        height: var(--space-28);
    }

    .faq-answer .highlights {
        padding: var(--space-12);
    }
}
/* ====================================
   ITINERARY SECTION
   ==================================== */

.itinerary-section {
  padding: var(--space-48) 0;
  background: var(--white);
}

.container {
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 0 var(--space-16);
}

/* Section Header */
.itinerary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-32);
  flex-wrap: wrap;
  gap: var(--space-16);
}

.section-title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--dark);
  margin: 0;
  line-height: var(--line-height-tight);
}

/* Control Buttons */
.itinerary-controls {
  display: flex;
  gap: var(--space-8);
}

.btn-expand-all,
.btn-collapse-all {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-8) var(--space-16);
  background: var(--light);
  border: 1px solid #dee2e6;
  border-radius: var(--radius-base);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--dark);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-standard);
}

.btn-expand-all:hover,
.btn-collapse-all:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn-expand-all i,
.btn-collapse-all i {
  font-size: var(--font-size-xs);
}

/* Itinerary Note */
.itinerary-note {
  padding: var(--space-20);
  background: #f8f9fa;
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-base);
  margin-bottom: var(--space-32);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--gray-dark);
}

.itinerary-note p {
  margin: 0;
}

/* Itinerary List */
.itinerary-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}

/* Itinerary Item */
.itinerary-item {
  background: var(--white);
  border: 1px solid #e9ecef;
  border-radius: var(--radius-base);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-standard);
}

.itinerary-item:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}

/* Day Header Button */
.itinerary-header-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-16) var(--space-20);
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--duration-fast) var(--ease-standard);
}

.itinerary-header-btn:hover {
  background: #f8f9fa;
}

.itinerary-item.active .itinerary-header-btn {
  background: #f0f4ff;
  border-bottom: 1px solid #e9ecef;
}

.day-header-left {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  flex-wrap: wrap;
  flex: 1;
}

.day-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  padding: var(--space-6) var(--space-12);
  background: var(--blue);
  color: var(--white);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-base);
  white-space: nowrap;
}

.day-title {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-medium);
  color: var(--dark);
  line-height: var(--line-height-normal);
}

/* Toggle Icon */
.toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--gray);
  transition: transform var(--duration-normal) var(--ease-standard);
}

.itinerary-item.active .toggle-icon {
  transform: rotate(180deg);
}

/* Itinerary Content */
.itinerary-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) var(--ease-standard);
}

.itinerary-item.active .itinerary-content {
  max-height: 2000px;
}

.itinerary-content-inner {
  padding: var(--space-20);
}

/* Day Description */
.day-description {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--gray-dark);
  margin-bottom: var(--space-20);
}

.day-description p {
  margin-bottom: var(--space-12);
}

.day-description p:last-child {
  margin-bottom: 0;
}

.day-description ul,
.day-description ol {
  margin: var(--space-12) 0;
  padding-left: var(--space-24);
}

.day-description li {
  margin-bottom: var(--space-6);
  list-style: disc;
}

/* Day Details Grid */
.day-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-16);
  padding-top: var(--space-20);
  border-top: 1px solid #e9ecef;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-12);
}

.detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f0f4ff;
  color: var(--blue);
  border-radius: var(--radius-base);
  flex-shrink: 0;
}

.detail-icon i {
  font-size: var(--font-size-lg);
}

.detail-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.detail-label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
}

.detail-value {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: var(--dark);
  line-height: var(--line-height-normal);
}

/* ====================================
   RESPONSIVE
   ==================================== */

@media (max-width: 768px) {
  .itinerary-section {
    padding: var(--space-32) 0;
  }

  .itinerary-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-title {
    font-size: var(--font-size-2xl);
  }

  .itinerary-controls {
    width: 100%;
    justify-content: flex-start;
  }

  .btn-expand-all,
  .btn-collapse-all {
    flex: 1;
    justify-content: center;
  }

  .btn-expand-all span,
  .btn-collapse-all span {
    display: none;
  }

  .itinerary-header-btn {
    padding: var(--space-12) var(--space-16);
  }

  .day-header-left {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-8);
  }

  .day-number {
    font-size: var(--font-size-xs);
    min-width: 60px;
  }

  .day-title {
    font-size: var(--font-size-sm);
  }

  .itinerary-content-inner {
    padding: var(--space-16);
  }

  .day-description {
    font-size: var(--font-size-sm);
  }

  .day-details {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .detail-icon {
    width: 36px;
    height: 36px;
  }

  .detail-icon i {
    font-size: var(--font-size-md);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-12);
  }

  .section-title {
    font-size: var(--font-size-xl);
  }

  .itinerary-note {
    padding: var(--space-16);
    font-size: var(--font-size-sm);
  }
}
/* ====================================
   INCLUDE/EXCLUDE SECTION
   ==================================== */

.include-exclude-section {
  padding: var(--space-48) 0;
  background: #f8f9fa;
}

.section-title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--dark);
  margin: 0 0 var(--space-32) 0;
  line-height: var(--line-height-tight);
  text-align: center;
}

/* Grid Layout */
.include-exclude-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-32);
}

/* Wrappers */
.includes-wrapper,
.excludes-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-32);
  box-shadow: var(--shadow-md);
  transition: transform var(--duration-normal) var(--ease-standard),
              box-shadow var(--duration-normal) var(--ease-standard);
}

.includes-wrapper:hover,
.excludes-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Section Headers */
.section-header {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  margin-bottom: var(--space-24);
  padding-bottom: var(--space-16);
  border-bottom: 2px solid #e9ecef;
}

.header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-base);
  flex-shrink: 0;
}

.includes-header .header-icon {
  background: #d1f4e0;
  color: var(--success);
}

.excludes-header .header-icon {
  background: #ffe5e5;
  color: var(--danger);
}

.header-icon i {
  font-size: var(--font-size-xl);
}

.section-subtitle {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--dark);
  margin: 0;
  line-height: var(--line-height-tight);
}

/* Lists */
.include-list,
.exclude-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  list-style: none;
  margin: 0;
  padding: 0;
}

/* List Items */
.include-item,
.exclude-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-12);
  padding: var(--space-12);
  border-radius: var(--radius-base);
  transition: background var(--duration-fast) var(--ease-standard);
}

.include-item:hover {
  background: #f0f9f4;
}

.exclude-item:hover {
  background: #fff5f5;
}

/* Custom Bullets */
.custom-bullet {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
}

.tick-bullet {
  background: var(--success);
  color: var(--white);
}

.cross-bullet {
  background: var(--danger);
  color: var(--white);
}

/* Item Text */
.item-text {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  color: var(--gray-dark);
  line-height: var(--line-height-relaxed);
  flex: 1;
}

/* ====================================
   RESPONSIVE
   ==================================== */

@media (max-width: 768px) {
  .include-exclude-section {
    padding: var(--space-32) 0;
  }

  .section-title {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-24);
  }

  .include-exclude-grid {
    grid-template-columns: 1fr;
    gap: var(--space-24);
  }

  .includes-wrapper,
  .excludes-wrapper {
    padding: var(--space-24);
  }

  .header-icon {
    width: 40px;
    height: 40px;
  }

  .header-icon i {
    font-size: var(--font-size-lg);
  }

  .section-subtitle {
    font-size: var(--font-size-lg);
  }

  .include-list,
  .exclude-list {
    gap: var(--space-12);
  }

  .include-item,
  .exclude-item {
    padding: var(--space-10);
  }

  .custom-bullet {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }

  .item-text {
    font-size: var(--font-size-sm);
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-20);
  }

  .includes-wrapper,
  .excludes-wrapper {
    padding: var(--space-20);
    border-radius: var(--radius-base);
  }

  .section-header {
    gap: var(--space-10);
    margin-bottom: var(--space-20);
    padding-bottom: var(--space-12);
  }

  .header-icon {
    width: 36px;
    height: 36px;
  }

  .header-icon i {
    font-size: var(--font-size-md);
  }

  .section-subtitle {
    font-size: var(--font-size-md);
  }

  .include-list,
  .exclude-list {
    gap: var(--space-10);
  }

  .include-item,
  .exclude-item {
    gap: var(--space-10);
    padding: var(--space-8);
  }

  .custom-bullet {
    width: 20px;
    height: 20px;
  }

  .item-text {
    font-size: var(--font-size-xs);
  }
}
/* ====================================
   REVIEWS SECTION
   ==================================== */

.reviews-section {
  padding: var(--space-48) 0;
  background: var(--white);
}

/* Reviews Header */
.reviews-header {
  text-align: center;
  margin-bottom: var(--space-40);
}

.reviews-header .section-title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--dark);
  margin: 0 0 var(--space-24) 0;
  line-height: var(--line-height-tight);
}

/* Review Platforms */
.review-platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-16);
  flex-wrap: wrap;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-10) var(--space-20);
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: all var(--duration-normal) var(--ease-standard);
}

.platform-link i {
  font-size: var(--font-size-lg);
}

/* TripAdvisor Styling */
.platform-link.tripadvisor {
  background: #34e0a1;
  color: var(--white);
  border-color: #34e0a1;
}

.platform-link.tripadvisor:hover {
  background: #00af87;
  border-color: #00af87;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Google Styling */
.platform-link.google {
  background: #4285f4;
  color: var(--white);
  border-color: #4285f4;
}

.platform-link.google:hover {
  background: #1a73e8;
  border-color: #1a73e8;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--space-32);
}

/* Review Card */
.review-card {
  background: var(--white);
  border: 1px solid #e9ecef;
  border-radius: var(--radius-lg);
  padding: var(--space-24);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease-standard);
  position: relative;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

/* Review Header */
.review-header {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  margin-bottom: var(--space-20);
}

/* Reviewer Photo */
.reviewer-photo {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid #e9ecef;
}

.reviewer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-photo.placeholder {
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: var(--font-size-xl);
}

/* Reviewer Info */
.reviewer-info {
  flex: 1;
}

.reviewer-name {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--dark);
  margin: 0 0 var(--space-6) 0;
  line-height: var(--line-height-tight);
}

/* Review Rating */
.review-rating {
  display: flex;
  gap: var(--space-4);
}

.review-rating i {
  color: #ffc107;
  font-size: var(--font-size-sm);
}

/* Review Content */
.review-content {
  flex: 1;
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: var(--gray-dark);
  margin-bottom: var(--space-16);
}

.review-content p {
  margin: 0 0 var(--space-12) 0;
}

.review-content p:last-child {
  margin-bottom: 0;
}

/* Review Footer */
.review-footer {
  text-align: right;
  color: #e9ecef;
  font-size: var(--font-size-3xl);
}

.review-footer i {
  opacity: 0.3;
}

/* ====================================
   RESPONSIVE
   ==================================== */

@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-24);
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: var(--space-32) 0;
  }

  .reviews-header .section-title {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-20);
  }

  .reviews-header {
    margin-bottom: var(--space-32);
  }

  .review-platforms {
    gap: var(--space-12);
  }

  .platform-link {
    padding: var(--space-8) var(--space-16);
    font-size: var(--font-size-xs);
  }

  .platform-link i {
    font-size: var(--font-size-md);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: var(--space-20);
  }

  .review-card {
    padding: var(--space-20);
  }

  .reviewer-photo {
    width: 50px;
    height: 50px;
  }

  .reviewer-name {
    font-size: var(--font-size-md);
  }

  .review-rating i {
    font-size: var(--font-size-xs);
  }

  .review-content {
    font-size: var(--font-size-sm);
  }

  .review-footer {
    font-size: var(--font-size-2xl);
  }
}

@media (max-width: 480px) {
  .reviews-header .section-title {
    font-size: var(--font-size-xl);
  }

  .platform-link span {
    display: none;
  }

  .platform-link {
    padding: var(--space-8) var(--space-12);
  }

  .review-card {
    padding: var(--space-16);
  }

  .review-header {
    gap: var(--space-12);
    margin-bottom: var(--space-16);
  }

  .reviewer-photo {
    width: 45px;
    height: 45px;
  }

  .reviewer-name {
    font-size: var(--font-size-sm);
  }

  .review-content {
    font-size: var(--font-size-xs);
    margin-bottom: var(--space-12);
  }
}
