/* ============================
   Hotels in Ujjain - Temple Theme
   Saffron + Maroon Palette
   ============================ */

:root {
  --saffron: #FF6B00;
  --saffron-light: #FFF3E0;
  --saffron-dark: #E65100;
  --maroon: #800020;
  --maroon-light: #A0334D;
  --maroon-dark: #5C0015;
  --gold: #D4A017;
  --cream: #FFF8F0;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --green-whatsapp: #25D366;
  --blue-booking: #003580;
  --red-mmt: #EB2026;
  --shadow: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-lg: 0 4px 20px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 12px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-900);
  background: var(--cream);
  line-height: 1.6;
}

a { color: var(--maroon); text-decoration: none; }
a:hover { color: var(--saffron); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navbar */
.navbar {
  background: var(--maroon);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 1.25rem;
}
.logo:hover { color: var(--saffron-light); }
.logo-icon { font-size: 1.5rem; }
.logo-text { font-weight: 300; }
.logo-text strong { font-weight: 700; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}
.nav-links a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--saffron); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  padding: 3rem 0;
  text-align: center;
  color: var(--white);
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 0.25rem;
}
.hero-hindi {
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

/* Search */
.search-box {
  position: relative;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  display: flex;
}
.search-box input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
}
.search-box button {
  padding: 0.875rem 1.5rem;
  background: var(--saffron);
  color: var(--white);
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.search-box button:hover { background: var(--saffron-dark); }

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 50;
}
.search-results.active { display: block; }
.search-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-900);
  transition: background 0.2s;
}
.search-result-item:hover { background: var(--saffron-light); }

.hero-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.85rem;
  transition: background 0.2s;
}
.tag:hover { background: var(--saffron); color: var(--white); }

/* Sections */
.section { padding: 3rem 0; }
.section-alt { background: var(--gray-50); }
.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--maroon);
  text-align: center;
  margin-bottom: 0.25rem;
}
.section-subtitle {
  text-align: center;
  color: var(--gray-500);
  margin-bottom: 2rem;
}

/* Hotel Grid */
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Hotel Card */
.hotel-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.badge { position: absolute; top: 0.75rem; left: 0.75rem; z-index: 5; padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.badge-featured { background: var(--saffron); color: var(--white); }

.hotel-card-img { position: relative; height: 160px; overflow: hidden; }
.hotel-placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--saffron-light), var(--maroon-light));
  display: flex;
  align-items: center;
  justify-content: center;
}
.hotel-initial {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  opacity: 0.8;
}

.hotel-card-body { padding: 1rem; }
.hotel-card-header { margin-bottom: 0.5rem; }
.hotel-card-header h3 { font-size: 1.05rem; font-weight: 600; line-height: 1.3; }
.hotel-card-header h3 a { color: var(--gray-900); }
.hotel-card-header h3 a:hover { color: var(--saffron); }
.hotel-stars { color: var(--gold); font-size: 0.85rem; margin-top: 0.25rem; }

.hotel-address { font-size: 0.8rem; color: var(--gray-500); margin-bottom: 0.5rem; }

.hotel-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
.hotel-distance { color: var(--maroon); }
.hotel-rating { color: var(--saffron-dark); }

.hotel-amenities { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-bottom: 0.75rem; }
.amenity-tag {
  padding: 0.125rem 0.5rem;
  background: var(--saffron-light);
  color: var(--saffron-dark);
  border-radius: 4px;
  font-size: 0.7rem;
  text-transform: capitalize;
}

.hotel-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-100);
}
.hotel-price { }
.price-label { font-size: 0.75rem; color: var(--gray-500); }
.price-amount { font-size: 1.25rem; font-weight: 700; color: var(--maroon); }

.hotel-actions { display: flex; gap: 0.5rem; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}
.btn-sm { padding: 0.375rem 0.875rem; font-size: 0.8rem; }
.btn-lg { padding: 0.75rem 2rem; font-size: 1.1rem; }
.btn-block { display: block; width: 100%; margin-bottom: 0.5rem; }

.btn-primary { background: var(--saffron); color: var(--white); }
.btn-primary:hover { background: var(--saffron-dark); color: var(--white); }

.btn-outline { border-color: var(--saffron); color: var(--saffron); background: transparent; }
.btn-outline:hover { background: var(--saffron); color: var(--white); }

.btn-outline-light { border-color: var(--white); color: var(--white); background: transparent; }
.btn-outline-light:hover { background: var(--white); color: var(--maroon); }

