/* ============================================
   GENERAL STYLES
   ============================================ */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px; /* Reduced from 20px all around to just horizontal */
    box-sizing: border-box;
}

section {
    margin: 0;
    padding: 2rem 0; /* Consistent vertical padding */
}

section:first-of-type {
    padding-top: 1rem; /* Less padding for first section */
}

section:last-of-type {
    padding-bottom: 2rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar-new {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.navbar-logo-new {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    padding: 0.25rem 0;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(74, 144, 226, 0.3);
    flex-shrink: 0;
}

.logo-icon svg {
    width: 26px;
    height: 26px;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.logo-text {
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.5px;
    display: flex;
    align-items: baseline;
}

.logo-local {
    color: #ff6b35;
}

.logo-hotels {
    color: #4a90e2;
}

.logo-tagline-new {
    font-size: 0.75rem;
    color: #888;
    font-style: normal;
    margin-top: 0.15rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.navbar-menu-new {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
}

.navbar-menu-new li a {
    color: #555;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar-menu-new li a:hover {
    color: #4a90e2;
}

.btn-list-property {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
    transition: all 0.3s;
}

.btn-list-property:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.hamburger-menu-new {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
}

.hamburger-menu-new .bar {
    width: 100%;
    height: 3px;
    background: #555;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-new {
    display: none;
    flex-direction: column;
    background: white;
    border-top: 1px solid #e0e0e0;
    padding: 1rem 0;
}

.mobile-menu-new.active {
    display: flex;
}

.mobile-menu-new a {
    padding: 0.75rem 2rem;
    color: #555;
    text-decoration: none;
    transition: background 0.3s;
}

.mobile-menu-new a:hover {
    background: #f5f5f5;
}

.mobile-cta {
    background: #4a90e2;
    color: white !important;
    margin: 0.5rem 2rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
}

/* ============================================
   HERO SECTION - SINGLE DEFINITION
   ============================================ */
.hero-new {
    background: #ffffff;
    padding: 1rem 0 1.5rem; /* Reduced padding */
    position: relative;
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-headline-new {
    font-size: 3rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 0.5rem 0;
    line-height: 1.1;
    font-family: 'Georgia', serif;
}

.text-blue {
    color: #4a90e2;
}

.hero-subhead-new {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.5;
}

/* ============================================
   COMPACT SEARCH BOXES
   ============================================ */
.search-box-new {
    max-width: 650px;
    margin: 0 auto 0.8rem;
    position: relative;
}

.search-input-wrapper {
    display: flex !important;
    align-items: center !important;
    background: white;
    border-radius: 40px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: box-shadow 0.3s;
    border: 1px solid #e0e0e0;
    height: 44px !important;
}

.search-input-wrapper:focus-within {
    box-shadow: 0 6px 25px rgba(74, 144, 226, 0.12);
    border-color: #4a90e2;
}

.search-icon {
    width: 16px !important;
    height: 16px !important;
    color: #999;
    margin-left: 1rem !important;
    flex-shrink: 0;
    display: block;
}

.search-input-wrapper input {
    flex: 1;
    border: none;
    padding: 0 0.8rem !important;
    font-size: 0.95rem !important;
    outline: none;
    background: transparent;
    color: #333;
    height: 44px !important;
    line-height: 44px !important;
    box-sizing: border-box;
}

.search-input-wrapper input::placeholder {
    color: #999;
    font-size: 0.95rem;
}

.search-btn-new {
    background: #4a90e2;
    color: white;
    border: none;
    padding: 0 1.4rem !important;
    font-size: 0.9rem !important;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 0 40px 40px 0 !important;
    white-space: nowrap;
    height: 44px !important;
    line-height: 44px !important;
    margin: 0;
    box-sizing: border-box;
}

.search-btn-new:hover {
    background: #357abd;
}

/* Second search box */
#countrySearchForm {
    max-width: 500px !important;
    margin: 0.5rem auto !important;
}

#countrySearchForm .search-input-wrapper {
    height: 38px !important;
    border-radius: 30px !important;
}

#countrySearchForm .search-input-wrapper input {
    height: 38px !important;
    line-height: 38px !important;
    padding: 0 0.6rem !important;
    font-size: 0.85rem !important;
}

#countrySearchForm .search-btn-new {
    height: 38px !important;
    line-height: 38px !important;
    padding: 0 1rem !important;
    font-size: 0.8rem !important;
    border-radius: 0 30px 30px 0 !important;
}

#countrySearchForm .search-icon {
    width: 14px !important;
    height: 14px !important;
    margin-left: 0.8rem !important;
}

