/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.nav-brand i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    margin-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2074&q=80') center/cover;
    opacity: 0.3;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    z-index: 1;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    line-height: 1.2;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.cta-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Search Section */
.search-section {
    background: transparent;
    padding: 0.5rem 0;
    border-bottom: none;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.search-container {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.search-box {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.search-box i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1.1rem;
}

.search-box input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.search-box input:focus {
    outline: none;
    border-color: #2563eb;
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.filter-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    border: 2px solid #e5e7eb;
    background: white;
    color: #6b7280;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
    background: #f0f9ff;
}

.filter-btn.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

/* Destinations Section */
.destinations {
    padding: 6rem 0 2rem 0;
    background: #f8fafc;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Passed Through Hotels Section */
.passed-through-hotels {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.passed-through-hotels .section-title {
    color: white;
}

.passed-through-hotels .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.hotels-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.category-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.category-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.category-link {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.layover-filter-section {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.layover-filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    margin: 0 0.5rem;
    backdrop-filter: blur(10px);
}

.layover-filter-btn:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.2);
}

.layover-filter-btn.active {
    background: white;
    color: #667eea;
    border-color: white;
}

.passed-through-hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.hotel-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.layover-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.layover-type {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.layover-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.layover-location {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.layover-airport {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.8rem;
}

.layover-content {
    padding: 1.5rem;
    color: #333;
}

.layover-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.layover-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.layover-stars {
    color: #fbbf24;
}

.layover-rating-text {
    color: #64748b;
    font-weight: 500;
}

.layover-price {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.layover-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.layover-pros, .layover-cons {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 10px;
}

.layover-pros h4 {
    color: #059669;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.layover-cons h4 {
    color: #dc2626;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.layover-pros ul, .layover-cons ul {
    list-style: none;
    padding: 0;
}

.layover-pros li, .layover-cons li {
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    padding-left: 1rem;
    position: relative;
}

.layover-pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

.layover-cons li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.destination-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.destination-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.destination-content {
    padding: 1.5rem;
}

.destination-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.destination-location {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.destination-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.destination-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: #e0e7ff;
    color: #3730a3;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: #64748b;
}

.no-results i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #9ca3af;
}

/* Travel Tips Section */
.tips {
    padding: 5rem 0;
    background: white;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tip-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 2rem;
    border-left: 4px solid #2563eb;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tip-icon {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.tip-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.tip-content {
    color: #64748b;
    line-height: 1.6;
}

.tip-category {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 1rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #f8fafc;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer i {
    color: #ef4444;
}

/* Trip Detail Page Styles */
.trip-detail-page {
    padding-top: 100px;
    min-height: 100vh;
}

.back-button {
    margin-bottom: 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #1d4ed8;
}

.trip-detail {
    max-width: 1000px;
    margin: 0 auto;
}

.trip-header {
    text-align: center;
    margin-bottom: 3rem;
}

.trip-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.trip-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.trip-tags {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.trip-main-image {
    margin-bottom: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.trip-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 3rem;
    text-align: justify;
}

.trip-itinerary {
    margin-bottom: 3rem;
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.trip-itinerary h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1f2937;
    font-size: 2rem;
    font-weight: 700;
}

.itinerary-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.itinerary-day {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #2563eb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.itinerary-day:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.day-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.day-title::before {
    content: '📅';
    font-size: 1.3rem;
}

.day-activities {
    list-style: none;
    padding: 0;
}

.day-activities li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
}

.day-activities li:last-child {
    border-bottom: none;
}

.day-activities li:hover {
    background: rgba(37, 99, 235, 0.05);
    margin: 0 -0.5rem;
    padding-left: 1.5rem;
    border-radius: 8px;
}

.location-link {
    color: #2563eb;
    text-decoration: none;
    margin-left: 0.5rem;
    transition: color 0.3s ease;
}

.location-link:hover {
    color: #1d4ed8;
}

.location-link i {
    font-size: 1rem;
}

.day-activities li::before {
    content: '•';
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

.error-message {
    text-align: center;
    padding: 4rem 2rem;
}

.error-message i {
    font-size: 3rem;
    color: #ef4444;
    margin-bottom: 1rem;
}

.error-message h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.error-message p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Trip Detail Styles */
.trip-detail {
    padding: 2rem;
}

.trip-gallery {
    margin-bottom: 3rem;
}

.trip-gallery h2 {
    margin-bottom: 2rem;
}

.trip-highlights {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.highlights-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.highlights-list {
    list-style: none;
}

.highlights-list li {
    padding: 0.5rem 0;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlights-list li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
}

.trip-tips {
    background: #fef3c7;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid #f59e0b;
}

.tips-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 1rem;
}

.tips-list {
    list-style: none;
}

.tips-list li {
    padding: 0.5rem 0;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tips-list li::before {
    content: '💡';
    font-size: 1.1rem;
}

/* Back Button Styles */
.back-button {
  margin: 2rem 0 1rem 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.back-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
  color: white;
  text-decoration: none;
}

.back-link i {
  font-size: 0.9rem;
}

/* Map Container Styles */
.map-container {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.map-container iframe:hover {
  transform: scale(1.01);
}

/* Responsive map for mobile */
@media (max-width: 768px) {
  .map-container iframe {
    height: 300px;
  }
}

/* Destination Detail Page Styles */
.destination-detail {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  line-height: 1.6;
}

.destination-detail h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
  text-align: center;
}

.destination-meta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.destination-meta p {
  margin: 0;
  font-size: 1.1rem;
}

.destination-meta strong {
  color: #f8f9fa;
  font-weight: 600;
}

.destination-detail img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  margin: 2rem 0;
  transition: transform 0.3s ease;
}

.destination-detail img:hover {
  transform: scale(1.02);
}

.destination-detail h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #34495e;
  margin: 2rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #3498db;
  display: inline-block;
}

.destination-detail p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.destination-detail ul {
  background: #f8f9fa;
  padding: 1.5rem 2rem;
  border-radius: 10px;
  border-left: 4px solid #3498db;
  margin: 1.5rem 0;
}

.destination-detail li {
  font-size: 1.05rem;
  color: #2c3e50;
  margin-bottom: 0.8rem;
  padding-left: 0.5rem;
}

.destination-detail li:last-child {
  margin-bottom: 0;
}

/* Responsive design for destination detail pages */
@media (max-width: 768px) {
  .destination-detail {
    padding: 1rem;
    margin: 1rem;
  }
  
  .destination-detail h1 {
    font-size: 2rem;
  }
  
  .destination-meta {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  
  .destination-detail h2 {
    font-size: 1.5rem;
  }
  
  .destination-detail p {
    font-size: 1rem;
  }
  
  .destination-detail ul {
    padding: 1rem 1.5rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
        white-space: nowrap;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .trip-detail-page {
        padding-top: 80px;
    }
    
    .trip-title {
        font-size: 2rem;
    }
    
    .itinerary-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .trip-itinerary {
        padding: 1.5rem;
    }
    
    .itinerary-day {
        padding: 1.5rem;
    }
    
    .day-activities li {
        padding-left: 1.5rem;
        font-size: 0.95rem;
    }
    
    .filter-buttons {
        gap: 0.25rem;
    }
    
    .filter-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        white-space: nowrap;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 1rem 1rem;
    }
    
    .destination-card {
        margin: 0 1rem;
    }
    
    .search-box input {
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
    }
} 

/* Blog Section Styles */
.blog {
  margin-top: 40px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 1.5rem 1.2rem;
  transition: box-shadow 0.2s;
}
.blog-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
}
.blog-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.blog-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.blog-date {
  font-size: 0.95rem;
  color: #888;
} 

/* Layover Detail Page Styles */
.layover-detail {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.layover-detail-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    text-align: center;
}

.layover-detail-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
    color: white;
}

.layover-detail-header .layover-location {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.layover-detail-header .layover-airport {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

.layover-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.layover-date {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
}

.layover-detail-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.layover-detail-content .layover-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 2rem;
}

.layover-detail-content .layover-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.layover-tips {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid #2563eb;
}

.layover-tips h3 {
    color: #1e40af;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.layover-tips ul {
    list-style: none;
    padding: 0;
}

.layover-tips li {
    color: #374151;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.layover-tips li::before {
    content: '💡';
    position: absolute;
    left: 0;
}

.layover-summary {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #10b981;
}

.layover-summary h3 {
    color: #059669;
    margin-bottom: 1rem;
}

.layover-summary p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Responsive Design for Layover Detail */
@media (max-width: 768px) {
    .layover-detail-header {
        padding: 2rem 1rem;
    }
    
    .layover-detail-header h1 {
        font-size: 2rem;
    }
    
    .layover-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .layover-detail-content .layover-pros-cons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .layover-detail-content {
        padding: 1.5rem;
    }
} 

/* Simple Hotel List Items */
.hotel-list-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hotel-list-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hotel-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.hotel-location {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hotel-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.hotel-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #fbbf24;
    font-size: 0.9rem;
}

.rating-text {
    color: #64748b;
    font-weight: 500;
    font-size: 0.9rem;
}

.hotel-price {
    background: #10b981;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.hotel-date {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Design for Hotel List */
@media (max-width: 768px) {
    .hotel-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .hotel-list-item {
        padding: 1.2rem;
    }
    
    .hotel-name {
        font-size: 1.2rem;
    }
} 