/* ============================================
   MERRIGAMEBREEZE - PREMIUM GLASSMORPHISM CSS
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0b0f1a 0%, #111827 50%, #0f172a 100%);
    color: #ffffff;
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

/* --- CONTAINER --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.container-narrow {
    max-width: 860px;
}

/* --- GLASS CARD BASE --- */
.glass-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    z-index: 1;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(56, 189, 248, 0.05);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(11, 15, 26, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(11, 15, 26, 0.85);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: #fff;
    z-index: 1001;
}

.logo-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.5));
}

.logo-text {
    background: linear-gradient(135deg, #38bdf8, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 18px;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    color: #cbd5e1;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger .bar {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(11, 15, 26, 0.88) 0%,
        rgba(17, 24, 39, 0.75) 40%,
        rgba(15, 23, 42, 0.85) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 120px 24px 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.25);
    font-size: 0.85rem;
    font-weight: 500;
    color: #38bdf8;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #38bdf8;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #38bdf8, #a78bfa, #38bdf8);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #38bdf8, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.82rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: #64748b;
    font-size: 0.78rem;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid #64748b;
    border-bottom: 2px solid #64748b;
    transform: rotate(45deg);
    margin: 8px auto 0;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(6px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #38bdf8, #2563eb);
    color: #fff;
    box-shadow: 0 4px 20px rgba(56, 189, 248, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(56, 189, 248, 0.45);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header.left-align {
    text-align: left;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(167, 139, 250, 0.12);
    border: 1px solid rgba(167, 139, 250, 0.25);
    font-size: 0.82rem;
    font-weight: 500;
    color: #a78bfa;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.4rem;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* ============================================
   DESTINATION CARDS (HOME)
   ============================================ */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.destination-card {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(56, 189, 248, 0.08);
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.destination-card:hover .card-image {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    font-size: 0.8rem;
    font-weight: 600;
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.card-content {
    padding: 20px;
}

.card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: #94a3b8;
    margin-bottom: 8px;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.card-desc {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 16px;
}

.card-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: #38bdf8;
    transition: all 0.3s ease;
}

.destination-card:hover .card-link {
    color: #7dd3fc;
    letter-spacing: 0.5px;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 32px;
    text-align: center;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    margin-top: 20px;
}

.feature-card p {
    font-size: 0.92rem;
    color: #94a3b8;
    line-height: 1.7;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.feature-icon.cyan-glow {
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.feature-icon.purple-glow {
    background: rgba(167, 139, 250, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.2);
}

/* ============================================
   TIPS PREVIEW SECTION
   ============================================ */
.tips-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.tips-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
}

.tip-item:hover {
    transform: translateX(4px);
}

.tip-number {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #38bdf8, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 40px;
}

.tip-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.tip-item p {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.6;
}

.tips-image-wrapper {
    padding: 8px;
    border-radius: 20px;
}

.tips-hero-image {
    border-radius: 14px;
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-card {
    padding: 56px;
    text-align: center;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.08), rgba(167, 139, 250, 0.08)) !important;
    border-color: rgba(56, 189, 248, 0.15) !important;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.newsletter-content > p {
    color: #94a3b8;
    margin-bottom: 28px;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #38bdf8;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.15);
}

.newsletter-form input::placeholder {
    color: #64748b;
}

.newsletter-note {
    display: block;
    margin-top: 12px;
    font-size: 0.8rem;
    color: #64748b;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 64px 0 32px;
    background: rgba(0, 0, 0, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 16px;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4 {
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #e2e8f0;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.88rem;
    color: #64748b;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #38bdf8;
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: #475569;
}

/* ============================================
   PAGE HERO (INNER PAGES)
   ============================================ */
.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-sm {
    min-height: 50vh;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-bg .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 120px 24px 60px;
}

.page-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-hero-content p {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.8;
}

/* ============================================
   DESTINATIONS FULL PAGE
   ============================================ */
.dest-full-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.dest-full-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border-radius: 20px;
}

.dest-full-card.reverse {
    direction: rtl;
}

.dest-full-card.reverse > * {
    direction: ltr;
}

.dest-full-image {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.dest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dest-full-card:hover .dest-img {
    transform: scale(1.05);
}

.dest-overlay-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.budget-tag {
    padding: 8px 18px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    font-weight: 700;
    font-size: 1.1rem;
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.dest-full-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dest-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.dest-country {
    font-size: 0.88rem;
    color: #94a3b8;
}

.dest-rating {
    font-size: 0.88rem;
    color: #fbbf24;
    font-weight: 600;
}

.dest-full-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.dest-full-content p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 24px;
}

.dest-costs {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.cost-item {
    padding: 10px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
}

.cost-label {
    display: block;
    color: #94a3b8;
    margin-bottom: 2px;
}

.cost-value {
    font-weight: 600;
    color: #38bdf8;
}

/* ============================================
   DESTINATION DETAIL PAGE
   ============================================ */
.detail-section {
    padding-bottom: 80px;
}

.detail-section + .detail-section {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.detail-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.detail-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-hero-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    max-width: 700px;
}

.detail-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 8px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.detail-hero-sub {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 16px;
}

.detail-hero-budget {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 10px;
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: #38bdf8;
    font-size: 0.95rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    padding-top: 48px;
}

.detail-block {
    padding: 32px;
    margin-bottom: 24px;
}

.detail-block h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-block p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.detail-list {
    list-style: none;
    padding: 0;
}

.detail-list li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.7;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.detail-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #38bdf8;
    font-size: 0.7rem;
    top: 14px;
}

.detail-list li:last-child {
    border-bottom: none;
}

.attractions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.attraction-item {
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.attraction-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(56, 189, 248, 0.2);
}

.attraction-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #e2e8f0;
}

.attraction-item p {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Sidebar */
.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    padding: 24px;
}

.sidebar-card h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-card p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.7;
}

.cost-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cost-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.cost-row:last-child {
    border-bottom: none;
}

.cost-row.total {
    border-top: 1px solid rgba(56, 189, 248, 0.2);
    padding-top: 12px;
    margin-top: 4px;
    font-weight: 700;
    color: #38bdf8;
    font-size: 1rem;
}

.quick-facts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fact-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    padding: 6px 0;
    color: #cbd5e1;
}

.fact-row span:first-child {
    color: #94a3b8;
}

.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ============================================
   BUDGET GUIDE PAGE
   ============================================ */
.budget-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.tier-card {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.tier-card.featured {
    border-color: rgba(56, 189, 248, 0.3) !important;
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.08);
}

.tier-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 14px;
    border-radius: 50px;
    background: linear-gradient(135deg, #38bdf8, #2563eb);
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.tier-header {
    padding: 32px 28px 24px;
    text-align: center;
}

.tier-header h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #e2e8f0;
}

.tier-price {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
}

.tier-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #94a3b8;
}

.tier-header.shoestring .tier-price { color: #34d399; }
.tier-header.comfortable .tier-price { color: #38bdf8; }
.tier-header.midrange .tier-price { color: #a78bfa; }

.tier-body {
    padding: 0 28px 12px;
}

.tier-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 0.88rem;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.tier-item span:last-child {
    font-weight: 600;
    color: #e2e8f0;
}

.tier-note {
    padding: 16px 28px 28px;
    font-size: 0.82rem;
    color: #64748b;
    font-style: italic;
}

/* Guide Grid */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.guide-panel {
    padding: 32px;
}

.guide-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.guide-panel h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.guide-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.6;
}

.guide-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #38bdf8;
}

/* Transport Table */
.transport-table-wrapper {
    padding: 32px;
    overflow-x: auto;
}

.transport-table {
    width: 100%;
    border-collapse: collapse;
}

.transport-table th,
.transport-table td {
    padding: 16px 20px;
    text-align: left;
    font-size: 0.9rem;
}

.transport-table th {
    color: #94a3b8;
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.transport-table td {
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.transport-table tr:hover td {
    background: rgba(255, 255, 255, 0.04);
}

/* ============================================
   TRAVEL TIPS PAGE
   ============================================ */
.tips-section-block {
    margin-bottom: 72px;
}

.tips-section-block:last-child {
    margin-bottom: 0;
}

.tips-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.tip-card {
    padding: 28px;
}

.tip-card h4 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: #e2e8f0;
}

.tip-card p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.7;
}

/* Season Grid */
.season-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.season-card {
    padding: 28px;
}

.season-header {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.season-header.spring { color: #34d399; }
.season-header.summer { color: #fbbf24; }
.season-header.autumn { color: #fb923c; }
.season-header.winter { color: #38bdf8; }

.season-card p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 12px;
}

.season-tag {
    font-size: 0.8rem;
    font-weight: 600;
    color: #a78bfa;
    padding: 4px 12px;
    border-radius: 6px;
    background: rgba(167, 139, 250, 0.1);
    display: inline-block;
}

/* Visa Content */
.visa-content {
    padding: 40px;
}

.visa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.visa-item h4 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: #e2e8f0;
}

.visa-item p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.7;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-info > p {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(56, 189, 248, 0.1);
}

.contact-item h4 {
    font-size: 0.92rem;
    margin-bottom: 2px;
}

.contact-item p {
    font-size: 0.88rem;
    color: #94a3b8;
}

.contact-form {
    padding: 40px;
}

.contact-form h3 {
    font-size: 1.3rem;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #cbd5e1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #38bdf8;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #475569;
}

.form-error {
    display: block;
    font-size: 0.8rem;
    color: #f87171;
    margin-top: 6px;
    min-height: 18px;
}

.form-success {
    text-align: center;
    padding: 32px 0;
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.15);
    border: 2px solid rgba(34, 197, 94, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #22c55e;
    margin: 0 auto 16px;
}

.form-success h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #22c55e;
}

.form-success p {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    background: none;
    border: none;
    color: #e2e8f0;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    gap: 16px;
}

.faq-question:hover {
    color: #38bdf8;
}

.faq-icon {
    font-size: 1.3rem;
    font-weight: 300;
    color: #38bdf8;
    min-width: 24px;
    text-align: center;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 28px 22px;
    font-size: 0.93rem;
    color: #94a3b8;
    line-height: 1.8;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
    padding-top: 140px;
}

.legal-content {
    padding: 48px;
}

.legal-content h1 {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.legal-updated {
    color: #64748b;
    font-size: 0.88rem;
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-content h2 {
    font-size: 1.25rem;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #e2e8f0;
}

.legal-content p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content ul {
    margin: 12px 0;
    padding-left: 24px;
}

.legal-content li {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 6px;
    list-style: disc;
}

.legal-content a {
    color: #38bdf8;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-fade-in {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.animate-fade-in:nth-child(2) { animation-delay: 0.15s; }
.animate-fade-in:nth-child(3) { animation-delay: 0.3s; }
.animate-fade-in:nth-child(4) { animation-delay: 0.45s; }
.animate-fade-in:nth-child(5) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .detail-grid {
        grid-template-columns: 1fr 320px;
        gap: 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .dest-full-card {
        grid-template-columns: 1fr;
    }
    
    .dest-full-card.reverse {
        direction: ltr;
    }
    
    .dest-full-image {
        min-height: 280px;
    }
    
    .tips-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
    }
    
    .budget-tiers {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }
    
    .guide-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .season-grid {
        grid-template-columns: 1fr;
    }
    
    .visa-grid {
        grid-template-columns: 1fr;
    }
    
    .attractions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Mobile Nav */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(11, 15, 26, 0.97);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 14px 32px;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Hero */
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-buttons .btn {
        justify-content: center;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    /* Sections */
    .section {
        padding: 64px 0;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .page-hero-content h1 {
        font-size: 2rem;
    }
    
    .page-hero {
        min-height: 45vh;
    }
    
    .page-hero-sm {
        min-height: 40vh;
    }
    
    /* Cards */
    .destinations-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .tips-cards-row {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    /* Detail */
    .detail-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .detail-hero {
        height: 45vh;
    }
    
    .dest-full-content {
        padding: 28px;
    }
    
    /* Newsletter */
    .newsletter-card {
        padding: 32px 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    /* Contact */
    .contact-form {
        padding: 28px;
    }
    
    .visa-content {
        padding: 24px;
    }
    
    .legal-content {
        padding: 28px;
    }
    
    .transport-table-wrapper {
        padding: 16px;
    }
    
    .transport-table th,
    .transport-table td {
        padding: 10px 12px;
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .page-hero-content h1 {
        font-size: 1.6rem;
    }
    
    .detail-hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .dest-costs {
        flex-direction: column;
    }
    
    .detail-hero-content {
        padding: 24px;
    }
}

/* --- Selection Styling --- */
::selection {
    background: rgba(56, 189, 248, 0.3);
    color: #fff;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0b0f1a;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}