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

:root {
  --red: #D94F38;
  --red-dark: #B83A26;
  --red-light: #F07060;
  --red-pale: #FDF0EE;
  --orange: #F0844A;
  --amber: #F5B942;
  --amber-light: #FDDEA0;
  --sand: #FBF5EC;
  --warm-white: #FFFDF9;
  --teal: #2A7A7A;
  --teal-light: #3A9A9A;
  --dark: #1E1410;
  --text-mid: #4A3830;
  --text-muted: #9A8880;
  --border: rgba(217,79,56,0.15);
  --border-strong: rgba(217,79,56,0.35);
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--warm-white);
  color: var(--dark);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== PAGES ===== */
.page { display: none; }
.page.active { display: block; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(30,20,16,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245,185,66,0.2);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; cursor: pointer; }
.logo-badge {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 15px; color: #fff; font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.nav-logo:hover .logo-badge { transform: scale(1.15) rotate(-5deg); }
.logo-name { font-family: var(--ff-display); font-size: 19px; color: #fff; font-weight: 600; letter-spacing: 0.08em; line-height: 1; }
.logo-sub { font-size: 8.5px; color: var(--amber); letter-spacing: 0.22em; text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; align-items: center; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.65); text-decoration: none;
  font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 8px 16px; transition: color 0.2s; font-weight: 500;
}
.nav-links a:hover { color: var(--amber); }
.nav-links a.active { color: var(--red-light); }
.nav-admin-btn {
  background: transparent; border: 1.5px solid rgba(245,185,66,0.45);
  color: var(--amber); font-family: var(--ff-body);
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 6px 14px; cursor: pointer; transition: all 0.25s;
  border-radius: 20px; font-weight: 600;
}
.nav-admin-btn:hover { background: rgba(245,185,66,0.12); border-color: var(--amber); transform: scale(1.05); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: #1E1410;
  position: relative; display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('bg.png') center/cover no-repeat;
  opacity: 0.35;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(30,20,16,0.92) 0%, rgba(30,20,16,0.55) 55%, rgba(217,79,56,0.15) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  padding: 130px 6% 80px; max-width: 860px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(217,79,56,0.18); border: 1px solid rgba(217,79,56,0.4);
  border-radius: 30px; padding: 6px 16px;
  font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red-light); font-weight: 600; margin-bottom: 28px;
}
.hero-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red-light); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.5;transform:scale(1.4);} }
.hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(44px, 6.5vw, 82px);
  color: #fff; font-weight: 700; line-height: 1.05;
  margin-bottom: 24px;
}
.hero-h1 em { font-style: italic; color: var(--amber); }
.hero-desc { font-size: 15px; color: rgba(255,255,255,0.6); max-width: 500px; line-height: 1.85; margin-bottom: 44px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-red {
  background: var(--red); color: #fff; border: none;
  padding: 13px 32px; border-radius: 8px;
  font-family: var(--ff-body); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 600; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.btn-red:hover { background: var(--red-light); transform: scale(1.07) translateY(-2px); box-shadow: 0 8px 24px rgba(217,79,56,0.4); }
.btn-ghost {
 background: var(--amber); color: #fff; border: none;
  padding: 13px 32px; border-radius: 8px;
  font-family: var(--ff-body); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 600; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.btn-ghost:hover { background: var(--amber-light); transform: scale(1.07) translateY(-2px); box-shadow: 0 8px 24px rgba(217,79,56,0.4);  }

/* floating orbs for hero decoration */
.orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  animation: floatOrb 8s ease-in-out infinite;
}
.orb1 { width: 300px; height: 300px; right: 8%; top: 15%; background: radial-gradient(circle, rgba(217,79,56,0.12) 0%, transparent 70%); animation-delay: 0s; }
.orb2 { width: 200px; height: 200px; right: 20%; bottom: 20%; background: radial-gradient(circle, rgba(245,185,66,0.1) 0%, transparent 70%); animation-delay: -3s; }
@keyframes floatOrb { 0%,100%{transform:translateY(0) scale(1);} 50%{transform:translateY(-30px) scale(1.08);} }

/* ===== STATS ===== */
.stats-bar {
  background: var(--red); display: flex; flex-wrap: wrap;
}
.stat-item { flex: 1; min-width: 120px; padding: 22px 16px; text-align: center; border-right: 1px solid rgba(255,255,255,0.15); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--ff-display); font-size: 30px; font-weight: 700; color: #fff; line-height: 1; }
.stat-label { font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.7); font-weight: 500; margin-top: 4px; }

/* ===== SECTIONS ===== */
section { padding: 90px 6%; }
.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--red); font-weight: 700; margin-bottom: 14px;
}
.section-tag::before { content: ''; width: 24px; height: 2px; background: var(--red); border-radius: 2px; }
.section-title { font-family: var(--ff-display); font-size: clamp(30px, 3.5vw, 50px); font-weight: 700; color: var(--dark); line-height: 1.1; }
.section-title em { font-style: italic; color: var(--red); }

