/* ============================================
   UzTourism - Premium Tourism Website Styles
   ============================================ */

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

:root {
    --primary: #4f46e5;
    --primary-light: #818cf8;
    --primary-dark: #3730a3;
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    --gradient-1: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%);
    --gradient-2: linear-gradient(135deg, #06b6d4 0%, #4f46e5 100%);
    --gradient-3: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --gradient-hero: linear-gradient(135deg, rgba(79,70,229,0.7) 0%, rgba(124,58,237,0.5) 50%, rgba(236,72,153,0.4) 100%);
    --text-dark: #0f172a;
    --text-mid: #475569;
    --text-light: #94a3b8;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-soft: #f1f5f9;
    --bg-dark: #0f172a;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 50px -12px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; line-height: 1.7; color: var(--text-dark); background: var(--bg-white); overflow-x: hidden; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 4px; }

/* HEADER */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: transparent; transition: var(--transition); }
.header.scrolled { background: rgba(255,255,255,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(226,232,240,0.6); box-shadow: var(--shadow-md); }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 18px 5%; max-width: 1400px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 12px; font-size: 1.6rem; font-weight: 700; color: var(--bg-white); transition: var(--transition); text-decoration: none; }
.header.scrolled .logo { color: var(--primary); }
.logo i { font-size: 2rem; background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links { display: flex; list-style: none; gap: 6px; align-items: center; }
.nav-links a { text-decoration: none; color: rgba(255,255,255,0.9); font-weight: 500; font-size: 0.95rem; padding: 8px 16px; border-radius: var(--radius-full); transition: var(--transition); }
.header.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a:hover, .nav-links a.active { color: var(--bg-white); background: rgba(255,255,255,0.15); }
.header.scrolled .nav-links a:hover, .header.scrolled .nav-links a.active { color: var(--primary); background: rgba(79,70,229,0.08); }
.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 8px; z-index: 1001; }
.hamburger span { width: 28px; height: 3px; background: var(--bg-white); border-radius: 2px; transition: var(--transition); }
.header.scrolled .hamburger span { background: var(--text-dark); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
.auth-btn { background: var(--gradient-1) !important; border: none !important; color: var(--bg-white) !important; padding: 8px 20px !important; border-radius: var(--radius-full) !important; font-weight: 600 !important; font-size: 0.9rem !important; cursor: pointer; transition: var(--transition) !important; box-shadow: 0 4px 15px rgba(79,70,229,0.3); }
.auth-btn:hover { transform: translateY(-2px) !important; box-shadow: 0 6px 20px rgba(79,70,229,0.4) !important; }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease; }
.slide.active { opacity: 1; }
.slide::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--gradient-hero); }
.slide::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 200px; background: linear-gradient(to top, var(--bg-white) 0%, transparent 100%); }
.hero-content { text-align: center; color: var(--bg-white); z-index: 1; padding: 0 24px; max-width: 800px; }
.hero-content h1 { font-size: 4rem; font-weight: 800; margin-bottom: 24px; line-height: 1.1; letter-spacing: -0.02em; animation: heroFadeUp 1s ease forwards; text-shadow: 0 4px 30px rgba(0,0,0,0.15); }
.hero-content p { font-size: 1.25rem; margin-bottom: 40px; opacity: 0.9; font-weight: 300; animation: heroFadeUp 1s ease 0.2s both; line-height: 1.8; }
.hero-content .btn-primary { animation: heroFadeUp 1s ease 0.4s both; font-size: 1.1rem; padding: 18px 48px; }
.hero-scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2; animation: bounce 2s infinite; }
.hero-scroll-indicator a { color: rgba(255,255,255,0.7); font-size: 1.5rem; text-decoration: none; }
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(-15px); } 60% { transform: translateX(-50%) translateY(-8px); } }

