/* ==========================================================================
   EXPLORE PALUNG & DAMAN - EARTHY TERRACOTTA, OLIVE & WARM SAND THEME
   ========================================================================== */

:root {
  --primary-navy: #1c1917;
  --primary-dark: #141210;
  --primary-light: #292524;
  --primary-blue: #c2410c;
  --accent-rhododendron: #c2410c;
  --accent-rhododendron-hover: #9a3412;
  --accent-amber: #d97706;
  --accent-pine: #4d7c0f;
  --accent-pine-dark: #3f6212;
  --accent-pine-light: #ecfccb;
  --bg-main: #faf7f2;
  --bg-card: #ffffff;
  --bg-surface-alt: #f4efe6;
  --border-color: #e7dfd4;
  --text-main: #1c1917;
  --text-muted: #57534e;
  --text-light: #8a8279;
  --text-white: #ffffff;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --glass-bg: rgba(255, 255, 255, 0.94);
  --glass-blur: blur(14px);
  --shadow-sm: 0 1px 3px 0 rgba(28, 25, 23, 0.05);
  --shadow-md: 0 4px 8px -1px rgba(28, 25, 23, 0.08);
  --shadow-lg: 0 12px 20px -3px rgba(28, 25, 23, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(28, 25, 23, 0.14);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); background: var(--bg-main); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
.section-padding { padding: 5.5rem 0; }
.text-center { text-align: center; }

.badge { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.35rem 0.85rem; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; border-radius: var(--radius-full); }
.badge-primary { background-color: rgba(194, 65, 12, 0.1); color: #c2410c; border: 1px solid rgba(194, 65, 12, 0.25); }
.badge-pine { background-color: #ecfccb; color: #3f6212; border: 1px solid rgba(101, 163, 13, 0.25); }
.badge-amber { background-color: #fef3c7; color: #b45309; border: 1px solid rgba(217, 119, 6, 0.25); }
.badge-glass { background: rgba(255, 255, 255, 0.18); backdrop-filter: blur(8px); color: var(--text-white); border: 1px solid rgba(255, 255, 255, 0.3); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem; padding: 0.85rem 1.65rem; font-weight: 600; font-size: 0.95rem; border-radius: var(--radius-md); border: none; cursor: pointer; transition: var(--transition-smooth); }
.btn-primary { background: linear-gradient(135deg, #c2410c, #d97706); color: var(--text-white); box-shadow: 0 4px 14px rgba(194, 65, 12, 0.35); }
.btn-primary:hover { background: linear-gradient(135deg, #9a3412, #b45309); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(194, 65, 12, 0.45); }
.btn-secondary { background-color: rgba(255, 255, 255, 0.18); color: var(--text-white); backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, 0.35); }
.btn-secondary:hover { background-color: rgba(255, 255, 255, 0.28); transform: translateY(-2px); }
.btn-outline { background-color: transparent; color: var(--primary-navy); border: 1.5px solid var(--border-color); }
.btn-outline:hover { border-color: #c2410c; background-color: #c2410c; color: var(--text-white); }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.85rem; border-radius: var(--radius-sm); }
.btn-block { width: 100%; }

.section-header { max-width: 680px; margin: 0 auto 3.5rem; text-align: center; }
.section-title { font-family: var(--font-display); font-size: 2.35rem; font-weight: 800; color: var(--primary-navy); line-height: 1.25; margin: 0.75rem 0 1rem; letter-spacing: -0.02em; }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; }

/* Top Bar */
.top-bar { background-color: var(--primary-dark); color: rgba(255, 255, 255, 0.88); font-size: 0.82rem; padding: 0.5rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); text-align: center; }
.top-bar-content { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.top-bar-info { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1.75rem; }
.top-bar-item { display: flex; align-items: center; gap: 0.4rem; }
.top-bar-item i { color: #fbbf24; }

/* Header & Nav */
.site-header { position: sticky; top: 0; left: 0; width: 100%; z-index: 1000; background-color: var(--glass-bg); backdrop-filter: var(--glass-blur); border-bottom: 1px solid var(--border-color); transition: var(--transition-smooth); }
.site-header.scrolled { box-shadow: var(--shadow-md); background-color: rgba(255, 255, 255, 0.98); }
.navbar { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand-logo { display: flex; align-items: center; gap: 0.85rem; font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; color: var(--primary-navy); text-decoration: none; }
.brand-logo-img { width: 50px; height: 50px; object-fit: contain; border-radius: 12px; background: #ffffff; padding: 2px; border: 1.5px solid rgba(194, 65, 12, 0.2); box-shadow: 0 3px 10px rgba(194, 65, 12, 0.15); transition: var(--transition-fast); flex-shrink: 0; }
.brand-logo:hover .brand-logo-img { transform: scale(1.06); border-color: #c2410c; box-shadow: 0 6px 16px rgba(194, 65, 12, 0.28); }
.brand-logo-text { line-height: 1.15; }
.brand-logo-text span { color: #c2410c; }
.nav-menu { display: flex; align-items: center; list-style: none; gap: 1.75rem; }
.nav-link { font-weight: 600; font-size: 0.92rem; color: var(--primary-navy); transition: var(--transition-fast); position: relative; padding: 0.25rem 0; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0%; height: 2.5px; background: linear-gradient(90deg, #c2410c, #65a30d); transition: var(--transition-fast); border-radius: var(--radius-full); }
.nav-link:hover, .nav-link.active { color: #c2410c; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; color: var(--primary-navy); cursor: pointer; }

/* Hero Section */
.hero-section { position: relative; min-height: 94vh; display: flex; align-items: center; background: url('../assets/images/hero-bg.jpg?v=3') center center / cover no-repeat; color: var(--text-white); padding: 6rem 0 8rem; }
.hero-content { max-width: 860px; }
.hero-badge-group { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-title { font-family: var(--font-display); font-size: 3.5rem; font-weight: 800; line-height: 1.15; margin-bottom: 1.25rem; letter-spacing: -0.03em; text-shadow: 0 3px 14px rgba(0, 0, 0, 0.75); }
.hero-title span { background: linear-gradient(135deg, #fed7aa, #fef08a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: none; filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5)); }
.hero-tagline { font-size: 1.22rem; line-height: 1.7; color: #ffffff; margin-bottom: 2.25rem; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85); font-weight: 500; max-width: 680px; }
.hero-cta-group { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* Quick Search */
.hero-quick-search { display: none; }

/* Stats Strip */
.stats-strip { margin-top: -2rem; position: relative; z-index: 10; padding-bottom: 2rem; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.stat-card { background: var(--bg-card); border-radius: var(--radius-lg); padding: 1.75rem 1.5rem; box-shadow: var(--shadow-lg); border: 1px solid var(--border-color); display: flex; align-items: center; gap: 1.25rem; transition: var(--transition-smooth); }
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: rgba(194, 65, 12, 0.35); }
.stat-icon { width: 52px; height: 52px; border-radius: var(--radius-md); background: rgba(194, 65, 12, 0.1); color: #c2410c; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.stat-info h3 { font-family: var(--font-display); font-size: 1.65rem; font-weight: 800; color: var(--primary-navy); line-height: 1.1; }
.stat-info p { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
.stat-info span { display: block; font-size: 0.75rem; color: var(--text-light); }

/* About & Seasons */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: start; }
.about-narrative h3 { font-family: var(--font-display); font-size: 1.85rem; font-weight: 700; color: var(--primary-navy); margin-rem 0 1.25rem; }
.about-narrative p { color: var(--text-muted); margin-bottom: 1.25rem; font-size: 1.02rem; }
.about-features-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1.75rem 0 2rem; }
.about-feature-item { display: flex; align-items: center; gap: 0.95rem; font-weight: 600; color: var(--primary-navy); font-size: 0.95rem; line-height: 1.4; }
.about-feature-item .feature-icon { width: 44px; height: 44px; border-radius: var(--radius-md); background: #f5eedc; border: 1px solid rgba(194, 65, 12, 0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 2px 6px rgba(0,0,0,0.04); transition: var(--transition-fast); }
.about-feature-item:hover .feature-icon { transform: scale(1.08); border-color: #c2410c; background: #fff8eb; box-shadow: 0 4px 10px rgba(194, 65, 12, 0.15); }
.seasons-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.season-card { background: var(--bg-card); border-radius: var(--radius-lg); padding: 1.4rem; border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); transition: var(--transition-smooth); display: flex; flex-direction: column; }
.season-card:hover { border-color: #c2410c; transform: translateY(-3px); box-shadow: var(--shadow-md); background: #fffcf7; }
.season-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; gap: 0.5rem; }
.season-header .badge { white-space: nowrap; font-size: 0.7rem; padding: 0.3rem 0.65rem; letter-spacing: 0.02em; flex-shrink: 0; }
.season-icon-box { width: 40px; height: 40px; border-radius: var(--radius-md); background: #f5eedc; border: 1px solid rgba(194, 65, 12, 0.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.season-title-row { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.4rem; }
.season-card h4 { font-size: 1.02rem; font-weight: 700; color: var(--primary-navy); margin: 0; }
.season-temp-tag { font-size: 0.76rem; font-weight: 700; color: #c2410c; background: rgba(194, 65, 12, 0.08); padding: 0.15rem 0.5rem; border-radius: var(--radius-full); }
.season-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: auto; padding-top: 0.75rem; border-top: 1px dashed var(--border-color); }
.season-pill { font-size: 0.74rem; font-weight: 600; color: #1c1917; background: #f5eedc; border: 1px solid rgba(194, 65, 12, 0.22); padding: 0.22rem 0.65rem; border-radius: var(--radius-full); transition: var(--transition-fast); display: inline-flex; align-items: center; gap: 0.4rem; box-shadow: 0 1px 3px rgba(0,0,0,0.03); }
.season-pill:hover { background: #c2410c; color: #ffffff; border-color: #c2410c; transform: translateY(-1px); box-shadow: 0 3px 8px rgba(194, 65, 12, 0.2); }
.season-pill-img { width: 22px; height: 22px; object-fit: contain; border-radius: 4px; flex-shrink: 0; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15)); }

/* Filter Tabs */
.filter-container { display: flex; align-items: center; justify-content: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.75rem; }
.filter-btn { background: var(--bg-card); color: var(--text-muted); border: 1px solid var(--border-color); padding: 0.6rem 1.35rem; border-radius: var(--radius-full); font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: var(--transition-fast); }
.filter-btn:hover { color: var(--primary-navy); border-color: #c2410c; }
.filter-btn.active { background: var(--primary-navy); color: var(--text-white); border-color: var(--primary-navy); box-shadow: 0 4px 12px rgba(28, 25, 23, 0.25); }

/* Attractions Grid */
.attractions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 2rem; }
.attraction-card { background: var(--bg-card); border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); transition: var(--transition-smooth); display: flex; flex-direction: column; }
.attraction-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: rgba(194, 65, 12, 0.35); }
.attraction-img-wrapper { position: relative; height: 230px; overflow: hidden; background: #e7e5e4; }
.attraction-img-wrapper img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.attraction-card:hover .attraction-img-wrapper img { transform: scale(1.08); }
.attraction-tag { position: absolute; top: 1rem; left: 1rem; }
.attraction-elevation { position: absolute; bottom: 1rem; right: 1rem; }
.attraction-body { padding: 1.75rem; display: flex; flex-direction: column; flex-grow: 1; }
.attraction-location { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--text-muted); font-weight: 600; margin-bottom: 0.5rem; }
.attraction-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--primary-navy); margin-bottom: 0.75rem; line-height: 1.3; }
.attraction-desc { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.25rem; flex-grow: 1; }
.attraction-highlights { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.5rem; }
.attraction-highlights span { font-size: 0.75rem; background: var(--bg-surface-alt); color: var(--primary-navy); padding: 0.25rem 0.6rem; border-radius: var(--radius-sm); font-weight: 600; }
.attraction-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border-color); padding-top: 1.25rem; margin-top: auto; }
.attraction-timing { font-size: 0.78rem; color: var(--text-light); }

/* Activities Grid */
.activities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.75rem; }
.activity-card { background: var(--bg-card); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); transition: var(--transition-smooth); display: flex; flex-direction: column; }
.activity-card:hover { transform: translateY(-5px); border-color: #c2410c; box-shadow: var(--shadow-lg); }
.activity-icon-wrap { width: 54px; height: 54px; border-radius: var(--radius-md); background: linear-gradient(135deg, rgba(194, 65, 12, 0.15), rgba(101, 163, 13, 0.15)); color: #c2410c; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem; }
.activity-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--primary-navy); margin-bottom: 0.75rem; }
.activity-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; margin-bottom: 1.25rem; flex-grow: 1; }
.activity-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; font-weight: 600; border-top: 1px solid var(--border-color); padding-top: 1rem; }
.activity-meta span { display: flex; align-items: center; gap: 0.35rem; color: var(--text-muted); }

/* Stays Grid */
.stays-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; }
.stay-card { background: var(--bg-card); border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); transition: var(--transition-smooth); display: flex; flex-direction: column; }
.stay-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: rgba(194, 65, 12, 0.3); }
.stay-img-wrap { position: relative; height: 210px; }
.stay-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.stay-price-badge { position: absolute; bottom: 1rem; left: 1rem; background: var(--primary-dark); color: var(--text-white); padding: 0.35rem 0.85rem; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.85rem; border-left: 3px solid #65a30d; }
.stay-body { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.stay-rating { display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: #d97706; font-weight: 700; margin-bottom: 0.4rem; }
.stay-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--primary-navy); margin-bottom: 0.35rem; }
.stay-location { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.85rem; }
.stay-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 1.2rem; flex-grow: 1; }
.stay-amenities { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem; }
.stay-amenities span { font-size: 0.72rem; background: var(--bg-surface-alt); color: var(--primary-navy); padding: 0.2rem 0.5rem; border-radius: var(--radius-sm); }

/* Itinerary Tabs & Timeline */
.itinerary-tabs { display: flex; justify-content: center; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }
.itinerary-tab-btn { background: var(--bg-card); color: var(--primary-navy); border: 1.5px solid var(--border-color); padding: 0.85rem 1.75rem; border-radius: var(--radius-lg); font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: var(--transition-smooth); display: flex; align-items: center; gap: 0.6rem; }
.itinerary-tab-btn:hover { border-color: #c2410c; }
.itinerary-tab-btn.active { background: var(--primary-navy); color: var(--text-white); border-color: var(--primary-navy); box-shadow: var(--shadow-md); }
.itinerary-container { max-width: 860px; margin: 0 auto; }
.itinerary-header-card { background: linear-gradient(135deg, var(--primary-navy), var(--primary-light)); color: var(--text-white); border-radius: var(--radius-xl); padding: 2rem; margin-bottom: 2.5rem; box-shadow: var(--shadow-md); border-left: 5px solid #d97706; }
.itinerary-header-card h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; margin-bottom: 0.4rem; }
.itinerary-header-card p { color: rgba(255, 255, 255, 0.88); font-size: 0.95rem; }
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before { content: ''; position: absolute; top: 10px; bottom: 10px; left: 15px; width: 2px; background: var(--border-color); }
.timeline-item { position: relative; margin-bottom: 2.25rem; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-marker { position: absolute; left: -2.5rem; top: 0; width: 32px; height: 32px; border-radius: 50%; background: #c2410c; color: var(--text-white); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; box-shadow: 0 0 0 4px var(--bg-main); z-index: 2; }
.timeline-card { background: var(--bg-card); border-radius: var(--radius-lg); padding: 1.5rem; border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); transition: var(--transition-fast); }
.timeline-card:hover { border-color: #c2410c; box-shadow: var(--shadow-md); }
.timeline-time { font-size: 0.8rem; font-weight: 700; color: #d97706; text-transform: uppercase; margin-bottom: 0.35rem; }
.timeline-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--primary-navy); margin-bottom: 0.5rem; }
.timeline-desc { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.gallery-item { position: relative; height: 260px; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(20, 18, 16, 0.92) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; color: var(--text-white); opacity: 0; transition: opacity 0.3s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.25rem; }
.gallery-overlay p { font-size: 0.78rem; color: rgba(255, 255, 255, 0.85); }

/* Gallery Photographer Spotlight Card */
.gallery-credit-card {
  position: relative;
  overflow: hidden;
  max-width: 960px;
  margin: 3rem auto 0;
  background: linear-gradient(135deg, #ffffff 0%, #fffcf8 55%, #fff7ed 100%);
  border: 1.5px solid rgba(194, 65, 12, 0.22);
  border-radius: 20px;
  padding: 1.85rem 2.25rem;
  box-shadow: 0 10px 30px -5px rgba(194, 65, 12, 0.09), 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-credit-card:hover {
  border-color: #c2410c;
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -6px rgba(194, 65, 12, 0.16), 0 6px 16px rgba(0, 0, 0, 0.05);
}

.credit-bg-watermark {
  position: absolute;
  right: -20px;
  bottom: -30px;
  width: 170px;
  height: 170px;
  color: rgba(194, 65, 12, 0.07);
  pointer-events: none;
  z-index: 0;
  transition: transform 0.6s ease;
}

.gallery-credit-card:hover .credit-bg-watermark {
  transform: rotate(25deg) scale(1.08);
}

.credit-header-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.15rem;
  border-bottom: 1px dashed rgba(194, 65, 12, 0.2);
}

.credit-author-info {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.credit-avatar-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #c2410c, #ea580c);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 14px rgba(194, 65, 12, 0.3);
  flex-shrink: 0;
}

.credit-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #c2410c;
  background: rgba(194, 65, 12, 0.09);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.35rem;
}

.credit-title-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.credit-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin: 0;
  line-height: 1.25;
}

.credit-title span {
  color: #c2410c;
  position: relative;
}

.credit-social-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.credit-icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.credit-icon-btn.btn-fb {
  background: linear-gradient(135deg, #1877f2, #0d65d9);
  box-shadow: 0 3px 8px rgba(24, 119, 242, 0.35);
}

.credit-icon-btn.btn-fb:hover {
  transform: translateY(-2px) scale(1.14);
  box-shadow: 0 6px 14px rgba(24, 119, 242, 0.5);
}

.credit-icon-btn.btn-ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  box-shadow: 0 3px 8px rgba(214, 36, 159, 0.35);
}

.credit-icon-btn.btn-ig:hover {
  transform: translateY(-2px) scale(1.14);
  box-shadow: 0 6px 14px rgba(214, 36, 159, 0.5);
  filter: brightness(1.1);
}

.credit-desc {
  position: relative;
  z-index: 1;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.credit-desc strong {
  color: var(--primary-navy);
  font-weight: 700;
}

/* Routes */
.routes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.route-card { background: var(--bg-card); border-radius: var(--radius-xl); padding: 2rem; border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); transition: var(--transition-smooth); }
.route-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: #c2410c; }
.route-badge { margin-bottom: 1rem; }
.route-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--primary-navy); margin-bottom: 0.5rem; }
.route-distance { font-size: 0.85rem; font-weight: 700; color: #c2410c; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.4rem; }
.route-steps-box { background: var(--bg-surface-alt); padding: 0.85rem 1rem; border-radius: var(--radius-md); font-size: 0.82rem; color: var(--primary-navy); font-weight: 600; margin-bottom: 1rem; line-height: 1.5; }
.route-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* FAQs */
.faq-container { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--bg-card); border-radius: var(--radius-lg); border: 1px solid var(--border-color); margin-bottom: 1rem; overflow: hidden; transition: var(--transition-fast); }
.faq-question { padding: 1.35rem 1.75rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 700; font-size: 1.05rem; color: var(--primary-navy); }
.faq-question:hover { color: #c2410c; }
.faq-icon { font-size: 1.1rem; transition: transform 0.3s ease; color: #c2410c; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 1.75rem; color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }
.faq-item.active { border-color: #c2410c; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-item.active .faq-answer { padding: 0 1.75rem 1.5rem; }

/* Emergency Banner */
.emergency-banner { background: linear-gradient(135deg, #3f6212, #c2410c); color: var(--text-white); padding: 2rem 0; border-radius: var(--radius-xl); margin: 4rem 0 0; box-shadow: var(--shadow-lg); }
.emergency-content { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; padding: 0 2rem; }
.emergency-info h4 { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.25rem; }
.emergency-info p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.88); }
.emergency-phones { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.phone-item { display: flex; align-items: center; gap: 0.6rem; background: rgba(255, 255, 255, 0.18); padding: 0.6rem 1.2rem; border-radius: var(--radius-md); font-weight: 700; font-size: 0.95rem; }

/* Site Footer */
.site-footer { background-color: var(--primary-dark); color: rgba(255, 255, 255, 0.8); padding: 5rem 0 2rem; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 3.5rem; margin-bottom: 4rem; }
.footer-brand .brand-logo { color: var(--text-white); margin-bottom: 1rem; }
.footer-brand .brand-logo-img { background: #ffffff; border: 1.5px solid rgba(255, 255, 255, 0.25); box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35); }
.footer-brand p { font-size: 0.9rem; line-height: 1.65; color: rgba(255, 255, 255, 0.75); margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-btn { width: 38px; height: 38px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); color: var(--text-white); display: flex; align-items: center; justify-content: center; transition: var(--transition-fast); }
.social-btn:hover { background: #c2410c; transform: translateY(-2px); }
.footer-col h4 { font-family: var(--font-display); color: var(--text-white); font-size: 1.1rem; font-weight: 700; margin-bottom: 1.25rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a { font-size: 0.9rem; color: rgba(255, 255, 255, 0.75); transition: var(--transition-fast); }
.footer-links a:hover { color: #fed7aa; padding-left: 4px; }
.newsletter-form { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.newsletter-form input { flex-grow: 1; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: var(--radius-sm); padding: 0.65rem 0.85rem; color: var(--text-white); font-size: 0.88rem; outline: none; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; color: rgba(255, 255, 255, 0.55); flex-wrap: wrap; gap: 1rem; }

/* Modals */
.modal-backdrop { position: fixed; inset: 0; background: rgba(20, 18, 16, 0.88); backdrop-filter: blur(8px); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.modal-backdrop.active { display: flex; }
.modal-window { background: var(--bg-card); border-radius: var(--radius-xl); max-width: 650px; width: 100%; max-height: 88vh; overflow-y: auto; overflow-x: hidden; position: relative; box-shadow: var(--shadow-xl); animation: modalScaleUp 0.3s cubic-bezier(0.4, 0, 0.2, 1); -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: #d6d3d1 transparent; }
.modal-window::-webkit-scrollbar { width: 6px; }
.modal-window::-webkit-scrollbar-track { background: transparent; }
.modal-window::-webkit-scrollbar-thumb { background-color: #d6d3d1; border-radius: 4px; }
@keyframes modalScaleUp { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.modal-close-btn { position: sticky; top: 1rem; float: right; margin-right: 1rem; margin-top: 1rem; margin-bottom: -46px; width: 36px; height: 36px; border-radius: 50%; background: rgba(0, 0, 0, 0.7); color: var(--text-white); border: none; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 20; transition: var(--transition-fast); box-shadow: 0 2px 10px rgba(0,0,0,0.4); }
.modal-close-btn:hover { background: #c2410c; transform: scale(1.05); }
.modal-img-wrap { width: 100%; height: 320px; position: relative; background: var(--bg-surface-alt); overflow: hidden; border-top-left-radius: var(--radius-xl); border-top-right-radius: var(--radius-xl); }
.modal-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; display: block; }
.modal-content-area { padding: 2rem; }
.modal-content-area h3 { font-family: var(--font-display); font-size: 1.65rem; font-weight: 800; color: var(--primary-navy); margin-bottom: 0.5rem; }

.lightbox-window { max-width: 900px; background: transparent; box-shadow: none; text-align: center; }
.lightbox-window img { max-height: 75vh; margin: 0 auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); }
.lightbox-caption { color: var(--text-white); text-align: center; margin-top: 1rem; font-size: 1.05rem; font-weight: 600; }

/* Toast */
.toast-msg { position: fixed; bottom: 2rem; right: 2rem; background: var(--primary-dark); color: var(--text-white); padding: 1rem 1.5rem; border-radius: var(--radius-md); border-left: 4px solid #c2410c; box-shadow: var(--shadow-xl); z-index: 3000; display: flex; align-items: center; gap: 0.75rem; transform: translateY(100px); opacity: 0; transition: var(--transition-smooth); }
.toast-msg.show { transform: translateY(0); opacity: 1; }

/* --- Floating Inquiry Widget --- */
.inquiry-widget-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.inquiry-float-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #c2410c, #ea580c);
  color: #ffffff;
  border: none;
  padding: 0.8rem 1.45rem;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(194, 65, 12, 0.42);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, background 0.25s ease;
}

.inquiry-float-btn i {
  font-size: 1.15rem;
}

.inquiry-float-btn:hover {
  background: linear-gradient(135deg, #9a3412, #c2410c);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 26px rgba(194, 65, 12, 0.52);
}

.inquiry-float-btn:active {
  transform: translateY(0) scale(0.98);
}

/* Inquiry Popup Dialog (Compact & Sleek) */
.inquiry-popup {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: 295px;
  max-width: calc(100vw - 2rem);
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.18), 0 2px 8px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.22s;
  pointer-events: none;
}

.inquiry-popup.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.inquiry-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  padding-bottom: 0.65rem;
  margin-bottom: 0.65rem;
}

.inquiry-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: #15803d; /* Vibrant natural evergreen header */
  line-height: 1.2;
  margin: 0 0 0.15rem 0;
}

.inquiry-subtitle {
  font-size: 0.74rem;
  color: #64748b;
  margin: 0;
  font-weight: 500;
}

.inquiry-close-btn {
  background: transparent;
  border: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #64748b;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.inquiry-close-btn:hover {
  background: #f1f5f9;
  color: #1e293b;
}

/* Options List & Cards */
.inquiry-options-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.inquiry-card-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.inquiry-card-link:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  transform: translateY(-1.5px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.inquiry-icon-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #ffffff;
  flex-shrink: 0;
}

.inquiry-icon-badge.icon-whatsapp {
  background: #25d366;
  box-shadow: 0 3px 8px rgba(37, 211, 102, 0.32);
}

.inquiry-icon-badge.icon-call {
  background: #007aff;
  box-shadow: 0 3px 8px rgba(0, 122, 255, 0.32);
}

.inquiry-icon-badge.icon-messenger {
  background: linear-gradient(135deg, #00B2FE, #006AFF);
  box-shadow: 0 3px 8px rgba(0, 106, 255, 0.32);
}

.inquiry-icon-badge.icon-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  box-shadow: 0 3px 8px rgba(214, 36, 159, 0.32);
}

.inquiry-link-content {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.inquiry-link-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.inquiry-link-meta {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .hero-title { font-size: 2.75rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .planner-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-menu { position: fixed; top: 74px; left: 0; width: 100%; background: var(--bg-card); flex-direction: column; padding: 2rem; box-shadow: var(--shadow-xl); transform: translateY(-150%); transition: var(--transition-smooth); border-bottom: 1px solid var(--border-color); }
  .nav-menu.open { transform: translateY(0); }
  .nav-toggle { display: block; }
  .nav-actions .btn { display: none; }
  .hero-title { font-size: 2.15rem; }
  .hero-tagline { font-size: 1rem; }
  .section-title { font-size: 1.85rem; }
  .seasons-cards, .form-row, .addon-checkboxes { grid-template-columns: 1fr; }
  .search-form { grid-template-columns: 1fr; }
  .emergency-content { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .top-bar-info { gap: 0.75rem; font-size: 0.75rem; }
  .inquiry-widget-container { bottom: 1.25rem; right: 1.25rem; }
  .inquiry-popup { width: calc(100vw - 2.5rem); right: 0; }
  .gallery-credit-card { padding: 1.35rem 1.25rem; margin-top: 2rem; }
  .credit-header-row { gap: 0.75rem; }
  .credit-title-wrap { gap: 0.5rem; }
}