:root {
  --green: #39FF14;
  --green-2: #b2ff9e;
  --bg: #050505;
  --bg-2: #0B0F0D;
  --panel: rgba(17, 17, 17, 0.78);
  --panel-2: rgba(21, 21, 21, 0.92);
  --line: rgba(57, 255, 20, 0.22);
  --line-soft: rgba(255, 255, 255, 0.1);
  --text: #fff;
  --muted: #A0A0A0;
  --danger: #ff5a72;
  --warning: #ffcc66;
  --info: #4cc9f0;
  --violet: #b892ff;
  --radius: 8px;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
  --glow: rgba(57, 255, 20, 0.14);
  --brand-shadow: 0 0 28px rgba(57, 255, 20, 0.55);
  --btn-shadow: 0 0 24px rgba(57, 255, 20, 0.22);
  --btn-primary-shadow: 0 0 30px rgba(57, 255, 20, 0.36);
  --bar-shadow: 0 0 18px rgba(57, 255, 20, 0.25);
  --glass-glow: rgba(57, 255, 20, 0.4);
  --btn-hover-bg: rgba(57, 255, 20, 0.08);
  --line-hover: rgba(57, 255, 20, 0.58);
  --btn-text: #050505;
  color-scheme: dark;
}

body.theme-ramatva {
  --green: #6F0416;
  --green-2: #E5DCC6;
  --bg: #0D090A;
  --bg-2: #1E1316;
  --line: rgba(111, 4, 22, 0.28);
  --text: #F8F5EF;
  --muted: #C5BCAC;
  --glow: rgba(111, 4, 22, 0.18);
  --brand-shadow: 0 0 28px rgba(111, 4, 22, 0.65);
  --btn-shadow: 0 0 24px rgba(111, 4, 22, 0.3);
  --btn-primary-shadow: 0 0 30px rgba(111, 4, 22, 0.45);
  --bar-shadow: 0 0 18px rgba(111, 4, 22, 0.35);
  --glass-glow: rgba(111, 4, 22, 0.45);
  --btn-hover-bg: rgba(111, 4, 22, 0.12);
  --line-hover: rgba(111, 4, 22, 0.68);
  --btn-text: #E5DCC6;
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 76% 12%, var(--glow), transparent 30rem),
    linear-gradient(180deg, #030303 0%, var(--bg-2) 48%, #050505 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-shell {
  min-height: 100vh;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 3vw, 2.5rem);
  background: rgba(5, 5, 5, 0.78);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #020503;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: var(--brand-shadow);
}

.brand span:last-child {
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-link {
  white-space: nowrap;
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.6rem 0.82rem;
  font-size: 0.88rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
  border-color: var(--line);
  background: var(--btn-hover-bg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.72rem 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: var(--line-hover);
  box-shadow: var(--btn-shadow);
}

.btn.primary {
  color: var(--btn-text);
  font-weight: 800;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: var(--btn-primary-shadow);
}

.btn.ghost {
  background: transparent;
}

.btn.danger {
  border-color: rgba(255, 90, 114, 0.45);
  color: #ffd6dc;
}

.btn.small {
  min-height: 2.2rem;
  padding: 0.45rem 0.7rem;
  font-size: 0.84rem;
}

.hero {
  position: relative;
  min-height: calc(100vh - 5rem);
  display: grid;
  align-items: center;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 5rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.48) 42%, rgba(0, 0, 0, 0.14)),
    url("assets/ride-on-demand-hero.png") center right / cover no-repeat;
  opacity: 0.98;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 12rem;
  background: linear-gradient(180deg, transparent, var(--bg-2));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 48rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--green-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  background: rgba(5, 5, 5, 0.52);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1 {
  margin: 1.1rem 0 1rem;
  max-width: 15ch;
  font-size: clamp(3.1rem, 8vw, 6.9rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  line-height: 1.1;
  letter-spacing: 0;
}

.lead {
  max-width: 42rem;
  color: #d8dedb;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(9rem, 1fr));
  gap: 0.8rem;
  margin-top: 2.1rem;
  max-width: 55rem;
}

.trust-badge,
.metric,
.glass,
.vehicle-card,
.pricing-card,
.booking-panel,
.phone,
.admin-surface,
.table-wrap,
.form-panel,
.ticket,
.policy-block {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.trust-badge {
  padding: 0.95rem;
}

.trust-badge strong,
.metric strong {
  display: block;
  font-size: 1.1rem;
}

.trust-badge span,
.metric span,
.muted {
  color: var(--muted);
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1rem, 5vw, 5rem);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.7rem;
}

.section-head p {
  max-width: 42rem;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vehicle-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
}

.vehicle-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 13rem;
  background:
    radial-gradient(circle at 50% 72%, var(--glass-glow), transparent 38%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.01));
  border-bottom: 1px solid var(--line-soft);
}

