/* ============================================================
   Aleme We Trust — Shared Stylesheet (Blue Sky Theme)
   ============================================================ */

:root {
  --primary: #063169;
  --primary-dark: #042249;
  --deep-blue: #1F5394;
  --cloud-blue: #33CCE0;
  --green: #2E8B57;
  --green-dark: #1f6b40;
  --beige: #FAF6ED;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1), 0 10px 10px -5px rgba(0,0,0,.04);
  --radius: 0.75rem;
  --radius-lg: 1rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.3;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ── Layout ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 896px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ── Typography ── */
.text-center { text-align: center; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--gray-800); margin-bottom: 1rem; }
.section-sub { font-size: 1.125rem; color: var(--gray-600); max-width: 680px; margin: 0 auto 3.5rem; line-height: 1.7; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  padding: .65rem 1.5rem; border-radius: var(--radius); font-size: .925rem;
  font-weight: 600; cursor: pointer; border: 2px solid transparent;
  transition: background .18s, color .18s, transform .12s, box-shadow .18s;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--gray-100); }
.btn-lg { padding: .85rem 2rem; font-size: 1.05rem; }
.btn-sm { padding: .4rem 1rem; font-size: .85rem; }
.btn-full { width: 100%; }

/* ── Navbar ── */
.navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  position: sticky; top: 0; z-index: 100;
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 4rem;
}
.nav-brand {
  font-family: Georgia, serif; font-size: 1.5rem; font-weight: 700;
  color: var(--primary); white-space: nowrap;
}
.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-link {
  padding: .5rem .75rem; font-size: .9rem; font-weight: 500;
  color: var(--gray-700); border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav-link:hover, .nav-link.active { color: var(--primary); border-bottom-color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: .4rem; color: var(--gray-700);
}
.hamburger svg { width: 1.5rem; height: 1.5rem; }
.mobile-menu {
  display: none; flex-direction: column; gap: .25rem;
  padding: 1rem 1.5rem 1.25rem; border-top: 1px solid var(--gray-200);
  background: #fff;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: .6rem .75rem; font-size: .95rem; font-weight: 500;
  color: var(--gray-700); border-radius: .4rem;
  transition: background .15s, color .15s;
}
.mobile-link:hover, .mobile-link.active { background: var(--gray-100); color: var(--primary); }

/* ── Hero ── */
.hero {
  position: relative; overflow: hidden;
  min-height: 88vh; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?auto=format&fit=crop&w=1920&q=80');
  background-size: cover; background-position: center;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(20,167,232,.72) 0%, rgba(31,83,148,.65) 100%); }
.hero-content { position: relative; z-index: 1; color: #fff; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.18); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.3); border-radius: 2rem;
  padding: .35rem 1rem; font-size: .85rem; font-weight: 500; margin-bottom: 1.5rem;
}
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 700; margin-bottom: 1.25rem; text-shadow: 0 2px 8px rgba(0,0,0,.25); }
.hero p { font-size: clamp(1rem, 2.5vw, 1.3rem); max-width: 600px; margin-bottom: 2.25rem; opacity: .95; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 2.5rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.25); }
.stat-item .stat-num { font-size: 2rem; font-weight: 700; line-height: 1; }
.stat-item .stat-label { font-size: .85rem; opacity: .85; }

/* ── Page Hero (inner pages) ── */
.page-hero { padding: 5rem 0; text-align: center; color: #fff; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; margin-bottom: 1rem; }
.page-hero p { font-size: 1.15rem; opacity: .9; max-width: 600px; margin: 0 auto; }
.hero-blue { background: linear-gradient(135deg, var(--primary) 0%, var(--deep-blue) 100%); }
.hero-green { background: linear-gradient(135deg, var(--green) 0%, var(--deep-blue) 100%); }
.hero-teal { background: linear-gradient(135deg, var(--cloud-blue) 0%, var(--primary) 100%); }

/* ── Cards ── */
.card {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow-xl); transform: translateY(-3px); }
.card-img { width: 100%; height: 13rem; object-fit: cover; }
.card-body { padding: 1.5rem; }
.card-title { font-size: 1.2rem; font-weight: 700; margin-bottom: .5rem; }
.card-text { color: var(--gray-600); font-size: .925rem; line-height: 1.65; }