/* Autocomplete styling */
#autocomplete-container,
#country-autocomplete-container {
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
    width: calc(100% - 40px);
    max-width: 650px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;
    margin-top: 4px;
}

.autocomplete-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 0.95rem;
}

.autocomplete-item:hover {
    background: #f0f7ff;
}

/* Message styling */
#message, 
#country-message {
    margin-top: 8px;
    text-align: center;
}

#message .alert,
#country-message .alert {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    display: inline-block;
    margin: 0 auto;
}

/* ============================================
   STATS ROW
   ============================================ */
.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    color: #666;
    font-size: 0.9rem;
    margin: 0.5rem 0;
    padding: 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.stat-icon,
.stat-icon-green {
    width: 16px;
    height: 16px;
}

.stat-divider {
    width: 1px;
    height: 20px;
    background: #ddd;
}

.stat-highlight {
    color: #4a90e2;
    font-weight: 700;
}

/* ============================================
   NEARBY BUTTON
   ============================================ */
.nearby-wrapper {
    margin: 0.5rem 0 1rem;
    padding: 0 1rem;
    text-align: center;
}

.nearby-btn-large {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    border: none;
    padding: 0.9rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.35);
    transition: all 0.3s;
    display: inline-block;
    margin: 0 auto;
}

.nearby-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.45);
}

/* ============================================
   POPULAR DESTINATIONS
   ============================================ */
.popular-destinations {
    padding: 2rem 0;
    background: #ffffff;
}

.pd-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pd-header {
    margin-bottom: 1.5rem;
}

.explore-label {
    display: inline-block;
    color: #4a90e2;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    padding-left: 0.75rem;
    border-left: 3px solid #4a90e2;
}

.pd-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 0.5rem 0;
    font-family: 'Georgia', serif;
    line-height: 1.1;
}

.pd-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 0;
}

.pd-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.pd-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    margin-bottom: 0.75rem;
}

.pd-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pd-card:hover .pd-image {
    transform: scale(1.06);
}

.country-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: white;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.property-count {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.35rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    backdrop-filter: blur(4px);
}

.pd-city-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin: 0;
    font-family: 'Georgia', serif;
}

.pd-footer {
    margin-top: 2rem;
    text-align: center;
}

.view-all-btn {
    display: inline-block;
    color: #4a90e2;
    border: 2px solid #4a90e2;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.view-all-btn:hover {
    background: #4a90e2;
    color: white;
}

/* ============================================
   CURATED SELECTION - HORIZONTAL SCROLL
   ============================================ */
.curated-selection {
    padding: 2rem 0;
    background: #ffffff;
    position: relative;
}

.cs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.cs-label {
    display: inline-block;
    color: #ff6b35;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    padding-left: 0.75rem;
    border-left: 3px solid #ff6b35;
}

.cs-tabs {
    display: flex;
    gap: 2rem;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.cs-tab {
    background: none;
    border: none;
    padding: 0.75rem 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ccc;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    font-family: 'Georgia', serif;
}

.cs-tab.active {
    color: #222;
}

.cs-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: #ff6b35;
}

.cs-subhead {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.cs-grid-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.cs-tab-content {
    display: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    white-space: nowrap;
    padding: 0.5rem 0 1.5rem 0;
    gap: 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.cs-tab-content.active {
    display: flex;
}

.cs-tab-content::-webkit-scrollbar {
    height: 6px;
}

.cs-tab-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.cs-tab-content::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.cs-tab-content::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.cs-card-text {
    display: inline-block;
    min-width: 300px;
    max-width: 300px;
    padding: 1.25rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
    transition: all 0.2s ease;
    white-space: normal;
    vertical-align: top;
    margin-right: 1.5rem;
}

.cs-card-text:last-child {
    margin-right: 0;
}

.cs-card-text:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: #d1d5db;
}

.cs-hotel-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    font-family: 'Georgia', serif;
    white-space: normal;
}

.cs-text-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.cs-label-text {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b7280;
}