/* ===== NEWS ===== */
.news-section { background: var(--sand); }
.news-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 50px; flex-wrap: wrap; gap: 20px; }
.news-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 20px; }
.news-card {
  background: #fff; border-radius: 16px; overflow: hidden; cursor: pointer;
  border: 1px solid rgba(217,79,56,0.1);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.news-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 50px rgba(217,79,56,0.18); }
.news-card.featured { grid-row: span 2; }
.news-card-img { width: 100%; height: 180px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.news-card:hover .news-card-img { transform: scale(1.06); }
.news-card.featured .news-card-img { height: 240px; }
.news-card-body { padding: 22px; }
.news-cat { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); font-weight: 700; margin-bottom: 8px; }
.news-card-title { font-family: var(--ff-display); font-size: 18px; font-weight: 600; color: var(--dark); line-height: 1.25; margin-bottom: 10px; }
.news-card.featured .news-card-title { font-size: 24px; }
.news-card-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
.news-card-date { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.news-empty { grid-column: 1 / -1; text-align: center; padding: 80px 20px; background: #fff; border-radius: 16px; }
.news-empty p { font-family: var(--ff-display); font-size: 20px; color: var(--text-muted); font-style: italic; }

/* ===== PACKAGES ===== */
.packages-section { background: var(--warm-white); }
.packages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px; margin-top: 50px; }
.package-card {
  background: #fff; border-radius: 20px; overflow: hidden; cursor: pointer;
  border: 1px solid rgba(217,79,56,0.1);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
}
.package-card:hover { transform: translateY(-12px) scale(1.03) rotate(-0.5deg); box-shadow: 0 28px 60px rgba(217,79,56,0.22), 0 8px 20px rgba(0,0,0,0.08); }
.pkg-img-wrap { position: relative; height: 210px; overflow: hidden; }
.pkg-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.34,1.2,0.64,1);
}
.package-card:hover .pkg-img { transform: scale(1.12); }
.pkg-duration {
  position: absolute; top: 14px; left: 14px;
  background: var(--red); color: #fff;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
  padding: 5px 12px; border-radius: 20px;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.package-card:hover .pkg-duration { transform: scale(1.1) translateY(-2px); }
.pkg-body { padding: 22px 24px; }
.pkg-dest { font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); font-weight: 700; margin-bottom: 6px; }
.pkg-name { font-family: var(--ff-display); font-size: 19px; font-weight: 700; color: var(--dark); line-height: 1.2; margin-bottom: 10px; }
.pkg-price { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.pkg-price strong { color: var(--red); font-size: 18px; font-family: var(--ff-display); }
.pkg-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red-pale); color: var(--red);
  border: 1.5px solid rgba(217,79,56,0.25); border-radius: 8px;
  padding: 9px 18px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1); text-decoration: none;
}
.pkg-cta:hover { background: var(--red); color: #fff; transform: scale(1.06); }
.pkg-cta-arrow { transition: transform 0.2s; }
.pkg-cta:hover .pkg-cta-arrow { transform: translateX(4px); }

/* ===== COUNTRY / REGION GRID ===== */
.region-block { margin-bottom: 64px; }
.region-block:last-child { margin-bottom: 0; }
.region-label {
  font-family: var(--ff-display); font-size: 22px; font-weight: 700; color: var(--dark);
  margin-bottom: 22px; display: flex; align-items: center; gap: 12px;
}
.region-label::after { content: ''; flex: 1; height: 1px; background: var(--border-strong); }
.region-sub { font-size: 13px; color: var(--text-muted); margin: -14px 0 22px; }
.country-card {
  background: #fff; border-radius: 20px; overflow: hidden; cursor: pointer;
  border: 1px solid rgba(217,79,56,0.1);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
}
.country-card:hover { transform: translateY(-12px) scale(1.03) rotate(-0.5deg); box-shadow: 0 28px 60px rgba(217,79,56,0.22), 0 8px 20px rgba(0,0,0,0.08); }
.country-img-wrap { position: relative; height: 210px; overflow: hidden; }
.country-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.34,1.2,0.64,1); }
.country-card:hover .country-img { transform: scale(1.12); }
.country-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--red); color: #fff;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
  padding: 5px 12px; border-radius: 20px;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.country-card:hover .country-badge { transform: scale(1.1) translateY(-2px); }
