/* vthailand.css - Complete Styles for Thai Travel Guide */

/* Import Google Fonts - ต้อง import ใน HTML ด้วย แต่เพิ่มไว้เผื่อ */
@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;600;800&family=Noto+Sans+JP&family=Noto+Sans+SC&display=swap');

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Prompt', 'Noto Sans JP', 'Noto Sans SC', sans-serif;
    scroll-behavior: smooth;
    background-color: #f8fafc;
    color: #0f172a;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)), url('https://visitorstothailand.com/img/ne-phimai.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* ===== NAVIGATION ===== */
#navbar {
    background: transparent;
    transition: all 0.3s ease;
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

#navbar.scrolled .text-3xl {
    color: #2563eb !important;
}

/* ===== PROVINCE CARDS ===== */
.province-card {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f1f5f9;
    background: white;
}

.province-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.province-card:hover .zoom-img {
    transform: scale(1.1);
}

.zoom-img {
    transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== FILTER BUTTONS ===== */
.region-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #64748b;
    font-weight: 600;
}

.region-btn:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.05);
}

.active-filter {
    background-color: #ffffff !important;
    color: #2563eb !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

/* ===== HIDE SCROLLBAR ===== */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ===== GO TO TOP BUTTON ===== */
#goTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    transition: all 0.3s ease;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #2563eb;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
}

#goTopBtn:hover {
    transform: translateY(-5px);
    background: #1d4ed8;
    box-shadow: 0 20px 30px -5px rgba(37, 99, 235, 0.5);
}

/* ===== MODAL STYLES ===== */
#detail-modal {
    transition: opacity 0.3s ease;
}

#detail-modal.hidden {
    display: none;
}

#detail-modal:not(.hidden) {
    display: flex;
}

/* ===== SKELETON LOADING ===== */
.skeleton-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== SEARCH CONTAINER ===== */
.search-container {
    position: relative;
    margin-bottom: 2rem;
}

.search-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    z-index: 10;
}

#search-input {
    padding-left: 3.5rem;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 384px;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    height: 56px;
    font-size: 1rem;
}

#search-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* ===== SHARE BUTTONS ===== */
.share-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.share-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.line {
    background: #00c300;
    color: white;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    font-size: 0.875rem;
    padding: 1rem 2.5rem 0;
    color: #64748b;
}

.breadcrumb a {
    color: #2563eb;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ===== NO RESULTS ===== */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 2rem;
    color: #64748b;
    font-size: 1.1rem;
}

/* ===== LOADING SPINNER ===== */
.loading-spinner {
    display: none;
    text-align: center;
    padding: 2rem;
}

.loading-spinner.active {
    display: block;
}

.loading-spinner i {
    font-size: 2.5rem;
    color: #2563eb;
}

/* ===== ERROR MESSAGE ===== */
.error-message {
    background: #fee2e2;
    color: #991b1b;
    padding: 1rem;
    border-radius: 1rem;
    margin: 1rem 0;
    display: none;
}

.error-message.active {
    display: block;
}

