/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --default-black: #1a1a1a;
  --light-black: #eee;
  --default-white: #f9f9f9;
  --white: #ffffff;
  --light-gray: #ddd;
  /* --soft-orange: #ff4c2e; */
  --soft-orange: #7e0633;
  /* --muted-gold: #ffcc66; */
  --muted-gold: #ddb2c5;
  --green: #25d366;
}

html {
  scroll-behavior: smooth;
}

/* Font & Body Styling */
body {
  font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.5;
  color: var(--default-black);
  background-color: var(--default-white);
}

/* Scrollbar - Chrome, Edge, Safari only */
::-webkit-scrollbar {
  width: 0.4rem;
  height: 0.4rem;
}

::-webkit-scrollbar-thumb {
  background: var(--soft-orange);
}

::-webkit-scrollbar-track {
  background: transparent;
}

strong {
  font-style: italic;
  font-weight: 500;
}

/* Flex Container */
.flex-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

/* Default Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Top Nav Bar */
.top-bar {
  background-color: var(--soft-orange);
  color: var(--white);
  padding: 0.4rem 0;
}

.left-info span {
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.left-info a {
  color: var(--white);
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.left-info a:hover {
  transform: translateY(-1px);
}

.right-icons {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.right-icons a {
  color: var(--white);
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.right-icons a:hover {
  transform: translateY(-1px);
}

/* Navbar */
.main-navbar {
  background-color: var(--muted-gold);
  box-shadow: 0 1px 4px rgba(126, 6, 51, 0.15);
  position: relative;
  padding: 0.5rem 0;
}

.logo {
  display: flex;
  align-items: center;
  font-family: "Bad Script", cursive;
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(126, 6, 51, 0.1);
  color: var(--soft-orange);
  transition: 0.3s ease-in-out;
}

.logo img {
  height: clamp(60px, 6vw, 70px);
  width: auto;
  padding: 0;
  margin: 0;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-links a {
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  text-decoration: none;
  color: var(--default-black);
  padding: 0.8rem;
  transition: 0.3s ease-in-out;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--soft-orange);
  outline: none;
}

.nav-links a:focus-visible {
  outline: 2px solid var(--soft-orange);
  outline-offset: 2px;
}

.nav-links a.active {
  color: var(--soft-orange);
  border-bottom: 2px solid var(--soft-orange);
  background-color: rgba(255, 76, 46, 0.05);
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  user-select: none;
  color: var(--soft-orange);
  opacity: 0.7;
  transition: 0.3s ease-in-out;

  border: none;
  background: none;
  padding: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.hamburger:hover {
  opacity: 1;
}

.hamburger:focus-visible {
  outline: 2px solid var(--soft-orange);
  outline-offset: 2px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    position: absolute;
    gap: 0;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -1px 4px rgba(126, 6, 51, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 0;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.3s ease;
    overflow: hidden;
    z-index: 1000;
  }

  .nav-links.show {
    max-height: 500px;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 1rem;
    border-bottom: 1px solid var(--light-gray);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links a:hover,
  .nav-links a:focus {
    color: var(--soft-orange);
    border-bottom: 1px solid var(--soft-orange);
    outline: none;
  }

  .nav-links a:focus-visible {
    outline: 2px solid var(--soft-orange);
    outline-offset: 2px;
  }

  .hamburger {
    display: block;
  }
}

/* -------------✅ Banner ------------- */
.banner {
  position: relative;
  width: 100vw;
  aspect-ratio: 21 / 9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: background-image 1s ease-in-out, aspect-ratio 0.3s ease-in-out;
}

.caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
}

.caption h1 {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0 2rem;
  font-size: clamp(2rem, 6vw, 6rem);
  background: linear-gradient(
    270deg,
    #ffffff,
    #ddb2c5,
    #ff9dc1,
    #ddb2c5,
    #ffffff
  );
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
  will-change: transform, opacity;
}

.caption h1.fade {
  animation: gradientMove 5s ease-in-out infinite, fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -30%);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
    filter: blur(0);
  }
}

@keyframes gradientMove {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

@media (min-aspect-ratio: 4/3) {
  .banner {
    aspect-ratio: 21 / 9;
  }
}

@media (max-aspect-ratio: 4/3) {
  .banner {
    aspect-ratio: 16 / 9;
  }
}

.nav-arrows {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 0.4rem;
  z-index: 2;
}

.nav-arrows button {
  opacity: 0.8;
  background: transparent;
  border: none;
  color: var(--soft-orange);
  font-size: clamp(2rem, 2vw + 1rem, 3rem);
  cursor: pointer;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  transition: 0.3s ease-in-out;
}

.nav-arrows button:hover {
  opacity: 1;
}

.indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.indicators span {
  display: block;
  width: 10px;
  height: 10px;
  background: var(--white);
  opacity: 0.6;
  border-radius: 50%;
  cursor: pointer;
}

.indicators span.active {
  opacity: 1;
  background: var(--soft-orange);
}

/* Pet Info */
#pet-info {
  padding: 2.4rem 0;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stats-title {
  color: var(--soft-orange);
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.stat-box {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  text-align: center;
  width: 250px;
  transition: transform 0.3s ease-in-out;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 120px;
  height: auto;
  margin-bottom: 1rem;
  animation: swing 2s ease-in-out infinite;
  transform-origin: top center;
}

@keyframes swing {
  0% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(5deg);
  }
}

.stat-number {
  font-size: 1.5rem;
  color: var(--soft-orange);
  font-weight: 500;
  margin: 0;
}

.stat-label {
  font-size: 14px;
  color: var(--default-black);
  font-weight: 500;
  margin-top: 6px;
}

/* About Us */
#about-section {
  background-color: var(--soft-orange);
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.4rem 0;
  gap: clamp(1.5rem, 5vw, 3.8rem);
  flex-wrap: wrap;
}

.about-left .about-image {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.about-right {
  max-width: 500px;
}

.about-title {
  font-size: 2rem;
  color: var(--default-white);
  font-weight: 700;
  margin-bottom: 5px;
  position: relative;
}

.about-subtitle {
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  font-style: italic;
  color: var(--muted-gold);
  margin-bottom: 1.2rem;
}

.about-desc {
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  color: var(--default-white);
  margin-bottom: 1.8rem;
}

.read-more-btn {
  display: inline-block;
  padding: clamp(0.5rem, 1vw, 1rem) clamp(1rem, 4vw, 2rem);
  background-color: var(--muted-gold);
  color: var(--soft-orange);
  border-radius: 30px;
  text-decoration: none;
  font-style: italic;
  transition: 0.3s ease-in-out;
}

.read-more-btn:hover {
  background-color: var(--white);
}

/* Mobile */
@media (max-width: 980px) {
  .about-right {
    max-width: 100%;
  }

  .about-title {
    text-align: center;
  }

  .about-subtitle {
    text-align: center;
  }

  .read-more-btn {
    display: block;
    width: max-content;
    margin: auto;
  }
}

/* FAQ Section */
.faq-block {
  width: 100%;
  max-width: 800px;
  margin: auto;
  padding: 2.4rem 0;
}

.faq-title {
  color: var(--soft-orange);
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.faq-card {
  border: 1px solid var(--light-gray);
  margin-bottom: 1rem;
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--white);
  transition: box-shadow 0.3s ease-in-out;
}

.faq-header {
  width: 100%;
  padding: 1rem;
  color: var(--soft-orange);
  background: var(--muted-gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background 0.3s ease-in-out;
}

.faq-header:hover {
  background-color: var(--soft-orange);
  color: var(--muted-gold);
}

.faq-icon {
  color: var(--white);
  margin-right: 0.4rem;
  font-size: 1.25rem;
}

.faq-toggle {
  color: var(--white);
  margin-left: 0.4rem;
  font-size: 1.25rem;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  background-color: var(--white);
  color: var(--default-black);
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-body.is-open {
  max-height: 300px;
  padding: 1rem;
  overflow-y: auto;
}

/* Gallery Section */
#gallery-section {
  padding-bottom: 2.4rem;
}

.gallery-title {
  color: var(--soft-orange);
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.gallery-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  flex-direction: column;
}

.lightbox.show {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  color: var(--white);
  cursor: pointer;
  font-size: 2rem;
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}

.lightbox-close:hover {
  opacity: 1;
  transform: scale(1.04);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-nav.prev {
  left: 30px;
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}

.lightbox-nav.prev:hover {
  opacity: 1;
}

.lightbox-nav.next {
  right: 30px;
  opacity: 0.8;
  transition: 0.3s ease-in-out;
}

.lightbox-nav.next:hover {
  opacity: 1;
}

/* Testimonials Section */
.testimonial-section {
  position: relative;
  padding-bottom: 2.4rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: auto;
}

.testimonial-heading {
  color: var(--soft-orange);
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.testimonial-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  transition: transform 1.5s ease;
}

.testimonial-slide {
  padding: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  min-width: 100%;
  box-sizing: border-box;
}

.testimonial-card {
  flex: 0 1 calc(50% - 6rem);
  background: var(--white);
  padding: clamp(1rem, 2vw, 2rem);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  transition: 0.3s ease-in-out;
}

.testimonial-text {
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  color: var(--default-black);
  margin-bottom: 1rem;
  position: relative;
}

.testimonial-text::before {
  content: "\201C";
  font-size: 1.3rem;
  color: var(--soft-orange);
  font-weight: bold;
  margin-right: 0.5rem;
  display: inline-block;
}

.testimonial-author {
  text-align: right;
  font-weight: 500;
  color: var(--soft-orange);
  margin-top: auto;
}

.testimonial-controls {
  padding: 0 0.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}

.testimonial-nav {
  background: var(--white);
  color: var(--soft-orange);
  font-size: 2rem;
  cursor: pointer;
  border: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: transform 0.3s ease-in-out;
}

.testimonial-nav:hover {
  transform: scale(1.1);
}

.testimonial-indicators {
  text-align: center;
  margin-top: 1rem;
}

.testimonial-dot {
  height: 0.5rem;
  width: 0.5rem;
  margin: 0 5px;
  background-color: var(--light-gray);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.testimonial-dot.active {
  background-color: var(--soft-orange);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 1 75%;
    margin: auto;
  }

  .testimonial-controls {
    padding: 0;
  }

  .testimonial-nav {
    background: transparent;
    box-shadow: none;
  }
}

/* Footer */
.footer {
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  background-color: var(--soft-orange);
  color: var(--white);
  padding: 1rem 0;
  text-align: center;
}

.footer a {
  text-decoration: none;
  color: var(--muted-gold);
  transition: 0.3s ease-in-out;
}

.footer a:hover {
  text-decoration: underline;
}

/* -------------✅ Scroll to Top FAB Button------------- */
.scroll-top-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--soft-orange);
  color: var(--white);
  font-size: 22px;
  border: none;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.scroll-top-fab:hover {
  transform: translateY(0px) scale(1.08);
}

.fab-visible {
  opacity: 1;
  transform: translateY(0px);
  pointer-events: auto;
}

.fab-hidden {
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
}

.fab-near-bottom {
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
}

/* -------------✅ WhatsApp FAB Button ------------- */
.whatsapp-fab {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--green);
  color: var(--white);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.whatsapp-fab:hover {
  transform: translateY(0px) scale(1.08);
}

.fab-visible {
  opacity: 1;
  transform: translateY(0px);
  pointer-events: auto;
}

.fab-hidden {
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
}

.fab-near-bottom {
  opacity: 0;
  transform: translateY(40px);
  pointer-events: none;
}

/* ------------- ✅ SCROLL ANIMATION STYLES ------------- */
[data-animate] {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 1s cubic-bezier(0.25, 0.1, 0.25, 1),
    transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}

[data-animate="fade-up"] {
  transform: translateY(40px);
}
[data-animate="fade-down"] {
  transform: translateY(-40px);
}
[data-animate="fade-left"] {
  transform: translateX(-40px);
}
[data-animate="fade-right"] {
  transform: translateX(40px);
}
[data-animate="zoom-in"] {
  transform: scale(0.9);
}
[data-animate="flip-in"] {
  transform: rotateX(90deg);
  transform-origin: top center;
}

[data-animate].visible {
  opacity: 1;
  transform: none;
}
