/* ========================
   CSS Variables & Reset
======================== */
:root {
  --primary: #1a8a9a;
  --primary-dark: #0f6b7a;
  --secondary: #0d4a58;
  --dark: #072c38;
  --accent: #bde0ea;
  --text: #334155;
  --text-light: #64748b;
  --bg-light: #f0f8fa;
  --white: #fff;
  --border: #d1e8ed;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(13,74,88,0.1);
  --shadow-lg: 0 8px 40px rgba(13,74,88,0.15);
  --transition: 0.3s ease;
  --font-heading: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-heading); color: var(--secondary); line-height: 1.2; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.bg-light { background: var(--bg-light); }
.bg-dark { background: var(--dark); }
.highlight { color: var(--primary); }

/* ========================
   Preloader
======================== */
.preloader { position: fixed; inset: 0; background: var(--white); display: flex; align-items: center; justify-content: center; z-index: 9999; transition: opacity 0.5s; }
.preloader.hidden { opacity: 0; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo { width: 160px; height: auto; margin: 0 auto 16px; animation: pulse 1.2s ease infinite alternate; }
.loader-bar { display: block; width: 160px; height: 3px; background: #e0f0f4; margin: 12px auto 0; border-radius: 10px; overflow: hidden; }
.loader-bar::after { content: ''; display: block; width: 40%; height: 100%; background: var(--primary); animation: loading 1s ease infinite; }
@keyframes pulse { from { opacity: 0.7; transform: scale(0.97); } to { opacity: 1; transform: scale(1); } }
@keyframes loading { 0% { transform: translateX(-100%); } 100% { transform: translateX(350%); } }

/* ========================
   Header
======================== */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 12px 0; transition: var(--transition); }
.site-header.scrolled { background: rgba(255,255,255,0.98); backdrop-filter: blur(10px); box-shadow: var(--shadow); padding: 8px 0; }
.header-inner { display: flex; align-items: center; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img { height: 48px; width: auto; transition: var(--transition); filter: brightness(0) invert(1); }
.site-header.scrolled .logo-img { filter: none; }
.logo-text { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--white); line-height: 1.2; max-width: 160px; display: none; }
.site-header.scrolled .logo-text { color: var(--secondary); }
.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav ul { display: flex; gap: 2px; }
.main-nav a { padding: 8px 12px; border-radius: var(--radius-sm); color: rgba(255,255,255,0.9); font-weight: 500; font-size: 0.88rem; }
.main-nav a:hover, .main-nav a.active { color: var(--white); background: rgba(255,255,255,0.15); }
.site-header.scrolled .main-nav a { color: var(--text); }
.site-header.scrolled .main-nav a:hover, .site-header.scrolled .main-nav a.active { color: var(--primary); background: rgba(26,138,154,0.08); }
.header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.search-toggle { background: none; border: none; color: var(--white); font-size: 1rem; cursor: pointer; padding: 8px; border-radius: 50%; transition: var(--transition); }
.site-header.scrolled .search-toggle { color: var(--text); }
.search-toggle:hover { background: rgba(255,255,255,0.15); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.site-header.scrolled .hamburger span { background: var(--secondary); }

/* ========================
   Buttons
======================== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; cursor: pointer; border: 2px solid transparent; transition: var(--transition); }
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(232,112,42,0.35); }
.btn-outline { background: transparent; color: var(--secondary); border-color: var(--secondary); }
.btn-outline:hover { background: var(--secondary); color: var(--white); }
.btn-white { background: var(--white); color: var(--secondary); border-color: var(--white); }
.btn-white:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-sm { padding: 8px 20px; font-size: 0.82rem; }
.btn-block { width: 100%; justify-content: center; }

/* ========================
   Search Overlay
======================== */
.search-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.9); display: none; align-items: center; justify-content: center; z-index: 2000; }
.search-overlay.active { display: flex; }
.search-close { position: absolute; top: 30px; right: 30px; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }
.search-box { width: 100%; max-width: 600px; padding: 0 24px; }
.search-box form { display: flex; background: var(--white); border-radius: 50px; overflow: hidden; }
.search-box input { flex: 1; padding: 18px 24px; border: none; font-size: 1.1rem; outline: none; }
.search-box button { background: var(--primary); color: var(--white); border: none; padding: 18px 28px; cursor: pointer; font-size: 1.1rem; }

