* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-red: #d7262e;
  --color-green: #1fa44a;
  --color-blue: #1f4ea8;
  --color-yellow: #f0b51f;
  --color-black: #111111;
  --color-white: #ffffff;
  --color-soft: #f6f3ee;
  --color-gray: #6b6b6b;
  --color-border: rgba(17, 17, 17, 0.08);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 20px 55px rgba(0, 0, 0, 0.10);
  --shadow-strong: 0 30px 80px rgba(0, 0, 0, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--color-black);
  background: var(--color-white);
  line-height: 1.5;
  font-size: 15px;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-loader {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.96);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.site-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 4px solid rgba(215, 38, 46, 0.18);
  border-top-color: var(--color-red);
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.site-header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #ececec;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header-wrap {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.logo img {
  height: 60px;
}

.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: var(--color-black);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--color-red);
  transition: width 0.25s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a:hover {
  color: var(--color-red);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid #e6e6e6;
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-black);
  border-radius: 999px;
  transition: 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  background: #f5f5f5;
  border-radius: 999px;
  border: 1px solid #e7e7e7;
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--color-black);
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.lang-btn.active {
  background: var(--color-red);
  color: var(--color-white);
}

.btn {
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-red);
  color: white;
  box-shadow: 0 12px 24px rgba(215, 38, 46, 0.16);
}

.btn-primary:hover {
  box-shadow: 0 18px 30px rgba(215, 38, 46, 0.22);
}

.btn-secondary {
  border: 2px solid var(--color-black);
  color: var(--color-black);
  background: transparent;
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--color-white);
}

.btn-submit-large {
  padding: 16px 28px;
  font-size: 1.05rem;
  min-width: 220px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(240, 181, 31, 0.16), transparent 32%),
    radial-gradient(circle at bottom right, rgba(31, 164, 74, 0.15), transparent 30%),
    linear-gradient(135deg, #fff7f1 0%, #fffef8 50%, #f6fbf7 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.25;
  pointer-events: none;
}

.hero::before {
  width: 220px;
  height: 220px;
  background: rgba(240, 181, 31, 0.25);
  top: 8%;
  right: 8%;
}

.hero::after {
  width: 180px;
  height: 180px;
  background: rgba(31, 164, 74, 0.18);
  bottom: 8%;
  left: 6%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17, 17, 17, 0.03), rgba(17, 17, 17, 0));
  pointer-events: none;
}

.hero-layout,
.gastronomy-layout,
.contact-layout,
.location-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-layout {
  padding: 70px 0 80px;
}

.hero-content,
.gastronomy-content,
.contact-content {
  max-width: 720px;
}

.hero-kicker,
.section-kicker,
.mini-label {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--color-green);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
}

