:root {
  --background: #fff9f5;
  --surface: #ffffff;
  --text: #2d3436;
  --muted: #6b7280;
  --line: #ece4df;
  --primary: #e17055;
  --primary-dark: #d63031;
  --secondary: #00b894;
  --secondary-dark: #00a383;
  --gold: #f6c453;
  --danger: #b42318;
  --shadow: 0 18px 45px rgba(45, 52, 54, 0.1);
  --shadow-soft: 0 10px 28px rgba(45, 52, 54, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 74px;
  color: var(--text);
  background: var(--background);
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

code {
  background: #fff0e9;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.1rem 0.35rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.brand strong,
.admin-title {
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  font-size: clamp(2.45rem, 5vw, 4.6rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.12;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.3rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0.75rem clamp(1rem, 4vw, 3.25rem);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(236, 228, 223, 0.9);
  box-shadow: 0 8px 22px rgba(45, 52, 54, 0.06);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 999px;
  font-weight: 900;
}

.brand strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--text);
  font-weight: 800;
}

.site-nav a {
  position: relative;
  color: var(--text);
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  transition: width 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.site-nav .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 999px;
  padding: 0.65rem 1rem;
}

.site-nav .nav-cta::after {
  display: none;
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: #fff1ea;
  cursor: pointer;
  padding: 0.65rem;
}

.mobile-menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.approved-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6.5rem) clamp(1rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem);
}

.hero-shape {
  position: absolute;
  border-radius: 999px;
  opacity: 0.55;
  filter: blur(62px);
  pointer-events: none;
}

.hero-shape-primary {
  top: 3rem;
  left: -7rem;
  width: 16rem;
  height: 16rem;
  background: var(--primary);
}

.hero-shape-secondary {
  right: -10rem;
  bottom: -5rem;
  width: 24rem;
  height: 24rem;
  background: var(--secondary);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-copy {
  animation: fade-in-up 0.75s ease both;
}

.hero-copy h1 span,
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.15rem;
}

.pill,
.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  background: rgba(225, 112, 85, 0.12);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 900;
  padding: 0.45rem 0.85rem;
  margin-bottom: 1rem;
}

.pill.green {
  color: var(--secondary-dark);
  background: rgba(0, 184, 148, 0.12);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  cursor: pointer;
  font-weight: 900;
  padding: 0.78rem 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(225, 112, 85, 0.25);
}

.button.secondary {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}

.button.light,
.button.ghost,
.button.ghost.dark {
  color: var(--text);
  background: var(--surface);
  border: 2px solid var(--line);
}

.button.small {
  min-height: 38px;
  padding: 0.55rem 0.95rem;
  font-size: 0.92rem;
}

.button.danger {
  background: var(--danger);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.centered-actions {
  justify-content: center;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  color: var(--muted);
  margin-top: 2rem;
}

.avatar-stack {
  display: flex;
  margin-right: 0.15rem;
}

.avatar-stack i {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin-left: -8px;
  border: 2px solid var(--surface);
  border-radius: 999px;
  background: #ffe8df;
  color: var(--primary);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 900;
}

.avatar-stack i:first-child {
  margin-left: 0;
}

.stars {
  color: var(--gold);
}

.hero-visual {
  position: relative;
  min-height: 470px;
  animation: fade-in-up 0.75s ease 0.15s both;
}

.main-travel-card,
.floating-card,
.trip-search,
.package-card,
.destination-card,
.panel,
.contact-card,
.stat,
.metric {
  background: var(--surface);
  box-shadow: var(--shadow);
}

.main-travel-card {
  width: min(440px, 82%);
  margin: 2rem auto;
  border-radius: 30px;
  padding: 1.25rem;
}

.main-travel-art {
  display: grid;
  min-height: 360px;
  place-items: center;
  align-content: center;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffe1d4, #fff7da, #dff7ee);
  text-align: center;
}

.main-travel-art span {
  display: block;
  font-size: clamp(4rem, 9vw, 6rem);
}

.main-travel-art strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
}

