:root {
  --black: #050505;
  --ink: #101010;
  --charcoal: #171717;
  --gold: #c9a44c;
  --gold-light: #f0d88b;
  --white: #ffffff;
  --ivory: #f7f3ea;
  --muted: #b9b4aa;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--black);
  color: var(--ivory);
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(201, 164, 76, 0.24);
}

.topbar .container {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar a {
  color: var(--gold-light);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  width: 74px;
  height: 52px;
  display: block;
  border: 1px solid rgba(240, 216, 139, 0.55);
  border-radius: var(--radius);
  background: var(--white);
  object-fit: contain;
  padding: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ivory);
  font-size: 0.95rem;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: var(--radius);
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(240, 216, 139, 0.58);
  background: rgba(0, 0, 0, 0.28);
}

.hero {
  position: relative;
  min-height: calc(100vh - 118px);
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--black);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.6) 42%, rgba(0, 0, 0, 0.14) 100%), url("landing-hero-luxury-2026.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;
  background: linear-gradient(0deg, var(--black), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  padding: 78px 0 116px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin: 18px 0 18px;
  font-size: 5.5rem;
}

h2 {
  margin: 0 0 16px;
  font-size: 3.2rem;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

.hero p {
  max-width: 600px;
  color: #ece7dc;
  font-size: 1.15rem;
  margin: 0 0 28px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
  max-width: 620px;
}

.metric {
  padding: 18px;
  border: 1px solid rgba(240, 216, 139, 0.25);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
}

.metric strong {
  display: block;
  color: var(--gold-light);
  font-size: 1.5rem;
}

.metric span {
  color: #ded8cc;
  font-size: 0.88rem;
}

.section {
  padding: 88px 0;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-ivory {
  background: var(--ivory);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 38px;
}

.section-head p {
  max-width: 560px;
  margin: 0;
  color: #5d574f;
}

.section-dark .section-head p,
.section-dark p {
  color: #d3cec4;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

.service-card,
.package-card,
.testimonial,
.info-panel,
.day-card,
.price-box {
  border-radius: var(--radius);
  border: 1px solid rgba(5, 5, 5, 0.12);
  background: var(--white);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.07);
}

.section-dark .service-card,
.section-dark .package-card,
.section-dark .testimonial,
.section-dark .info-panel,
.section-dark .day-card,
.section-dark .price-box {
  background: #111111;
  border-color: rgba(255, 255, 255, 0.12);
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 30px;
  min-height: 230px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 164, 76, 0.55);
}

.icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  background: rgba(201, 164, 76, 0.13);
  color: var(--gold);
  font-size: 1.45rem;
  margin-bottom: 6px;
}

.icon::before {
  line-height: 1;
}

.icon-tour::before {
  content: "\1F5FA";
}

.icon-car::before {
  content: "\1F697";
}

.icon-suv::before {
  content: "\1F699";
}

.icon-bus::before {
  content: "\1F690";
}

.icon-group::before,
.icon-family::before {
  content: "\1F465";
}

.icon-event::before {
  content: "\1F393";
}

.icon-hotel::before {
  content: "\1F3E8";
}

.icon-ticket::before {
  content: "\1F3AB";
}

.icon-flight::before {
  content: "\2708";
}

.icon-train::before {
  content: "\1F686";
}

.icon-consult::before,
.icon-support::before {
  content: "\260E";
}

.icon-plan::before {
  content: "\1F4CD";
}

.icon-network::before {
  content: "\1F91D";
}

.icon-quote::before {
  content: "\1F4DD";
}

.icon-luxury::before {
  content: "\2605";
}

.service-card h3 {
  margin-bottom: 2px;
}

.service-card p,
.package-card p,
.testimonial p,
.info-panel p,
.day-card p {
  margin: 0;
  color: #615b53;
}

.section-dark .service-card p,
.section-dark .package-card p,
.section-dark .testimonial p,
.section-dark .info-panel p,
.section-dark .day-card p {
  color: #cbc5bb;
}

.feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 38px;
  align-items: center;
}

.feature-media {
  min-height: 520px;
  border-radius: var(--radius);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.42)), url("tour-golden-triangle.png");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.feature-copy {
  padding: 14px 0;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px;
}