.hero h1 {
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero-text {
  font-size: 16px;
  color: var(--color-gray);
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-highlights span,
.rental-badges span,
.trust-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--color-border);
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.hero-visual,
.gastronomy-visual,
.contact-visual {
  display: flex;
  justify-content: center;
}

.hero-image-card,
.gastronomy-image-card,
.contact-image-card,
.map-card {
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-image-card img,
.gastronomy-image-card img,
.contact-image-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.map-card {
  max-width: 100%;
  min-height: 420px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
}

.trust-strip {
  padding: 26px 0;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.trust-strip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.identity-section,
.categories-section,
.gastronomy-section,
.rental-section,
.gallery-section,
.contact-section,
.location-section,
.form-section,
.faq-section {
  padding: 96px 0;
}

.identity-section {
  background: var(--color-soft);
}

.gastronomy-section {
  background: linear-gradient(135deg, #fff9f3 0%, #fffef9 60%, #f7faf6 100%);
}

.contact-section {
  background: linear-gradient(135deg, #fffdf8 0%, #f9fbf8 100%);
}

.form-section {
  background: linear-gradient(135deg, #fafafa 0%, #f6f8f7 100%);
  padding-top: 72px;
}

.rental-section-upgraded {
  background: linear-gradient(135deg, #fff8f8 0%, #fffdf9 100%);
}

.faq-section {
  background: #fffdf9;
}

.section-heading,
.form-section-header {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-heading h2,
.form-section-header h2,
.cta-banner-wrap h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 14px;
  line-height: 1.1;
}

.section-text {
  max-width: 820px;
  color: var(--color-gray);
  font-size: 15px;
}

.form-trust-text {
  margin-top: 12px;
  color: var(--color-gray);
  font-size: 14px;
}

.identity-grid,
.categories-grid-large,
.contact-quick-grid,
.faq-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.identity-card,
.feature-card,
.contact-quick-card,
.location-card,
.form-card,
.rental-hero-card,
.form-info-card,
.faq-item {
  background: var(--color-white);
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.identity-card h3,
.feature-card h3,
.contact-quick-card h3,
.gas-item h3,
.auto-response-box h3,
.location-card h3,
.rental-hero-card h3,
.form-info-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.identity-card p,
.feature-card p,
.contact-quick-card p,
.gas-item p,
.location-card p,
.rental-hero-card p,
.form-info-card p,
.faq-item p {
  color: var(--color-gray);
  font-size: 14px;
}

.location-card h3:not(:first-child) {
  margin-top: 18px;
}

.feature-card {
  min-height: 220px;
}

.gastronomy-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.gas-item {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.rental-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 22px;
}

.rental-hero-main {
  background: linear-gradient(135deg, #fff1f1 0%, #fffaf5 100%);
}

.rental-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.rental-list {
  padding-left: 18px;
  color: var(--color-gray);
}

.rental-list li + li {
  margin-top: 10px;
}

.cta-banner {
  padding: 72px 0;
  background: linear-gradient(135deg, #111111 0%, #2a2a2a 100%);
  color: var(--color-white);
}

.cta-banner-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-banner-wrap p {
  color: rgba(255,255,255,0.78);
  max-width: 760px;
  font-size: 14px;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-banner .btn-secondary {
  color: var(--color-white);
  border-color: rgba(255,255,255,0.75);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 18px;
}

.gallery-card {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  min-height: 240px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.gallery-card-large {
  grid-row: span 2;
  min-height: 100%;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
  font-size: 15px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 22px 22px;
}

.auto-response-box {
  margin-top: 28px;
  background: var(--color-white);
  border: 1px solid #ececec;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.auto-response-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.quick-reply-btn {
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #fff7f4;
  color: var(--color-black);
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: 0.25s ease;
}

.quick-reply-btn:hover {
  background: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}

.auto-response-output {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: #f8f8f8;
  border: 1px solid rgba(17, 17, 17, 0.06);
  color: var(--color-gray);
  min-height: 88px;
  font-size: 14px;
}

.location-actions,
.form-actions,
.form-info-actions,
.rental-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.form-layout {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 28px;
  align-items: start;
}

.form-info-card {
  position: sticky;
  top: 120px;
  background: linear-gradient(135deg, #fff7f4 0%, #fffdf9 100%);
  box-shadow: var(--shadow-medium);
}

.form-info-item + .form-info-item {
  margin-top: 16px;
}

.form-info-label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-green);
  margin-bottom: 6px;
}

.form-card-premium {
  padding: 32px;
  box-shadow: var(--shadow-medium);
}

.contact-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #dddddd;
  border-radius: 14px;
  padding: 14px 16px;
  background: #ffffff;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(215, 38, 46, 0.45);
  box-shadow: 0 0 0 4px rgba(215, 38, 46, 0.08);
  transform: translateY(-1px);
}

.form-group textarea {
  resize: vertical;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.form-submit-note {
  color: var(--color-gray);
  font-size: 14px;
}

.site-footer {
  background: #111;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-logo-white {
  height: 62px;
  width: auto;
  margin-bottom: 14px;
}

.footer-col h3 {
  margin-bottom: 14px;
  font-size: 16px;
}

.footer-col p {
  color: #ccc;
  font-size: 13px;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ccc;
  transition: 0.2s;
  font-size: 13px;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-social {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social a {
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 12px;
  border-radius: 999px;
}

.footer-social a:hover {
  background: rgba(255,255,255,0.08);
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
  text-align: center;
  font-size: 12px;
  color: #aaa;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.35);
}

.chatbot-toggle {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 1201;
  background: var(--color-black);
  color: var(--color-white);
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.chatbot-panel {
  position: fixed;
  right: 22px;
  bottom: 145px;
  width: 360px;
  max-width: calc(100vw - 24px);
  background: var(--color-white);
  border: 1px solid #ececec;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  z-index: 1202;
  overflow: hidden;
  display: none;
}

.chatbot-panel.active {
  display: block;
}

.chatbot-header {
  padding: 16px 18px;
  background: #fff8f8;
  border-bottom: 1px solid #ececec;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.chatbot-header p {
  color: var(--color-gray);
  font-size: 12px;
}

.chatbot-close {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.chatbot-body {
  padding: 18px;
}

.chatbot-message,
.chatbot-response {
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 14px;
}

.chatbot-message-bot {
  background: #f7f7f7;
  color: var(--color-black);
}

.chatbot-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.chatbot-option {
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #fff7f4;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.chatbot-option:hover {
  background: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}

.chatbot-response {
  background: #f8f8f8;
  border: 1px solid rgba(17, 17, 17, 0.06);
  color: var(--color-gray);
  min-height: 80px;
}

.chatbot-wa {
  margin-top: 14px;
  width: 100%;
  text-align: center;
}

.mobile-action-bar {
  display: none;
}

.mobile-action-btn {
  flex: 1;
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  padding: 14px 10px;
  border-right: 1px solid rgba(255,255,255,0.12);
  background: #111;
}

.mobile-action-btn:last-child {
  border-right: none;
}

.mobile-action-btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lift-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.10);
}

.glow-card:hover {
  box-shadow: 0 26px 60px rgba(215, 38, 46, 0.14);
}

.floating-card {
  animation: floatCard 4.8s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .floating-card,
  .btn,
  .gallery-card,
  .lift-card,
  .glow-card,
  .menu-toggle span {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}

@media (max-width: 1180px) {
  .header-wrap {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 16px 0;
  }

  .hero-layout,
  .gastronomy-layout,
  .contact-layout,
  .location-grid,
  .rental-hero-grid,
  .form-layout,
  .cta-banner-wrap {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-content,
  .gastronomy-content,
  .contact-content {
    max-width: 100%;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-visual,
  .gastronomy-visual,
  .contact-visual {
    justify-content: flex-start;
  }

  .identity-grid,
  .categories-grid-large,
  .contact-quick-grid,
  .gallery-grid,
  .footer-main,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card-large {
    grid-row: span 1;
  }

  .form-info-card {
    position: static;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
    order: 3;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 18px;
    box-shadow: var(--shadow-medium);
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    display: none;
    z-index: 1200;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    font-size: 14px;
    width: 100%;
  }

  .header-actions {
    width: auto;
    margin-left: auto;
  }
}

@media (max-width: 700px) {
  .site-header {
    position: sticky;
  }

  .header-wrap {
    gap: 12px;
  }

  .logo img {
    height: 52px;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    padding: 56px 0 64px;
    gap: 30px;
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-highlights {
    gap: 10px;
  }

  .hero-highlights span,
  .rental-badges span,
  .trust-pill {
    font-size: 12px;
  }

  .hero-image-card img,
  .gastronomy-image-card img,
  .contact-image-card img,
  .map-card iframe {
    min-height: 280px;
  }

  .identity-grid,
  .categories-grid-large,
  .contact-quick-grid,
  .gallery-grid,
  .footer-main,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .location-actions,
  .form-actions,
  .rental-cta-group,
  .form-info-actions,
  .form-submit-row,
  .cta-banner-actions {
    flex-direction: column;
  }

  .whatsapp-float,
  .chatbot-toggle,
  .chatbot-panel {
    display: none !important;
  }

  .mobile-action-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1300;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
  }

  body {
    padding-bottom: 62px;
  }
}