.country-body { padding: 22px 24px; }
.country-region { font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); font-weight: 700; margin-bottom: 6px; }
.country-name { font-family: var(--ff-display); font-size: 19px; font-weight: 700; color: var(--dark); line-height: 1.2; margin-bottom: 10px; }
.country-price { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.country-price strong { color: var(--red); font-size: 18px; font-family: var(--ff-display); }

/* ===== COUNTRY DETAIL PAGE ===== */
#page-country { background: var(--warm-white); }
.country-detail-hero { min-height: 50vh; position: relative; display: flex; align-items: flex-end; }
.country-detail-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.country-detail-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30,20,16,0.35) 0%, rgba(30,20,16,0.92) 100%); }
.country-detail-content { position: relative; z-index: 1; padding: 130px 6% 50px; max-width: 900px; }
.country-detail-tag { display: inline-block; background: rgba(217,79,56,0.18); border: 1px solid rgba(217,79,56,0.4); border-radius: 30px; padding: 6px 16px; font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red-light); font-weight: 600; margin-bottom: 18px; }
.country-detail-title { font-family: var(--ff-display); font-size: clamp(36px, 5.5vw, 64px); color: #fff; font-weight: 700; line-height: 1.1; margin-bottom: 12px; }
.country-detail-sub { font-size: 14px; color: rgba(255,255,255,0.6); }
.country-detail-body { padding: 70px 6%; }
.duration-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px; margin-top: 30px; }

/* ===== PACKAGE DETAIL PAGE ===== */
#page-package { background: var(--warm-white); }
.pkg-detail-hero {
  min-height: 60vh; position: relative; display: flex; align-items: flex-end;
  padding: 60px 6% 50px; margin-top: 64px;
}
.pkg-detail-bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; }
.pkg-detail-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,20,16,0.9) 0%, rgba(30,20,16,0.3) 60%); }
.pkg-detail-content { position: relative; z-index: 1; }
.pkg-detail-tag { display: inline-block; background: var(--red); color: #fff; border-radius: 20px; padding: 5px 14px; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700; margin-bottom: 14px; }
.pkg-detail-title { font-family: var(--ff-display); font-size: clamp(32px, 5vw, 58px); font-weight: 700; color: #fff; line-height: 1.05; margin-bottom: 10px; }
.pkg-detail-sub { font-size: 14px; color: rgba(255,255,255,0.65); }
.pkg-detail-body { padding: 60px 6%; display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; max-width: 1200px; }
.pkg-section-h { font-family: var(--ff-display); font-size: 24px; font-weight: 700; color: var(--dark); margin-bottom: 18px; }
.pkg-itinerary-item { display: flex; gap: 16px; margin-bottom: 20px; }
.pkg-day-badge {
  min-width: 44px; height: 44px; border-radius: 50%; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff; letter-spacing: 0.05em; flex-shrink: 0;
}
.pkg-day-title { font-weight: 600; color: var(--dark); font-size: 14px; margin-bottom: 4px; }
.pkg-day-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

.pkg-price-card {
  background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 28px;
  position: sticky; top: 90px;
}
.pkg-price-main { font-family: var(--ff-display); font-size: 42px; font-weight: 700; color: var(--red); line-height: 1; }
.pkg-price-note { font-size: 12px; color: var(--text-muted); margin-top: 4px; margin-bottom: 24px; }
.pkg-includes { list-style: none; margin-bottom: 24px; }
.pkg-includes li { font-size: 13px; color: var(--text-mid); padding: 8px 0; border-bottom: 1px solid var(--border); display: flex; gap: 10px; }
.pkg-includes li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; }
.btn-book {
  width: 100%; background: var(--red); color: #fff; border: none; border-radius: 12px;
  padding: 15px; font-family: var(--ff-body); font-size: 13px; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 700; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.btn-book:hover { background: var(--red-dark); transform: scale(1.03); box-shadow: 0 10px 28px rgba(217,79,56,0.35); }
.back-btn {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--red); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700; background: none; border: none; cursor: pointer;
  padding: 0; margin-bottom: 0; transition: gap 0.2s;
}
.back-btn:hover { gap: 14px; }
.pkg-nav-row { padding: 20px 6% 0; }

/* ===== ABOUT ===== */
.about-strip {
  background: var(--dark); padding: 90px 6%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
}
.about-text .section-title { color: #fff; }
.about-text .section-title em { color: var(--amber); }
.about-body { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.85; margin-top: 24px; }
.about-contact { border-top: 1px solid rgba(245,185,66,0.2); margin-top: 36px; padding-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.c-label { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--amber); font-weight: 700; margin-bottom: 4px; }
.c-val { font-size: 13px; color: rgba(255,255,255,0.65); }
.about-imgs { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 230px 170px; gap: 8px; border-radius: 16px; overflow: hidden; }
.about-imgs img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.34,1.2,0.64,1), opacity 0.3s; }
.about-imgs img:hover { transform: scale(1.08); opacity: 0.88; }
.about-imgs img:first-child { grid-column: 1 / -1; }