.btn-book { background: var(--blue-booking); color: var(--white); }
.btn-book:hover { background: #00264D; color: var(--white); }

.btn-mmt { background: var(--red-mmt); color: var(--white); }
.btn-mmt:hover { background: #C71A1F; color: var(--white); }

.btn-agoda { background: #5B4CF5; color: var(--white); }
.btn-agoda:hover { background: #4A3DE0; color: var(--white); }

.btn-whatsapp { background: var(--green-whatsapp); color: var(--white); }
.btn-whatsapp:hover { background: #1DA851; color: var(--white); }

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}
.category-card {
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--saffron);
  transition: transform 0.2s;
}
.category-card:hover { transform: translateY(-2px); color: var(--gray-900); }
.category-card h3 { font-size: 1rem; margin-bottom: 0.25rem; color: var(--maroon); }
.category-hindi { font-size: 0.8rem; color: var(--gray-500); margin-bottom: 0.5rem; }
.category-count { font-size: 0.85rem; color: var(--saffron); font-weight: 600; }

/* Hotel Detail Page */
.breadcrumb-bar {
  background: var(--gray-50);
  padding: 0.75rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--gray-200);
}
.breadcrumb-bar a { color: var(--gray-500); }
.breadcrumb-bar span { color: var(--gray-700); }

.hotel-detail { padding: 2rem 0; }
.hotel-detail-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 2rem;
}

.hotel-detail-header { margin-bottom: 1.5rem; }
.hotel-detail-header h1 { font-size: 1.75rem; color: var(--maroon); }
.hotel-stars-large { color: var(--gold); font-size: 1.1rem; margin: 0.5rem 0; }
.rating-badge { color: var(--saffron-dark); font-weight: 600; }
.review-count { color: var(--gray-500); font-size: 0.85rem; }
.hotel-address-large { color: var(--gray-500); font-size: 0.95rem; }

.hotel-placeholder-img-large {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--saffron-light), var(--maroon-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}
.hotel-initial-large { font-size: 5rem; color: var(--white); opacity: 0.8; }

.hotel-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.info-card {
  background: var(--gray-50);
  padding: 1rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--saffron);
}
.info-card h3 { font-size: 0.8rem; color: var(--gray-500); font-weight: 500; margin-bottom: 0.25rem; }
.info-value { font-size: 1.1rem; font-weight: 600; color: var(--maroon); }

.hotel-description, .hotel-amenities-detail, .hotel-map {
  margin-bottom: 2rem;
}
.hotel-description h2, .hotel-amenities-detail h2, .hotel-map h2 {
  font-size: 1.25rem;
  color: var(--maroon);
  margin-bottom: 0.75rem;
}
.hindi-text { color: var(--gray-500); font-style: italic; margin-top: 0.5rem; }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.5rem;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--saffron-light);
  border-radius: var(--radius);
  font-size: 0.9rem;
}
.amenity-icon { color: var(--saffron); font-weight: 700; }

/* Booking Sidebar */
.booking-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 5rem;
}
.booking-card h3 { font-size: 1.25rem; color: var(--maroon); margin-bottom: 0.5rem; }
.booking-price { font-size: 1rem; margin-bottom: 1rem; }
.booking-price strong { font-size: 1.5rem; color: var(--maroon); }
.divider { height: 1px; background: var(--gray-200); margin: 1rem 0; }

.sidebar-card {
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-top: 1rem;
}
.sidebar-card h3 { font-size: 1rem; color: var(--maroon); margin-bottom: 0.75rem; }

.nearby-hotel, .related-post {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.nearby-hotel strong, .related-post strong { display: block; font-size: 0.9rem; color: var(--gray-900); }
.nearby-hotel span, .related-post span { font-size: 0.8rem; color: var(--gray-500); }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.blog-card-body { padding: 1.25rem; }
.blog-category {
  display: inline-block;
  background: var(--saffron-light);
  color: var(--saffron-dark);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0.5rem;
}
.blog-card h2 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.blog-card h2 a { color: var(--gray-900); }
.blog-card h2 a:hover { color: var(--saffron); }
.blog-hindi { font-size: 0.8rem; color: var(--gray-500); margin-bottom: 0.5rem; }
.blog-meta { font-size: 0.8rem; color: var(--gray-500); margin: 0.5rem 0; }

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}
.blog-preview-card {
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--maroon);
  transition: transform 0.2s;
}
.blog-preview-card:hover { transform: translateY(-2px); color: var(--gray-900); }
.blog-preview-card h3 { font-size: 1rem; color: var(--maroon); margin-bottom: 0.5rem; }
.blog-preview-card p { font-size: 0.85rem; color: var(--gray-500); }

/* Blog Detail */
.blog-detail-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
}
.blog-header { margin-bottom: 2rem; }
.blog-header h1 { font-size: 1.75rem; color: var(--maroon); line-height: 1.3; }
.blog-content { line-height: 1.8; }
.blog-content h2 { color: var(--maroon); margin: 1.5rem 0 0.75rem; font-size: 1.3rem; }
.blog-content h3 { color: var(--saffron-dark); margin: 1.25rem 0 0.5rem; font-size: 1.1rem; }
.blog-content ul, .blog-content ol { margin: 0.75rem 0; padding-left: 1.5rem; }
.blog-content li { margin-bottom: 0.375rem; }
.blog-content table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.blog-content th, .blog-content td { padding: 0.75rem; text-align: left; border: 1px solid var(--gray-200); }
.blog-content th { background: var(--saffron-light); font-weight: 600; }
.blog-tags { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--gray-200); }
.blog-tags .tag {
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-right: 0.375rem;
}

