/* ===== DAPMAL - Custom Styles ===== */
/* Design: Warm & Organic | Red Accents | Plus Jakarta Sans */

:root {
  --primary: #C0392B;
  --secondary: #2B3A42;
  --accent: #E74C3C;
  --dark: #1C2127;
  --light: #FAF8F7;
  --text: #3A3A3A;
  --text-light: #8A8A8A;
}

/* ===== Base ===== */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

::selection {
  background: var(--primary);
  color: white;
}

/* ===== Navigation ===== */
.nav-transparent {
  background: transparent;
}

.nav-transparent .nav-link,
.nav-transparent .nav-logo-link,
.nav-transparent #mobile-menu-btn {
  color: white;
}

.nav-scrolled {
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.nav-scrolled .nav-link {
  color: var(--secondary);
}

.nav-scrolled .nav-logo-link {
  color: var(--secondary);
}

.nav-scrolled #mobile-menu-btn {
  color: var(--secondary);
}

.nav-link {
  position: relative;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary) !important;
}

/* ===== Hero ===== */
.hero-badge {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: rgba(192, 57, 43, 0.15);
}

.hero-visual-card {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.08);
}

/* ===== Section Labels ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* ===== About Stats ===== */
.stat-card {
  text-align: center;
  padding: 1.25rem 0.75rem;
  border-radius: 1rem;
  background: var(--light);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
}

/* ===== Services List ===== */
.service-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: 1rem;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.service-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(192, 57, 43, 0.12);
  line-height: 1;
  min-width: 80px;
  text-align: center;
}

.service-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.service-content p {
  color: #6B7280;
  line-height: 1.7;
  font-size: 0.95rem;
}

.service-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(192, 57, 43, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease;
}

.service-row:hover .service-icon-wrapper {
  background: var(--primary);
  color: white;
}

@media (max-width: 768px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }
  .service-number {
    font-size: 2.5rem;
  }
  .service-icon-wrapper {
    margin: 0 auto;
  }
}

/* ===== Why Us - Horizontal Scroll ===== */
.why-us-scroll-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.why-us-scroll-track {
  display: flex;
  gap: 1.5rem;
  padding: 8px 2rem;
  width: max-content;
  animation: whyUsScroll 30s linear infinite;
}

.why-us-scroll-track:hover {
  animation-play-state: paused;
}

@keyframes whyUsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.why-us-card {
  flex-shrink: 0;
  width: 300px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.why-us-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.why-us-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(192, 57, 43, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.25rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.why-us-card:hover .why-us-icon {
  background: var(--primary);
  color: white;
}

.why-us-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.why-us-card p {
  font-size: 0.9rem;
  color: #9CA3AF;
  line-height: 1.6;
}

.why-us-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.why-us-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .why-us-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .why-us-scroll-wrapper::-webkit-scrollbar {
    display: none;
  }

  .why-us-card {
    width: 280px;
    padding: 1.5rem;
  }

  .why-us-card:active {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary);
    transform: scale(0.97);
  }
}

@media (max-width: 480px) {
  .why-us-card {
    width: 260px;
    padding: 1.25rem;
  }
}

/* ===== Gallery - Video Thumbnails ===== */
.gallery-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.gallery-video-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
  -webkit-filter: brightness(0.85);
  filter: brightness(0.85);
}

/* Play Button - centered */
.gallery-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
}

.gallery-play-btn-inner {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(192, 57, 43, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  box-shadow: 0 4px 24px rgba(192, 57, 43, 0.4);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover .gallery-play-btn-inner {
  background: rgba(231, 76, 60, 0.95);
  box-shadow: 0 6px 32px rgba(231, 76, 60, 0.5);
}

/* Pulsing ring around play button */
.gallery-play-btn-inner::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0; }
}

/* Instagram / Duration Badge - top right */
.gallery-duration {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  letter-spacing: 0.3px;
}

/* Bottom gradient overlay - always visible */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 33, 39, 0.85) 0%, rgba(28, 33, 39, 0.3) 35%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  z-index: 2;
  transition: background 0.3s ease;
}

.gallery-overlay-visible {
  opacity: 1;
}

.gallery-card:hover .gallery-overlay {
  background: linear-gradient(to top, rgba(28, 33, 39, 0.9) 0%, rgba(28, 33, 39, 0.4) 40%, transparent 60%);
}