/* ========================
   Mobile Menu
======================== */
.mobile-menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); display: none; z-index: 1500; }
.mobile-menu-overlay.active { display: block; }
.mobile-menu { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: var(--white); z-index: 1600; transition: var(--transition); overflow-y: auto; box-shadow: var(--shadow-lg); }
.mobile-menu.active { left: 0; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-bottom: 1px solid var(--border); }
.mobile-logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--secondary); }
.mobile-logo i { color: var(--primary); }
.mobile-menu-close { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--text); padding: 4px; }
.mobile-nav ul { padding: 16px 0; }
.mobile-nav li a { display: block; padding: 12px 24px; color: var(--text); font-weight: 500; border-bottom: 1px solid var(--border); }
.mobile-nav li a:hover { color: var(--primary); background: var(--bg-light); }

/* ========================
   Flash Messages
======================== */
.flash-messages { position: fixed; top: 90px; right: 24px; z-index: 1500; display: flex; flex-direction: column; gap: 10px; max-width: 380px; }
.alert { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 500; box-shadow: var(--shadow); }
.alert-success { background: #d1fae5; color: #065f46; border-left: 4px solid #10b981; }
.alert-error { background: #fee2e2; color: #991b1b; border-left: 4px solid #ef4444; }
.alert-close { background: none; border: none; cursor: pointer; margin-left: auto; opacity: 0.6; }

/* ========================
   Hero
======================== */
.hero { min-height: 100vh; background: linear-gradient(135deg, #072c38 0%, #0d4a58 50%, #0f6b7a 100%); display: flex; align-items: center; position: relative; overflow: hidden; background-size: cover; background-position: center; padding-top: 80px; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(7,44,56,0.72) 0%, rgba(7,44,56,0.45) 100%); }
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 760px; color: var(--white); }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(26,138,154,0.85); border: 1px solid rgba(189,224,234,0.5); color: var(--white); padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; margin-bottom: 24px; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1; color: var(--white); margin-bottom: 20px; font-weight: 800; }
.hero p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 36px; }
.hero-search { background: var(--white); border-radius: 16px; padding: 12px; margin-bottom: 36px; box-shadow: var(--shadow-lg); width: 100%; }
.search-form { display: flex; align-items: center; gap: 0; width: 100%; flex-wrap: nowrap; }
.search-field { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; min-width: 200px; padding: 8px 16px; border-right: 1px solid var(--border); }
.search-field.search-field-grow { flex: 1 1 auto; }
.search-field:last-child { border-right: none; }
.search-field i { color: var(--primary); }
.search-field input, .search-field select { border: none; outline: none; font-family: var(--font-body); font-size: 0.9rem; color: var(--text); background: transparent; width: 100%; }
.hero-search .btn { flex-shrink: 0; border-radius: 12px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.8rem; font-weight: 700; color: var(--primary); }
.stat span { font-size: 0.85rem; opacity: 0.8; }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); }
.hero-scroll a { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.2); color: var(--white); animation: bounce 2s ease infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ========================
   Features Section
======================== */
.features-section { padding: 60px 0; background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.feature-card { text-align: center; padding: 32px 24px; border-radius: var(--radius); border: 1px solid var(--border); transition: var(--transition); }
.feature-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-4px); }
.feature-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--white); font-size: 1.4rem; }
.feature-card h3 { font-size: 1rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.87rem; color: var(--text-light); }