/* Sort Bar */
.sort-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}
.sort-bar span { font-weight: 600; color: var(--gray-700); font-size: 0.9rem; }
.sort-link { font-size: 0.85rem; padding: 0.25rem 0.75rem; border-radius: 4px; color: var(--gray-500); }
.sort-link.active { background: var(--saffron); color: var(--white); }
.sort-link:hover { color: var(--saffron); }

.category-header { margin-bottom: 1.5rem; }
.category-header h1 { font-size: 1.75rem; color: var(--maroon); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.contact-card {
  background: var(--gray-50);
  padding: 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.contact-card h3 { color: var(--maroon); margin-bottom: 0.5rem; }
.contact-card ul { padding-left: 1.25rem; }
.contact-card li { margin-bottom: 0.25rem; font-size: 0.9rem; }

.contact-form-wrap {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 500; margin-bottom: 0.375rem; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: var(--white);
  padding: 3rem 0;
}
.cta-section h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-section p { opacity: 0.9; margin-bottom: 1.5rem; }

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col h3 { color: var(--white); font-size: 1rem; margin-bottom: 0.75rem; }
.footer-col p { font-size: 0.85rem; line-height: 1.6; }
.footer-hindi { font-style: italic; margin-top: 0.5rem; font-size: 0.8rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.375rem; }
.footer-col a { color: var(--gray-300); font-size: 0.85rem; }
.footer-col a:hover { color: var(--saffron); }

.footer-social { margin-top: 1rem; display: flex; gap: 0.75rem; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.8rem;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--saffron); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
}
.footer-bottom a { color: var(--gray-300); }
.disclaimer { margin-top: 0.5rem; font-size: 0.75rem; opacity: 0.6; }

/* Screen reader only - visually hidden but accessible */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* FAQ Section */
.faq-section { margin-top: 2rem; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.faq-question {
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  color: var(--maroon);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after { content: '+'; font-size: 1.25rem; color: var(--saffron); }
.faq-item[open] .faq-question::after { content: '-'; }
.faq-question::-webkit-details-marker { display: none; }
.faq-answer {
  padding: 0 1.25rem 1rem;
  color: var(--gray-700);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Answer Block (AI-extractable) */
.answer-block {
  background: var(--saffron-light);
  border-left: 4px solid var(--saffron);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}
.answer-block h2 { color: var(--maroon); font-size: 1.25rem; margin-bottom: 0.75rem; }
.answer-section { padding: 1.5rem 0 0; }

/* Comparison Table */
.table-responsive { overflow-x: auto; margin-bottom: 1.5rem; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 0.85rem;
}
.comparison-table th {
  background: var(--maroon);
  color: var(--white);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  white-space: nowrap;
}
.comparison-table td {
  padding: 0.625rem 1rem;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}
.comparison-table tr:hover { background: var(--saffron-light); }
.comparison-table a { color: var(--maroon); }
.comparison-table a:hover { color: var(--saffron); }

/* Related Categories */
.related-categories {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
}
.related-categories h3 { color: var(--maroon); margin-bottom: 0.75rem; }
.tag-dark {
  background: var(--maroon) !important;
  color: var(--white) !important;
}
.tag-dark:hover { background: var(--saffron) !important; }

/* Category Meta */
.category-meta { color: var(--gray-500); font-size: 0.9rem; margin-top: 0.25rem; }

/* Last Updated */
.last-updated { font-size: 0.8rem; color: var(--gray-500); margin-top: 0.25rem; }

/* Utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 1.5rem; }
.empty-state { text-align: center; padding: 3rem 0; }
.empty-state h2 { color: var(--gray-500); }

/* Responsive */
@media (max-width: 768px) {
  .mobile-menu-btn { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--maroon);
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
  }
  .nav-links.active { display: flex; }

  .hero h1 { font-size: 1.75rem; }
  .hotel-grid { grid-template-columns: 1fr; }
  .hotel-detail-grid { grid-template-columns: 1fr; }
  .blog-detail-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hotel-info-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .sort-bar { font-size: 0.8rem; }
  .comparison-table { font-size: 0.75rem; }
  .comparison-table th, .comparison-table td { padding: 0.5rem 0.625rem; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.5rem; }
  .search-box { flex-direction: column; }
  .search-box input { border-radius: var(--radius); margin-bottom: 0.5rem; }
  .search-box button { border-radius: var(--radius); }
}