.main-travel-art p {
  color: var(--muted);
  margin: 0;
}

.floating-card {
  position: absolute;
  z-index: 2;
  width: min(250px, 48vw);
  border-radius: 22px;
  padding: 0.8rem;
  animation: float 6s ease-in-out infinite;
}

.japan-card {
  top: 0;
  left: 0;
}

.india-card {
  right: 0;
  bottom: 0;
  animation-delay: 2s;
}

.emoji-tile,
.package-illustration,
.destination-art {
  display: grid;
  place-items: center;
  overflow: hidden;
}

.emoji-tile {
  min-height: 145px;
  border-radius: 16px;
  font-size: 4rem;
}

.emoji-tile.sakura {
  background: linear-gradient(135deg, #ffcfe0, #fff0f4);
}

.emoji-tile.india {
  background: linear-gradient(135deg, #ffd39a, #fff0c6);
}

.floating-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 0.65rem;
}

.floating-meta strong {
  color: var(--primary);
}

.search-wrap {
  position: relative;
  z-index: 5;
  width: min(1120px, calc(100% - 2rem));
  margin: -1.5rem auto 2.5rem;
}

.compact-search {
  margin-top: 0;
}

.trip-search {
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 24px;
  padding: clamp(1rem, 3vw, 1.7rem);
  backdrop-filter: blur(14px);
}

.trip-search h2 {
  text-align: center;
  font-size: 1.45rem;
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr)) auto;
  gap: 1rem;
  align-items: end;
}

label {
  display: grid;
  gap: 0.42rem;
  color: var(--muted);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  background: #fbfaf8;
  padding: 0.78rem 0.9rem;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(225, 112, 85, 0.12);
}

textarea {
  resize: vertical;
}

.section,
.page {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.page.narrow {
  width: min(900px, calc(100% - 2rem));
}

.white-band {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100% - 1180px) / 2));
  background: var(--surface);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
}

.section-header,
.table-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.text-link {
  color: var(--primary);
  font-weight: 900;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.35rem;
  align-items: stretch;
}

