/* ============================ */
/*    Hero Section */
/* ============================ */

.hero-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-self: center;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  background-color: #14131b;
  z-index: 50;
}

.dog-parallax[data-animate="dog-fade-up"] {
  transition: opacity 0.8s cubic-bezier(0.23, 1.02, 0.67, 1.01),
    transform 0.8s cubic-bezier(0.23, 1.02, 0.67, 1.01);
}
/* Fade In From Up Animation */
[data-animate="dog-fade-up"] {
  opacity: 0;
  transform: translateY(400px);
  transition: opacity 1s ease, transform 1s ease;
  will-change: opacity, transform;
}
[data-animate="dog-fade-up"].visible {
  opacity: 1;
  transform: translateY(0);
}
.dog-parallax {
  transition: transform 0.2s linear, opacity 0.2s linear;
}

/* Hero Backgrounds */
.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
}
.hero-bg:nth-child(1) {
  background-image: url(../../assets/photos/mesh-bg.png);
  background-size: cover;
  background-position: center;
  opacity: 5%;
}
.hero-bg:nth-child(2) {
  background-image: url(../../assets/photos/dog-bg.webp);
  background-size: contain;
  background-position: right bottom;
  opacity: 60%;
}

/* Hero Content */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  width: 100%;
  height: 100%;
  padding: 2rem;
  z-index: 55;
}
.hero-content h1,
.hero-content h2 {
  font-size: clamp(2.5rem, 17vw, 10rem);
  line-height: 1;
  text-shadow: #14131b 0px 0px 15px;
}
.hero-content h1 {
  color: #004aad;
}
.hero-content h2 {
  color: white;
  transition-delay: 0.1s;
}
.hero-content p {
  display: flex;
  justify-content: start;
  padding-top: 1rem;
  font-size: 1.5rem;
  font-family: "Quicksand", sans-serif;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: #14131b 0px 0px 15px;
}
.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
}
.hero-cta-arrow {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 4px;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  background: #fff7f7;
  vertical-align: middle;
}
.hero-cta-arrow::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 20px solid #ffffff;
}
.hero-cta a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 0.5rem;
  border-radius: 2.5px;
  border-width: 2.5px;
  border-style: solid;
  border-color: transparent;
  font-size: 1.25rem;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  color: white;
  background-color: #004aad;
  transition: all 0.3s ease-in-out;
}
.hero-cta a:hover {
  color: #004aad;
  background-color: white;
  border-color: #004aad;
}

/* Scroll Down Section */
.hero-scroll {
  position: absolute;
  display: flex;
  align-items: end;
  width: 100%;
  height: 100%;
}
.hero-scroll-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  gap: 0.25rem;
  background-color: #004aad;
  background: radial-gradient(circle at 50% 50%, #004aad 25%, #14131b 100%);
}
.hero-scroll h2 {
  font-size: 1.3rem;
  font-family: "Montserrat", sans-serif;
  color: #14131b;
}
.hero-scroll img {
  width: 25px;
  height: 25px;
}

@media (min-width: 2400px) {
  .hero-content,
  .hero-bg:nth-child(2) {
    width: 70%;
  }
}
@media (max-width: 700px) {
  .hero-content {
    padding: 1rem;
  }
  .hero-cta-arrow {
    width: 30px;
  }
}

/* ============================ */
/*    protection Section */
/* ============================ */

.h-protection-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 5rem 2rem 2rem 2rem;
  gap: 2rem;
  background-color: #14131b;
}

.h-protection-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  max-width: 400px;
  gap: 0.5rem;
  font-size: 1.3rem;
  color: white;
}
.h-protection-content h3 {
  color: rgba(76, 152, 255, 0.7);
}
.h-protection-content h2 span {
  color: #4c98ff;
}
.h-protection-content p {
  font-family: "Quicksand", sans-serif;
  color: rgba(255, 255, 255, 0.7);
  padding-bottom: 1rem;
}
.h-protection-content a {
  padding: 0.25rem 1rem;
  border-radius: 2.5px;
  text-decoration: none;
  font-weight: bold;
  color: white;
  background-color: #004aad;
  transition: all 0.3s ease-in-out;
}
.h-protection-content a:hover {
  color: #4c98ff;
  background-color: white;
}