/* ── Badge ── */
.badge {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .25rem .7rem; border-radius: 2rem;
  font-size: .78rem; font-weight: 600;
}
.badge-primary { background: var(--primary); color: #fff; }
.badge-green { background: var(--green); color: #fff; }
.badge-white { background: rgba(255,255,255,.9); color: var(--gray-800); }
.badge-orange { background: #f97316; color: #fff; }

/* ── Grid helpers ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Background helpers ── */
.bg-white { background: var(--white); }
.bg-beige { background: var(--beige); }
.bg-gray { background: var(--gray-50); }
.bg-dark { background: var(--gray-800); color: #fff; }

/* ── Stars ── */
.stars { display: flex; gap: 2px; }
.star { font-size: 1rem; }
.star.filled { color: #f59e0b; }
.star.empty { color: var(--gray-300); }

/* ── Destination Card ── */
.dest-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.dest-card img { width: 100%; height: 22rem; object-fit: cover; transition: transform .4s; }
.dest-card:hover img { transform: scale(1.06); }
.dest-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.1) 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.75rem;
  color: #fff;
}
.dest-card-country { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; opacity: .85; }
.dest-card-name { font-size: 1.5rem; font-weight: 700; margin: .25rem 0 .5rem; font-family: Georgia, serif; }
.dest-card-desc { font-size: .875rem; opacity: .9; margin-bottom: 1rem; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ── Package Card ── */
.pkg-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; transition: box-shadow .2s, transform .2s; display: flex; flex-direction: column; }
.pkg-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-3px); }
.pkg-card-img-wrap { position: relative; }
.pkg-card-img-wrap img { width: 100%; height: 12rem; object-fit: cover; }
.pkg-badge { position: absolute; top: .75rem; right: .75rem; }
.pkg-type-badge { position: absolute; top: .75rem; left: .75rem; }
.pkg-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.pkg-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: .75rem; }
.pkg-title { font-size: 1.15rem; font-weight: 700; margin-bottom: .5rem; }
.pkg-desc { color: var(--gray-600); font-size: .9rem; line-height: 1.6; margin-bottom: 1rem; flex: 1; }
.pkg-includes { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.pkg-include-tag { background: var(--gray-100); color: var(--gray-600); font-size: .75rem; padding: .2rem .55rem; border-radius: .25rem; }
.pkg-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--gray-200); }
.pkg-price { font-size: 1.4rem; font-weight: 700; color: var(--primary); }
.pkg-price span { font-size: .8rem; font-weight: 400; color: var(--gray-500); }

/* ── Hotel Card ── */
.hotel-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; transition: box-shadow .2s, transform .2s; display: flex; flex-direction: column; }
.hotel-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-3px); }
.hotel-card-img-wrap { position: relative; overflow: hidden; }
.hotel-card-img-wrap img { width: 100%; height: 12rem; object-fit: cover; transition: transform .3s; }
.hotel-card:hover .hotel-card-img-wrap img { transform: scale(1.05); }
.hotel-price-badge { position: absolute; top: .75rem; right: .75rem; }
.hotel-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.hotel-name { font-size: 1.15rem; font-weight: 700; margin-bottom: .3rem; }
.hotel-location { display: flex; align-items: center; gap: .35rem; color: var(--gray-500); font-size: .875rem; margin-bottom: .75rem; }
.hotel-desc { color: var(--gray-600); font-size: .9rem; line-height: 1.6; margin-bottom: 1rem; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.amenity-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.25rem; }
.amenity-tag { background: var(--gray-100); color: var(--gray-600); font-size: .75rem; padding: .25rem .6rem; border-radius: .25rem; display: flex; align-items: center; gap: .3rem; }

/* ── Gallery ── */
.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; padding: 1.5rem 0; border-bottom: 1px solid var(--gray-200); }
.filter-btn { padding: .45rem 1.1rem; border-radius: 2rem; font-size: .875rem; font-weight: 500; cursor: pointer; border: 1.5px solid var(--primary); color: var(--primary); background: transparent; transition: background .15s, color .15s; }
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 1; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0);
  transition: background .25s;
  display: flex; flex-direction: column; justify-content: flex-end; padding: .9rem;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,.35); }