.floating-shapes { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; overflow: hidden; }
.floating-shape { position: absolute; border-radius: 50%; opacity: 0.08; animation: floatShape 20s infinite ease-in-out; }
.floating-shape:nth-child(1) { width: 300px; height: 300px; background: var(--accent); top: 10%; left: -5%; }
.floating-shape:nth-child(2) { width: 200px; height: 200px; background: var(--primary-light); top: 60%; right: -3%; animation-delay: -5s; }
.floating-shape:nth-child(3) { width: 150px; height: 150px; background: #ec4899; bottom: 20%; left: 15%; animation-delay: -10s; }
@keyframes floatShape { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 25% { transform: translate(30px, -30px) rotate(90deg); } 50% { transform: translate(-20px, 20px) rotate(180deg); } 75% { transform: translate(15px, 15px) rotate(270deg); } }

/* BUTTONS */
.btn-primary { display: inline-block; padding: 16px 40px; background: var(--gradient-1); color: var(--bg-white); text-decoration: none; border-radius: var(--radius-full); font-weight: 600; font-size: 1rem; transition: var(--transition); border: none; cursor: pointer; position: relative; overflow: hidden; box-shadow: 0 4px 20px rgba(79,70,229,0.3); }
.btn-primary::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: var(--transition-slow); }
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(79,70,229,0.4); }
.btn-secondary { display: inline-block; padding: 12px 28px; background: transparent; color: var(--primary); text-decoration: none; border: 2px solid var(--primary); border-radius: var(--radius-full); font-weight: 600; font-size: 0.95rem; transition: var(--transition); cursor: pointer; }
.btn-secondary:hover { background: var(--primary); color: var(--bg-white); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(79,70,229,0.3); }

/* STATS */
.stats { position: relative; background: var(--gradient-1); padding: 70px 0; color: var(--bg-white); overflow: hidden; }
.stats::before { content: ''; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.stats::after { content: ''; position: absolute; bottom: -30%; left: -5%; width: 300px; height: 300px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; position: relative; z-index: 1; }
.stat-item { padding: 24px 16px; border-radius: var(--radius-lg); background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.12); transition: var(--transition); }
.stat-item:hover { background: rgba(255,255,255,0.15); transform: translateY(-5px); }
.stat-item i { font-size: 2.2rem; margin-bottom: 12px; opacity: 0.95; }
.stat-item h3 { font-size: 2.2rem; font-weight: 800; margin-bottom: 4px; letter-spacing: -0.02em; }
.stat-item p { font-size: 0.95rem; opacity: 0.85; font-weight: 300; }

