/**************************/
/* HEADER */
/**************************/

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 9.6rem;
  padding: 0 4.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.021);
  z-index: 1000;

  

}

.logo {
  height: 7.2rem;
}

/**************************/
/* NAVIGATION */
/**************************/

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
}


.main-nav-link,
.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #cf711f;
}

.main-nav-link.nav-cta,
.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #333;
  background-color: #4cc8c2;
  font-weight: 600;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #E7ECDB;
}



/* Dropdown Container */
.dropdown {
  position: relative;
}

/* Dropdown Menu Hidden by Default */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; /* places dropdown below the parent */
  left: 0;
  background-color: #fff;
  border-radius: 8px;
  padding: 1rem 0;
  list-style: none;
  min-width: 20rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dropdown-menu {
  display: none;
}

#toggle-services:checked + .dropdown-menu {
  display: block;
}


/* Dropdown Links */
.dropdown-link {
  display: block;
  padding: 1rem 2rem;
  color: #282828;
  text-decoration: none;
  font-size: 1.6rem;
  transition: all 0.3s;
  font-weight: 500;
}

.dropdown-link:hover {
  background-color: #E7ECDB;
  color: #333;
  text-decoration: none;
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-menu {
  display: block;
}


/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;

}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/* STICKY NAVIGATION */
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: rgba(255, 255, 255, 0.616);
  z-index: 1001;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

/* Sticky header link color change */
.sticky .header .main-nav-link,
.sticky .header .main-nav-link:link,
.sticky .header .main-nav-link:visited {
  color: #3c2712;;
}

/* Sticky header link color change */
.sticky .header .main-nav-link.nav-cta:link,
.sticky .header .main-nav-link.nav-cta:visited {
  color: #3c2712;
}

.sticky .header .main-nav-link:hover {
  color: #5C3C29; 
  padding: 1.2rem 2.4rem;
  border-radius: 9px;
  color: #333;
  background-color: #E7ECDB;
}

.sticky .main-nav-link.nav-cta:link:hover {
  padding: 1.6rem 2.8rem;
}

/* .sticky .section-hero {
  margin-top: 9.6rem;
} */



/**************************/
/* HERO SECTION */
/**************************/



.section-hero {
  background-color: #fdf2e9;
  /* padding: 4.8rem 0 9.6rem 0; */
  
}

.hero {
  width: 100%;
  max-width: none;
  /* margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 9.0;
  align-items: center; */
  height: auto;            /* prevent the 100vh overflow issue */

}

.flipped-video {
  width: 100%;
  object-fit: cover; /* keeps proper aspect ratio */
}

/* Hero section fills full viewport height */
/* Hero video section */
.hero-vid-box {
  position: relative;
  width: 100%;
  height: 100vh;   /* fallback for older Android browsers */
  height: 100dvh;    /* full screen height */
  overflow: hidden;
  display: flex;
  align-items: center;       /* vertically center content */
  justify-content: flex-start; /* align content to the left */
}

/* Video fills entire hero */
.hero-vid-box video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* maintain aspect ratio and fill */
  z-index: 1;
}


/* Overlay with opacity */
.hero-vid-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.404); /* adjust darkness */
  z-index: 2;
}

/* Text box positioned from left to center */
.hero-text-box {
  position: relative;
  z-index: 3;
  color: white;
  text-align: left;
  
  width: 50%;         /* cover roughly left half of screen */
  max-width: 100%;   /* limit width on large screens */
  
  margin: 0;          /* no external spacing */
  padding-top: 10rem;      
  padding-left: 5rem;
 
}

.hero-primary {
  color: #fff;
  font-size: 4.4rem;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.815);
}

.hero-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 4rem;
}


.satisfied-customers {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 3rem;
}

.customers-imgs {
  display: flex;
}

.customers-imgs img {
  height: 4.8rem;
  width: 4.8rem;
  border-radius: 50%;
  margin-right: -1.6rem;
  border: 3px solid #fdf2e9;
}