.h-protection-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.h-protection-box-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.h-protection-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  padding: 0.5rem;
  gap: 0.5rem;
  min-width: 160px;
  max-width: 200px;
  height: 200px;
  border-radius: 5px;
  border-width: 1.5px;
  border-style: solid;
  border-color: transparent;
  transition: all 0.3s ease-in-out;
}
.h-protection-box-wrap:nth-child(1) .h-protection-box:nth-child(1) {
  transition-delay: 0.1s;
  background: linear-gradient(135deg, #14131b 0%, #242232 100%);
}
.h-protection-box-wrap:nth-child(2) .h-protection-box:nth-child(2) {
  transition-delay: 0.1s;
  background: linear-gradient(315deg, #14131b 0%, #242232 100%);
}
.h-protection-box-wrap:nth-child(1) .h-protection-box:nth-child(2) {
  background: linear-gradient(45deg, #14131b 0%, #004aad 100%);
}
.h-protection-box-wrap:nth-child(2) .h-protection-box:nth-child(1) {
  background: linear-gradient(225deg, #14131b 0%, #004aad 100%);
}
.h-protection-box:hover {
  transform: translateY(-5px);
  border-color: #4c98ff;
}
.h-protection-box img {
  width: 50px;
  height: 50px;
}
.h-protection-box h2 {
  font-size: 1.1rem;
  font-family: "Montserrat", sans-serif;
  color: white;
}
.h-protection-box p {
  font-size: 1rem;
  font-family: "Quicksand", sans-serif;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 700px) {
  .h-protection-container {
    flex-direction: column;
    align-items: start;
    padding: 5rem 1rem 1rem 1rem;
  }
  .h-protection-content,
  .h-protection-box {
    max-width: 100%;
  }
}

@media (max-width: 350px) {
  .h-protection-wrap {
    flex-direction: column;
  }
}

/* ============================ */
/*    Dog Showcase Section */
/* ============================ */

.dog-showcase-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding: 5rem 0rem 5rem 2rem;
  gap: 1rem;
  color: white;
  background-color: #14131b;
}

.dog-showcase-container h2 {
  font-size: 2.5rem;
  z-index: 50;
}
.dog-showcase-container h2 span {
  color: #4c98ff;
}

.dog-showcase-wrap {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  overflow-x: auto;
  flex-wrap: nowrap;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  gap: 1rem;
  width: 100%;
  z-index: 50;
}
.dog-showcase-wrap::-webkit-scrollbar {
  display: none;
}
.dog-showcase-box {
  display: flex;
  justify-content: start;
  align-items: end;
  overflow: hidden;
  background-size: cover;
  background-position: center top;
  width: 25%;
  min-width: 500px;
  min-height: 400px;
  border-image: linear-gradient(to right, #4c98ff 0%, #004aad 100%) 1;
  border-radius: 5px;
  border-width: 2.5px;
  border-style: solid;
}
.dog-showcase-box:nth-child(1) {
  transition-delay: 0.1s;
  background-image: url(../../assets/photos/landing-dog-1.webp);
}
.dog-showcase-box:nth-child(2) {
  transition-delay: 0.2s;
  background-image: url(../../assets/photos/landing-dog-2.webp);
}
.dog-showcase-box:nth-child(3) {
  transition-delay: 0.3s;
  background-image: url(../../assets/photos/landing-dog-3.webp);
}
.dog-showcase-box:nth-child(4) {
  transition-delay: 0.4s;
  background-image: url(../../assets/photos/landing-dog-4.webp);
}
.dog-showcase-box:nth-child(5) {
  transition-delay: 0.5s;
  background-image: url(../../assets/photos/landing-dog-5.webp);
}

.dog-content {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  width: auto;
  padding: 0.25rem;
  border-top-right-radius: 1rem;
  background: linear-gradient(270deg, #14131b 0%, #004aad 100%);
}
.dog-showcase-box h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.25rem 0.5rem;
  font-size: 1.2rem;
  color: white;
  gap: 0.5rem;
}

@media (max-width: 1000px) {
  .dog-showcase-box {
    min-width: 350px;
    transition-delay: none;
  }
}

@media (max-width: 700px) {
  .dog-showcase-container {
    align-items: start;
    padding: 5rem 0rem 5rem 1rem;
  }
  .dog-showcase-box {
    min-width: 300px;
  }
}

@media (max-width: 500px) {
  .dog-showcase-box {
    min-width: 85%;
  }
}

/* ============================ */
/*    Comfort Section */
/* ============================ */

.h-comfort-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 2rem 2rem 5rem 2rem;
  gap: 2rem;
  background-color: #14131b;
}

.h-comfort-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  max-width: 400px;
  gap: 0.5rem;
  font-size: 1.3rem;
  color: white;
}
.h-comfort-content h3 {
  color: rgba(76, 152, 255, 0.7);
}
.h-comfort-content h2 span {
  color: #4c98ff;
}
.h-comfort-content p {
  font-family: "Quicksand", sans-serif;
  color: rgba(255, 255, 255, 0.7);
  padding-bottom: 1rem;
}
.h-comfort-content a {
  padding: 0.25rem 1rem;
  border-radius: 2.5px;
  text-decoration: none;
  font-weight: bold;
  color: white;
  background-color: #004aad;
  transition: all 0.3s ease-in-out;
}
.h-comfort-content a:hover {
  color: #4c98ff;
  background-color: white;
}

.h-comfort-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.h-comfort-image img {
  width: 100%;
  max-width: 500px;
  height: 300px;
  object-fit: cover;
  border-radius: 0.5rem;
  border-width: 1.5px;
  border-style: solid;
  border-color: #004aad;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 700px) {
  .h-comfort-container {
    flex-direction: column-reverse;
    justify-content: start;
    padding: 1rem;
  }
  .h-comfort-content {
    max-width: 100%;
  }
  .h-comfort-image,
  .h-comfort-image img {
    width: 100%;
    max-width: 100%;
  }
}

/* ============================ */
/*    Stats Banner Section */
/* ============================ */

.stats-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  overflow: hidden;
  padding: 5rem 2rem;
  gap: 0.5rem;
  background-color: #14131b;
}

/* Stats Header */
.stats-container h1 {
  position: relative;
  font-size: 2.5rem;
  color: white;
}
.stats-container h1 span {
  color: #4c98ff;
}
.stats-container p {
  position: relative;
  font-size: 1.25rem;
  font-family: "Quicksand", sans-serif;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

/* Stats Overview */
.stats-wrap {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 3rem;
}
.stats-box {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  gap: 1rem;
  padding: 1rem;
  border-radius: 10px;
  border-top-right-radius: 50px;
  border-style: solid;
  border-color: #004aad80;
  border-width: 0.5px;
  background: linear-gradient(45deg, #14131b 0%, #24223250 100%);
  z-index: 50;
}
.stats-box:nth-child(1) {
  transition-delay: 0.1s;
}
.stats-box:nth-child(2) {
  transition-delay: 0.2s;
}
.stats-box:nth-child(3) {
  transition-delay: 0.3s;
}
.stats-text-divider {
  min-width: 2.5px;
  height: 100px;
  background: rgb(255, 255, 255);
}
.stats-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  max-width: 400px;
  gap: 0.5rem;
}
.stats-content h2 {
  font-size: 2.25rem;
  color: #4c98ff;
}
.stats-content h3 {
  text-align: start;
  font-size: 1.2rem;
  font-family: "Montserrat", sans-serif;
  color: white;
}
.stats-content a {
  padding: 0.1rem 0.5rem;
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: white;
  transition: all 0.3s ease-in-out;
}
.stats-content a:hover {
  background-color: white;
  color: #4c98ff;
}

@media (max-width: 1000px) {
  .stats-container,
  .stats-wrap {
    gap: 1rem;
  }
}

@media (max-width: 880px) {
  .stats-wrap {
    flex-wrap: wrap;
  }
  .stats-box {
    justify-content: start;
    min-width: 100%;
    max-width: 500px;
  }
  .stats-content {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 780px) {
  .stats-container,
  .stats-wrap {
    flex-direction: column;
    align-items: start;
    gap: 1rem;
  }
  .stats-content {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .stats-container {
    padding: 5rem 1rem;
  }
}

/* ============================ */
/*    About Us Section */
/* ============================ */

.about-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 5rem 2rem 2rem 2rem;
  gap: 2rem;
  background-color: #14131b;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  max-width: 400px;
  gap: 0.5rem;
  font-size: 1.3rem;
  color: white;
}
.about-content h3 {
  color: rgba(76, 152, 255, 0.7);
}
.about-content h2 span {
  color: #4c98ff;
}
.about-content p {
  font-family: "Quicksand", sans-serif;
  color: rgba(255, 255, 255, 0.7);
  padding-bottom: 1rem;
}
.about-content a {
  padding: 0.25rem 1rem;
  border-radius: 2.5px;
  text-decoration: none;
  font-weight: bold;
  color: white;
  background-color: #004aad;
  transition: all 0.3s ease-in-out;
}
.about-content a:hover {
  color: #4c98ff;
  background-color: white;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-image img {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 50%;
  border-color: #004aad;
  border-width: 2.5px;
  border-style: solid;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 700px) {
  .about-container {
    justify-content: start;
    padding: 1rem;
  }
  .about-content {
    max-width: 100%;
  }
  .about-image {
    display: none;
  }
}

/* ============================ */
/*    Benefits Section */
/* ============================ */

.benefits-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 8rem 0rem 4rem 2rem;
  gap: 0.5rem;
  background-color: #14131b;
  color: white;
}

.benefits-container p {
  color: rgba(255, 255, 255, 0.9);
}
.benefits-container h2 {
  font-size: 2.5rem;
}
.benefits-container h2 span {
  color: #4c98ff;
}
.benefits-container h3 {
  font-size: 1.25rem;
  font-weight: 400;
  font-family: "Quicksand", sans-serif;
  color: rgba(255, 255, 255, 0.7);
}

.benefits-wrap {
  display: flex;
  justify-content: start;
  flex-direction: row;
  overflow-x: auto;
  flex-wrap: nowrap;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  width: 100%;
  padding: 1rem 1rem 1rem 0rem;
  gap: 2rem;
}
.benefits-wrap::-webkit-scrollbar {
  display: none;
}
.benefits-box {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  min-width: 300px;
  max-width: 350px;
  height: auto;
  padding: 1rem;
  gap: 1rem;
  border-width: 0.5px;
  border-style: solid;
}
.benefits-box:nth-child(odd) {
  border-image: linear-gradient(to top, #4c98ff 0%, #004aad50 100%) 1;
  background: linear-gradient(45deg, #14131b 0%, #24223250 100%);
}
.benefits-box:nth-child(even) {
  border-image: linear-gradient(to right, #004aad 0%, #4c98ff25 100%) 1;
  background: linear-gradient(145deg, #14131b 0%, #24223250 100%);
}
.benefits-icon {
  width: 80px;
  height: 80px;
}
.benefits-icon img {
  width: 100%;
  height: 100%;
}
.benefits-box h4 {
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
  color: white;
  gap: 0.5rem;
}
.benefits-box p {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.15rem;
  font-family: "Quicksand", sans-serif;
}

@media (min-width: 2000px) {
  .benefits-wrap {
    justify-content: center;
  }
}
@media (max-width: 1350px) {
  .benefits-wrap {
    justify-content: start;
  }
}
@media (max-width: 700px) {
  .benefits-container {
    padding: 5rem 0rem 4rem 1rem;
    align-items: start;
  }
  .benefits-wrap {
    padding: 1rem 0rem 1rem 0rem;
  }
}