.cs-label-featured {
    color: #4a90e2;
}

.cs-label-new {
    color: #10b981;
}

.cs-rating-text {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #4b5563;
}

.cs-review-count {
    color: #9ca3af;
}

.cs-hotel-location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #6b7280;
    font-size: 0.85rem;
    margin: 0 0 0.75rem 0;
    white-space: normal;
}

.cs-price-text {
    margin: 0.75rem 0;
    padding: 0.5rem 0;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.cs-price-label {
    font-size: 0.7rem;
    color: #9ca3af;
}

.cs-price-amount {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4a90e2;
}

.cs-price-period {
    font-size: 0.8rem;
    color: #9ca3af;
}

.cs-btn {
    display: inline-block;
    background: #4a90e2;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.cs-btn:hover {
    background: #357abd;
}

/* Navigation arrows */
.cs-nav {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #ff6b35;
    background: white;
    font-size: 2rem;
    font-weight: bold;
    color: #ff6b35;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.cs-nav:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.cs-nav-prev {
    left: -10px;
}

.cs-nav-next {
    right: -10px;
}

/* Hide arrows on mobile */
@media (max-width: 768px) {
    .cs-nav {
        display: none;
    }
    
    .cs-tab {
        font-size: 1.3rem;
    }
    
    .cs-card-text {
        min-width: 260px;
        max-width: 260px;
    }
}

@media (max-width: 480px) {
    .cs-card-text {
        min-width: 240px;
        max-width: 240px;
    }
}
/* ============================================
   TRAVEL RESOURCES
   ============================================ */
.resources-section {
    padding: 2rem 0;
    background: #ffffff;
    text-align: center;
}

.resources-section .container > div:first-of-type {
    max-width: 700px;
    margin: 0 auto 1.5rem;
    font-size: 1rem;
}

.resources-section .container > div:first-of-type p {
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
}

/* ============================================
   BOOK DIRECT BANNER
   ============================================ */
.book-direct-banner-section {
    padding: 2rem 0;
    background: #ffffff;
}

.book-direct-banner {
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(29, 78, 216, 0.2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

.book-direct-content {
    padding: 2rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.book-direct-content h2 {
    font-size: 1.8rem;
    margin: 0 0 0.75rem;
    line-height: 1.3;
    color: white;
}

.book-direct-content p {
    font-size: 1rem;
    margin: 0 0 1.5rem;
    opacity: 0.95;
}

.book-direct-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.book-direct-image {
    position: relative;
    overflow: hidden;
}

.book-direct-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.best-rate-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.best-rate-badge svg {
    color: #16a34a;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.badge-title {
    font-weight: 700;
    color: #222;
    font-size: 0.95rem;
}

.badge-subtitle {
    font-size: 0.8rem;
    color: #666;
}

/* ============================================
   MAP & RESULTS
   ============================================ */
.results-wrapper {
    padding-top: 1rem !important;
}

.results-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
}

#mapContainer {
    position: relative;
    width: 100% !important;
    height: 70vh !important;
    min-height: 300px !important;
    display: block;
    overflow: hidden;
    border-radius: 14px;
}

.map-container-wrapper {
    margin: 1rem 0;
    position: relative;
    display: none;
}

.map-container-wrapper.auto-show {
    display: block !important;
}

.map-legend {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 15px;
    margin: 0 0 10px 0 !important;
    padding: 8px 12px;
    font-size: 14px;
}

.hotel-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.hotel-table th,
.hotel-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.hotel-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.hotel-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.hotel-table a {
    color: #4a90e2;
    text-decoration: none;
}

.view-on-map {
    color: #4a90e2;
    cursor: pointer;
}

.location-valid {
    color: #28a745;
}

.location-invalid {
    color: #dc3545;
}

.search-loading {
    text-align: center;
    padding: 20px;
    color: #666;
}

.alert {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

/* ============================================
   CHAT BUBBLE
   ============================================ */
.chat-bubble {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 80px;
    height: 80px;
    background: #4a90e2 !important;
    color: white !important;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem !important;
    font-weight: 600;
    cursor: pointer;
    z-index: 1000;
    text-decoration: none;
    border: none;
    line-height: 1.2;
    text-align: center;
    padding: 0 8px;
    transition: transform 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.chat-bubble:hover {
    transform: scale(1.1);
    background: #357abd !important;
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 992px) {
    .navbar-menu-new,
    .btn-list-property {
        display: none;
    }
    
    .hamburger-menu-new {
        display: flex;
    }
    
    .pd-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cs-tab-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .book-direct-banner {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .book-direct-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 1.5rem 0;
    }
    
    .hero-headline-new {
        font-size: 2rem;
    }
    
    .hero-subhead-new {
        font-size: 1rem;
    }
    
    /* Search boxes - mobile */
    .search-box-new {
        max-width: 98% !important;
        width: 98% !important;
        margin: 0 auto 0.5rem;
    }
    
    #countrySearchForm {
        max-width: 95% !important;
        width: 95% !important;
    }
    
    .search-input-wrapper {
        height: 42px !important;
        border-radius: 30px !important;
        width: 100% !important;
    }
    
    .search-input-wrapper input {
        height: 42px !important;
        line-height: 42px !important;
        font-size: 0.9rem !important;
        padding: 0 0.5rem !important;
    }
    
    .search-btn-new {
        height: 42px !important;
        line-height: 42px !important;
        padding: 0 1rem !important;
        font-size: 0.85rem !important;
    }
    
    #countrySearchForm .search-input-wrapper {
        height: 36px !important;
    }
    
    #countrySearchForm .search-input-wrapper input {
        height: 36px !important;
        line-height: 36px !important;
        font-size: 0.8rem !important;
    }
    
    #countrySearchForm .search-btn-new {
        height: 36px !important;
        line-height: 36px !important;
        padding: 0 0.8rem !important;
        font-size: 0.75rem !important;
    }
    
    .stats-row {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .pd-heading {
        font-size: 2rem;
    }
    
    .pd-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cs-tabs {
        gap: 1rem;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .cs-tab {
        font-size: 1.3rem;
        white-space: nowrap;
    }
    
    .cs-tab-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cs-card-text {
        min-width: auto;
    }
    
    .book-direct-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .best-rate-badge {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 0.5rem 1rem;
    }
    
    .results-grid {
        flex-direction: column;
    }
    
    .map-container-wrapper {
        order: -1;
        margin-bottom: 1rem;
        height: 50vh;
    }
}

@media (max-width: 480px) {
    .hero-headline-new {
        font-size: 1.8rem;
    }
    
    .search-box-new {
        max-width: 98% !important;
    }
    
    .search-input-wrapper {
        height: 40px !important;
    }
    
    .search-input-wrapper input {
        height: 40px !important;
        line-height: 40px !important;
        font-size: 0.85rem !important;
    }
    
    .search-btn-new {
        height: 40px !important;
        line-height: 40px !important;
        padding: 0 0.8rem !important;
        font-size: 0.8rem !important;
    }
    
    #countrySearchForm .search-input-wrapper {
        height: 34px !important;
    }
    
    #countrySearchForm .search-input-wrapper input {
        height: 34px !important;
        line-height: 34px !important;
    }
    
    #countrySearchForm .search-btn-new {
        height: 34px !important;
        line-height: 34px !important;
    }
    
    .pd-heading {
        font-size: 1.8rem;
    }
    
    .chat-bubble {
        width: 65px;
        height: 65px;
        right: 10px;
        bottom: 10px;
        font-size: 0.7rem;
    }
}