.gallery-item-info { transform: translateY(8px); opacity: 0; transition: transform .25s, opacity .25s; color: #fff; }
.gallery-item:hover .gallery-item-info { transform: translateY(0); opacity: 1; }
.gallery-item-loc { font-size: .8rem; display: flex; align-items: center; gap: .3rem; }

/* ── Lightbox ── */
.lightbox { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,.9); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 900px; width: 95%; background: #fff; border-radius: var(--radius-lg); overflow: hidden; }
.lightbox-img { width: 100%; max-height: 65vh; object-fit: contain; display: block; }
.lightbox-info { padding: 1.25rem 1.5rem; }
.lightbox-close { position: absolute; top: .75rem; right: .75rem; background: rgba(0,0,0,.5); color: #fff; border: none; border-radius: 50%; width: 2rem; height: 2rem; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; }

/* ── Forms ── */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .9rem; font-weight: 600; color: var(--gray-700); margin-bottom: .4rem; }
.form-control {
  width: 100%; padding: .65rem .9rem; border: 1.5px solid var(--gray-300);
  border-radius: var(--radius); font-size: .95rem; color: var(--gray-800);
  transition: border-color .15s, box-shadow .15s;
  background: #fff;
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(20,167,232,.15); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-card { background: #fff; border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-lg); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 6rem; }

/* ── Tabs ── */
.tabs { margin-bottom: 2rem; }
.tab-list { display: flex; gap: .5rem; border-bottom: 2px solid var(--gray-200); flex-wrap: wrap; }
.tab-btn {
  padding: .65rem 1.25rem; background: transparent; border: none;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  font-size: .9rem; font-weight: 500; cursor: pointer; color: var(--gray-600);
  transition: color .15s, border-color .15s;
}
.tab-btn:hover { color: var(--primary); }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Testimonial ── */
.testimonial-card { background: #fff; border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); }
.testimonial-text { color: var(--gray-600); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .9rem; }
.testimonial-avatar {
  width: 3rem; height: 3rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .95rem; flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: .95rem; }
.testimonial-role { font-size: .8rem; color: var(--gray-500); }

/* ── Info Cards ── */
.info-card { background: #fff; border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); }
.info-icon { width: 3rem; height: 3rem; border-radius: .6rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-row { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.icon-row:last-child { margin-bottom: 0; }
.checklist li { display: flex; align-items: center; gap: .6rem; padding: .4rem 0; font-size: .925rem; color: var(--gray-600); }
.checklist li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ── Country Info ── */
.country-card { background: #fff; border-radius: var(--radius-lg); padding: 2.5rem 2rem; box-shadow: var(--shadow); text-align: center; }
.country-badge {
  width: 4rem; height: 4rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem; font-weight: 700; margin: 0 auto 1.25rem;
}
.country-info li { padding: .3rem 0; font-size: .875rem; color: var(--gray-600); border-bottom: 1px solid var(--gray-100); }
.country-info li:last-child { border-bottom: none; }

/* ── How it works ── */
.step { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.step:last-child { margin-bottom: 0; }
.step-num {
  width: 2.25rem; height: 2.25rem; border-radius: 50%; background: var(--primary);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 700; flex-shrink: 0; margin-top: .15rem;
}
.step-title { font-weight: 700; margin-bottom: .25rem; }
.step-text { font-size: .9rem; color: var(--gray-600); }

/* ── CTA ── */
.cta-band { background: linear-gradient(135deg, var(--primary) 0%, var(--deep-blue) 100%); color: #fff; padding: 5rem 0; text-align: center; }
.cta-band h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; margin-bottom: 1rem; }
.cta-band p { font-size: 1.1rem; opacity: .9; max-width: 580px; margin: 0 auto 2rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── Booking type toggle ── */
.booking-tabs { display: flex; background: var(--gray-100); border-radius: var(--radius); padding: .25rem; gap: .25rem; margin-bottom: 1.75rem; }
.booking-tab {
  flex: 1; padding: .6rem; border-radius: calc(var(--radius) - 2px); border: none;
  background: transparent; font-size: .9rem; font-weight: 500; cursor: pointer;
  color: var(--gray-600); transition: background .15s, color .15s;
}
.booking-tab.active { background: #fff; color: var(--primary); box-shadow: var(--shadow); }

/* ── Footer ── */
footer { background: var(--gray-800); color: #fff; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { font-size: 1.5rem; font-family: Georgia, serif; font-weight: 700; color: var(--beige); margin-bottom: 1rem; }
.footer-desc { color: #9ca3af; font-size: .9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: .75rem; }
.social-link {
  width: 2.25rem; height: 2.25rem; background: var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-size: .85rem; font-weight: 700; transition: background .15s;
}
.social-link:hover { background: var(--primary-dark); }
.footer-heading { font-size: 1rem; font-weight: 600; margin-bottom: 1.1rem; color: #fff; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { color: #9ca3af; font-size: .9rem; transition: color .15s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #374151; padding-top: 1.5rem; text-align: center; color: #9ca3af; font-size: .875rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: block; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2rem; }
}