.gallery-overlay .caption {
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.gallery-watch-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.gallery-card:hover .gallery-watch-text {
  color: var(--primary);
}

/* ===== Instagram Embed Modal ===== */
.ig-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ig-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.ig-modal-content {
  position: relative;
  width: 90%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ig-modal-overlay.active .ig-modal-content {
  transform: scale(1) translateY(0);
}

.ig-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 1;
}

.ig-modal-close:hover {
  background: var(--primary);
}

.ig-modal-body {
  border-radius: 12px;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ig-modal-body .instagram-media {
  margin: 0 auto !important;
  width: 100% !important;
  min-width: 0 !important;
}

.ig-modal-body iframe {
  border-radius: 12px !important;
  max-width: 100% !important;
}

@media (max-width: 480px) {
  .ig-modal-content {
    width: 95%;
  }

  .ig-modal-close {
    top: -40px;
    right: 4px;
  }
}

/* ===== Testimonials - Speech Bubbles ===== */
.testimonial-bubble {
  max-width: 85%;
}

.testimonial-left {
  margin-right: auto;
}

.testimonial-right {
  margin-left: auto;
}

.testimonial-card {
  position: relative;
  background: white;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Speech bubble tail */
.testimonial-tail {
  position: absolute;
  bottom: -10px;
  width: 20px;
  height: 20px;
  background: white;
  border-right: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transform: rotate(45deg);
}

.testimonial-left .testimonial-tail {
  left: 40px;
}

.testimonial-right .testimonial-tail {
  right: 40px;
}

.testimonial-quote {
  margin-bottom: 0.75rem;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--secondary);
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--text-light);
}

@media (max-width: 640px) {
  .testimonial-bubble {
    max-width: 95%;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .testimonial-bubble {
    max-width: 100%;
  }
}

/* ===== CTA Banner ===== */
#cta_1 {
  position: relative;
}

/* ===== Contact ===== */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(192, 57, 43, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-label {
  font-size: 0.8rem;
  color: #9CA3AF;
  margin-bottom: 0.15rem;
}

.contact-value {
  font-weight: 600;
  font-size: 1rem;
}

.contact-value a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-value a:hover {
  color: var(--primary);
}

/* Form Inputs */
.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid #E5E7EB;
  border-radius: 0.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: white;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.form-input::placeholder {
  color: #9CA3AF;
}

.form-input.error {
  border-color: var(--accent);
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--secondary);
  margin-bottom: 0.4rem;
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

/* ===== Footer ===== */
.footer-link {
  color: #9CA3AF;
  font-size: 0.9rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-link:hover {
  color: var(--primary);
  padding-left: 4px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  transition: background 0.3s ease, color 0.3s ease;
}

.social-btn:hover {
  background: var(--primary);
  color: white;
}

/* ===== Scroll Top Button ===== */
#scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ===== Decorative Elements ===== */
.accent-line {
  width: 48px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

/* Dot pattern background */
.dot-pattern {
  background-image: radial-gradient(circle, rgba(192, 57, 43, 0.06) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* ===== Prefers Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== Section Overflow Containment (GSAP slide animations) ===== */
#about_1,
#services_1,
#why_us_1,
#gallery_1,
#testimonials_1,
#cta_1,
#contact_1,
#footer_1 {
  overflow-x: hidden;
}

/* ===== Responsive: Tablets & Small Desktops ===== */
@media (max-width: 1024px) {
  #about_1 .about-image-wrapper img {
    height: 350px;
  }
}

/* ===== Responsive: Mobile ≤ 768px ===== */
@media (max-width: 768px) {
  #hero_1 h1 {
    font-size: 2.25rem;
  }

  #hero_1 p[data-field="subheadline"] {
    font-size: 1rem;
  }

  #about_1 .about-image-wrapper img {
    height: 280px;
  }

  .gallery-play-btn-inner {
    width: 52px;
    height: 52px;
  }

  .gallery-play-btn-inner svg {
    width: 22px;
    height: 22px;
  }

  #map-container {
    height: 220px !important;
  }
}

