html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.hero-slider {
  margin-top: -1rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.hero-slide {
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(10, 14, 22, 0.7), rgba(10, 14, 22, 0.2));
  color: #fff;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.hero-actions .btn {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.feature-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: #f8f9fa;
  height: 100%;
}

.gallery-grid .card {
  border: none;
  overflow: hidden;
}

.gallery-grid img {
  height: 220px;
  object-fit: cover;
}

.gallery-grid .card-text {
  margin-bottom: 0;
  font-weight: 500;
}

.floating-contact {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1030;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.floating-contact .btn {
  border-radius: 999px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (max-width: 576px) {
  .floating-contact {
    right: 0.75rem;
    bottom: 0.75rem;
  }
}