/* SECTION COMMON */
section { padding: 100px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.8rem; font-weight: 800; margin-bottom: 16px; color: var(--text-dark); letter-spacing: -0.02em; position: relative; display: inline-block; }
.section-header h2::after { content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); width: 60px; height: 4px; background: var(--gradient-1); border-radius: 2px; }
.section-header p { color: var(--text-mid); font-size: 1.15rem; margin-top: 20px; font-weight: 300; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ABOUT */
.about { background: var(--bg-light); position: relative; overflow: hidden; }
.about::before { content: ''; position: absolute; top: 0; right: 0; width: 40%; height: 100%; background: radial-gradient(circle at top right, rgba(79,70,229,0.04) 0%, transparent 70%); pointer-events: none; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; }
.about-image img { width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); transition: var(--transition-slow); }
.about-image:hover img { transform: scale(1.02); }
.about-image::before { content: ''; position: absolute; top: 24px; left: 24px; width: 100%; height: 100%; border: 3px solid var(--primary-light); border-radius: var(--radius-xl); z-index: -1; opacity: 0.4; }
.about-image::after { content: ''; position: absolute; bottom: -20px; right: -20px; width: 120px; height: 120px; background: var(--gradient-1); border-radius: 50%; opacity: 0.1; z-index: -1; }
.about-text h3 { font-size: 2.2rem; margin-bottom: 24px; color: var(--text-dark); font-weight: 700; letter-spacing: -0.02em; }
.about-text p { margin-bottom: 30px; color: var(--text-mid); font-size: 1.05rem; line-height: 1.8; }
.features { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.features li { display: flex; align-items: center; gap: 12px; font-weight: 500; font-size: 0.95rem; padding: 12px 16px; background: var(--bg-white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: var(--transition); }
.features li:hover { transform: translateX(5px); box-shadow: var(--shadow-md); }
.features li i { color: var(--primary); font-size: 1rem; width: 28px; height: 28px; background: rgba(79,70,229,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* DESTINATIONS */
.destinations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.destination-card { background: var(--bg-white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: var(--transition); }
.destination-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-xl); }
.card-image { position: relative; height: 220px; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.destination-card:hover .card-image img { transform: scale(1.15); }
.card-image::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 60%; background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 100%); pointer-events: none; }
.card-badge { position: absolute; top: 15px; left: 15px; background: var(--gradient-3); color: var(--bg-white); padding: 6px 16px; border-radius: var(--radius-full); font-size: 0.8rem; font-weight: 600; z-index: 1; }
.card-content { padding: 24px; }
.card-content h3 { font-size: 1.3rem; margin-bottom: 8px; color: var(--text-dark); font-weight: 700; }
.card-content p { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 8px; }
.card-content p i { color: var(--primary); margin-right: 6px; }
.card-content .description { margin-bottom: 20px; line-height: 1.6; }
.card-content .btn-secondary { width: 100%; text-align: center; padding: 10px; font-size: 0.9rem; }

/* PLACES */
.places { background: var(--bg-light); position: relative; }
.places::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at bottom left, rgba(79,70,229,0.03) 0%, transparent 50%); pointer-events: none; }
.places-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.place-card { background: var(--bg-white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); transition: var(--transition); display: flex; flex-direction: column; cursor: pointer; }
.place-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.place-image { height: 280px; overflow: hidden; position: relative; }
.place-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.place-card:hover .place-image img { transform: scale(1.1); }
.place-image::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 50%; background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 100%); pointer-events: none; }
.place-badge { position: absolute; top: 16px; right: 16px; background: var(--bg-white); color: var(--primary); padding: 8px 18px; border-radius: var(--radius-full); font-size: 0.85rem; font-weight: 600; z-index: 1; box-shadow: var(--shadow-md); }
.place-content { padding: 28px 32px; flex: 1; display: flex; flex-direction: column; }
.place-location { display: flex; align-items: center; gap: 8px; color: var(--primary); font-size: 0.9rem; font-weight: 600; margin-bottom: 12px; }
.place-content h3 { font-size: 1.5rem; margin-bottom: 12px; color: var(--text-dark); line-height: 1.3; font-weight: 700; }
.place-content .description { color: var(--text-mid); font-size: 0.95rem; line-height: 1.8; margin-bottom: 16px; flex: 1; }
.place-details { background: var(--bg-soft); padding: 18px 20px; border-radius: var(--radius-md); margin-bottom: 16px; }
.place-details h4 { font-size: 0.95rem; margin-bottom: 10px; color: var(--text-dark); font-weight: 600; }
.place-details ul { list-style: none; }
.place-details li { padding: 5px 0; color: var(--text-mid); font-size: 0.9rem; display: flex; align-items: center; gap: 10px; }
.place-details li i { color: var(--accent); font-size: 0.7rem; }
.place-card .view-more { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--primary); font-size: 0.95rem; transition: var(--transition); }
.place-card:hover .view-more { gap: 14px; color: var(--primary-dark); }