/* ========================
   Section Headers
======================== */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-header-light { color: var(--white); }
.section-header-light h2 { color: var(--white); }
.section-header-light p { color: rgba(255,255,255,0.75); }
.section-badge { display: inline-block; background: rgba(232,112,42,0.12); color: var(--primary); padding: 4px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.section-header p { color: var(--text-light); font-size: 1rem; }
.section-cta { text-align: center; margin-top: 48px; }

/* ========================
   Destination Cards
======================== */
.destinations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.destination-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); background: var(--white); }
.destination-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-image { position: relative; height: 240px; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.destination-card:hover .card-image img { transform: scale(1.05); }
.card-image-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--bg-light), #e0e7ef); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: var(--text-light); }
.card-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.destination-card:hover .card-overlay { opacity: 1; }
.card-badge { position: absolute; top: 14px; right: 14px; background: rgba(0,0,0,0.6); color: var(--white); padding: 4px 10px; border-radius: 50px; font-size: 0.8rem; display: flex; align-items: center; gap: 4px; }
.card-badge i { color: #fbbf24; }
.card-body { padding: 20px; }
.card-location { font-size: 0.82rem; color: var(--primary); font-weight: 500; margin-bottom: 8px; display: flex; align-items: center; gap: 4px; }
.card-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.card-body h3 a:hover { color: var(--primary); }
.card-body p { font-size: 0.87rem; color: var(--text-light); margin-bottom: 16px; }
.card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border); }
.price { font-size: 0.85rem; color: var(--text-light); }
.price strong { color: var(--primary); font-size: 1.1rem; }
.read-more { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; color: var(--primary); }
.read-more:hover { gap: 10px; }

/* ========================
   Trip Cards
======================== */
.trips-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.trip-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--white); transition: var(--transition); }
.trip-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.trip-type-badge { position: absolute; top: 14px; left: 14px; background: var(--primary); color: var(--white); padding: 4px 12px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; }
.trip-meta { display: flex; gap: 16px; margin-bottom: 12px; }
.trip-meta span { display: flex; align-items: center; gap: 5px; font-size: 0.82rem; color: var(--text-light); }
.trip-meta i { color: var(--primary); }
.card-body h3 { font-size: 1.05rem; margin-bottom: 8px; }

/* ========================
   About Banner
======================== */
.about-banner { padding: 80px 0; background: var(--white); }
.about-banner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-banner-image { position: relative; }
.about-banner-image img { border-radius: var(--radius); width: 100%; height: 460px; object-fit: cover; }
.about-image-placeholder { height: 460px; background: linear-gradient(135deg, #1a3c5e, #e8702a); border-radius: var(--radius); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--white); font-size: 4rem; }
.experience-badge { position: absolute; bottom: -20px; right: -20px; background: var(--primary); color: var(--white); padding: 20px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-lg); }
.experience-badge strong { display: block; font-size: 2rem; font-weight: 800; }
.experience-badge span { font-size: 0.8rem; }
.about-banner-content h2 { font-size: 2.2rem; margin: 12px 0 20px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 32px 0; }
.about-stat { text-align: center; padding: 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); }
.about-stat strong { display: block; font-size: 1.5rem; color: var(--primary); font-weight: 700; }
.about-stat span { font-size: 0.8rem; color: var(--text-light); }