/* ===== FOOTER ===== */
footer { background: var(--dark); padding: 60px 6% 36px; border-top: 1px solid rgba(245,185,66,0.12); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 48px; }
.footer-brand { font-family: var(--ff-display); font-size: 22px; color: #fff; font-weight: 700; }
.footer-brand-sub { font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); font-weight: 600; margin-bottom: 16px; margin-top: 2px; }
.footer-desc { font-size: 12px; color: rgba(255,255,255,0.38); line-height: 1.8; }
.f-head { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--amber); font-weight: 700; margin-bottom: 18px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.28); }
.footer-soc a { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); text-decoration: none; margin-left: 18px; transition: color 0.2s; }
.footer-soc a:hover { color: var(--amber); }

/* ===== LOGIN MODAL ===== */
.login-overlay {
  display: none; position: fixed; inset: 0; z-index: 4000;
  background: rgba(30,20,16,0.88); backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
}
.login-overlay.open { display: flex; }
.login-box {
  background: #fff; border-radius: 20px; padding: 44px 40px;
  width: 100%; max-width: 400px; position: relative;
  animation: popIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popIn { from { opacity:0; transform: scale(0.8) translateY(20px); } to { opacity:1; transform: scale(1) translateY(0); } }
.login-logo { text-align: center; margin-bottom: 28px; }
.login-logo-mark {
  width: 52px; height: 52px; border-radius: 50%; background: var(--red);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 20px; color: #fff; font-weight: 700; margin-bottom: 10px;
}
.login-title { font-family: var(--ff-display); font-size: 22px; font-weight: 700; color: var(--dark); text-align: center; margin-bottom: 6px; }
.login-sub { font-size: 12px; color: var(--text-muted); text-align: center; margin-bottom: 28px; }
.login-field { margin-bottom: 16px; }
.login-label { display: block; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; margin-bottom: 7px; }
.login-input {
  width: 100%; border: 1.5px solid rgba(0,0,0,0.12); border-radius: 10px;
  padding: 11px 14px; font-family: var(--ff-body); font-size: 14px;
  color: var(--dark); background: #fff; outline: none; transition: border-color 0.2s;
}
.login-input:focus { border-color: var(--red); }
.login-error { color: var(--red); font-size: 12px; text-align: center; margin-bottom: 14px; min-height: 18px; }
.btn-login {
  width: 100%; background: var(--red); color: #fff; border: none; border-radius: 12px;
  padding: 13px; font-family: var(--ff-body); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 700; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1); margin-top: 4px;
}
.btn-login:hover { background: var(--red-dark); transform: scale(1.04); box-shadow: 0 8px 24px rgba(217,79,56,0.35); }
.login-cancel { display: block; text-align: center; margin-top: 14px; font-size: 12px; color: var(--text-muted); cursor: pointer; }
.login-cancel:hover { color: var(--red); }

/* ===== NEWS MODAL ===== */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(30,20,16,0.82); backdrop-filter: blur(5px);
  overflow-y: auto; padding: 40px 20px; align-items: flex-start; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--warm-white); width: 100%; max-width: 740px;
  border-radius: 20px; overflow: hidden;
  animation: popIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.modal-hdr { background: var(--dark); padding: 32px 40px 26px; position: relative; }
