.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #ff6a3d;
  color: #fff;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Roboto", sans-serif;
  background-color: #fff7e6;
  color: #5a3e36;
  line-height: 1.6;
  animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.site-header {
  background-color: #ff7f50;
  padding: 20px 30px;
  animation: slideDown 0.8s ease-out;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
}
.site-nav ul li a {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.site-nav ul li a:hover {
  color: #ffe5d9;
}
.logo img {
  width: 80px;
  transition: transform 0.3s ease;
}
.logo img:hover {
  transform: scale(1.1);
}
.content-section {
  margin: 0px auto;
  padding: 0;
  animation: fadeIn 1.2s ease-in-out;
}
.content-section iframe {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.cookies-section {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ffbf69;
  padding: 12px 18px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.8s ease-in-out;
}
.cookies-section p {
  font-weight: bold;
  color: #5a3e36;
  display: inline;
}
.cookies-section button {
  background-color: #ff7f50;
  color: #fff;
  border: none;
  padding: 6px 12px;
  margin-left: 10px;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.cookies-section button:hover {
  background-color: #ff6a3d;
}
.site-footer {
  background-color: #ff7f50;
  color: #fff;
  padding: 30px 20px;
  margin-top: 30px;
  animation: fadeIn 1s ease-in-out;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #ffe5d9;
}
.footer-hours,
.footer-contact,
.footer-logo {
  flex: 1 1 300px;
  margin: 10px 0;
}
.footer-logo img {
  width: 100px;
  margin-bottom: 10px;
}
.footer-hours h3,
.footer-contact h3 {
  color: #ffe5d9;
  margin-bottom: 10px;
}
.footer-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px 0;
}
.footer-links ul li a {
  color: #fff;
  font-weight: 700;
  transition: color 0.3s ease;
}
.footer-links ul li a:hover {
  color: #ffe5d9;
}
.footer-bottom {
  text-align: center;
  padding-top: 10px;
  font-size: 0.9em;
}
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    text-align: center;
  }
  .site-nav ul {
    flex-direction: column;
    gap: 10px;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  .footer-hours,
  .footer-contact,
  .footer-logo {
    text-align: center;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: visible;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}
.hero-logo {
  position: absolute;
  left: 40px;
  bottom: -40px;
}
.hero-logo img {
  width: 120px;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .hero {
    height: 400px;
  }
  .hero-logo img {
    width: 90px;
  }
}
@media (max-width: 480px) {
  .hero {
    height: 300px;
  }
  .hero-logo img {
    width: 70px;
  }
}

.about-us-section {
  padding: 80px 20px;
  background-color: #fff7e6;
  color: #5a3e36;
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.about-images {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-images img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.about-content {
  flex: 2;
}
.about-content h2 {
  font-size: 2.8em;
  color: #ff6f61;
  margin-bottom: 20px;
}
.about-content p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }
  .about-images,
  .about-content {
    flex: 1 1 100%;
  }
}

.services {
  padding: 80px 20px;
  background-color: #fff9f0;
  color: #5a3e36;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-container h2 {
  text-align: center;
  font-size: 2.8em;
  color: #ff6f61;
  margin-bottom: 40px;
}

.service-item {
  background-color: #fff;
  border: 2px solid #ffdd59;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item h3 {
  font-size: 1.8em;
  color: #ff6f61;
  margin-bottom: 15px;
}

.service-item p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: justify;
}

.service-item ul {
  list-style: disc inside;
  margin-left: 20px;
}

.service-item ul li {
  font-size: 1em;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .service-item {
    flex-direction: column;
  }
}

.satisfied-customers {
  padding: 80px 20px;
  background-color: #fff9f0;
  color: #333;
  text-align: center;
}
.customers-container {
  max-width: 1200px;
  margin: 0 auto;
}
.customers-container h2 {
  font-size: 2.8em;
  color: #ff6f61;
  margin-bottom: 40px;
}
.customer-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.customer-photo img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.customer-photo img:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .customer-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .customer-gallery {
    grid-template-columns: 1fr;
  }
}

.testimonials {
  padding: 80px 20px;
  background-color: #fff9f0;
  color: #5a3e36;
  text-align: center;
}
.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials-container h2 {
  font-size: 2.8em;
  color: #ff6f61;
  margin-bottom: 40px;
  animation: fadeIn 1s ease-in-out;
}
.testimonial-item {
  background-color: #fff;
  border: 2px solid #ffdd59;
  border-radius: 8px;
  padding: 20px;
  margin: 0 auto 20px auto;
  width: 80%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  animation: slideUp 0.8s ease-in-out;
}
.testimonial-item:hover {
  transform: translateY(-5px);
}
.testimonial-item p {
  font-size: 1em;
  margin-bottom: 10px;
  text-align: justify;
}
.testimonial-item h4 {
  font-size: 1.2em;
  color: #ff6f61;
  text-align: right;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .testimonial-item {
    width: 100%;
  }
}

.parallax-section {
  position: relative;
  background-image: url("../assets/images/12345.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.parallax-content {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 8px;
}
.parallax-content h2 {
  font-size: 3em;
  margin-bottom: 20px;
}
.parallax-content p {
  font-size: 1.2em;
}
@media (max-width: 768px) {
  .parallax-section {
    height: 300px;
  }
  .parallax-content h2 {
    font-size: 2.2em;
  }
  .parallax-content p {
    font-size: 1em;
  }
}

.pet-form-section {
  padding: 80px 20px;
  background-color: #fff9f0;
  color: #333;
  text-align: center;
}

.pet-form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px;
  border: 2px solid #ffdd59;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pet-form-container h2 {
  font-size: 2.5em;
  color: #ff6f61;
  margin-bottom: 20px;
}

.pet-form-container p {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.pet-form-container form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  text-align: left;
}

.pet-form-container label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.pet-form-container input,
.pet-form-container textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #ffdd59;
  border-radius: 4px;
  font-size: 1em;
  outline: none;
  transition: border-color 0.3s ease;
}

.pet-form-container input:focus,
.pet-form-container textarea:focus {
  border-color: #ff6f61;
}

.pet-form-container button {
  padding: 12px 20px;
  background-color: #ff6f61;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pet-form-container button:hover {
  background-color: #e65a50;
}