.customers-imgs img:last-child {
  margin: 0;
}

.customers-text {
  font-size: 1.8rem;
  font-weight: 600;
}

.customers-text span {
  color: #FEDA64;
  font-weight: 700;
}

/**************************/
/* SWITCHER ICONS SECTION */
/**************************/

.home-switcher-icons {
  background-color: #fff9f1;
  padding-bottom: 9.6rem;
  display: flex;
  justify-content: center;
  
}

.icon-switcher {
  padding-left: 5rem;
}


.icon-heading {
  font-family: "Quicksand";
  font-weight: 500;
  font-size: 3rem;
  padding-bottom: 3rem;
}


.icon-item {
  cursor: pointer;
  text-align: center;
  transition: transform 0.3s ease, color 0.3s ease;
  color: #555;
  padding: 2rem;
  border-radius: 1rem;
}

.animal-icon {
  font-size: 8rem;       /* same large icon size */
  display: block;
  margin-bottom: 1rem;
  color: #333;            /* optional: adjust color */
}

.icon-item p {
  font-size: 1.2rem;
  font-weight: 500;
}

.icon-item:hover,
.icon-item.active {
  color: #333;
  background-color: rgba(217, 196, 175, 0.459);
  transform: translateY(-5px);
}

.animal-desc {
  display: none;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeIn 0.4s ease;
}

.animal-desc.active {
  display: block;
}

h3 {
  font-size: 2.3rem;
}

.uk-text-lead {
  font-size:  2rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}


/**************************/
/* ANIMAL CARE SECTION */
/**************************/

.animal-care {
  background-color: #e4f7fc;
}

.clip-double {
  background: #f4f8ff;
  color: #333;
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
  margin-top: -10rem; 
}

.animal-care-title {
font-size: 3rem;
font-weight: 500;
margin-bottom: 5rem;
color: #000;
}

.animal-care-container {
  max-width: 130rem;
  margin: 0 auto;
  margin-bottom: 7rem;
  padding: 5rem ;
  display: grid;
  gap: 4.8rem;
  align-items: center;
  row-gap: 4.8rem;
  column-gap: 8rem;
}



.clip-double {
  position: relative;
  padding: 100px 0;
  background: #f4f8ff;
  color: #333;
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}


.animal-care-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.animal-care-pic {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);

}

.animal-care-text {
  font-size: 2rem;
}


/**************************/
/* ANIMAL FEATURE*/
/**************************/

.animal-feature {
  background-color: #fff9f1;

}



/**************************/
/* ANIMALS HTML*/
/**************************/

.section-services {
  margin: 7rem 0;
  /* padding: 2rem 0; */
  background-color: #fffaf3;
}



.services {
  padding: 5rem 0;
  padding-left: 3rem;
}

.card-list {
  margin-bottom: 3rem;
}

.services-description {
  font-size: 1.8rem;
  line-height: 1.8;
  color: #2d2d2d;
}

.services-img-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-img {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.473);
  border-radius: 12px;
}

.service-list-icons {
  display: flex;
  gap: 2rem;

}

.service-list-card {
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
}

.service-icon {
  font-size: 3.5rem;
  color: #EFB701;
  margin-top: 2rem;
}

.service-list-title {
  margin-bottom: 1.2rem;
  font-weight: 500;
}


.service-list {
  line-height: 1.8rem;
  font-size: 1.4rem;
  margin-top: 1rem;

}


.services-img {
  width: 100%;
  /* z-index: 10; */
}

.icon-cards-hor {
  font-size: 5rem;
  color: #654F93;
}