/* Desktop map layout */
@media (min-width: 992px) {
    .results-grid {
        flex-direction: row;
        gap: 2rem;
    }
    
    .results-list {
        flex: 1 1 40%;
    }
    
    .map-container-wrapper {
        flex: 1 1 60%;
        position: sticky;
        top: 20px;
        align-self: flex-start;
        max-height: 80vh;
    }
    
    #mapContainer {
        height: 80vh !important;
    }
}
/* ================
   City Guide Page Styles
   (used in city_guide.html)
   ================ */
...your city guide styles here...

/* City Guide Specific Styles */
.city-guide-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb {
    background: #f8f9fa;
    padding: 15px 30px;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #e63946;
    text-decoration: none;
}

.guide-header {
    background: linear-gradient(135deg, #e63946 0%, #a4161a 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.near-me-button {
    position: absolute;
    top: 20px;
    right: 30px;
    background: rgba(255,255,255,0.15);
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.near-me-button:hover {
    background: white;
    color: #e63946;
    transform: scale(1.05);
}

.guide-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.guide-header .subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.toc {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    border-left: 4px solid #e63946;
}

.toc h2 {
    font-size: 1.2rem;
    margin-top: 0;
    color: #2a2a2a;
    border-bottom: none;
}

.toc ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.toc li {
    margin: 8px 0;
}

.toc a {
    color: #e63946;
    text-decoration: none;
    font-weight: 500;
}

.author-bio {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid #e63946;
}

.author-bio h3 {
    margin-top: 0;
    color: #2a2a2a;
}

.transparency-note {
    background: #e8f4f8;
    padding: 15px;
    border-radius: 8px;
    margin: 25px 0;
    font-size: 0.9rem;
    border-left: 3px solid #1a73e8;
}

.areas-section h2,
.recommended-hotels h2,
.tips-section h2,
.airport-transport h2,
.budget-section h2 {
    font-size: 1.8rem;
    color: #2a2a2a;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e63946;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.area-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.area-card h3 {
    color: #e63946;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.pros-cons {
    margin: 20px 0;
}

.pros-cons ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.pros-cons li {
    margin-bottom: 8px;
}

.pros {
    color: #2a9d8f;
}

.cons {
    color: #e76f51;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.hotel-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.hotel-card h4 {
    color: #e63946;
    margin-bottom: 10px;
}

.hotel-details {
    margin-top: 10px;
}

.price {
    font-weight: 700;
    color: #28a745;
    margin: 8px 0;
}

.location {
    color: #6c757d;
    margin: 5px 0;
}

.rating {
    color: #ffc107;
    font-weight: bold;
    margin: 5px 0;
}

.view-details {
    display: inline-block;
    margin-top: 10px;
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.view-details:hover {
    color: #0d47a1;
    text-decoration: underline;
}

.highlight {
    background: #fff9db;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #ffec99;
    margin: 30px 0;
}

.highlight h3 {
    color: #e67700;
    margin-top: 0;
}

.tip-box {
    background: #e9f7fe;
    border-left: 4px solid #1a73e8;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
}

.warning-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
}

.tip-box h4, 
.warning-box h4 {
    margin-top: 0;
    display: flex;
    align-items: center;
}

.tip-box h4 {
    color: #1a73e8;
}

.warning-box h4 {
    color: #856404;
}

.tips-section {
    margin: 40px 0;
}

.tips-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.tip {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid #6f42c1;
}

.tip.highlight {
    border-left-color: #e67700;
    background: #fff9db;
}

.tip.warning {
    border-left-color: #e76f51;
    background: #fff3cd;
}

.tip h4 {
    margin-top: 0;
    color: #2a2a2a;
}

.transport-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.transport-table th, 
.transport-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.transport-table th {
    background: #f2f2f2;
    font-weight: 600;
}

.transport-table tr:hover {
    background: #f9f9f9;
}

.budget-table-container {
    overflow-x: auto;
    margin: 25px 0;
}

.budget-table {
    min-width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.budget-table th, 
.budget-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.budget-table th {
    background: #f2f2f2;
    font-weight: 600;
}

.budget-table tr:hover {
    background: #f9f9f9;
}

.hotel-finder-cta {
    background: linear-gradient(135deg, #1d3557 0%, #457b9d 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 50px 0 30px;
}

.hotel-finder-cta h2 {
    color: white;
    border-bottom: none;
    margin-top: 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cta-button {
    display: inline-block;
    background: #e63946;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #d00000;
    transform: scale(1.05);
}

.cta-button.near-me {
    background: #28a745;
}

.cta-button.near-me:hover {
    background: #218838;
}

.guide-footer {
    text-align: center;
    padding: 30px;
    margin-top: 40px;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 0.9rem;
}

.guide-footer a {
    color: #e63946;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .guide-header h1 {
        font-size: 2rem;
    }
    
    .near-me-button {
        position: static;
        display: inline-block;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .guide-header {
        padding: 30px 20px;
    }
    
    .hotel-finder-cta {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        margin: 5px 0;
    }
    
    .area-card,
    .tip {
        padding: 15px;
    }
}

/* Add to your existing CSS */
.map-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 300px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #666;
    font-size: 16px;
    text-align: center;
    padding: 20px;
}