.pill {
  border: 1px solid rgba(201, 164, 76, 0.38);
  color: var(--gold-light);
  background: rgba(201, 164, 76, 0.1);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

.list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 24px;
  margin: 10px 0;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.testimonial {
  padding: 28px;
}

.quote {
  color: var(--gold);
  font-size: 2.2rem;
  line-height: 1;
}

.author {
  margin-top: 18px;
  font-weight: 800;
}

.cta-band {
  position: relative;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.72)), url("hero-premium-india.png");
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}

.cta-band .container {
  position: relative;
  z-index: 1;
  padding: 82px 0;
}

.page-hero {
  color: var(--white);
  background: var(--black);
  padding: 88px 0 76px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.58)), url("hero-premium-india.png");
  background-size: cover;
  background-position: center;
  opacity: 0.68;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero p {
  max-width: 720px;
  color: #e4ded2;
  font-size: 1.1rem;
}

.package-card {
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.package-image {
  min-height: 250px;
  background-image: url("tour-golden-triangle.png");
  background-size: cover;
  background-position: center;
}

.package-image.golden {
  background-image: url("tour-golden-triangle.png");
}

.package-image.rajasthan {
  background-image: url("tour-rajasthan-heritage.png");
}

.package-image.himalaya {
  background-image: url("tour-himalayan-escape.png");
}

.package-image.shimla {
  background-image: url("tour-shimla.png");
}

.package-image.manali {
  background-image: url("tour-manali.png");
}

.package-image.varanasi {
  background-image: url("tour-varanasi.png");
}

.package-image.goa {
  background-image: url("tour-goa.png");
}

.package-image.spiti {
  background-image: url("tour-spiti.png");
}

.package-image.leh {
  background-image: url("tour-leh-ladakh.png");
}

.package-image.nepal {
  background-image: url("tour-nepal.png");
}

.package-image.kerala {
  background-image: url("tour-kerala.png");
}

.package-image.srinagar {
  background-image: url("tour-srinagar.png");
}

.tour-card {
  display: grid;
  grid-template-rows: 240px 1fr;
}

.stars {
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 12px;
}

.review-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(201, 164, 76, 0.12);
  color: var(--gold);
  font-weight: 900;
  font-size: 0.85rem;
}

.package-body {
  padding: 28px;
}

.package-card a.btn {
  margin-top: 18px;
}

.serial-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: var(--black);
  background: var(--gold);
  font-weight: 900;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
}

.photo-tile {
  min-height: 260px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.photo-tile.large {
  min-height: 540px;
}

.photo-golden {
  background-image: url("tour-golden-triangle.png");
}

.photo-rajasthan {
  background-image: url("tour-rajasthan-heritage.png");
}

.photo-himalaya {
  background-image: url("tour-himalayan-escape.png");
}

.photo-shimla {
  background-image: url("tour-shimla.png");
}

.photo-manali {
  background-image: url("tour-manali.png");
}

.photo-varanasi {
  background-image: url("tour-varanasi.png");
}

.photo-goa {
  background-image: url("tour-goa.png");
}

.photo-spiti {
  background-image: url("tour-spiti.png");
}

.photo-leh {
  background-image: url("tour-leh-ladakh.png");
}

.photo-nepal {
  background-image: url("tour-nepal.png");
}

.photo-kerala {
  background-image: url("tour-kerala.png");
}

.photo-srinagar {
  background-image: url("tour-srinagar.png");
}

.photo-hero {
  background-image: url("landing-hero-new.png");
}

.photo-customer-family {
  background-image: url("customer-family.png");
}

.photo-customer-group {
  background-image: url("customer-group.png");
}

.photo-service-train {
  background-image: url("service-train.png");
}

.photo-service-flight {
  background-image: url("service-flight.png");
}

.photo-service-hotel {
  background-image: url("service-hotel.png");
}

.customer-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.customer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.82));
}

.customer-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  color: var(--white);
}

.customer-caption p {
  margin: 6px 0 0;
  color: #e9e2d6;
}

.service-photo-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: stretch;
}