/* ===== Responsive: Small Phones ≤ 640px ===== */
@media (max-width: 640px) {
  .stat-value {
    font-size: 1.8rem;
  }

  .stat-card {
    padding: 1rem 0.75rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .service-row {
    padding: 1.25rem;
  }

  .service-content h3 {
    font-size: 1.15rem;
  }

  .service-content p {
    font-size: 0.85rem;
  }

  .gallery-overlay .caption {
    font-size: 0.85rem;
  }

  .gallery-watch-text {
    font-size: 0.72rem;
  }

  .contact-value {
    font-size: 0.9rem;
    word-break: break-all;
  }

  #footer_1 .grid {
    gap: 2rem;
  }
}

/* ===== Responsive: ≤ 480px ===== */
@media (max-width: 480px) {
  /* Tighter containers */
  .max-w-7xl,
  .max-w-3xl,
  .max-w-2xl {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Nav */
  nav .h-20 {
    height: 4rem;
  }

  nav img[data-field="logo_image"] {
    height: 2.25rem;
  }

  /* Hero */
  #hero_1 h1 {
    font-size: 1.85rem;
  }

  #hero_1 .hero-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
  }

  #hero_1 .flex.flex-wrap a {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  /* About stats: 3-col to 2-col */
  #about-stats-container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  /* Service numbers */
  .service-number {
    font-size: 2rem;
    min-width: 50px;
  }

  /* Gallery: 2-col on phones */
  #gallery-grid-container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem;
  }

  .gallery-play-btn-inner {
    width: 44px;
    height: 44px;
  }

  .gallery-play-btn-inner svg {
    width: 18px;
    height: 18px;
  }

  .gallery-duration {
    top: 8px;
    right: 8px;
    font-size: 0.65rem;
    padding: 3px 7px;
  }

  .gallery-overlay {
    padding: 0.75rem;
  }

  /* CTA */
  #cta_1 h2 {
    font-size: 1.5rem;
  }

  #cta_1 p {
    font-size: 0.95rem;
  }

  #cta_1 .cta-button {
    font-size: 0.95rem;
    padding: 0.875rem 1.5rem;
  }

  /* Contact form */
  .bg-white.rounded-2xl.p-8 {
    padding: 1.25rem;
  }

  .bg-secondary.rounded-2xl.p-8 {
    padding: 1.25rem;
  }

  /* Footer */
  #footer_1 .grid {
    grid-template-columns: 1fr !important;
  }

  /* Scroll top + floating buttons nudged in */
  #scroll-top-btn {
    right: 1rem;
    bottom: 5rem;
    width: 2.75rem;
    height: 2.75rem;
  }
}

/* ===== Responsive: Very Small Screens < 350px ===== */
@media (max-width: 349px) {
  /* Extra tight containers */
  .max-w-7xl,
  .max-w-3xl,
  .max-w-2xl {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  /* Nav */
  nav .h-20 {
    height: 3.5rem;
  }

  nav img[data-field="logo_image"] {
    height: 1.75rem;
  }

  /* Hero */
  #hero_1 h1 {
    font-size: 1.5rem;
  }

  #hero_1 p[data-field="subheadline"] {
    font-size: 0.875rem;
  }

  /* About stats: single column */
  #about-stats-container {
    grid-template-columns: 1fr !important;
    gap: 0.5rem;
  }

  .stat-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    text-align: left;
  }

  .stat-value {
    font-size: 1.3rem;
    margin-bottom: 0;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  /* About image */
  #about_1 .about-image-wrapper img {
    height: 200px;
  }

  /* Services */
  .service-row {
    padding: 1rem;
  }

  .service-content h3 {
    font-size: 1rem;
  }

  .service-content p {
    font-size: 0.8rem;
  }

  .service-number {
    font-size: 1.75rem;
    min-width: auto;
  }

  .service-icon-wrapper {
    width: 44px;
    height: 44px;
  }

  /* Gallery: single column */
  #gallery-grid-container {
    grid-template-columns: 1fr !important;
    gap: 0.75rem;
  }

  /* CTA */
  #cta_1 h2 {
    font-size: 1.25rem;
  }

  /* Contact */
  .contact-value {
    font-size: 0.8rem;
    word-break: break-all;
  }

  #map-container {
    height: 180px !important;
  }

  /* Floating buttons closer to edge */
  #scroll-top-btn {
    right: 0.5rem;
    bottom: 4.5rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}