.vehicle-art img {
  width: 88%;
  max-height: 11rem;
  object-fit: contain;
  filter: drop-shadow(0 0 26px rgba(46, 204, 113, 0.35));
}

.vehicle-art .category-visual {
  width: 86%;
  height: 9rem;
}

.vehicle-body {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
}

.vehicle-top,
.row,
.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.vehicle-name {
  margin: 0;
  font-size: 1.05rem;
}

.status {
  display: inline-flex;
  align-items: center;
  width: max-content;
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: #061308;
  background: var(--green);
}

.status.warning {
  background: var(--warning);
}

.status.danger {
  color: #24060b;
  background: var(--danger);
}

.specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.spec {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 0.55rem;
  color: #d9d9d9;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.83rem;
}

.price-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.55rem;
  color: #dfffe9;
  background: rgba(46, 204, 113, 0.08);
  font-size: 0.78rem;
}

.booking-panel,
.form-panel,
.admin-surface,
.policy-block {
  padding: clamp(1rem, 3vw, 1.4rem);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  align-items: start;
}

.steps {
  display: grid;
  gap: 0.55rem;
}

.step {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.65rem;
  align-items: center;
  padding: 0.7rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
}

.step.active {
  color: var(--text);
  border-color: var(--line);
  background: rgba(46, 204, 113, 0.08);
}

.step b {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  color: #031207;
  background: var(--green);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

label {
  color: #d5d5d5;
  font-size: 0.84rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.82rem 0.85rem;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.16);
}

