 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }

 body {
   /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   min-height: 100vh;
 }

 .topic {
   text-align: center;
   font-size: 2.5rem;
   font-weight: 700;
   color: #ffffff;
   margin: 20px 0;
 }

 .hotel-header-description {
   text-align: center;
   margin: 10px auto;
   max-width: 80%;
   color: #ffffff;
   line-height: 1.6;
   font-size: 18px;
   font-weight: 600;
 }

 .hotel-header-container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
 }

 .hotel-header-search-container {
   background: white;
   border-radius: 10px;
   padding: 25px;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
   margin-bottom: 30px;
 }

 .hotel-header-search-row {
   display: flex;
   flex-wrap: wrap;
   gap: 15px;
   align-items: center;
   margin-bottom: 15px;
 }

 .hotel-header-search-section {
   flex: 1;
   min-width: 200px;
 }

 .hotel-header-label {
   font-weight: 500;
   margin-bottom: 10px;
   color: #333;
 }

 .hotel-header-input {
   width: 100%;
   padding: 10px 15px;
   border: 1px solid #ddd;
   border-radius: 25px;
   font-size: 14px;
   background: white;
   color: #222;
   display: flex;
   align-items: center;
   gap: 10px;
 }

 .hotel-header-input i {
   color: black;
 }

 .hotel-header-input input {
   border: none;
   outline: none;
   flex: 1;
   color: #222;
 }

 .hotel-header-select {
   width: 100%;
   padding: 10px 15px;
   border: 1px solid #ddd;
   border-radius: 5px;
   background: white;
   cursor: pointer;
 }

 .hotel-header-search-btn {
   width: 100%;
   max-width: 200px;
   padding: 12px 15px;
   border: none;
   border-radius: 25px;
   background: #09d;
   color: white;
   font-weight: 500;
   cursor: pointer;
   transition: background 0.3s;
   margin: 15px auto 0;
   display: block;
 }

 .hotel-header-search-btn:hover {
   background: #08c;
 }

 .hotel-header-features {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 20px;
   margin-top: 50px;
 }

 .hotel-header-feature {
   text-align: center;
   padding: 20px;
   background: white;
   border-radius: 10px;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
   color: #222;
 }

 .hotel-header-feature-icon {
   font-size: 50px;
   margin-bottom: 15px;
   color: #09d;
 }

 .hotel-header-feature-title {
   margin-bottom: 10px;
   font-weight: 600;
   color: #333;
   font-size: 20px;
 }

 .hotel-header-feature-text {
   font-size: 14px;
   color: #666;
 }

 /* Enhanced Filter Section */
 .filter-section {
   max-width: 1200px;
   margin: 30px auto;
   padding: 0 20px;
 }

 .filter-container {
   background: white;
   border-radius: 15px;
   padding: 25px;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
   margin-bottom: 30px;
 }

 .filter-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 20px;
 }

 .filter-title {
   font-size: 1.5rem;
   font-weight: 700;
   color: #333;
 }

 .filter-toggle {
   background: #09d;
   color: white;
   border: none;
   padding: 8px 15px;
   border-radius: 20px;
   cursor: pointer;
   display: none;
 }

 .filter-form {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 20px;
   align-items: end;
 }

 .filter-group {
   display: flex;
   flex-direction: column;
 }

 .filter-label {
   font-weight: 600;
   margin-bottom: 8px;
   color: #333;
 }

 .filter-input,
 .filter-select {
   padding: 10px 15px;
   border: 2px solid #e0e0e0;
   border-radius: 8px;
   font-size: 14px;
   transition: border-color 0.3s;
 }

 .filter-input:focus,
 .filter-select:focus {
   outline: none;
   border-color: #09d;
 }

 .filter-btn {
   background: linear-gradient(45deg, #09d, #0066cc);
   color: white;
   border: none;
   padding: 12px 25px;
   border-radius: 8px;
   font-weight: 600;
   cursor: pointer;
   transition: transform 0.2s;
   height: fit-content;
 }

 .filter-btn:hover {
   transform: translateY(-2px);
 }

 .results-info {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 20px;
   color: white;
   font-weight: 600;
 }

 .sort-dropdown {
   padding: 8px 15px;
   border: none;
   border-radius: 5px;
   background: white;
   cursor: pointer;
 }

 /* Hotel Cards */
 .hotel-container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
   margin-bottom: 50px;
 }

 .hotel-grid {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
   gap: 25px;
 }

 .hotel-card {
   background-color: white;
   border-radius: 12px;
   overflow: hidden;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s, box-shadow 0.3s;
   cursor: pointer;
 }

 .hotel-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
 }

 .card-image {
   height: 220px;
   position: relative;
   overflow: hidden;
 }

 .card-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.3s;
 }

 .hotel-card:hover .card-image img {
   transform: scale(1.05);
 }

 .price-badge {
   position: absolute;
   top: 15px;
   right: 15px;
   background: linear-gradient(45deg, #ff6b6b, #ee5a24);
   color: white;
   padding: 8px 12px;
   border-radius: 20px;
   font-weight: 600;
   font-size: 14px;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
 }

 .card-content {
   padding: 20px;
 }

 .hotel-name {
   font-size: 1.3rem;
   font-weight: 700;
   margin-bottom: 8px;
   color: #222;
 }

 .location {
   display: flex;
   align-items: center;
   color: #666;
   margin-bottom: 10px;
   font-size: 14px;
 }

 .location i {
   margin-right: 5px;
   color: #09d;
 }

 .rating {
   color: #ffa500;
   margin-bottom: 15px;
   font-size: 16px;
 }

 .hotel-features {
   display: flex;
   gap: 15px;
   margin-top: 15px;
   flex-wrap: wrap;
 }

 .feature-tag {
   background: #f0f8ff;
   color: #09d;
   padding: 4px 8px;
   border-radius: 12px;
   font-size: 12px;
   font-weight: 500;
 }

 /* Modal Styles */
 .modal {
   display: none;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.8);
   z-index: 1000;
   overflow-y: auto;
 }

 .modal.active {
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 20px;
 }

 .modal-content {
   background: white;
   border-radius: 15px;
   max-width: 800px;
   width: 100%;
   max-height: 90vh;
   overflow-y: auto;
   position: relative;
 }

 .modal-header {
   position: relative;
   height: 300px;
   overflow: hidden;
   border-radius: 15px 15px 0 0;
 }

 .modal-header img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }

 .modal-close {
   position: absolute;
   top: 15px;
   right: 15px;
   background: rgba(0, 0, 0, 0.5);
   color: white;
   border: none;
   width: 40px;
   height: 40px;
   border-radius: 50%;
   cursor: pointer;
   font-size: 20px;
 }

 .modal-body {
   padding: 30px;
 }

 .modal-hotel-name {
   font-size: 2rem;
   font-weight: 700;
   margin-bottom: 10px;
   color: #333;
 }

 .modal-location {
   display: flex;
   align-items: center;
   color: #666;
   margin-bottom: 15px;
   font-size: 16px;
 }

 .modal-location i {
   margin-right: 8px;
   color: #09d;
 }

 .modal-price {
   font-size: 1.5rem;
   font-weight: 700;
   color: #ff6b6b;
   margin-bottom: 20px;
 }

 .modal-features {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 15px;
   margin: 20px 0;
 }

 .modal-feature {
   display: flex;
   align-items: center;
   padding: 10px;
   background: #f8f9fa;
   border-radius: 8px;
 }

 .modal-feature i {
   margin-right: 10px;
   color: #09d;
   font-size: 18px;
 }

 .book-now-btn {
   width: 100%;
   padding: 15px;
   background: linear-gradient(45deg, #09d, #0066cc);
   color: white;
   border: none;
   border-radius: 8px;
   font-size: 18px;
   font-weight: 600;
   cursor: pointer;
   margin-top: 20px;
   transition: transform 0.2s;
 }

 .book-now-btn:hover {
   transform: translateY(-2px);
 }

 /* Responsive Design */
 @media (max-width: 1024px) {
   .filter-form {
     grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
     gap: 15px;
   }

   .hotel-header-features {
     grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
     gap: 15px;
   }

   .hotel-grid {
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 20px;
   }
 }

 @media (max-width: 768px) {
   .topic {
     font-size: 2rem;
   }

   .hotel-header-description {
     font-size: 16px;
     max-width: 95%;
   }

   .hotel-header-search-container {
     padding: 20px 15px;
   }

   .hotel-header-search-row {
     flex-direction: column;
     gap: 15px;
   }

   .hotel-header-search-section {
     min-width: 100%;
   }

   .hotel-header-features {
     grid-template-columns: 1fr;
     gap: 15px;
   }

   .filter-toggle {
     display: block;
   }

   .filter-form {
     display: none;
     grid-template-columns: 1fr;
     gap: 15px;
   }

   .filter-form.active {
     display: grid;
   }

   .results-info {
     flex-direction: column;
     gap: 10px;
     text-align: center;
   }

   .hotel-grid {
     grid-template-columns: 1fr;
     gap: 20px;
   }

   .modal-content {
     margin: 10px;
     max-height: 95vh;
   }

   .modal-body {
     padding: 20px;
   }

   .modal-hotel-name {
     font-size: 1.5rem;
   }

   .modal-features {
     grid-template-columns: 1fr;
   }
 }

 @media (max-width: 480px) {
   .hotel-header-container {
     padding: 0 10px;
   }

   .filter-section {
     padding: 0 10px;
   }

   .hotel-container {
     padding: 0 10px;
   }

   .filter-container {
     padding: 20px 15px;
   }

   .hotel-header-feature {
     padding: 15px;
   }

   .hotel-header-feature-title {
     font-size: 18px;
   }

   .card-content {
     padding: 15px;
   }
 }



 /* Additional responsive fixes for tablets and small laptops */
 @media (max-width: 1200px) and (min-width: 769px) {
   .filter-form {
     grid-template-columns: repeat(2, 1fr);
     gap: 20px;
   }

   .filter-btn {
     grid-column: span 2;
     max-width: 200px;
     justify-self: center;
   }

   .hotel-header-search-row {
     gap: 10px;
   }

   .hotel-header-search-section {
     min-width: 180px;
   }

   .hotel-grid {
     grid-template-columns: repeat(2, 1fr);
     gap: 20px;
   }
 }

 @media (max-width: 1024px) and (min-width: 769px) {
   .filter-container {
     padding: 20px;
   }

   .filter-form {
     grid-template-columns: repeat(2, 1fr);
     gap: 15px;
   }

   .hotel-header-features {
     grid-template-columns: repeat(2, 1fr);
     gap: 15px;
   }

   .results-info {
     padding: 0 10px;
   }
 }

 /* Fix for small laptops */
 @media (max-width: 1366px) and (min-width: 1025px) {
   .hotel-header-container {
     max-width: 100%;
     padding: 0 30px;
   }

   .filter-section {
     padding: 0 30px;
   }

   .hotel-container {
     padding: 0 30px;
   }
 }

 /* Enhanced tablet responsiveness */
 @media (max-width: 768px) and (min-width: 481px) {
   .filter-form {
     grid-template-columns: repeat(2, 1fr);
     gap: 15px;
   }

   .filter-btn {
     grid-column: span 2;
     max-width: 250px;
     justify-self: center;
   }

   .hotel-header-search-row {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 15px;
   }

   .hotel-header-search-section {
     min-width: auto;
   }
 }