/* ===== TOAST NOTIFICATION ===== */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #1e293b;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    max-width: 90vw;
    white-space: normal;
    text-align: center;
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ===== POLICY LINKS ===== */
.policy-link {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.policy-link:hover {
    transform: translateY(-2px);
    color: #f59e0b !important;
}

/* ===== SEARCH STATUS INDICATOR ===== */
.search-status {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.5rem;
    display: none;
}

.search-status.active {
    display: block;
}

/* ===== MAP SECTION STYLES ===== */
.map-section {
    padding: 4rem 1rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.map-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(37,99,235,0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.map-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.map-card {
    background: white;
    border-radius: 2rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(226, 232, 240, 0.6);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.map-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px -15px rgba(37,99,235,0.3);
    border-color: rgba(37,99,235,0.3);
}

.map-card:hover::after {
    opacity: 1;
}

.map-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.map-card:hover .map-icon {
    transform: scale(1.1) rotate(5deg);
}

.map-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.map-card p {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.map-stats {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #2563eb;
    font-weight: 600;
    font-size: 0.9rem;
}

.map-stats i {
    transition: transform 0.3s ease;
}

.map-card:hover .map-stats i {
    transform: translateX(5px);
}

.map-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(37,99,235,0.1);
    color: #2563eb;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Map link styles */
.map-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.map-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Top Destinations Map */
.top-destinations-map {
    margin-top: 3rem;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 2.5rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.3);
}

.top-destinations-map::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.top-destinations-map h2 {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.top-destinations-map p {
    color: #94a3b8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.destination-cluster {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.dest-pin {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    padding: 0.75rem 1.5rem;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dest-pin i {
    color: #fbbf24;
    font-size: 0.8rem;
}

.dest-pin:hover {
    background: #2563eb;
    transform: scale(1.05);
    border-color: transparent;
    box-shadow: 0 10px 20px -10px rgba(37,99,235,0.5);
}

/* Map Modal */
.map-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.map-modal.active {
    display: flex;
}

.map-modal-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.map-modal-content img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.map-modal-close {
    position: absolute;
    top: -3rem;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.map-modal-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

/* ===== TRAVEL TIPS SECTION ===== */
.travel-tips-section {
    padding: 5rem 1rem;
    background: white;
    border-top: 1px solid #e2e8f0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.tip-card {
    background: #f8fafc;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    cursor: pointer;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.1);
    border-color: #2563eb;
}

.tip-icon {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.tip-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.tip-card p {
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tip-link {
    color: #2563eb;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.tip-card:hover .tip-link {
    gap: 0.75rem;
}

/* ===== FESTIVALS SECTION ===== */
.festivals-section {
    padding: 5rem 1rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.festivals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.festival-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.festival-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.festival-card:hover img {
    transform: scale(1.1);
}

.festival-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: white;
}

.festival-month {
    background: #f59e0b;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 0.75rem;
}

.festival-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.festival-card p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===== LOCAL EXPERIENCES SECTION ===== */
.experiences-section {
    padding: 5rem 1rem;
    background: white;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.experience-card {
    display: flex;
    gap: 1.5rem;
    background: #f8fafc;
    border-radius: 1.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    cursor: pointer;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.1);
    border-color: #2563eb;
}

.experience-image {
    width: 100px;
    height: 100px;
    border-radius: 1rem;
    overflow: hidden;
    flex-shrink: 0;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.experience-content p {
    color: #475569;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.experience-meta {
    display: flex;
    gap: 1.5rem;
    color: #2563eb;
    font-size: 0.9rem;
    font-weight: 500;
}

.experience-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* ===== ACCOMMODATION SECTION ===== */
.accommodation-section {
    padding: 5rem 1rem;
    background: #f8fafc;
}

.accommodation-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    background: white;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.tab-btn.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.hotel-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.15);
}

.hotel-image {
    height: 200px;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.1);
}

.hotel-info {
    padding: 1.5rem;
}

.hotel-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.hotel-location {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.hotel-rating span {
    color: #64748b;
    margin-left: 0.5rem;
}

.hotel-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2563eb;
}

.hotel-price span {
    font-size: 0.9rem;
    font-weight: normal;
    color: #64748b;
}

/* ===== ITINERARIES SECTION ===== */
.itineraries-section {
    padding: 5rem 1rem;
    background: white;
}

.itineraries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.itinerary-card {
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.itinerary-card:hover {
    border-color: #2563eb;
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.1);
}

.itinerary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.itinerary-badge {
    background: #dcfce7;
    color: #16a34a;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}

.itinerary-popular {
    color: #f59e0b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.itinerary-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.itinerary-desc {
    color: #475569;
    margin-bottom: 1.5rem;
}

.itinerary-highlights {
    margin-bottom: 1.5rem;
}

.itinerary-highlights div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #475569;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.itinerary-highlights i {
    color: #16a34a;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    padding: 5rem 1rem;
    background: #f8fafc;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.review-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #2563eb;
}

.review-user h4 {
    font-weight: 700;
    color: #0f172a;
}

.review-user p {
    font-size: 0.9rem;
    color: #64748b;
}

.review-stars {
    margin-left: auto;
    color: #f59e0b;
}

.review-text {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-photos {
    display: flex;
    gap: 0.5rem;
}

.review-photos img {
    width: 60px;
    height: 60px;
    border-radius: 0.75rem;
    object-fit: cover;
}

/* ===== WEATHER SECTION ===== */
.weather-section {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
}

.weather-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.weather-info {
    flex: 1;
}

.weather-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0c4a6e;
    margin: 0.5rem 0 1rem;
}

.weather-desc {
    font-size: 1.1rem;
    color: #0369a1;
    margin-bottom: 2rem;
}

.season-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.season-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.season-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.season-text h4 {
    font-weight: 700;
    color: #0c4a6e;
    margin-bottom: 0.25rem;
}

.season-text p {
    color: #0369a1;
}

.weather-chart {
    flex: 1;
    background: white;
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.1);
}

.weather-chart h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.chart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.chart-month {
    width: 70px;
    font-weight: 600;
    color: #475569;
}

.chart-bar {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 100px;
    overflow: hidden;
}

.chart-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    border-radius: 100px;
}

.chart-temp {
    width: 50px;
    text-align: right;
    font-weight: 600;
    color: #2563eb;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: gap 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.view-all-link:hover {
    gap: 0.75rem;
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
}

/* ===== FOOTER ===== */
footer {
    background: #0f172a;
    color: white;
}

footer a {
    transition: all 0.3s ease;
}

/* ===== LINE CLAMP ===== */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .map-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .destination-cluster {
        grid-template-columns: repeat(3, 1fr);
    }
    .tips-grid,
    .festivals-grid,
    .accommodation-grid,
    .itineraries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .weather-container {
        flex-direction: column;
        gap: 2rem;
    }
    .weather-info h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    #search-input {
        font-size: 16px;
        max-width: 100%;
    }
    
    #policy-links {
        justify-content: center;
    }

    .map-section {
        padding: 2rem 1rem;
    }

    .map-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .destination-cluster {
        grid-template-columns: repeat(2, 1fr);
    }

    .top-destinations-map {
        padding: 1.5rem;
    }

    .top-destinations-map h2 {
        font-size: 1.5rem;
    }

    .tips-grid,
    .festivals-grid,
    .experiences-grid,
    .accommodation-grid,
    .itineraries-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .experience-card {
        flex-direction: column;
    }

    .experience-image {
        width: 100%;
        height: 150px;
    }

    .festivals-grid {
        grid-template-columns: 1fr;
    }

    .festival-card {
        height: 200px;
    }

    .accommodation-tabs {
        flex-wrap: wrap;
    }

    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    #goTopBtn {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }

    .breadcrumb {
        padding: 0.5rem 1rem 0;
    }

    .share-btn {
        width: 2.5rem;
        height: 2.5rem;
    }
}

@media (max-width: 480px) {
    .destination-cluster {
        grid-template-columns: 1fr;
    }
    
    .dest-pin {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .weather-info h2 {
        font-size: 1.75rem;
    }
    
    .chart-month {
        width: 50px;
        font-size: 0.8rem;
    }
    
    .chart-temp {
        width: 40px;
        font-size: 0.8rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.province-card {
    animation: fadeIn 0.5s ease forwards;
}

/* ===== PRINT STYLES ===== */
@media print {
    #goTopBtn,
    #cookie-banner,
    .share-buttons,
    .map-modal,
    #detail-modal {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero-section {
        background: none;
        color: black;
    }
}