.hero-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 620px;
  margin: 28px 0 0;
  padding: 10px;
  border: 1px solid rgba(240, 216, 139, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.hero-search input {
  border-color: transparent;
}

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-strip a {
  padding: 8px 12px;
  border: 1px solid rgba(240, 216, 139, 0.34);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(0, 0, 0, 0.22);
  font-weight: 800;
  font-size: 0.9rem;
}

.chat-widget {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 75;
  width: min(340px, calc(100% - 36px));
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  border: 1px solid rgba(5, 5, 5, 0.12);
  display: none;
}

.chat-widget.open {
  display: block;
}

.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--black);
  color: var(--white);
}

.chat-head strong {
  color: var(--gold-light);
}

.chat-close {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.chat-body {
  padding: 16px;
}

.chat-body p {
  margin: 0 0 12px;
  color: #5d574f;
}

.chat-quick {
  display: grid;
  gap: 8px;
}

.chat-quick a {
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--ivory);
  font-weight: 800;
}

.chat-launch {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 74;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  color: var(--black);
  background: var(--gold);
  font-weight: 900;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.price {
  display: inline-flex;
  color: var(--black);
  background: var(--gold);
  padding: 8px 12px;
  border-radius: var(--radius);
  font-weight: 900;
  margin: 8px 0 18px;
}

.itinerary {
  display: grid;
  gap: 16px;
}

.day-card {
  padding: 24px;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
}

.day-number {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.price-box {
  padding: 32px;
}

.price-value {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.4rem;
  color: var(--gold);
  line-height: 1;
  margin: 10px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.info-panel {
  padding: 28px;
}

.contact-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
}

.contact-item:last-child {
  border-bottom: 0;
}

.contact-item strong {
  display: block;
  color: var(--gold);
  margin-bottom: 4px;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  color: var(--ink);
}

.section-dark label {
  color: var(--white);
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(5, 5, 5, 0.18);
  border-radius: var(--radius);
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(201, 164, 76, 0.4);
  border-color: var(--gold);
}

.site-footer {
  background: var(--black);
  color: var(--ivory);
  padding: 58px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr 1fr;
  gap: 32px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer h3 {
  color: var(--gold-light);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: #d8d0c2;
}

.footer-contact {
  display: grid;
  gap: 10px;
  color: #d8d0c2;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(240, 216, 139, 0.34);
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
  transition: transform 0.25s ease, background 0.25s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  background: rgba(201, 164, 76, 0.16);
}

.copyright {
  padding-top: 22px;
  color: #aaa39a;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 12px;
  color: #d8d0c2;
  font-size: 0.9rem;
}

.footer-legal a {
  color: var(--gold-light);
}

.float-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: grid;
  gap: 10px;
}

.float-btn {
  min-width: 142px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.whatsapp {
  background: #1fa855;
}

.call-now {
  background: var(--gold);
  color: var(--black);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translateX(0);
  }
  to {
    transform: scale(1.09) translateX(-18px);
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .topbar .container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 10px 0;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: rgba(5, 5, 5, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
  }

  .nav-links.open {
    display: flex;
  }

  .feature,
  .contact-layout,
  .photo-grid,
  .service-photo-band,
  .grid-2 {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 680px) {
  .brand {
    font-size: 1.1rem;
  }

  .brand-mark {
    width: 58px;
    height: 42px;
  }

  h1 {
    font-size: 2.9rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .price-value {
    font-size: 2.4rem;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 70px 0 88px;
  }

  .hero-metrics,
  .grid-3,
  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .section-head {
    display: block;
    margin-bottom: 28px;
  }

  .service-card {
    min-height: auto;
    padding: 24px;
  }

  .icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 1.3rem;
  }

  .feature-media {
    min-height: 330px;
  }

  .photo-tile,
  .photo-tile.large,
  .customer-card {
    min-height: 280px;
  }

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

  .float-actions {
    left: auto;
    right: 12px;
    grid-template-columns: 1fr 1fr;
  }

  .float-btn {
    min-width: 0;
    font-size: 0.9rem;
  }

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

  .chat-launch,
  .chat-widget {
    left: 12px;
    bottom: 76px;
  }
}
