﻿:root {
  --bg: #f7f8fc;
  --card: #ffffff;
  --text: #161b27;
  --muted: #5e667a;
  --line: #d9deea;
  --brand: #0f6fff;
  --brand-2: #0757ce;
  --danger: #ba1a1a;
  --success: #0f7a2f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", Tahoma, sans-serif;
  background: #0f1f3d;
  color: var(--text);
  position: relative;
}

html,
body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(135deg, rgba(8, 24, 56, 0.32), rgba(6, 34, 70, 0.26)),
    url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(12, 26, 54, 0.08), rgba(12, 26, 54, 0.14));
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #101a3c;
  color: #fff;
  padding: 12px 20px;
}

.topnav {
  margin-left: auto;
  margin-right: 14px;
}

.topnav-link {
  color: #e8f0ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 7px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.topnav-link:hover {
  background: rgba(255, 255, 255, 0.12);
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #fff;
}

.brand-text strong {
  display: block;
  font-size: 1rem;
}

.brand-text span {
  display: block;
  font-size: 12px;
  opacity: 0.88;
}

.session-info {
  font-size: 14px;
  opacity: 0.9;
}

.container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 16px 20px 24px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  margin-bottom: 16px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(12, 29, 64, 0.04) 0%, rgba(12, 29, 64, 0.42) 100%),
    url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  box-shadow: 0 26px 56px rgba(10, 28, 64, 0.42), 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -10% -20% auto auto;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 180, 80, 0.22), rgba(255, 180, 80, 0));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(12, 32, 67, 0.5) 0%, rgba(12, 32, 67, 0.72) 100%);
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(3px);
}

.hero-kicker {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff2a2a;
  font-weight: 700;
}