.package-card {
  overflow: hidden;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-hover {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 45px rgba(45, 52, 54, 0.13);
}

.package-illustration {
  height: 210px;
  min-height: unset;
  flex-shrink: 0;
  background: linear-gradient(135deg, #ffd7e5, #ffe9dd, #f7fff8);
}

.package-illustration.large {
  min-height: 330px;
  border-radius: 24px;
}

.package-illustration span {
  font-size: clamp(4rem, 9vw, 7rem);
}

.package-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.package-card-body h2 {
  font-size: 1.35rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.package-card-body .card-meta {
  margin-top: auto;
}

.card-kicker,
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.card-kicker {
  margin-bottom: 0.8rem;
}

.card-kicker small,
.card-meta span {
  color: var(--muted);
  font-weight: 800;
}

.tag,
.status {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  color: #d33b73;
  background: #ffe4ef;
  font-size: 0.76rem;
  font-weight: 900;
  padding: 0.28rem 0.65rem;
}

.card-meta {
  margin: 1rem 0;
}

.card-meta strong,
.card-meta a {
  color: var(--primary);
  font-weight: 900;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.destination-card {
  overflow: hidden;
  border-radius: 28px;
}

.destination-art {
  position: relative;
  min-height: 300px;
}

.destination-art span {
  font-size: clamp(5.5rem, 12vw, 8rem);
  transition: transform 0.25s ease;
}

.destination-card:hover .destination-art span {
  transform: scale(1.08);
}

.destination-art b {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
}

.japan-destination {
  background: linear-gradient(135deg, #ffb4cf, #ffe2ea, #fff);
}

.india-destination {
  background: linear-gradient(135deg, #ffb36f, #ffe3a8, #fff);
}

.destination-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 1.5rem;
}

.destination-body > p,
.destination-body > .button {
  grid-column: 1 / -1;
}

.destination-body p {
  color: var(--muted);
  margin-bottom: 0;
}

.destination-price {
  text-align: right;
}

.destination-price small {
  display: block;
  color: #a5a5a5;
  font-weight: 800;
}

.destination-price strong {
  color: var(--primary);
  font-size: 1.65rem;
}

.destination-price.secondary strong {
  color: var(--secondary);
}

.page-hero {
  padding-top: clamp(2.4rem, 5vw, 4rem);
  padding-bottom: 1.5rem;
}

.soft-hero {
  position: relative;
}

.package-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 2rem;
  align-items: center;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.detail-hero-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.1rem;
}

.detail-hero-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.detail-hero-meta strong {
  color: var(--primary);
  font-size: 1.8rem;
}

.detail-hero-meta span {
  color: var(--muted);
  font-weight: 900;
}

.detail-hero-card {
  background: var(--surface);
  border-radius: 30px;
  padding: 1rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.detail-hero-card p {
  color: var(--muted);
  font-weight: 900;
  margin: 1rem 0 0;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 410px);
  gap: 1.5rem;
  align-items: start;
}

.panel,
.rounded-panel {
  border: 1px solid rgba(236, 228, 223, 0.85);
  border-radius: 24px;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.inquiry-box {
  position: sticky;
  top: 96px;
  background: var(--surface);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.inquiry-box p {
  color: var(--muted);
}

.columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  border-bottom: 1px solid var(--line);
  padding: 0.7rem 0;
}

.check-list li::before {
  content: "✓";
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  margin-right: 0.6rem;
  color: var(--primary);
  background: rgba(225, 112, 85, 0.12);
  border-radius: 999px;
  font-weight: 900;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: 2rem;
  border-radius: 30px;
  padding: clamp(1.3rem, 4vw, 2rem);
}

.contact-card p,
.contact-info-grid span {
  color: var(--muted);
}

.contact-info-grid {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.contact-info-grid div {
  display: grid;
  gap: 0.15rem;
  background: var(--background);
  border-radius: 16px;
  padding: 0.9rem;
}

.stack-form,
.grid-form {
  display: grid;
  gap: 1rem;
}

.grid-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-form .full {
  grid-column: 1 / -1;
}

.checkbox-line {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 42px;
}

.checkbox-line input {
  width: auto;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
}

.centered {
  text-align: center;
}

.empty-state {
  padding: 2rem;
  text-align: center;
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: 20px;
}

.metric-row,
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
}

.metric,
.stat {
  border-radius: 22px;
  padding: 1rem;
}

.metric strong,
.stat strong {
  display: block;
  font-size: 1.65rem;
}

.metric span,
.stat span {
  color: var(--muted);
}

.admin-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  width: min(1360px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0 3rem;
  gap: 1.5rem;
}

.admin-sidebar {
  position: sticky;
  top: 92px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.25rem 0.85rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  overflow-x: hidden;
}

/* Custom Scrollbar for Sidebar */
.admin-sidebar::-webkit-scrollbar {
  width: 5px;
}
.admin-sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.admin-sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 107, 53, 0.2);
  border-radius: 10px;
}
.admin-sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 107, 53, 0.4);
}

.sidebar-brand-area {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 0.5rem 0.75rem 0.5rem;
  border-bottom: 1px solid var(--line);
}

.admin-title {
  color: var(--primary-dark);
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.admin-user {
  display: grid;
  gap: 0.15rem;
  color: var(--muted);
  background: var(--background);
  border-radius: 14px;
  margin: 0;
  padding: 0.65rem 0.75rem;
}

.admin-user strong {
  font-size: 0.9rem;
  color: var(--text);
}

.admin-user span {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sidebar-nav-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.nav-section {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.nav-section-title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 0 0.75rem;
  margin-bottom: 0.15rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease;
}

.nav-section-title:hover {
  color: var(--primary);
}

.nav-section-title::after {
  content: '▼';
  font-size: 0.55rem;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.5;
}

.nav-section.collapsed .nav-section-title::after {
  transform: rotate(-90deg);
}

.nav-section.collapsed .nav-section-items {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.15s ease;
}

.nav-section-items {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-height: 500px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}


.nav-link,
.sidebar-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 12px;
  color: var(--text);
  background: transparent;
  border: 0;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.55rem 0.75rem;
  text-align: left;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-icon {
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.nav-link.active,
.nav-link:hover,
.sidebar-button:hover {
  color: var(--primary-dark);
  background: #fff0e9;
  transform: translateX(2px);
}

.logout-btn {
  color: #ef4444 !important;
}

.logout-btn:hover {
  background: #fef2f2 !important;
  color: #dc2626 !important;
}


.admin-content {
  min-width: 0;
}

.admin-shell h1 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.stat-grid {
  margin-bottom: 1.5rem;
}

.admin-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0.7rem;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

td a {
  color: var(--primary-dark);
  font-weight: 900;
}

.row-actions {
  text-align: right;
}

.package-admin-detail {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
  margin-bottom: 1rem;
}

.package-admin-detail img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 18px;
}

.danger-zone {
  border-top: 1px solid var(--line);
  margin-top: 1.5rem;
  padding-top: 1rem;
}

.detail-list {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 0.75rem 1rem;
  margin: 0;
}

.detail-list dt {
  color: var(--muted);
  font-weight: 900;
}

.detail-list dd {
  margin: 0;
}

.timeline {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  gap: 0.25rem;
  padding: 0.8rem;
  background: #fff7f2;
  border-radius: 16px;
}

.site-footer {
  color: #fff;
  background: var(--text);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 5vw, 4rem) 1.5rem;
}

.flash-wrap {
  position: fixed;
  top: 86px;
  right: 1rem;
  z-index: 80;
  display: grid;
  gap: 0.5rem;
  width: min(360px, calc(100% - 2rem));
}

.flash {
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  font-weight: 900;
  padding: 0.8rem 1rem;
}

.flash-success {
  color: #116149;
  background: #dcfce7;
}

.flash-error {
  color: #991b1b;
  background: #fee2e2;
}

.login-card {
  align-items: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  width: min(1180px, 100%);
  margin: 0 auto 2rem;
}

.footer-grid h3 {
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 1.05rem;
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 0.6rem;
}

.social-row {
  display: flex;
  gap: 0.7rem;
}

.social-row a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom p {
  margin: 0;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1020px) {
  .mobile-menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 1rem;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 0.65rem 0.8rem;
  }

  .site-nav .nav-cta {
    text-align: center;
  }

  .hero-grid,
  .package-detail-hero,
  .detail-layout,
  .contact-card,
  .admin-shell,
  .admin-columns,
  .package-admin-detail {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy p,
  .section-heading {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-grid .button {
    grid-column: 1 / -1;
  }

  .destination-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .admin-sidebar,
  .inquiry-box {
    position: static;
  }
}

@media (max-width: 640px) {
  body {
    padding-top: 68px;
  }

  .site-header {
    min-height: 68px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  h1 {
    font-size: 2.25rem;
  }

  .hero-visual {
    min-height: 390px;
  }

  .main-travel-card {
    width: 88%;
  }

  .main-travel-art {
    min-height: 290px;
  }

  .floating-card {
    width: 180px;
  }

  .emoji-tile {
    min-height: 105px;
    font-size: 3rem;
  }

  .search-grid,
  .grid-form,
  .detail-list,
  .destination-body {
    grid-template-columns: 1fr;
  }

  .destination-price {
    text-align: left;
  }

  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* --- New Admin Header (Site Theme) --- */
body:has(.admin-top-header) {
  padding-top: 0;
}

.admin-top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  border-bottom: 1px solid var(--line, #e2e8f0);
  padding: 0.75rem max(1rem, calc((100% - 1360px) / 2));
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.admin-top-header-left, .admin-top-header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.admin-top-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary, #dc3545);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.admin-hamburger, .admin-bell {
  background: none;
  border: none;
  color: var(--text-light, #64748b);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.admin-hamburger:hover, .admin-bell:hover {
  background: var(--surface-hover, #f1f5f9);
  color: var(--text, #1e293b);
}

.admin-top-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-left: 1px solid var(--line, #e2e8f0);
  padding-left: 1.5rem;
}

.admin-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary, #dc3545);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.admin-user-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.admin-user-info strong {
  font-size: 0.9rem;
  color: var(--text, #1e293b);
}

.admin-user-info span {
  font-size: 0.75rem;
  color: var(--text-light, #64748b);
  font-weight: 600;
}

/* ---------------------------------------------------
   Country Selector Component
   --------------------------------------------------- */
.cs-outer { position: relative; width: 100%; font-family: inherit; }
.cs-control { display: flex; align-items: center; gap: 0.45rem; width: 100%; min-height: 42px; padding: 0.55rem 0.85rem; border: 1.5px solid #e2e8f0; border-radius: 12px; background: #f8fafc; cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s; box-sizing: border-box; user-select: none; }
.cs-control.open, .cs-control:focus-within { border-color: #dc2626; background: #fff; box-shadow: 0 0 0 3px rgba(220,38,38,0.08); }
.cs-flag { font-size: 1.15rem; flex-shrink: 0; min-width: 1.4rem; line-height: 1; }
.cs-search { flex: 1; border: none; background: transparent; outline: none; font-size: 0.88rem; color: #1e293b; font-family: inherit; padding: 0; min-width: 0; cursor: text; }
.cs-search::placeholder { color: #94a3b8; font-weight: 400; }
.cs-dial-badge { flex-shrink: 0; background: #fee2e2; color: #b91c1c; border-radius: 6px; padding: 0.18rem 0.5rem; font-size: 0.73rem; font-weight: 700; font-family: 'Courier New', monospace; white-space: nowrap; }
.cs-chevron { color: #94a3b8; font-size: 0.7rem; flex-shrink: 0; transition: transform 0.25s ease; line-height: 1; }
.cs-control.open .cs-chevron { transform: rotate(180deg); }
.cs-dropdown { position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: #fff; border: 1.5px solid #e8eef5; border-radius: 14px; box-shadow: 0 12px 40px rgba(15,23,42,0.14), 0 2px 8px rgba(0,0,0,0.06); z-index: 1200; display: none; overflow: hidden; animation: cs-fade-in 0.18s ease; }
.cs-dropdown.open { display: block; }
@keyframes cs-fade-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.cs-list { max-height: 240px; overflow-y: auto; padding: 0.35rem 0; }
.cs-list::-webkit-scrollbar { width: 4px; }
.cs-list::-webkit-scrollbar-track { background: transparent; }
.cs-list::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 4px; }
.cs-item { display: flex; align-items: center; gap: 0.6rem; padding: 0.55rem 0.9rem; cursor: pointer; transition: background 0.12s; font-size: 0.87rem; }
.cs-item:hover, .cs-item.highlighted { background: #fff5f5; }
.cs-item:active { background: #fee2e2; }
.cs-item-flag { font-size: 1.1rem; flex-shrink: 0; width: 1.5rem; text-align: center; }
.cs-item-name { flex: 1; color: #1e293b; font-weight: 500; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cs-item-name mark { background: #fecaca; color: #b91c1c; border-radius: 3px; padding: 0 2px; font-weight: 700; }
.cs-item-dial { color: #94a3b8; font-size: 0.75rem; font-weight: 600; font-family: 'Courier New', monospace; flex-shrink: 0; background: #f1f5f9; border-radius: 5px; padding: 0.1rem 0.35rem; }
.cs-no-result { padding: 1.25rem 1rem; text-align: center; color: #94a3b8; font-size: 0.85rem; }
.cs-no-result b { color: #64748b; }
