/* Brand & typography */
body {
  font-family: "Adobe Garamond Pro", Garamond, "Times New Roman", serif;
}

/* Hero section with background image */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 3rem;
}

@media (max-width: 767.98px) {
  .hero-content {
    padding-bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px));
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero .lead {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .hero-content {
    padding-bottom: 4rem;
  }
}

/* Brand button */
.btn-brand {
  background-color: #ff6f61;
  border-color: #ff6f61;
  color: #fff;
}

.btn-brand:hover,
.btn-brand:focus {
  background-color: #e55b4f;
  border-color: #e55b4f;
  color: #fff;
}

/* Testimonial avatar */
.testimonial-avatar {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 2px solid #ff6f61;
}

/* Contact section icons */
.contact-section .bi-whatsapp {
  color: #25d366;
}

.contact-section .bi-envelope-fill {
  color: #0078d4;
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  left: 30px;
  background-color: #25d366;
  color: #fff !important;
  border-radius: 50px;
  text-align: center;
  font-size: 35px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none !important;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128c7e;
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
  color: #fff !important;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Floating email button */
.email-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 105px;
  left: 30px;
  background-color: #0078d4;
  color: #fff !important;
  border-radius: 50px;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 10px 25px rgba(0, 120, 212, 0.3);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none !important;
  animation: pulse-email 2s infinite;
}

.email-float:hover {
  transform: scale(1.1);
  background-color: #0062b0;
  box-shadow: 0 15px 30px rgba(0, 120, 212, 0.4);
  color: #fff !important;
}

@keyframes pulse-email {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 120, 212, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(0, 120, 212, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 120, 212, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 165px;
    left: 16px;
    font-size: 26px;
  }

  .email-float {
    width: 48px;
    height: 48px;
    bottom: 225px;
    left: 16px;
    font-size: 22px;
  }
}