.hero-main {
  font-family: "Sora", "Poppins", sans-serif;
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
  max-width: 760px;
  background: linear-gradient(90deg, #ff5252 0%, #ffca28 35%, #66bb6a 65%, #42a5f5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.55;
  opacity: 0.96;
  max-width: 720px;
  margin-bottom: 14px;
  color: #ffd54f !important;
}

.mmt-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.mmt-tab {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  color: #fff;
  background: linear-gradient(135deg, #ff4b4b, #d72626);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.mmt-tab.active {
  background: linear-gradient(135deg, #c91515, #920f0f);
  color: #fff;
}

.mmt-search {
  background: #ffffff;
  color: #16223a;
  border-radius: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr)) auto;
  gap: 8px;
  padding: 13px;
  margin-bottom: 12px;
  box-shadow: 0 14px 26px rgba(10, 25, 58, 0.2);
}

.search-item {
  border: 1px solid #dde4f2;
  border-radius: 12px;
  padding: 10px;
  min-height: 64px;
  background: #fbfdff;
}

.search-item span {
  display: block;
  font-size: 12px;
  color: #5e6880;
  margin-bottom: 4px;
}

.search-item strong {
  font-size: 14px;
  color: #172542;
}

.search-cta {
  align-self: stretch;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: linear-gradient(140deg, #ff7f3f 0%, #ff3d00 100%);
  color: #fff;
  border-radius: 12px;
  padding: 10px 18px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(255, 79, 0, 0.3);
}

.destination-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 12px;
}

.destination-chips span {
  font-size: 13px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 99, 71, 0.92), rgba(255, 165, 0, 0.9));
  border: 1px solid rgba(255, 230, 180, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.destination-chips span:nth-child(3n + 1) {
  background: linear-gradient(135deg, #ff5252, #ff7043);
}

.destination-chips span:nth-child(3n + 2) {
  background: linear-gradient(135deg, #ff9800, #ffca28);
}

.destination-chips span:nth-child(3n) {
  background: linear-gradient(135deg, #26a69a, #42a5f5);
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

.deal-card {
  border-radius: 14px;
  min-height: 90px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.deal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 12, 26, 0.78), rgba(6, 12, 26, 0.22));
}

.deal-card p,
.deal-card strong {
  position: relative;
  z-index: 1;
  margin: 0;
}

.deal-card p {
  display: block;
  font-size: 12px;
  opacity: 0.92;
  margin-bottom: 4px;
}

.deal-card strong {
  font-size: 1.05rem;
}

.hero-action-msg {
  margin: 8px 0 0;
  font-size: 12px;
  color: #ffe7ad;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-row span {
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.offer-row {
  margin: 0 0 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 10px;
}

.offer-card {
  background: linear-gradient(140deg, #ffffff 0%, #f4f8ff 100%);
  border: 1px solid #dbe5fb;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 10px 24px rgba(15, 43, 97, 0.08);
}

.offer-card p {
  margin: 0 0 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #2e5da6;
  font-weight: 700;
}

.offer-card strong {
  font-size: 14px;
  line-height: 1.4;
  color: #10264a;
}

.darjeeling {
  background-image: url("assets/darjeeling-local.jpg");
}

.sikkim {
  background-image: url("assets/sikkim-local.jpg");
}

.kashmir {
  background-image: url("assets/kashmir-local.jpg");
}

.goa {
  background-image: url("assets/goa-local.jpg");
}

.kerala {
  background-image: url("assets/kerala-local.jpg");
}

.meghalaya {
  background-image: url("assets/meghalaya-local.jpg");
}

.arunachal {
  background-image: url("assets/arunachal-local.jpg");
}

.rajasthan {
  background-image: url("assets/rajasthan-local.jpg");
}

.nepal {
  background-image: url("assets/nepal-local.jpg");
}

.bhutan {
  background-image: url("assets/bhutan-local.jpg");
}

.himachal {
  background-image: url("assets/himachal-local.jpg");
}

.card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 16px;
  box-shadow: 0 8px 30px rgba(16, 26, 60, 0.07);
  backdrop-filter: blur(3px);
}

.admin-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.admin-sidebar {
  position: sticky;
  top: 84px;
  align-self: start;
  border: 1px solid #cbdcfb;
  border-radius: 16px;
  padding: 16px;
  background: linear-gradient(180deg, #eef4ff 0%, #f8fbff 100%);
  display: grid;
  gap: 10px;
  max-height: calc(100vh - 110px);
  overflow: auto;
  box-shadow: 0 14px 28px rgba(27, 52, 98, 0.12);
}

.admin-sidebar h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: #17315d;
}

.admin-sidebar a {
  text-decoration: none;
  color: #173d74;
  background: #fff;
  border: 1px solid #cfddfb;
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 15px;
  font-weight: 600;
}

.admin-sidebar a:hover {
  background: #e6f0ff;
  border-color: #b7cdf8;
}

.admin-content {
  min-width: 0;
}

.admin-section {
  border: 1px solid #dde6f7;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 12px;
  background: #fff;
  scroll-margin-top: 14px;
}

.admin-section:last-child {
  margin-bottom: 0;
}

.login-shell {
  margin-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: #fff;
  border: 1px solid #d7def0;
  box-shadow: 0 16px 34px rgba(16, 39, 90, 0.09);
}

.login-side {
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(10, 28, 60, 0.82), rgba(10, 28, 60, 0.6)),
    url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.login-kicker {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 12px;
  color: #ffdd8f;
  font-weight: 700;
}

.login-side h2 {
  margin: 0 0 10px;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-family: "Sora", "Poppins", sans-serif;
  line-height: 1.25;
}

.login-side p {
  margin: 0 0 12px;
  line-height: 1.55;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
}

.login-points {
  margin: 0;
  padding-left: 18px;
}

.login-points li {
  margin-bottom: 7px;
  font-size: 13px;
}

.login-card {
  padding: 20px;
}

.login-card h3 {
  margin-bottom: 6px;
}

.auth-view-switch {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.auth-view-btn {
  flex: 1;
  background: #f1f5ff;
  color: #15386f;
  border: 1px solid #d4dff8;
}

.auth-view-btn.active {
  background: #0f3a75;
  color: #fff;
}

.login-mode-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.login-mode-btn {
  flex: 1;
  background: #eef3ff;
  color: #163368;
  border: 1px solid #d3def8;
}

.login-mode-btn.active {
  background: #10366f;
  color: #fff;
}

.otp-actions {
  display: flex;
  gap: 8px;
}

.login-card form button {
  margin-top: 6px;
}

.quick-contact {
  margin: 0 0 16px;
  background: linear-gradient(120deg, #fff5da 0%, #ffe5b2 100%);
  border: 1px solid #f1c97a;
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #5a3e0b;
  font-weight: 600;
}

.wa-link {
  color: #0b6b37;
  background: #d8f6e5;
  border: 1px solid #93dfb6;
  padding: 4px 8px;
  border-radius: 999px;
  text-decoration: none;
}

.wa-link:hover {
  background: #c4efd9;
}

h1, h2, h3 {
  margin-top: 0;
}

.muted {
  color: var(--muted);
}

.demo-list {
  margin-top: 6px;
}

form {
  display: grid;
  gap: 10px;
}

input,
textarea,
select,
button {
  font: inherit;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #c8d1e7;
}

button {
  background: var(--brand);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

button:hover {
  background: var(--brand-2);
}

button.secondary {
  background: #e9eefc;
  color: #1f3878;
}

button.small {
  padding: 6px 10px;
  font-size: 13px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.package-card {
  border: 1px solid #d6e0f5;
  border-radius: 14px;
  padding: 12px;
  background: linear-gradient(135deg, #f6f9ff 0%, #eef3ff 100%);
  box-shadow: 0 10px 20px rgba(22, 44, 86, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.package-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(22, 44, 86, 0.14);
}

.package-card.active {
  border: 2px solid #0f6fff;
  box-shadow: 0 0 0 3px rgba(15, 111, 255, 0.18), 0 14px 28px rgba(22, 44, 86, 0.14);
}

.package-card:nth-child(6n + 1) {
  background: linear-gradient(135deg, #e8f2ff 0%, #d9e9ff 100%);
  border-color: #b6d2ff;
}

.package-card:nth-child(6n + 2) {
  background: linear-gradient(135deg, #e8fff3 0%, #d8f8ea 100%);
  border-color: #afe8c8;
}

.package-card:nth-child(6n + 3) {
  background: linear-gradient(135deg, #fff3e6 0%, #ffe8d1 100%);
  border-color: #f2cda3;
}

.package-card:nth-child(6n + 4) {
  background: linear-gradient(135deg, #f3ecff 0%, #e8dcff 100%);
  border-color: #cdb7f7;
}

.package-card:nth-child(6n + 5) {
  background: linear-gradient(135deg, #fff6de 0%, #ffecbd 100%);
  border-color: #f4d88f;
}

.package-card:nth-child(6n) {
  background: linear-gradient(135deg, #e8fbff 0%, #d7f2f8 100%);
  border-color: #a9dce8;
}

.package-card h3 {
  color: #11386e;
}

.package-card .price {
  color: #0d3f93;
  font-size: 1.02rem;
}

.selected-note {
  display: inline-block;
  margin: 2px 0 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #dff7df;
  color: #0f7a2f;
  border: 1px solid #9fe2af;
  font-size: 16px;
  font-weight: 800;
}

.package-photo {
  width: 100%;
  height: 148px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  margin-bottom: 10px;
  border: 1px solid rgba(16, 31, 61, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.itinerary-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #243147;
}

#itineraryForm textarea {
  resize: vertical;
  min-height: 120px;
}

.price {
  font-weight: 700;
  color: #194fb6;
}

.payment-box {
  border: 1px dashed #9bb4ea;
  border-radius: 10px;
  padding: 10px;
  background: #f5f9ff;
}

.advance-box p {
  font-size: 17px;
  line-height: 1.45;
  color: #0f2e61;
  margin: 4px 0;
}

.advance-box {
  background: linear-gradient(135deg, #fff4b8 0%, #ffe78a 100%);
  border: 1px solid #f0c74a;
}

.advance-box p strong {
  color: #08244d;
  font-weight: 800;
}

.advance-box .muted {
  color: #163f7b;
  font-size: 15px;
  font-weight: 600;
}

.upi-qr {
  display: block;
  width: 180px;
  max-width: 100%;
  border-radius: 8px;
  border: 1px solid #d7e2fb;
  margin: 6px 0 10px;
  background: #fff;
}

.row-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.table-wrap {
  overflow-x: auto;
}

.admin-remark-input {
  min-width: 140px;
  margin: 0 6px;
  padding: 6px 8px;
  border: 1px solid #c8d7f1;
  border-radius: 8px;
  font-size: 12px;
}

.admin-bill-input {
  min-width: 170px;
  margin-right: 6px;
  padding: 6px;
  font-size: 12px;
}

.status-badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.status-confirmed {
  background: #d8f7df;
  color: #0e7a2f;
  border: 1px solid #9fe2af;
}

.status-pending {
  background: #fff6cc;
  color: #8a6700;
  border: 1px solid #ffe082;
}

.status-rejected {
  background: #ffe0e0;
  color: #b21919;
  border: 1px solid #ffb3b3;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 8px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
  font-size: 14px;
}

.error {
  color: var(--danger);
}

.success {
  color: var(--success);
}

.hidden {
  display: none;
}

.site-footer {
  background: #0e1838;
  color: #d9e4ff;
  margin-top: 16px;
  padding: 26px 16px 18px;
}

.footer-grid {
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 18px;
}

.site-footer h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1rem;
}

.site-footer p {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.5;
}

.footer-copy {
  width: 100%;
  max-width: none;
  margin: 14px 0 0;
  font-size: 12px;
  opacity: 0.9;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
}

@media (max-width: 800px) {
  .hero {
    padding: 12px;
  }

  .hero-overlay {
    padding: 16px;
  }

  .mmt-search {
    grid-template-columns: 1fr 1fr;
  }

  .search-cta {
    min-height: 54px;
  }

  .hero-strip {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }

  .offer-row {
    grid-template-columns: 1fr;
  }

  .login-shell {
    grid-template-columns: 1fr;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
  }
}

@media (max-width: 520px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .topnav {
    margin: 0;
  }

  .mmt-search {
    grid-template-columns: 1fr;
  }

  .hero-strip {
    grid-template-columns: 1fr;
  }

  .brand-text span {
    font-size: 11px;
  }
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.price-form {
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 10px 12px;
}

.price-form button {
  grid-column: 1 / -1;
}

@media (max-width: 640px) {
  .price-form {
    grid-template-columns: 1fr;
  }
}

.quick-scroll {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  display: grid;
  gap: 8px;
}

.quick-scroll button {
  border: 1px solid #c6d7f7;
  background: #ffffff;
  color: #173d74;
  font-weight: 700;
  font-size: 12px;
  padding: 9px 12px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(24, 48, 94, 0.16);
}

.quick-scroll button:hover {
  background: #eaf2ff;
}

#appPanel.admin-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 14px;
  align-items: start;
}

#appPanel.admin-dashboard #adminPanel {
  order: 1;
  margin-bottom: 0;
}

#appPanel.admin-dashboard #packagesPanel {
  order: 2;
  margin-bottom: 0;
  position: sticky;
  top: 84px;
}

#appPanel.admin-dashboard #packagesPanel .grid {
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 7px;
}

#appPanel.admin-dashboard #packagesPanel .package-card {
  padding: 8px;
}

#appPanel.admin-dashboard #packagesPanel .package-photo {
  height: 74px;
  margin-bottom: 7px;
}

#appPanel.admin-dashboard #packagesPanel .package-card h3 {
  font-size: 13px;
  margin-bottom: 4px;
}

#appPanel.admin-dashboard #packagesPanel .package-card p,
#appPanel.admin-dashboard #packagesPanel .package-card .price {
  font-size: 12px;
  margin: 2px 0;
}

#appPanel.admin-dashboard #packagesPanel .package-card .small {
  font-size: 11px;
  padding: 5px 8px;
}

@media (max-width: 1200px) {
  .hero-strip {
    grid-template-columns: repeat(4, minmax(120px, 1fr));
  }

  .mmt-search {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
  }

  .search-cta {
    grid-column: 1 / -1;
    min-height: 48px;
  }

  .admin-layout {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  #appPanel.admin-dashboard {
    grid-template-columns: 1fr;
  }

  #appPanel.admin-dashboard #packagesPanel {
    position: static;
  }
}

@media (max-width: 992px) {
  .topbar {
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 14px;
  }

  .container {
    padding: 12px 14px 20px;
  }

  .hero {
    padding: 14px;
  }

  .hero-overlay {
    padding: 14px;
  }

  .login-shell {
    grid-template-columns: 1fr;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    max-height: none;
  }
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }

  .offer-row {
    grid-template-columns: 1fr;
  }

  .row-between {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .quick-contact {
    font-size: 13px;
    padding: 10px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 10px 10px 18px;
  }

  .card {
    padding: 12px;
  }

  .hero-main {
    font-size: clamp(1.35rem, 7vw, 1.95rem);
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .mmt-search {
    grid-template-columns: 1fr;
  }

  .hero-strip {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  th,
  td {
    font-size: 12px;
    padding: 7px;
  }

  .quick-scroll {
    right: 10px;
    bottom: 10px;
  }

  .quick-scroll button {
    padding: 8px 10px;
    font-size: 11px;
  }
}


