/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0061f2 0%, #6e00ff 100%);
    padding: 4rem 0;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  
  .page-header::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
  }
  
  .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .breadcrumb-item a:hover {
    color: #fff;
  }
  
  .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
  }
  
  .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
  }
  
  /* Cabin Types Section */
  .cabin-types-section {
    padding: 5rem 0 3rem;
    padding-bottom: 0px;
    background: #fff;
  }
  
  .cabin-types-nav {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
  }
  
  .cabin-types-nav h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
    position: relative;
    padding-bottom: 1rem;
  }
  
  .cabin-types-nav h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #ff7f50);
    border-radius: 2px;
  }
  
  .cabin-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .cabin-nav-btn {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    text-align: left;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .cabin-nav-btn:hover {
    background: rgba(255, 107, 107, 0.05);
    border-color: #ff6b6b;
    color: #ff6b6b;
  }
  
  .cabin-nav-btn.active {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff7f50 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
  }
  
  .cabin-preview {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    
  }
  
  .cabin-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: all 0.5s ease;
  }
  
  /* Cabin Features and Price Section */
  .cabin-features-section {
    padding: 3rem 0 10rem;
    background: #fff;
  }
  
  .cabin-price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 2rem;
  }
  
  .cabin-price-table thead th {
    background: linear-gradient(135deg, #0061f2 0%, #6e00ff 100%);
    color: #fff;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    text-align: left;
  }
  
  .cabin-price-table thead th:first-child {
    border-top-left-radius: 10px;
  }
  
  .cabin-price-table thead th:last-child {
    border-top-right-radius: 10px;
    text-align: right;
  }
  
  .cabin-price-table tbody tr {
    transition: all 0.3s ease;
  }
  
  .cabin-price-table tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
  }
  
  .cabin-price-table tbody tr:hover {
    background-color: rgba(255, 107, 107, 0.05);
  }
  
  .cabin-price-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e1e1e1;
  }
  
  .cabin-price-table tbody tr:last-child td {
    border-bottom: none;
  }
  
  .cabin-price-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
  }
  
  .cabin-price-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
  }
  
  .room-category {
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
  }
  
  .room-features {
    color: #666;
    font-size: 0.9rem;
  }
  
  .price {
    font-weight: 700;
    color: #ff6b6b;
    text-align: right;
    font-size: 1.1rem;
  }
  
  .price-note {
    color: #666;
    font-style: italic;
    margin-top: 1rem;
  }
  
  /* Cabin Booking CTA */
  .cabin-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0061f2 0%, #6e00ff 100%);
    position: relative;
    overflow: hidden;
  }
  
  .cabin-cta-section::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
  }
  
  .cabin-cta-section::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
  }
  
  .cta-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  
  .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  .btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff7f50 100%);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
    display: inline-block;
  }
  
  .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(255, 107, 107, 0.4);
    color: #fff;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .cabin-types-nav {
      margin-bottom: 2rem;
    }
  
    .cabin-preview {
      height: 400px;
    }
  }
  
  @media (max-width: 768px) {
    .page-header {
      padding: 3rem 0;
    }
  
    .page-header h1 {
      font-size: 2rem;
    }
  
    .cabin-preview {
      height: 300px;
    }
  
    .cabin-price-table thead th,
    .cabin-price-table td {
      padding: 1rem;
    }
  
    .cta-content h2 {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 576px) {
    .cabin-preview {
      height: 250px;
    }
  
    .room-category {
      font-size: 0.95rem;
    }
  
    .room-features {
      font-size: 0.85rem;
    }
  
    .price {
      font-size: 1rem;
    }
  }
  
  /* Additional styles for cabin content */
.cabin-content-container {
    margin-top: 2rem;
    transition: opacity 0.3s ease;
  }
  
  .cabin-content {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  .cabin-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
  }
  
  .cabin-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #ff7f50);
    border-radius: 2px;
  }
  
  .cabin-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  
  .cabin-features-list h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .cabin-features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .cabin-features-list li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
  }
  
  .cabin-features-list li i {
    color: #ff6b6b;
    margin-right: 10px;
  }
  
  .cabin-image {
    transition: opacity 0.3s ease;
  }
  
  /* Highlight effect for table rows */
  .highlight-row {
    background-color: rgba(255, 107, 107, 0.1) !important;
    transition: background-color 0.3s ease;
  }
  
  @media (max-width: 768px) {
    .cabin-title {
      font-size: 1.5rem;
    }
  
    .cabin-content {
      padding: 1.5rem;
    }
  }
  
  