body {
    line-height: 1.6;
  }
  
  /* Top Header Bar */
  .top-header {
    background: #4caf50;
    color: white;
    padding: 8px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
  }
  
  .ajax-loader {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ajax-loader .spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #ddd;
    border-top: 4px solid #000;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.sidenav {
    height: auto;
    position: fixed;
    z-index: 999;
    bottom: 8%;
    left: 20px;
    overflow-x: hidden;
    padding-top: 20px;
}
.sidenav img{ width:64px;}
  
  .top-header-left {
    display: flex;
    gap: 20px;
  }
  
  .top-header-right {
    display: flex;
    gap: 20px;
  }
  
  .top-header a {
    color: white;
    text-decoration: none;
  }
  
  /* Main Header */
  .main-header {
    background: white;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #e0e0e0;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .logo-text {
    font-size: 28px;
    font-weight: bold;
    color: #4caf50;
  }
  
  .nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
  }
  
  .nav-menu a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
  }
  
  .nav-menu a:hover {
    color: #4caf50;
  }
  
  /* Breadcrumb */
  .breadcrumb {
    padding: 15px 50px;
    background: #f5f5f5;
    font-size: 13px;
    color: #666;
  }

  
  /* Hero Banner */
  .hero-banner {
    position: relative;
    height: 450px;
    
  }
  
  .itinerary-content-image{
    float: left;
    margin-right: 15px;
    padding: 20px;
  }
  
  .banner-images {
    display: grid;
    height: 100%;
  }
  
  .banner-image {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  
  .banner-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
  }
  
  .banner-label {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
    font-size: 32px;
    font-weight: bold;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .divider-curve {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100%;
    background: #ffd700;
    clip-path: polygon(20% 0, 80% 0, 100% 100%, 0% 100%);
    z-index: 2;
  }
  
  .price-badge {
    position: absolute;
    bottom: -50px;
    right: 100px;
    background: linear-gradient(135deg, #8b0000 0%, #dc143c 100%);
    color: white;
    padding: 30px 40px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    text-align: center;
    z-index: 3;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  }
  
  .price-badge-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .price-badge-amount {
    font-size: 28px;
    font-weight: bold;
  }
  
  .price-badge-note {
    font-size: 12px;
    margin-top: 5px;
  }
  
  .mob-image{
      display: none;
  }
  
  /* Main Content */
  .page-title {
    text-align: center;
    padding: 80px 50px 40px;
    font-size: 32px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
  }
  
  /* Itinerary Section */
  .itinerary-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 130px 50px 30px 50px;
  }
  
  .itinerary-item {
    background: #f5f5f5;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .itinerary-header {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .itinerary-header:hover {
    background: #ebebeb;
  }
  
  .day-icon {
    background: #dc143c;
    color: white;
    width: 70px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin-right: 25px;
    flex-shrink: 0;
  }
  
  .day-icon-top {
    font-size: 11px;
    font-weight: bold;
    border-bottom: 2px solid white;
    width: 100%;
    text-align: center;
    padding-bottom: 3px;
    margin-bottom: 5px;
  }
  
  .day-icon-number {
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
  }
  
  .day-icon-bottom {
    font-size: 11px;
    font-weight: bold;
    margin-top: 3px;
  }
  
  .itinerary-title-section {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
  .itinerary-image {
    /*width: 200px;*/
    /*height: 130px;*/
     width:6%;
     margin-right: 15px;
    border-radius: 8px;
    object-fit: cover;
    /*border: 4px solid white;*/
    /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);*/
  }
  
  .itinerary-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
  }
  
  .itinerary-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
    display: flex;
    gap: 30px;
    align-items: flex-start;
  }
  
  .itinerary-item.active .itinerary-content {
    max-height: 400px;
 
  }
  
  .itinerary-content-image {
    flex-shrink: 0;
    width: 300px;
    padding: 30px 0 30px 30px;
  }
  
  .itinerary-content-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);*/
  }
  
  .itinerary-description {
    flex: 1;
    padding: 30px 30px 30px 0;
    color: #555;
    line-height: 1.8;
    text-align: justify;
    font-size: 16px;
  }
  
  /* Send Enquiry Section */
  .enquiry-section {
    background: #f0f0f0;
    padding: 60px 50px;
    margin-top: 40px;
  }
  
  .enquiry-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .enquiry-image {
    background-size: cover;
    background-position: center;
    min-height: 400px;
  }
  
  .enquiry-form {
    padding: 40px;
  }
  
  .enquiry-form h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group input,
  .form-group textarea,
  .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-control:focus {
    outline: none;
    border-color: #4caf50;
  }

  .error_label {
    color: #dc143c;
    font-size: 12px;
    display: block;
    margin-top: 5px;
  }

  .form-group input.error,
  .form-group textarea.error,
  .form-control.error {
    border-color: #dc143c;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .date-input {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
  }
  
  .date-input input,
  .date-input .form-control {
    border: none;
    padding: 0;
    flex: 1;
    background: transparent;
  }

  .guest-input {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
  }

  .guest-input input,
  .guest-input .form-control {
    border: none;
    padding: 0;
    width: 60px;
    background: transparent;
  }
  
  .submit-btn {
    width: 100%;
    padding: 15px;
    background: #4caf50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
  }
  
  .submit-btn:hover {
    background: #45a049;
  }
  
  /* Validity Notice */
  .validity-notice {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 50px;
  }
  
  .validity-box {
    background: white;
    border-left: 5px solid #000;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  /* Hotel Details */
  .hotel-details-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 50px;
  }
  
  .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
  }
  
  .hotel-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .hotel-table th {
    background: #4caf50;
    color: white;
    padding: 15px;
    text-align: left;
    font-size: 16px;
  }
  
  .hotel-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .hotel-table tr:nth-child(even) {
    background: #f9f9f9;
  }
  
  /* Total Cost Banner */
  .total-cost-banner {
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: white;
    text-align: center;
    padding: 20px;
    margin: 40px auto;
    max-width: 800px;
    clip-path: polygon(3% 0, 100% 0, 97% 100%, 0% 100%);
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  /* Notes */
  .notes-section {
      max-width: 1200px;
      background: #f8f8f8;
      margin: 30px auto;
      padding: 20px 50px;
      border-radius: 15px;
  }
  
  .note-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 15px;
      color: #dc143c;
      font-size: 14px;
      font-weight: 400;
  }
  
  .note-item::before {
    content: "►";
    margin-right: 10px;
    font-size: 12px;
  }
  
  /* Inclusions/Exclusions */
  .inclusions-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 50px;
    position: relative;
    background-image: url('path/to/your/background-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .inclusions-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 0;
  }

  .inclusions-section > * {
    position: relative;
    z-index: 1;
  }
  
  .inclusions-title {
    font-size: 24px;
    font-weight: bold;
    color: #e91e63;
    margin-bottom: 30px;
    text-transform: uppercase;
  }
  
  .inclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .inclusion-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
  }
  
  .inclusion-item::before {
    content: "◆";
    color: #4caf50;
    font-size: 14px;
    margin-top: 3px;
  }
  
  .exclusions-title {
    font-size: 24px;
    font-weight: bold;
    color: #e91e63;
    margin-bottom: 30px;
    margin-top: 60px;
    text-transform: uppercase;
  }
  
  .exclusion-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
  }
  
  .exclusion-item::before {
    content: "◆";
    color: #dc143c;
    font-size: 14px;
    margin-top: 3px;
  }
  
  /* Responsive */
  @media (max-width: 1024px) {
    .banner-images {
      grid-template-columns: 1fr;
    }
  
    .divider-curve {
      display: none;
    }
  
    .price-badge {
      right: 50px;
      bottom: -40px;
    }
  
    .enquiry-container {
      grid-template-columns: 1fr;
    }
  
    .inclusions-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .top-header,
    .main-header,
    .breadcrumb {
      padding: 10px 20px;
    }
  
    .nav-menu {
      display: none;
    }
  
    /*.hero-banner {*/
    /*  height: 300px;*/
    /*}*/
  
    .banner-label {
      font-size: 20px;
    }
  
    .page-title {
        font-size: 17px;
        padding: 22px 20px 20px;
    }
    
    .hero-banner{
        height: auto;
    }
  
    .itinerary-container,
    .hotel-details-section,
    .notes-section,
    .inclusions-section {
      padding: 0 20px;
    }
  
    .itinerary-header {
      /*flex-direction: column;*/
      /*align-items: flex-start;*/
      align-items: center;
      gap: 15px;
      padding: 20px 15px
    }
    
    .itinerary-title {
        font-size: 17px;
    }
    
    .enquiry-section{
        padding: 15px;
    }
    
    .enquiry-image{
        min-height: 150px;
        
    }
    .day-icon{
        width: 50px;
        height: 50px;
        margin-right: 0px;
    }
  
    .itinerary-title-section {
      /*flex-direction: column;*/
      flex-direction: row;
      gap: 15px;
    }
  
    .itinerary-image {
      width: 15%;
      margin-right: 0px;
    }
  
    .itinerary-content {
      flex-direction: column;
    }
  
  
    .itinerary-item.active .itinerary-content {
    max-height: 100%;
  
 
  }
  
   .mob-image{
      display: block;
  }
  
  .desktop-image{
    display: none;  
  }
  
  
    .itinerary-content-image {
      width: 100%;
      padding: 30px 30px 0px 30px;
    }
  
    .itinerary-description {
      padding: 0 30px 30px 30px;
    }
  
    .price-badge {
      right: 20px;
      padding: 20px 30px;
    }
  
    .price-badge-amount {
      font-size: 20px;
    }
  
    .form-row {
      grid-template-columns: 1fr;
    }
  }
  