.filters {
  display: grid;
  grid-template-columns: 1fr repeat(4, minmax(9rem, 0.45fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  gap: 1rem;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.gallery .vehicle-art:first-child {
  grid-column: span 2;
  min-height: 22rem;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
}

.day {
  display: grid;
  place-items: center;
  min-height: 2.6rem;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.day.available {
  color: #dfffe9;
  border-color: rgba(46, 204, 113, 0.35);
}

.page-tabs,
.admin-tabs,
.mobile-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tab {
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.55rem 0.75rem;
}

.tab.active {
  color: #031207;
  border-color: var(--green);
  background: var(--green);
  font-weight: 800;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 16rem 1fr;
  gap: 1rem;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 5.2rem;
  display: grid;
  gap: 0.4rem;
  padding: 0.8rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.8);
}

.sidebar button {
  justify-content: flex-start;
  border: 0;
  color: var(--muted);
  background: transparent;
}

.sidebar button.active {
  color: #031207;
  background: var(--green);
  font-weight: 800;
}

.metric {
  padding: 1rem;
}

.metric strong {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

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

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 52rem;
}

th,
td {
  padding: 0.78rem;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}

th {
  color: #eafff0;
  font-size: 0.8rem;
  text-transform: uppercase;
}

td {
  color: #d9d9d9;
}

.analytics {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.chart {
  display: flex;
  align-items: end;
  gap: 0.55rem;
  height: 14rem;
  padding: 1rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.bar {
  flex: 1;
  min-width: 1.1rem;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--green-2), var(--green));
  box-shadow: var(--bar-shadow);
}

.phone-stage {
  display: grid;
  grid-template-columns: minmax(18rem, 24rem) 1fr;
  gap: 1.2rem;
  align-items: start;
}

.phone {
  width: min(100%, 24rem);
  margin: 0 auto;
  padding: 0.75rem;
  border-radius: 28px;
  background: #070807;
  box-shadow: 0 0 0 8px #151515, 0 20px 90px rgba(46, 204, 113, 0.15);
}

.phone-screen {
  min-height: 44rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(46, 204, 113, 0.12), transparent 16rem),
    #090b09;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

.phone-content {
  display: grid;
  gap: 0.85rem;
  padding: 0 1rem 1rem;
}

.mini-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.3rem;
  margin: 0.5rem;
  padding: 0.45rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav button {
  min-height: 2.4rem;
  border: 0;
  border-radius: 12px;
  color: var(--muted);
  background: transparent;
  font-size: 0.78rem;
}

.mobile-nav button.active {
  color: #031207;
  background: var(--green);
  font-weight: 800;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  z-index: 80;
  transform: translateX(-50%) translateY(1rem);
  max-width: calc(100vw - 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  color: #dcffe8;
  background: rgba(5, 5, 5, 0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 1rem;
  padding: 3rem clamp(1rem, 5vw, 5rem);
  border-top: 1px solid var(--line-soft);
  background: #030403;
}

.footer a {
  display: block;
  color: var(--muted);
  margin: 0.35rem 0;
}

.map {
  min-height: 16rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(46, 204, 113, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(46, 204, 113, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 45% 55%, rgba(76, 201, 240, 0.24), transparent 8rem),
    #070907;
  background-size: 2rem 2rem, 2rem 2rem, auto, auto;
}

.empty {
  padding: 1rem;
  color: var(--muted);
  border: 1px dashed var(--line-soft);
  border-radius: var(--radius);
}

.hide {
  display: none !important;
}

@media (max-width: 1120px) {
  .grid.cols-4,
  .grid.cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filters,
  .booking-grid,
  .detail-layout,
  .dashboard-layout,
  .analytics,
  .phone-stage {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nav {
    align-items: start;
    flex-wrap: wrap;
  }

  .nav-links {
    width: 100%;
    margin-left: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 5rem;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.52)),
      url("assets/ride-on-demand-hero.png") center / cover no-repeat;
  }

  h1 {
    font-size: clamp(2.7rem, 17vw, 4.5rem);
  }

  .trust-row,
  .grid.cols-4,
  .grid.cols-3,
  .grid.cols-2,
  .form-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .section-head,
  .split {
    align-items: start;
    flex-direction: column;
  }

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

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

  .gallery .vehicle-art:first-child {
    grid-column: auto;
    min-height: 15rem;
  }

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

.business-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.2rem;
  background: rgba(255, 255, 255, 0.05);
  margin-left: 1.5rem;
}

.toggle-btn {
  border: 0;
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  background: transparent;
  transition: background 0.2s, color 0.2s;
}

.toggle-btn.active {
  color: var(--btn-text);
  background: var(--green);
}

/* ==========================================================================
   RAMATVA HOSPITALITY LIGHT DESIGN LAYER (airbnb/estay/booking.com style)
   ========================================================================== */

body.theme-ramatva {
  background: 
    radial-gradient(circle at 76% 12%, var(--glow), transparent 35rem),
    linear-gradient(180deg, #FFFFFF 0%, #F8F5EF 100%) !important;
  color: #2B2B2B !important;
}

body.theme-ramatva .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72) 42%, rgba(255, 255, 255, 0.3)),
    url("assets/ramatva_hero_bg.jpg") center right / cover no-repeat !important;
  opacity: 0.98;
}

body.theme-ramatva .hero::after {
  background: linear-gradient(180deg, transparent, #F8F5EF) !important;
}

body.theme-ramatva .hero {
  border-bottom: 1px solid #EAEAEA !important;
}

body.theme-ramatva .hero-content h1 {
  color: #2B2B2B !important;
}

body.theme-ramatva .hero-content .lead {
  color: #4B4B4B !important;
}

body.theme-ramatva .nav {
  background: rgba(255, 255, 255, 0.96) !important;
  border-bottom: 1px solid #EAEAEA !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03) !important;
}

body.theme-ramatva .nav-link {
  color: #6B6B6B !important;
}

body.theme-ramatva .nav-link:hover,
body.theme-ramatva .nav-link.active {
  color: #6F0416 !important;
  border-color: #E5DCC6 !important;
  background: #F8F5EF !important;
}

body.theme-ramatva .btn {
  background: #FFFFFF;
  border: 1px solid #EAEAEA;
  color: #2B2B2B;
}

body.theme-ramatva .btn:hover {
  border-color: #6F0416;
  background: #F5F5F5;
  box-shadow: 0 4px 12px rgba(111, 4, 22, 0.08);
}

body.theme-ramatva .btn.primary {
  background: #6F0416 !important;
  color: #FFFFFF !important;
  border-color: #6F0416 !important;
  box-shadow: 0 4px 15px rgba(111, 4, 22, 0.25) !important;
}

body.theme-ramatva .btn.primary:hover {
  background: #540310 !important;
  box-shadow: 0 6px 18px rgba(111, 4, 22, 0.3) !important;
}

body.theme-ramatva .business-toggle {
  border: 1px solid #EAEAEA !important;
  background: #F5F5F5 !important;
}

body.theme-ramatva .toggle-btn {
  color: #6B6B6B !important;
}

body.theme-ramatva .toggle-btn.active {
  color: #FFFFFF !important;
  background: #6F0416 !important;
}

body.theme-ramatva .eyebrow {
  color: #6F0416 !important;
  border-color: #E5DCC6 !important;
  background: #F8F5EF !important;
}

/* Home Section Layouts */
body.theme-ramatva .section-head h2 {
  color: #2B2B2B !important;
}

body.theme-ramatva .section-head p {
  color: #6B6B6B !important;
}

/* Featured Properties section */
body.theme-ramatva .card-image-gallery {
  position: relative;
  overflow: hidden;
}

body.theme-ramatva .card-wishlist-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #6B6B6B;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: color 0.2s, background 0.2s;
}

body.theme-ramatva .card-wishlist-btn:hover {
  background: #FFFFFF;
  color: #6F0416;
}

body.theme-ramatva .specs {
  border-top: 1px solid #F5F5F5;
  padding-top: 0.5rem;
}

body.theme-ramatva .spec {
  border: none !important;
  background: #F5F5F5 !important;
  color: #4B4B4B !important;
}

body.theme-ramatva .pill {
  border: 1px solid #E5DCC6 !important;
  background: #F8F5EF !important;
  color: #6F0416 !important;
}

/* Amenities Card Layout */
body.theme-ramatva .amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

body.theme-ramatva .amenity-card {
  background: #FFFFFF;
  border: 1px solid #EAEAEA;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.theme-ramatva .amenity-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(111, 4, 22, 0.06);
}

body.theme-ramatva .amenity-icon {
  font-size: 2.2rem;
  color: #6F0416;
  margin-bottom: 0.75rem;
  display: inline-block;
}

body.theme-ramatva .amenity-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #2B2B2B;
}

body.theme-ramatva .amenity-card p {
  font-size: 0.8rem;
  color: #6B6B6B;
  margin: 0;
}

/* Why Choose RAMATVA Section */
body.theme-ramatva .why-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 820px) {
  body.theme-ramatva .why-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

body.theme-ramatva .why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

body.theme-ramatva .why-stat-card {
  background: #FFFFFF;
  border: 1px solid #EAEAEA;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

body.theme-ramatva .why-stat-card strong {
  display: block;
  font-size: 2rem;
  color: #6F0416;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

body.theme-ramatva .why-stat-card span {
  font-size: 0.85rem;
  color: #6B6B6B;
}

body.theme-ramatva .why-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

body.theme-ramatva .why-collage img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

body.theme-ramatva .why-collage img.large {
  grid-column: span 2;
  height: 16rem;
}

/* Property Filters List page */
body.theme-ramatva .filter-sidebar {
  background: #FFFFFF;
  border: 1px solid #EAEAEA;
  border-radius: 16px;
  padding: 1.5rem;
  position: sticky;
  top: 6rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

body.theme-ramatva .filter-section {
  border-bottom: 1px solid #F5F5F5;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
}

body.theme-ramatva .filter-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

body.theme-ramatva .filter-section h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: #2B2B2B;
}

body.theme-ramatva .checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #4B4B4B;
  cursor: pointer;
  margin-bottom: 0.55rem;
}

body.theme-ramatva .checkbox-label input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: #6F0416;
  margin: 0;
}

/* Customer Portal & Dashboards */
body.theme-ramatva .sidebar {
  background: #FFFFFF !important;
  border: 1px solid #EAEAEA !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02) !important;
}

body.theme-ramatva .sidebar button {
  color: #6B6B6B !important;
}

body.theme-ramatva .sidebar button.active {
  color: #FFFFFF !important;
  background: #6F0416 !important;
}

body.theme-ramatva .sidebar button:hover:not(.active) {
  background: #F8F5EF !important;
  color: #6F0416 !important;
}

body.theme-ramatva .booking-panel,
body.theme-ramatva .form-panel,
body.theme-ramatva .admin-surface,
body.theme-ramatva .policy-block {
  background: #FFFFFF !important;
  border: 1px solid #EAEAEA !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.03) !important;
}

body.theme-ramatva .step {
  background: #FFFFFF !important;
  border: 1px solid #EAEAEA !important;
  color: #6B6B6B !important;
}

body.theme-ramatva .step.active {
  color: #2B2B2B !important;
  border-color: #E5DCC6 !important;
  background: #F8F5EF !important;
}

body.theme-ramatva .step b {
  color: #FFFFFF !important;
  background: #6F0416 !important;
}

body.theme-ramatva input,
body.theme-ramatva select,
body.theme-ramatva textarea {
  border: 1px solid #EAEAEA !important;
  background: #FFFFFF !important;
  color: #2B2B2B !important;
}

body.theme-ramatva input:focus,
body.theme-ramatva select:focus,
body.theme-ramatva textarea:focus {
  border-color: #6F0416 !important;
  box-shadow: 0 0 0 3px rgba(111, 4, 22, 0.1) !important;
}

/* Admin Dashboard layout */
body.theme-ramatva th {
  color: #6F0416 !important;
  border-bottom: 2px solid #EAEAEA !important;
}

body.theme-ramatva td {
  color: #4B4B4B !important;
  border-bottom: 1px solid #F5F5F5 !important;
}

body.theme-ramatva .chart {
  background: #FFFFFF !important;
  border: 1px solid #EAEAEA !important;
}

body.theme-ramatva .bar {
  background: linear-gradient(180deg, #E5DCC6, #6F0416) !important;
  box-shadow: 0 2px 8px rgba(111, 4, 22, 0.15) !important;
}

body.theme-ramatva .footer {
  background: #FFFFFF !important;
  border-top: 1px solid #EAEAEA !important;
}

body.theme-ramatva .footer a,
body.theme-ramatva .footer p {
  color: #6B6B6B !important;
}

body.theme-ramatva .footer a:hover {
  color: #6F0416 !important;
}

body.theme-ramatva .phone {
  background: #FFFFFF !important;
  box-shadow: 0 0 0 8px #2B2B2B, 0 20px 90px rgba(111, 4, 22, 0.08) !important;
}

body.theme-ramatva .phone-screen {
  background: linear-gradient(180deg, rgba(111, 4, 22, 0.05), transparent 16rem), #FFFFFF !important;
}

body.theme-ramatva .mobile-nav {
  background: #F8F5EF !important;
}

body.theme-ramatva .mobile-nav button.active {
  color: #FFFFFF !important;
  background: #6F0416 !important;
}

body.theme-ramatva .toast {
  background: #FFFFFF !important;
  border-color: #6F0416 !important;
  color: #6F0416 !important;
  box-shadow: 0 4px 18px rgba(111, 4, 22, 0.15) !important;
}

body.theme-ramatva .search-card-container {
  display: flex;
  justify-content: center;
  margin-top: -3.5rem;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

body.theme-ramatva .floating-search-card {
  width: min(100%, 72rem);
  background: #FFFFFF;
  border: 1px solid #EAEAEA;
  border-radius: 100px;
  padding: 0.75rem 2rem;
  box-shadow: 0 12px 36px rgba(111, 4, 22, 0.07);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.6fr;
  gap: 1rem;
  align-items: center;
}

@media (max-width: 820px) {
  body.theme-ramatva .floating-search-card {
    border-radius: 20px;
    grid-template-columns: 1fr;
    padding: 1.5rem;
    margin-top: -1rem;
    gap: 0.75rem;
  }
}

body.theme-ramatva .search-card-item {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #EAEAEA;
  padding-right: 1rem;
  text-align: left;
}

body.theme-ramatva .search-card-item:last-of-type {
  border-right: none;
}

body.theme-ramatva .search-card-item label {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: #7F7F7F;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

body.theme-ramatva .search-card-item input,
body.theme-ramatva .search-card-item select {
  border: 0 !important;
  background: transparent !important;
  padding: 0.2rem 0 !important;
  font-size: 0.95rem;
  color: #2B2B2B !important;
  font-weight: 600;
}

body.theme-ramatva .floating-search-card .search-btn {
  border-radius: 100px !important;
  height: 3.2rem !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  background: #6F0416 !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 15px rgba(111, 4, 22, 0.25) !important;
}

body.theme-ramatva .vehicle-card {
  background: #FFFFFF !important;
  border: 1px solid #EAEAEA !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

body.theme-ramatva .vehicle-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 30px rgba(111, 4, 22, 0.08) !important;
}

body.theme-ramatva .vehicle-art {
  background: #F5F5F5 !important;
  border-bottom: 1px solid #EAEAEA !important;
  height: 14rem !important;
  min-height: 14rem !important;
}

body.theme-ramatva .vehicle-art img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  filter: none !important;
}