.modal-cat-badge { display: inline-block; background: var(--red); color: #fff; border-radius: 20px; padding: 4px 12px; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; }
.modal-title { font-family: var(--ff-display); font-size: 28px; font-weight: 700; color: #fff; line-height: 1.2; }
.modal-close {
  position: absolute; top: 18px; right: 18px;
  background: rgba(255,255,255,0.1); border: none; color: rgba(255,255,255,0.65);
  width: 34px; height: 34px; border-radius: 50%; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.modal-close:hover { background: var(--red); color: #fff; transform: rotate(90deg); }
.modal-body { padding: 36px 40px; }
.modal-img { width: 100%; height: 300px; object-fit: cover; border-radius: 12px; margin-bottom: 24px; }
.modal-meta { font-size: 11px; color: var(--text-muted); font-weight: 500; margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.modal-text { font-size: 14px; color: var(--text-mid); line-height: 1.85; }

/* ===== ADMIN ===== */
.admin-overlay { display: none; position: fixed; inset: 0; z-index: 3000; background: rgba(30,20,16,0.92); overflow-y: auto; }
.admin-overlay.open { display: block; }
.admin-panel { background: #fff; min-height: 100vh; max-width: 860px; margin: 0 auto; }
.admin-bar {
  background: var(--dark); padding: 18px 36px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 2px solid var(--red); position: sticky; top: 0; z-index: 1;
}
.admin-bar-title { font-family: var(--ff-display); font-size: 20px; font-weight: 700; color: #fff; }
.admin-bar-title span { color: var(--red-light); }
.admin-x {
  background: transparent; border: 1.5px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.6);
  padding: 7px 18px; font-family: var(--ff-body); font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase; cursor: pointer; border-radius: 8px; transition: all 0.2s; font-weight: 600;
}
.admin-x:hover { border-color: var(--red); color: var(--red-light); }
.admin-logout {
  background: transparent; border: none; color: rgba(255,255,255,0.4);
  font-size: 11px; cursor: pointer; margin-left: 12px; transition: color 0.2s;
}
.admin-logout:hover { color: var(--red-light); }
.admin-body { padding: 36px; }
.a-section-h { font-family: var(--ff-display); font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 24px; padding-bottom: 14px; border-bottom: 1.5px solid var(--border); }
.form-group { margin-bottom: 18px; }
.f-label { display: block; font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); font-weight: 700; margin-bottom: 7px; }
.f-input, .f-textarea, .f-select {
  width: 100%; border: 1.5px solid rgba(0,0,0,0.12); border-radius: 10px;
  padding: 10px 14px; font-family: var(--ff-body); font-size: 14px;
  color: var(--dark); background: #fff; outline: none; transition: border-color 0.2s;
  appearance: none;
}
.f-input:focus, .f-textarea:focus, .f-select:focus { border-color: var(--red); }
.f-textarea { min-height: 110px; resize: vertical; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-publish {
  background: var(--red); color: #fff; border: none; border-radius: 10px;
  padding: 12px 28px; font-family: var(--ff-body); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 700; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.btn-publish:hover { background: var(--red-dark); transform: scale(1.05); box-shadow: 0 6px 20px rgba(217,79,56,0.35); }
.a-list-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.a-list-img { width: 76px; height: 56px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.a-list-info { flex: 1; }
.a-list-title { font-family: var(--ff-display); font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.a-list-meta { font-size: 11px; color: var(--text-muted); }
.a-del {
  background: transparent; border: 1.5px solid rgba(200,40,40,0.25); color: #C82828;
  padding: 6px 14px; font-family: var(--ff-body); font-size: 9.5px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 700; cursor: pointer; border-radius: 8px; flex-shrink: 0;
  transition: all 0.2s;
}
.a-del:hover { background: rgba(200,40,40,0.07); border-color: #C82828; }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  background: var(--dark); border-left: 4px solid var(--red); border-radius: 10px;
  padding: 14px 22px; font-size: 13px; color: rgba(255,255,255,0.85);
  transform: translateY(70px); opacity: 0; transition: all 0.3s ease; pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card.featured { grid-column: 1 / -1; grid-row: auto; }
  .about-strip { grid-template-columns: 1fr; }
  .about-imgs { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .pkg-detail-body { grid-template-columns: 1fr; }
  .pkg-price-card { position: static; }
}
@media (max-width: 640px) {
  .news-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .admin-body { padding: 20px; }
  .modal-body, .modal-hdr { padding: 24px 22px; }
  .login-box { padding: 32px 24px; }
}

.social-top-right{
position:absolute;
top:24px;
right:32px;
z-index:5;
display:flex;
gap:12px;
}
.social-top-right a{
width:42px;
height:42px;
border-radius:12px;
display:flex;
align-items:center;
justify-content:center;
}
.social-top-right a:hover{
transform:translateY(-2px) scale(1.08);
background:rgba(217,79,56,0.35);
}