.service-cards {
  text-align: center;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.service-cards:hover {
  background-color: #00b1a8;
  color: #000;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-cards h3 {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 2.5rem;
}

.service-cards p {
  font-size: 2rem;
  line-height: 1.5;
}

/**************************/
/* TESTIMONIALS HTML*/
/**************************/

.testimonials {
  margin-top: 10rem;
  background-color: #fff;
}

.testimonial-content {
  font-size: 1.4rem;
  line-height: 2rem;
}

.testimonial-button {
  background-color: #8BE78B;
  color: #333;
  font-size: 1.4rem;
  font-weight: 600;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;

}

.testimonial-button:hover {
  background-color: #CAAE88;
  color: #000;
  font-size: 1.4rem;
  transform: scale(1.08); /* slight grow on hover */
}

/**************************/
/* KEYPOINTS SECTION */
/**************************/

.feature {
  display: flex;
  flex-direction: column;   /* stack icon, title, text vertically */
  align-items: center;      /* center all elements horizontally */
  justify-content: center;  /* optional, helps vertical centering if needed */
  text-align: center;   
}

.feature-icon {
  display: inline-flex;               /* enables flex centering */
  align-items: center;                /* centers vertically */
  justify-content: center;            /* centers horizontally */
  color: #5C733D;                     /* icon color */
  background-color: #E7ECDB;          /* light orange background */
  height: 7rem;                       /* circle height */
  width: 7rem;                        /* circle width */
  border-radius: 50%;                 /* perfect circle */
  font-size: 2.5rem;                  /* icon size */
  margin-bottom: 2rem;                /* space below */
  transition: all 0.3s ease;          /* smooth hover animation */
}

.feature-icon:hover {
  background-color: #5C733D;          /* hover color */
  color: #E7ECDB;                        /* white icon on hover */
  transform: scale(1.1);              /* subtle pop */
}

.feature-title {
  font-size: 2rem;
  color: #333;
  font-weight: 700;
  line-height: 3rem;
  margin-bottom: 1.6rem;
  text-align: center;
}

.feature-text {
  font-size: 1.8rem;
  line-height: 1.8;
  text-align: center;
}



/**************************/
/* ANIMAL CARDS SECTION */
/**************************/




.cards-container {
  padding: 9.6rem;
}

.uk-overlay-custom {
      background: rgba(0, 0, 0, 0.5);
      transition: opacity 0.3s ease;
      opacity: 0;
      height: 100%;

    }
    .uk-overlay-custom:hover {
      opacity: 1;
    }
    .uk-overlay-custom h3 {
      color: #fff;
      font-weight: 700;
      margin-bottom: 5px;
    }
    .uk-overlay-custom p {
      color: #ddd;
      font-size: 1.8rem;
      line-height: 2.2rem;
    }


.home-cards-text {
  font-size: 16px;        /* adjust to your liking */
  font-weight: 400;       /* 300 = light, 400 = normal, 600 = semi-bold */
  font-family: "Poppins", sans-serif; /* or any font you prefer */
  line-height: 1.6;
  color: #f8f9fa;         /* adjust color (light text for dark overlay) */
}


/**************************/
/* GALLERY HTML */
/**************************/

.gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin-top: 3rem;
}

.gallery-primary {
  font-family: "Quicksand";
  font-weight: 600;
  font-size: 3rem;
}

 /* .fullpage-slider {
    width: 100vw;
    height: 120vh;
  } */

  .fullpage-slider img {
    width: 100%;
    height: auto;
    object-fit: cover; /* makes the full image visible */
    background-color: #000; /* optional for letterboxing effect */
  }

/**************************/
/* CONNECTION SECTION */
/**************************/



.section-connections {
  padding: 9.6rem 0;
  background-color: #fff;

}

.connection {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  border-radius: 11px;
  overflow: hidden;
  transition: all 0.4s;
}

.connection:hover {
  transform: translateY(-1.2rem);
  box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 0.06);
}

.connection-content {
  padding: 3.2rem 4.8rem 4.8rem 4.8rem;
}



.connection-title {
  font-size: 2.4rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 3.2rem;
}