/* ========================
   Activities
======================== */
.activities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 24px; }
.activity-card { text-align: center; padding: 28px 20px; border-radius: var(--radius); border: 1px solid var(--border); transition: var(--transition); background: var(--white); }
.activity-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-4px); }
.activity-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary), #0f6b7a); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--white); font-size: 1.2rem; }
.activity-image { height: 120px; overflow: hidden; border-radius: var(--radius-sm); margin: 12px 0; }
.activity-image img { width: 100%; height: 100%; object-fit: cover; }
.activity-body h3 { font-size: 0.95rem; margin-bottom: 8px; }
.activity-body p { font-size: 0.82rem; color: var(--text-light); }
.activity-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; font-size: 0.8rem; color: var(--text-light); }
.activity-price { color: var(--primary); font-weight: 600; }
.activities-grid-large { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }
.activity-card-large { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--white); transition: var(--transition); }
.activity-card-large:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.activity-card-large .card-image { height: 220px; }
.activity-card-large .card-body { padding: 20px; }
.activity-icon-small { width: 40px; height: 40px; background: linear-gradient(135deg, var(--primary), #0f6b7a); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1rem; margin-bottom: 12px; }

/* ========================
   Testimonials
======================== */
.testimonials-section { background: linear-gradient(135deg, #072c38, #0d4a58); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }
.testimonial-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 28px; color: var(--white); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; color: #fbbf24; font-size: 0.85rem; }
.testimonial-card p { font-size: 0.92rem; opacity: 0.9; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary); }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; color: var(--white); }
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.8rem; opacity: 0.7; }

/* ========================
   Blog
======================== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.blog-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--white); transition: var(--transition); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-category { position: absolute; bottom: 14px; left: 14px; background: var(--primary); color: var(--white); padding: 4px 12px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; }
.blog-meta { display: flex; gap: 16px; margin-bottom: 12px; font-size: 0.82rem; color: var(--text-light); }
.blog-meta i { color: var(--primary); }
.blog-card .card-body h3 { margin-bottom: 10px; }
.blog-card .card-body h3 a:hover { color: var(--primary); }
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; }
.blog-sidebar { }
.sidebar-widget { background: var(--bg-light); border-radius: var(--radius); padding: 24px; margin-bottom: 24px; }
.sidebar-widget h4 { margin-bottom: 16px; font-size: 1rem; padding-bottom: 10px; border-bottom: 2px solid var(--primary); }
.recent-post { display: flex; gap: 12px; margin-bottom: 16px; }
.recent-post img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.recent-post div a { font-size: 0.85rem; font-weight: 500; color: var(--secondary); display: block; margin-bottom: 4px; }
.recent-post div a:hover { color: var(--primary); }
.recent-post div span { font-size: 0.78rem; color: var(--text-light); }
.category-tag { display: inline-block; background: var(--white); border: 1px solid var(--border); color: var(--text); padding: 4px 12px; border-radius: 50px; font-size: 0.8rem; margin: 4px; transition: var(--transition); }
.category-tag:hover, .category-tag.active { background: var(--primary); border-color: var(--primary); color: var(--white); }
.cta-widget { background: linear-gradient(135deg, var(--secondary), #2d4a6e); color: var(--white); }
.cta-widget h4 { color: var(--white); border-color: rgba(255,255,255,0.3); }
.cta-widget p { color: rgba(255,255,255,0.8); font-size: 0.85rem; margin-bottom: 16px; }
.blog-post-meta { display: flex; gap: 20px; color: var(--text-light); font-size: 0.85rem; margin-bottom: 16px; flex-wrap: wrap; }
.blog-post-meta i { color: var(--primary); }
.post-title { font-size: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: 24px; }
.post-content { color: var(--text); line-height: 1.8; }
.post-content h2, .post-content h3 { color: var(--secondary); margin: 28px 0 14px; }
.post-content p { margin-bottom: 16px; }
.post-tags { margin-top: 28px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.tag { background: var(--bg-light); padding: 4px 12px; border-radius: 50px; font-size: 0.8rem; }
.post-share { display: flex; align-items: center; gap: 10px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }
.share-btn { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 0.85rem; }
.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0a66c2; }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; }
.page-btn { padding: 8px 14px; border-radius: var(--radius-sm); background: var(--bg-light); color: var(--text); font-size: 0.9rem; font-weight: 500; transition: var(--transition); }
.page-btn:hover, .page-btn.active { background: var(--primary); color: var(--white); }

/* ========================
   Newsletter
======================== */
.newsletter-section { padding: 60px 0; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.newsletter-content h2 { font-size: 1.8rem; color: var(--white); }
.newsletter-content p { color: rgba(255,255,255,0.85); }
.newsletter-form { display: flex; gap: 12px; flex: 1; max-width: 460px; }
.newsletter-form input { flex: 1; padding: 14px 20px; border-radius: 50px; border: none; font-family: var(--font-body); font-size: 0.9rem; outline: none; }
.newsletter-form .btn { flex-shrink: 0; border-color: var(--white); background: var(--white); color: var(--primary); }
.newsletter-form .btn:hover { background: var(--secondary); border-color: var(--secondary); color: var(--white); }

/* ========================
   Page Hero
======================== */
.page-hero { background: linear-gradient(135deg, #0d4a58, #072c38); padding: 140px 0 60px; color: var(--white); text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--white); margin-bottom: 12px; }
.page-hero p { font-size: 1.05rem; opacity: 0.85; margin-bottom: 20px; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 0.85rem; opacity: 0.8; }
.breadcrumb a:hover { color: var(--primary); opacity: 1; }
.breadcrumb i { font-size: 0.7rem; }

/* ========================
   Filter Bar
======================== */
.filter-bar { margin-bottom: 40px; }
.filter-form { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.filter-group input, .filter-group select { padding: 10px 18px; border: 1px solid var(--border); border-radius: 50px; font-family: var(--font-body); font-size: 0.9rem; outline: none; background: var(--white); min-width: 160px; }
.filter-group input:focus, .filter-group select:focus { border-color: var(--primary); }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-tab { padding: 8px 20px; border-radius: 50px; border: 1px solid var(--border); font-size: 0.85rem; font-weight: 500; color: var(--text); background: var(--white); transition: var(--transition); }
.filter-tab:hover, .filter-tab.active { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* ========================
   Detail Page
======================== */
.detail-grid { display: grid; grid-template-columns: 1fr 320px; gap: 40px; }
.detail-hero-image { border-radius: var(--radius); overflow: hidden; height: 420px; margin-bottom: 24px; }
.detail-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 24px; }
.gallery-item { height: 100px; border-radius: var(--radius-sm); overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.detail-content h2 { font-size: 1.8rem; margin-bottom: 16px; }
.detail-meta { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; font-size: 0.87rem; color: var(--text-light); }
.detail-meta span { display: flex; align-items: center; gap: 6px; }
.detail-meta i { color: var(--primary); }
.booking-card { background: var(--bg-light); border-radius: var(--radius); padding: 28px; position: sticky; top: 90px; border: 1px solid var(--border); }
.booking-card h3 { margin-bottom: 20px; font-size: 1.1rem; }
.booking-price { text-align: center; padding: 16px; background: var(--white); border-radius: var(--radius-sm); margin-bottom: 16px; }
.booking-price span { font-size: 0.85rem; color: var(--text-light); }
.booking-price strong { display: block; font-size: 2rem; color: var(--primary); font-weight: 700; }
.booking-info { margin-bottom: 20px; }
.booking-info div { display: flex; align-items: center; gap: 8px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.87rem; color: var(--text-light); }
.booking-info i { color: var(--primary); }

/* ========================
   About Page
======================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-main-img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius); }
.about-image-placeholder-large { height: 500px; background: linear-gradient(135deg, #1a3c5e, #e8702a); border-radius: var(--radius); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--white); font-size: 5rem; }
.about-image-placeholder-large p { font-size: 1.2rem; margin-top: 16px; }
.about-content-col h2 { font-size: 2rem; margin: 12px 0 20px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 24px 0; }
.about-feature { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 500; }
.about-feature i { color: var(--primary); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; }
.stat-card { text-align: center; padding: 36px 24px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.stat-card i { font-size: 2rem; color: var(--primary); margin-bottom: 12px; }
.stat-card strong { display: block; font-size: 2.2rem; font-weight: 700; color: var(--secondary); }
.stat-card span { font-size: 0.87rem; color: var(--text-light); }

/* ========================
   FAQ
======================== */
.faq-category { margin-bottom: 48px; }
.faq-category-title { font-size: 1.4rem; color: var(--secondary); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.faq-category-title i { color: var(--primary); }
.accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion-item { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.accordion-header { width: 100%; padding: 18px 20px; background: var(--white); border: none; cursor: pointer; text-align: left; font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; color: var(--secondary); display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: var(--transition); }
.accordion-header:hover, .accordion-header.active { background: var(--bg-light); color: var(--primary); }
.accordion-header i { transition: var(--transition); flex-shrink: 0; }
.accordion-header.active i { transform: rotate(180deg); color: var(--primary); }
.accordion-body { display: none; padding: 16px 20px; background: var(--bg-light); border-top: 1px solid var(--border); font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
.accordion-body.show { display: block; }
.faq-cta { text-align: center; padding: 60px; background: linear-gradient(135deg, var(--secondary), #2d4a6e); border-radius: var(--radius); color: var(--white); margin-top: 48px; }
.faq-cta h3 { font-size: 1.8rem; color: var(--white); margin-bottom: 10px; }
.faq-cta p { opacity: 0.85; margin-bottom: 24px; }

/* ========================
   Contact
======================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info-col h2 { font-size: 2rem; margin-bottom: 16px; }
.contact-info-col p { color: var(--text-light); margin-bottom: 32px; }
.contact-info-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--primary), #f5a623); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); flex-shrink: 0; }
.contact-info-item h4 { font-size: 0.9rem; margin-bottom: 4px; }
.contact-info-item p { font-size: 0.87rem; color: var(--text-light); margin: 0; }
.contact-social { display: flex; gap: 12px; }
.contact-social a { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-light); display: flex; align-items: center; justify-content: center; color: var(--text); transition: var(--transition); border: 1px solid var(--border); }
.contact-social a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.contact-form-card { background: var(--bg-light); border-radius: var(--radius); padding: 36px; }
.contact-form-card h3 { margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--secondary); }
.form-group input, .form-group select, .form-group textarea { padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.9rem; color: var(--text); background: var(--white); outline: none; transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(232,112,42,0.1); }
.form-group textarea { resize: vertical; }

/* ========================
   404 Error
======================== */
.error-section { padding: 120px 0; text-align: center; }
.error-icon { font-size: 5rem; color: var(--primary); opacity: 0.3; margin-bottom: 20px; }
.error-section h1 { font-size: 8rem; color: var(--primary); font-weight: 800; line-height: 1; }
.error-section h2 { font-size: 2rem; color: var(--secondary); margin-bottom: 16px; }
.error-section p { color: var(--text-light); margin-bottom: 36px; }
.error-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========================
   Footer
======================== */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.8); }
.footer-top { padding: 60px 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-size: 1.3rem; color: var(--white); font-weight: 700; margin-bottom: 16px; }
.footer-logo i { color: var(--primary); }
.footer-about p { font-size: 0.87rem; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.8); font-size: 0.85rem; transition: var(--transition); }
.social-links a:hover { background: var(--primary); color: var(--white); }
.footer-col h4 { font-size: 1rem; color: var(--white); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.87rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--primary); }
.contact-info li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.87rem; align-items: flex-start; }
.contact-info li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 0.85rem; }

/* ========================
   Back to Top
======================== */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: var(--white); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(20px); transition: var(--transition); z-index: 500; }
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-4px); }

/* ========================
   Empty State
======================== */
.empty-state { text-align: center; padding: 80px 24px; color: var(--text-light); }
.empty-state i { font-size: 4rem; opacity: 0.3; display: block; margin-bottom: 20px; }
.empty-state h3 { color: var(--secondary); margin-bottom: 8px; }
.empty-state p { margin-bottom: 24px; }

/* ========================
   Responsive
======================== */
@media (max-width: 1024px) {
    .blog-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .detail-grid { grid-template-columns: 1fr; }
    .about-banner-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .main-nav { display: none; }
    .btn-sm.d-none-mobile { display: none; }
    .hamburger { display: flex; }
    .hero-search { flex-direction: column; }
    .search-field { border-right: none; border-bottom: 1px solid var(--border); }
    .newsletter-inner { flex-direction: column; text-align: center; }
    .newsletter-form { width: 100%; max-width: 100%; }
    .form-row { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .header-actions .btn-primary { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
}
