
    /* Additional CSS for the redesigned page */
    :root {
      --primary: #1a73e8;
      --primary-dark: #0d47a1;
      --secondary: #ff6d00;
      --light: #f8f9fa;
      --dark: #212529;
      --gray: #6c757d;
      --border: #dee2e6;
      --shadow: 0 2px 10px rgba(0,0,0,0.1);
      --radius: 8px;
    }
    
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--dark);
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }
    
    /* Enhanced Hero Section */
    .hotels-hero {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                  url('https://kashmirtourtravel.com/hotels/image/hero-image-hotels-in-srinagar.webp') center/cover;
      color: white;
      padding: 80px 0 60px;
      text-align: center;
    }
    
    .hotels-hero h1 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      font-weight: 700;
    }
    
    .hero-sub {
      font-size: 1.1rem;
      margin-top: 20px;
      opacity: 0.9;
    }
    
    /* Improved Search Form */
    .hotel-search {
      background: white;
      border-radius: var(--radius);
      padding: 25px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 15px;
      box-shadow: var(--shadow);
      max-width: 900px;
      margin: 0 auto;
    }
    
    .field {
      display: flex;
      flex-direction: column;
    }
    
    .label {
      font-weight: 600;
      margin-bottom: 8px;
      color: var(--dark);
    }
    
    .field input, .field select {
      padding: 12px;
      border: 1px solid var(--border);
      border-radius: 4px;
      font-size: 1rem;
    }
    
    .btn-primary {
      background: var(--primary);
      color: white;
      border: none;
      padding: 12px 24px;
      border-radius: 4px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s;
      align-self: end;
    }
    
    .btn-primary:hover {
      background: var(--primary-dark);
    }

    /* Kashmir Holidays Button */
    .kashmir-holidays-btn {
      background: var(--secondary);
      color: white;
      border: none;
      padding: 15px 30px;
      border-radius: 4px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s;
      text-decoration: none;
      display: inline-block;
      margin-top: 10px;
      font-size: 1.1rem;
    }
    
    .kashmir-holidays-btn:hover {
      background: #e65100;
      color: white;
    }

    /* Houseboats Button */
    .houseboats-btn {
      background: #28a745;
      color: white;
      border: none;
      padding: 15px 30px;
      border-radius: 4px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s;
      text-decoration: none;
      display: inline-block;
      margin-top: 10px;
      font-size: 1.1rem;
      margin-left: 10px;
    }
    
    .houseboats-btn:hover {
      background: #218838;
      color: white;
    }

    /* Button Container */
    .button-container {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
      margin-top: 20px;
    }

    /* Enhanced Form Styling */
    .date-range-picker {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
    }
    
    .date-field {
      display: flex;
      flex-direction: column;
    }
    
    .date-field input:disabled {
      background-color: #f8f9fa;
      color: #6c757d;
      cursor: not-allowed;
    }
    
    .date-field input:disabled::placeholder {
      color: #6c757d;
    }
    
    /* Form Validation Styles */
    input:invalid, select:invalid {
      border-color: #dc3545;
    }
    
    input:valid, select:valid {
      border-color: #28a745;
    }
    
    .required-asterisk {
      color: #dc3545;
    }
    
    /* Layout */
    .listing-wrap {
      padding: 40px 0;
    }
    
    .layout {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 30px;
    }
    
    /* Enhanced Filters */
    .filters {
      background: white;
      border-radius: var(--radius);
      padding: 20px;
      box-shadow: var(--shadow);
      height: fit-content;
      position: sticky;
      top: 20px;
    }
    
    .filter-title {
      font-size: 1.25rem;
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 1px solid var(--border);
    }
    
    details {
      margin-bottom: 15px;
      border-bottom: 1px solid var(--border);
      padding-bottom: 15px;
    }
    
    summary {
      font-weight: 600;
      cursor: pointer;
      padding: 5px 0;
    }
    
    .filter-block {
      padding-top: 10px;
    }
    
    .filter-block label {
      display: block;
      margin-bottom: 8px;
      cursor: pointer;
    }
    
    input[type="range"] {
      width: 100%;
      margin-bottom: 10px;
    }
    
    .range-meta {
      display: flex;
      justify-content: space-between;
      font-size: 0.85rem;
      color: var(--gray);
    }
    
    .price-inline {
      font-weight: 600;
      margin-top: 10px;
      display: block;
    }
    
    .btn-light {
      background: var(--light);
      border: 1px solid var(--border);
      padding: 10px;
      border-radius: 4px;
      cursor: pointer;
      width: 100%;
      margin-top: 10px;
    }
    
    /* Improved Results Header */
    .results-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 25px;
      flex-wrap: wrap;
      gap: 15px;
    }
    
    .results-head h2 {
      font-size: 1.5rem;
      margin-bottom: 5px;
    }
    
    .muted {
      color: var(--gray);
    }
    
    .sort label {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .sort select {
      padding: 8px;
      border: 1px solid var(--border);
      border-radius: 4px;
    }
    
    /* Enhanced Card Grid */
    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 25px;
      margin-bottom: 40px;
    }
    
    .hotel-card {
      background: white;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .hotel-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .image-wrap {
      display: block;
      position: relative;
      height: 200px;
      overflow: hidden;
    }
    
    .image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    
    .hotel-card:hover .image-wrap img {
      transform: scale(1.05);
    }
    
    .badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: var(--secondary);
      color: white;
      padding: 4px 8px;
      border-radius: 4px;
      font-size: 0.75rem;
      font-weight: 600;
    }
    
    .card-body {
      padding: 20px;
    }
    
    .row-1 {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 10px;
    }
    
    .row-1 h3 {
      font-size: 1.1rem;
      margin: 0;
      flex: 1;
    }
    
    .tag {
      background: var(--light);
      padding: 4px 8px;
      border-radius: 4px;
      font-size: 0.75rem;
      color: var(--gray);
      white-space: nowrap;
      margin-left: 10px;
    }
    
    .row-2 {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 15px;
    }
    
    .stars {
      color: #ffc107;
    }
    
    .amenities {
      display: flex;
      list-style: none;
      padding: 0;
      margin: 0;
      gap: 8px;
    }
    
    .amenities li {
      background: var(--light);
      padding: 3px 8px;
      border-radius: 4px;
      font-size: 0.75rem;
      color: var(--gray);
    }
    
    .row-3 {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .price {
      font-size: 1.1rem;
    }
    
    .price strong {
      font-size: 1.3rem;
      color: var(--primary);
    }
    
    .price span {
      font-size: 0.9rem;
      color: var(--gray);
    }
    
    /* Destination Sections */
    .destination-section {
      padding: 60px 0;
    }
    
    .destination-section:nth-child(even) {
      background: var(--light);
    }
    
    .destination-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 30px;
    }
    
    .destination-header h2 {
      font-size: 2rem;
      color: var(--dark);
      margin: 0;
    }
    
    .destination-link {
      color: var(--primary);
      text-decoration: none;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    
    .destination-link:hover {
      text-decoration: underline;
    }
    
    .destination-description {
      color: var(--gray);
      margin-bottom: 30px;
      max-width: 800px;
    }
    
    /* About Section */
    .about-section {
      padding: 60px 0;
      background: var(--light);
    }
    
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }
    
    .about-content h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      color: var(--dark);
    }
    
    .about-content p {
      margin-bottom: 15px;
      color: var(--gray);
    }
    
    .about-image {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    
    .about-image img {
      width: 100%;
      height: auto;
      display: block;
    }
    
    /* Why Book Section */
    .why-book {
      padding: 60px 0;
    }
    
    .section-title {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 40px;
      color: var(--dark);
    }
    
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }
    
    .feature-card {
      text-align: center;
      padding: 30px 20px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      transition: transform 0.3s;
    }
    
    .feature-card:hover {
      transform: translateY(-5px);
    }
    
    .feature-icon {
      font-size: 2.5rem;
      margin-bottom: 15px;
      color: var(--primary);
    }
    
    .feature-card h3 {
      font-size: 1.2rem;
      margin-bottom: 10px;
    }
    
    .feature-card p {
      color: var(--gray);
    }
    
    /* FAQ Section */
    .faq-section {
      padding: 60px 0;
      background: var(--light);
    }
    
    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .faq-item {
      margin-bottom: 15px;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    
    .faq-question {
      background: white;
      padding: 20px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .faq-answer {
      background: white;
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s, padding 0.3s;
    }
    
    .faq-item.active .faq-answer {
      padding: 0 20px 20px;
      max-height: 500px;
    }
    
    .faq-toggle {
      font-size: 1.2rem;
      transition: transform 0.3s;
    }
    
    .faq-item.active .faq-toggle {
      transform: rotate(45deg);
    }
    
    /* Enquiry Section */
    .enquiry {
      padding: 60px 0;
    }
    
    .enquiry-card {
      background: white;
      border-radius: var(--radius);
      padding: 40px;
      box-shadow: var(--shadow);
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }
    
    .enquiry-card h2 {
      text-align: center;
      margin-bottom: 30px;
      font-size: 1.8rem;
    }
    
    .enquiry-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    
    .enquiry-form label {
      display: flex;
      flex-direction: column;
    }
    
    .enquiry-form .wide {
      grid-column: 1 / -1;
    }
    
    .enquiry-form textarea {
      resize: vertical;
      min-height: 100px;
    }
    
    .enquiry-form button {
      grid-column: 1 / -1;
      justify-self: center;
      margin-top: 10px;
    }
    
    /* Footer */
    .footer {
      background: var(--dark);
      color: white;
      padding: 50px 0 20px;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin-bottom: 30px;
    }
    
    .footer h3 {
      font-size: 1.2rem;
      margin-bottom: 15px;
    }
    
    .footer ul {
      list-style: none;
      padding: 0;
    }
    
    .footer li {
      margin-bottom: 8px;
    }
    
    .footer a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .footer a:hover {
      color: white;
    }
    
    .copyright {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.1);
      color: #ccc;
      font-size: 0.9rem;
    }
    
    /* Pagination */
    .pagination {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 40px;
    }
    
    .page {
      padding: 8px 15px;
      border: 1px solid var(--border);
      border-radius: 4px;
      text-decoration: none;
      color: var(--dark);
      transition: background 0.3s;
    }
    
    .page:hover, .page.active {
      background: var(--primary);
      color: white;
      border-color: var(--primary);
    }
    
    .page.disabled {
      opacity: 0.5;
      pointer-events: none;
    }
    
    /* Responsive adjustments for date picker */
    @media (max-width: 768px) {
      .date-range-picker {
        grid-template-columns: 1fr;
      }
      
      .button-container {
        flex-direction: column;
        align-items: center;
      }
      
      .houseboats-btn {
        margin-left: 0;
      }
    }
    
    /* Responsive */
    @media (max-width: 992px) {
      .layout {
        grid-template-columns: 1fr;
      }
      
      .filters {
        position: static;
        margin-bottom: 30px;
      }
      
      .about-grid {
        grid-template-columns: 1fr;
      }
      
      .enquiry-form {
        grid-template-columns: 1fr;
      }
    }
    
    @media (max-width: 768px) {
      .hotel-search {
        grid-template-columns: 1fr;
      }
      
      .results-head {
        flex-direction: column;
        align-items: flex-start;
      }
      
      .card-grid {
        grid-template-columns: 1fr;
      }
      
      .features-grid {
        grid-template-columns: 1fr;
      }
      
      .destination-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
      }
    }
  