/* CONTACT */
.contact { position: relative; overflow: hidden; }
.contact::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(79,70,229,0.04) 0%, transparent 70%); pointer-events: none; }
.contact-content { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.info-item { display: flex; align-items: flex-start; gap: 20px; padding: 24px; background: var(--bg-light); border-radius: var(--radius-lg); transition: var(--transition); }
.info-item:hover { transform: translateX(8px); box-shadow: var(--shadow-md); }
.info-item i { width: 56px; height: 56px; background: var(--gradient-1); color: var(--bg-white); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.info-item h4 { font-size: 1.05rem; margin-bottom: 4px; color: var(--text-dark); font-weight: 600; }
.info-item p { color: var(--text-mid); font-size: 0.95rem; }
.contact-form { background: var(--bg-light); padding: 40px; border-radius: var(--radius-xl); box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 20px; }
.form-group input, .form-group textarea { width: 100%; padding: 16px 20px; border: 2px solid var(--border); border-radius: var(--radius-md); font-family: inherit; font-size: 1rem; transition: var(--transition); background: var(--bg-white); color: var(--text-dark); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(79,70,229,0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* FOOTER */
.footer { background: var(--bg-dark); color: var(--bg-white); padding: 80px 0 30px; position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: var(--gradient-1); }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 50px; }
.footer-brand .logo { color: var(--bg-white); margin-bottom: 20px; }
.footer-brand p { color: var(--text-light); line-height: 1.8; font-size: 0.95rem; }
.footer-links h4, .footer-social h4 { font-size: 1.15rem; margin-bottom: 24px; font-weight: 600; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-light); text-decoration: none; transition: var(--transition); font-size: 0.95rem; display: inline-flex; align-items: center; gap: 8px; }
.footer-links a::before { content: ''; width: 0; height: 2px; background: var(--primary-light); transition: var(--transition); }
.footer-links a:hover { color: var(--bg-white); padding-left: 8px; }
.footer-links a:hover::before { width: 12px; }
.social-icons { display: flex; gap: 12px; flex-wrap: wrap; }
.social-icons a { width: 44px; height: 44px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--text-light); text-decoration: none; font-size: 1.1rem; transition: var(--transition); }
.social-icons a:hover { background: var(--primary); color: var(--bg-white); border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 4px 15px rgba(79,70,229,0.3); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom p { color: var(--text-light); font-size: 0.9rem; }
.admin-link { color: var(--text-light); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: var(--transition); font-size: 0.9rem; }
.admin-link:hover { color: var(--primary-light); }

/* MODAL */
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(15,23,42,0.85); backdrop-filter: blur(8px); animation: modalFadeIn 0.3s ease; }
@keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-content { background: var(--bg-white); margin: 3% auto; padding: 0; width: 90%; max-width: 850px; border-radius: var(--radius-xl); position: relative; box-shadow: var(--shadow-xl); overflow: hidden; animation: modalSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); max-height: 90vh; overflow-y: auto; }
@keyframes modalSlideUp { from { opacity: 0; transform: translateY(60px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
.close-modal { position: absolute; right: 20px; top: 20px; color: var(--bg-white); font-size: 32px; font-weight: 300; cursor: pointer; z-index: 10; width: 40px; height: 40px; background: rgba(0,0,0,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); line-height: 1; }
.close-modal:hover { background: rgba(0,0,0,0.6); transform: rotate(90deg); }
.carousel-container { position: relative; width: 100%; height: 420px; overflow: hidden; }
.carousel-slide { display: none; width: 100%; height: 100%; object-fit: cover; }
.carousel-slide.active { display: block; animation: carouselFade 0.5s ease; }
@keyframes carouselFade { from { opacity: 0; } to { opacity: 1; } }
.carousel-prev, .carousel-next { cursor: pointer; position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; background: rgba(255,255,255,0.2); backdrop-filter: blur(10px); color: var(--bg-white); font-size: 20px; border-radius: 50%; user-select: none; transition: var(--transition); display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.3); }
.carousel-prev { left: 16px; }
.carousel-next { right: 16px; }
.carousel-prev:hover, .carousel-next:hover { background: rgba(255,255,255,0.4); }
.modal-price { font-size: 1.4rem; color: var(--primary); font-weight: 700; margin: 20px 0; padding: 14px 24px; background: rgba(79,70,229,0.06); border-radius: var(--radius-md); display: inline-block; border: 1px solid rgba(79,70,229,0.12); }
#modal-body { padding: 32px; }
#modal-body h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.02em; }
#modal-body > div:first-of-type { color: var(--text-mid); margin-bottom: 16px; font-size: 0.95rem; }
#modal-body > p { font-size: 1.05rem; line-height: 1.8; color: var(--text-mid); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .destinations-grid { grid-template-columns: repeat(2, 1fr); }
    .stats .container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-links { position: fixed; top: 70px; left: 0; width: 100%; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); flex-direction: column; align-items: center; padding: 30px 0; gap: 8px; transform: translateY(-150%); transition: var(--transition); box-shadow: var(--shadow-lg); }
    .nav-links.active { transform: translateY(0); }
    .nav-links a { color: var(--text-mid) !important; }
    .nav-links a:hover, .nav-links a.active { color: var(--primary) !important; background: rgba(79,70,229,0.08) !important; }
    .hamburger { display: flex; }
    .hero-content h1 { font-size: 2.5rem; }
    .about-content, .contact-content { grid-template-columns: 1fr; }
    .destinations-grid, .places-grid { grid-template-columns: 1fr; }
    .stats .container { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .social-icons { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 15px; }
    .features { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 2rem; }
    .carousel-container { height: 280px; }
}
@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem; }
    .section-header h2 { font-size: 1.7rem; }
    .stats .container { grid-template-columns: 1fr 1fr; }
    .place-image { height: 200px; }
    .modal-content { width: 95%; margin: 5% auto; }
    #modal-body { padding: 20px; }
    .carousel-container { height: 220px; }
}