.connection-attributes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.connection-attribute {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.connection-icon {
  height: 2.4rem;
  width: 2.4rem;
  color: #005900;
}

.connection-img {
  width: 100%;
}

.list-icon {
  color: #005900;
}

/* .all-recipes {
  text-align: center;
  font-size: 1.8rem;
} */




/**************************/
/* PRICING SECTION */
/**************************/

.section-pricing {
  padding: 9.6rem 0;
  background-color: #fffbf6;
}

.pricing-plan {
  border-radius: 11px;

  width: 75%;
}

.pricing-plan--starter {
  justify-self: end;
  border: 2px solid #fdf2e9;
  padding: 4.6rem;
}

.pricing-plan--complete {
  background-color: #fdf2e9;
  padding: 4.8rem;
  position: relative;
  overflow: hidden;
}

.pricing-plan--complete::after {
  content: "Best value";
  position: absolute;
  top: 6%;
  right: -18%;

  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  background-color: #ffd43b;
  padding: 0.8rem 8rem;
  transform: rotate(45deg);
}

.plan-header {
  text-align: center;
  margin-bottom: 4.8rem;
}

.plan-name {
  color: #cf711f;
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.75;
  margin-bottom: 3.2rem;
}

.plan-price {
  font-size: 6.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.6rem;
}

.plan-price span {
  font-size: 3rem;
  font-weight: 500;
  margin-right: 0.8rem;
}

.plan-text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #6f6f6f;
}

.plan-sing-up {
  text-align: center;
  margin-top: 4.8rem;
}

.plan-details {
  font-size: 1.6rem;
  line-height: 1.6;
  text-align: center;
}

.test {
  padding-top: 5rem;
  text-align: center;
  font-weight: 500;
  font-size: 1.4rem;
}


/**************************/
/* CTA SECTION */
/**************************/

.section-cta {
  /* top / right / bottom / left */
  /* padding: 9.6rem 0 12.8rem 0; */

  /* top / horizontal / left */
  padding: 5rem 0 12.8rem;
  margin-top: 10rem;
}

.cta {
  display: grid;
  /* 2/3 = 66.6% + 1/3 = 33.3% */
  grid-template-columns: 2fr 1fr;
  /* background-color: #e67e22; */
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  border-radius: 0;

  background-image: linear-gradient(to right bottom, #fff);
  overflow: hidden;
}

.cta-heading {
  font-size: 2.4rem;
  font-weight: 600;
}

.cta-text-box {
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
  color: #000;
}

.cta .heading-secondary {
  /* color: #45260a; */
  color: inherit;
  margin-bottom: 3.2rem;
}

.cta-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 4.8rem;
}

.cta-img-box {
  background-image: linear-gradient(
      to right bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0)
    ),
    url("../img/raw/contact.jpg");
  background-size: cover;
  background-position: center;
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.2rem;
  row-gap: 2.4rem;
}

.cta-form label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.cta-form input,
.cta-form select {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  color: inherit;
  border: none;
  background-color: #f6f6f6;
  border-radius: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-form input::placeholder {
  color: #aaa;
}

.cta *:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgb(0, 0, 0);
}

/**************************/
/* FOOTER */
/**************************/

.footer {
  padding: 2.8rem 0;
  border-top: 1px solid #eee;
  background-color: #2C423F;
}

.grid--footer {
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
}

.logo-col {
  display: flex;
  flex-direction: column;
  justify-content: center; /* centers horizontally */
  align-items: center;   
  
}

.footer-logo {
  display: block;
  margin-bottom: 2.5rem;
  width: 15rem;
}

.footer-logo .logo {
  filter: brightness(0) invert(1);
}

.social-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
  
}

.social-icon {
  height: 2.4rem;
  width: 2.4rem;
  padding-bottom: 2rem;
  color: #fff;
}

.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #fff;
  margin-top: auto;
  padding-left: 2.4rem;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 4rem;
  color: #fff;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

.address {
  margin-bottom: 2.4rem;
  color: #fff;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #fff;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #555;
}
