* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Performance hint for animated elements */
.hero-slide,
.animate-item,
.slider-arrows button {
  will-change: transform, opacity;
}

body {
  font-family: 'Onest', sans-serif;
  background: #F6F2ED;
}

html,
body {
  overflow-x: hidden;
}

/* ================= PAGE LOADER ================= */
#page-loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* inner wrapper */
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* spinning bone */
.loader-inner img {
  width: 88px;
  height: auto;
  animation: boneSpin 1.2s linear infinite;
}

/* loading text */
.loader-text {
  font-family: 'Fredoka', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  color: #02000F;
  opacity: 0.7;
}

/* spin animation */
@keyframes boneSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


/* ================= MODERN NAVBAR ================= */
.modern-header {
  position: fixed;
  margin-top: 30px;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 12px 0;
}

.modern-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 8px 0;
  margin-top: -1px;
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.header-logo img {
  height: 48px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.header-logo:hover img {
  transform: scale(1.05);
}

/* DESKTOP NAV */
.desktop-nav {
  display: none;
}

@media (min-width: 992px) {
  .desktop-nav {
    display: block;
  }
}

.nav-list {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  transition: color 0.3s ease;
  font-family: 'Onest', sans-serif;
}

.modern-header.scrolled .nav-link {
  color: #02000F;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #F8721F;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Call Btn */
.header-call-btn {
  display: none;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

@media (min-width: 768px) {
  .header-call-btn {
    display: flex;
  }
}

.call-icon-box {
  width: 40px;
  height: 40px;
  background: #F8721F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.call-icon-box img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.header-call-btn:hover .call-icon-box {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(248, 114, 31, 0.4);
}

.call-info {
  display: flex;
  flex-direction: column;
}

.call-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Fredoka', sans-serif;
}

.call-number {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.modern-header.scrolled .call-label {
  color: #666;
}

.modern-header.scrolled .call-number {
  color: #02000F;
}

/* Book Btn */
.header-book-btn {
  display: none;
  padding: 10px 24px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 15px;
}

@media (min-width: 992px) {
  .header-book-btn {
    display: inline-block;
  }
}

.header-book-btn:hover {
  background: #fff;
  color: #02000F;
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.modern-header.scrolled .header-book-btn {
  border-color: #02000F;
  color: #02000F;
}

.modern-header.scrolled .header-book-btn:hover {
  background: #02000F;
  color: #fff;
}

/* MOBILE TOGGLE */
.mobile-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.modern-header.scrolled .mobile-toggle .bar {
  background: #02000F;
}

/* MOBILE MENU OVERLAY */
.mobile-menu-container {
  position: fixed;
  inset: 0;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-menu-container.active {
  visibility: visible;
  opacity: 1;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100%;
  background: #fff;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}

.mobile-menu-container.active .mobile-menu-content {
  right: 0;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.mobile-logo {
  height: 40px;
}

.mobile-close {
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: #02000F;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-list a {
  text-decoration: none;
  color: #02000F;
  font-size: 20px;
  font-weight: 600;
  display: block;
  font-family: 'Onest', sans-serif;
}

.mobile-footer {
  margin-top: auto;
}

.mobile-book-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: #F8721F;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  margin-bottom: 24px;
  transition: background 0.2s;
}

.mobile-book-btn:hover {
  background: #e06010;
}

.mobile-contact p {
  font-size: 14px;
  color: #666;
  margin-bottom: 4px;
}

.mobile-phone {
  font-size: 20px;
  font-weight: 700;
  color: #02000F;
  text-decoration: none;
}

/* ================= HERO ================= */

.hero {
  position: relative;
  max-width: 1440px;
  margin: 20px auto;
  min-height: 900px;
  border-radius: 32px;
  overflow: hidden;
}

/* SLIDER */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;

  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 1.2s ease,
    transform 2.5s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* CINEMATIC OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background:
    radial-gradient(
      circle at 65% 45%,
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.65)
    ),
    linear-gradient(
      to right,
      rgba(2, 0, 15, 0.75) 0%,
      rgba(2, 0, 15, 0.45) 40%,
      rgba(2, 0, 15, 0.15) 70%,
      rgba(2, 0, 15, 0) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0,0,0,0) 60%,
      rgba(0,0,0,0.45) 100%
    );
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 220px 80px;
  max-width: 700px;
}

.hero-content h1 {
  font-family: 'Fredoka';
  font-size: 84px;
  line-height: 1.1;
  color: white;
}

.hero-content h1 span {
  color: #F8721F;
}

.hero-content p {
  margin-top: 24px;
  font-size: 18px;
  color: white;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
/* ================= HERO TEXT ANIMATION ================= */

.animate-item {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

/* When slide is active */
.hero.active .animate-item {
  opacity: 1;
  transform: translateY(0);
}

/* Stats Initial Animation */
.stats {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: 0.6s; /* Wait for hero text */
}

body.loaded .stats {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Stats Adjustments */
@media (max-width: 768px) {
  .hero > .stats {
    transition-delay: 0.2s; /* Faster on mobile */
  }
}

/* Hero Content Initial Animation - Staggered */
.about-hero-content h1,
.about-hero-content .breadcrumb {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

body.loaded .about-hero-content h1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

body.loaded .about-hero-content .breadcrumb {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/* Staggered Delays for Reveal */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* Staggered timing */
.hero.active .hero-title {
  transition-delay: 0.15s;
}

.hero.active .hero-desc {
  transition-delay: 0.3s;
}

.hero.active .hero-buttons {
  transition-delay: 0.45s;
}
@media (max-width: 768px) {
  .hero.active .hero-desc {
    display: none !important;
  }
}




/* ================= BUTTONS ================= */

.btn-primary {
  background: #F8721F;
  border: none;
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  border: 1px solid white;
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-buttons a {
    width: 100%;
    max-width: 280px; /* optional – keeps buttons neat */
    text-align: center;
  }
}


/* ================= BUTTON MICRO-INTERACTIONS ================= */

.btn-primary,
.btn-outline {
  position: relative;
  transition:
    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.25s ease,
    color 0.25s ease;
  will-change: transform, box-shadow;
}

/* PRIMARY BUTTON */
.btn-primary {
  box-shadow: 0 10px 25px rgba(248, 114, 31, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 40px rgba(248, 114, 31, 0.35),
    0 0 0 1px rgba(248, 114, 31, 0.15);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 8px 18px rgba(248, 114, 31, 0.35);
}

/* OUTLINE BUTTON */
.btn-outline {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.btn-outline:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}


/* ================= SLIDER ARROWS ================= */

.slider-arrows {
  position: absolute;
  right: 60px;
  bottom: 180px;
  display: flex;
  gap: 16px;
  z-index: 3;
}

.slider-arrows button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  backdrop-filter: blur(6px);

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.slider-arrows img {
  width: 22px;
  transition: transform 0.35s ease;
}

/* Hover effect */
.slider-arrows button:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* Directional nudge */
.slider-arrows button:first-child:hover img {
  transform: translateX(-3px);
}

.slider-arrows button:last-child:hover img {
  transform: translateX(3px);
}

/* Click feedback */
.slider-arrows button:active {
  transform: scale(0.96);
}

/* ================= SCROLL DOWN ================= */



.scroll-down img {
  width: 22px;
  filter: brightness(0);
}
/* ================= HERO BOTTOM ================= */

.hero-bottom {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
}


/* CLIENT GROUP */

.clients {
  display: flex;
  align-items: center;
  gap: 16px;
}

.clients img {
  height: 56px;
}

.clients-text {
  color: #dedede;
  font-size: 16px;
}

.stars {
  color: #F8721F;
  letter-spacing: 3px;
  font-size: 14px;
}

.experience-wrapper {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  z-index: 10;

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.15),
    0 30px 70px rgba(0,0,0,0.45);
}

/* ROTATING TEXT RING */
.experience-text {
  position: absolute;
  inset: 0;

  animation: rotateText 36s linear infinite;
}

@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Individual letters */
.experience-text div {
  position: absolute;
  left: 50%;
  top: 10px;
  transform-origin: 0 60px;

  color: white;
  font-family: 'Onest';
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.6px;

  text-shadow:
    0 2px 6px rgba(0,0,0,0.6),
    0 8px 18px rgba(0,0,0,0.35);
}

/* CENTER STATIC CIRCLE */
.experience-center {
  position: absolute;
  inset: 42px;
  background: white;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 14px 35px rgba(0,0,0,0.35);

  z-index: 2;
}

/* Center arrow icon */
.experience-center img {
  width: 24px;
  height: 24px;
  filter: brightness(0);

  animation: arrowFloat 1.8s ease-in-out infinite;
}


@keyframes arrowFloat {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.85;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


/* ================= STATS ================= */

.stats {
  display: flex;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 4;
}

.hero > .stats {
  position: absolute;
  right: 40px;
  bottom: 40px;
  margin: 0;
  gap: 40px;
  justify-content: flex-end;
}

/* Individual stat */
.stat {
  position: relative;
  padding-left: 16px;
}

/* Subtle vertical accent line */


/* Number */
.stat strong {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-size: 42px;
  font-weight: 500;
  color: #e4a547;
  line-height: 1.1;
}

/* Label */
.stat span {
  font-size: 16px;
  color: #ffffff;
}

@media (max-width: 768px) {
  .stats {
    display: none !important;
  }
}

/* ================= EXPERIENCE BADGE PERFORMANCE TWEAKS ================= */

.experience-wrapper:hover .experience-text {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .experience-text {
    animation-duration: 60s;
  }
}

/* ================= MOBILE HERO POLISH ================= */

@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    border-radius: 0;
    margin: 0;
  }

  .hero-content {
    padding: 140px 24px 0;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 44px;
    line-height: 1.15;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 14px;
  }

  .slider-arrows {
    position: static;
    right: auto;
    bottom: auto;
    margin-top: 16px;
    margin-bottom: 8px;
    justify-content: center;
  }

  .hero-bottom {
    flex-direction: column;
    gap: 24px;
    bottom: 24px;
    align-items: center;
  }

.experience-wrapper {
  position: relative;
  top: -20px;
  left: 20px;          /* move left */
  transform: scale(0.7); /* reduce size */
  transform-origin: top left;
}



  .hero > .stats {
    position: static;
    margin: 70px 24px 0;
    gap: 32px;
    justify-content: flex-start;
  }

  .stat strong {
    font-size: 32px;
  }

  .clients {
    display: none;
  }
}

/* Mobile navbar background only when open */


/* ================= ABOUT SECTION ================= */

.about {
  padding: 10px 0;
  background: #F6F2ED;
}

.about-container {
  max-width: 1440px;
  margin: auto;
  padding: 0 60px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.about-label {
  font-family: 'Fredoka';
  color: #F8721F;
  font-size: 16px;
  font-weight: 500;
}

.about-content h2 {
  margin-top: 16px;
  font-family: 'Fredoka';
  font-size: 56px;
  line-height: 1.2;
  color: #02000F;
}

.about-content p {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.75;
  color: #6C6D71;
  max-width: 520px;
}

/* FEATURES */
.about-features {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px 32px;
}

.about-features div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #4E4E4E;
}

.about-features img {
  width: 20px;
}

/* CTA */
.about-cta {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.about-call {
  display: flex;
  align-items: center;
  gap: 12px;
}

.call-icon-outline {
  width: 48px;
  height: 48px;
  border: 1px solid #A1A4B1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-call p {
  margin-top: -10px;
  font-family: 'Fredoka';
  font-size: 20px;
  font-weight: 500;
  color: #02000F;
}

.about-call span {
  font-size: 16px;
  color: #02000F;
}

/* RIGHT VISUAL */
.about-visual {
  position: relative;
  width: 100%;
}

.about-image {
  width: 100%;
  border-radius: 32px;
 
}



/* BADGE */
.about-badge {
  position: absolute;
  top: -2px;
  right: 1px;
width: 140px;
  height: 130px;
  background: #F8721F;
  color: white;
  padding: 28px 32px;
  border-radius: 24px;

  text-align: left;
  box-shadow: 0 30px 70px rgba(248,114,31,0.45);
}

.about-badge strong {
  font-size: 40px;
  font-weight: 600;
  display: block;
  margin-left: -20px;
}

.about-badge span {
   margin-left: -20px;
  font-size: 18px;
  opacity: 0.95;
   white-space: nowrap; 
}

/* MOBILE */
@media (max-width: 768px) {
  .about-badge {
    right: 16px;
    top: 16px;
    padding: 20px 22px;
  }

  .about-badge strong {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 100px 0;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 24px;
  }

  .about-content h2 {
    font-size: 40px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .about-badge {
  right:4px;
  top: 1px;
padding: 30px;
  transform: scale(0.5);          /* 🔽 reduce size */
  transform-origin: top right;    /* keeps position stable */
}

}

.icon-black {
  filter: brightness(0);
}

.about-label-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

/* Text */
.about-label {
  font-family: 'Fredoka', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #F8721F;
  white-space: nowrap;
}

/* Lines */
.story-line {
  height: 14px;          /* match your SVG height */
  width: auto;
  opacity: 0.9;
}

/* Optional: mirror right line */
.story-line.right {
  transform: scaleX(-1);
}

.about {
  position: relative;
  overflow: hidden;
}

/* Base */
.about-deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

/* CENTER BALL */
.about-ball {
  width: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-80%, -10%);
  opacity: 0.9;
  pointer-events: auto;

  animation: floatBall 6s ease-in-out infinite;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Glow depth behind ball */
.about-ball::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(
    circle,
    rgba(248,114,31,0.35),
    rgba(248,114,31,0.15),
    transparent 70%
  );
  filter: blur(18px);
  z-index: -1;
}

/* Hover interaction */
.about-ball:hover {
  transform: translate(-80%, -14%) scale(1.05);
  filter: drop-shadow(0 18px 40px rgba(248,114,31,0.45));
}

/* PAW (balanced opposite) */
.about-paw {
  width: 90px;
  top: 1%;
  left: 28%;

}

@keyframes floatBall {
  0%   { transform: translate(-80%, -10%) translateY(0); }
  50%  { transform: translate(-80%, -10%) translateY(-10px); }
  100% { transform: translate(-80%, -10%) translateY(0); }
}

/* ================= SCROLL ANIMATION UTILITIES ================= */

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

/* Default Reveal (Up) */
.reveal {
  transform: translateY(40px);
}

/* Directions */
.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

/* Scale */
.reveal-scale {
  transform: scale(0.85);
}

/* Active States */
.reveal.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* ================= SECTION DIVIDER ================= */

.section-divider {
  position: relative;
  height: 120px;
  background: #F6F2ED; /* About background */
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animated line */
.section-divider span {
  width: 0;
  height: 2px;


  transition: width 1.2s ease;
}

/* When visible */
.section-divider.active span {
  width: 280px;
}

/* ================= SERVICES ================= */
.services{
  background: #ffffff;
  padding: 120px 0;
}

.services-inner{
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
}

/* TOP ROW */
.services-head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.section-label{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.section-label span{
  font-family: 'Fredoka', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #F8721F;
  white-space: nowrap;
}

.section-label .label-line{
  height: 14px;
  width: auto;
  opacity: 0.9;
}

.section-label .label-line.right{
  transform: scaleX(-1);
}

.services-heading h2{
  font-family: 'Fredoka', sans-serif;
  font-size: 56px;
  line-height: 1.21;
  font-weight: 600;
  color: #02000F;
}

/* CTA button (services style) */
.services-cta.btn-outline{
  border: 1px solid #A1A4B1;
  color: #02000F;
  background: transparent;
  padding: 16px 28px;
  border-radius: 999px;
  margin-top: 58px; /* matches your layout */
}

/* SLIDER WRAP */
.services-slider{
  position: relative;
  margin-top: 46px;
}

/* TRACK = horizontal scroll (smooth + snap) */
.services-track{
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 10px;
  -webkit-overflow-scrolling: touch;
}

/* hide scrollbar */
.services-track::-webkit-scrollbar{ height: 0; }
.services-track{ scrollbar-width: none; }

/* CARD */
.service-card{
  flex: 0 0 424px;
  height: 500px;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  scroll-snap-align: start;
  transform: translateZ(0);
  transition: transform 450ms ease;
  transform-origin: center center;
}

/* BG image */
.service-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 700ms ease;
}

/* Gradient overlay like figma */
.service-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 0, 15, 0) 0%,
    rgba(2, 0, 15, 0.70) 80%
  );
}

/* Bottom text */
.service-content{
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 52px;
  z-index: 2;
}

.service-content h3{
  font-family: 'Fredoka', sans-serif;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 10px;
}

.service-content p{
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: rgba(255,255,255,0.92);
}



/* Hover polish */
.service-card:hover{
  transform: scale(1.03);
}

.service-card:hover .service-bg{
  transform: scale(1.07);
}

/* ARROWS */
.services-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid #A1A4B1;
  background: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.services-arrow img{
  width: 22px;
  filter: brightness(0);
}

.services-arrow.prev{ left: -2px; }
.services-arrow.next{ right: -2px; }

.services-arrow:hover{
  transform: translateY(-50%) scale(1.06);
  background: rgba(255,255,255,0.85);
  box-shadow: 0 14px 28px rgba(0,0,0,0.12);
}

.services-arrow:active{
  transform: translateY(-50%) scale(0.96);
}

/* DOTS */
.services-dots{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.services-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #A1A4B1;
  border: none;
  cursor: pointer;
  position: relative;
}

.services-dot.is-active{
  background: #02000F;
}

.services-dot.is-active::after{
  content:"";
  position:absolute;
  inset: -8px;
  border-radius: 999px;
  border: 1px solid #A1A4B1;
}

@media (min-width: 1025px){
  .page-services .services-track{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    scroll-snap-type: none;
    padding: 0;
  }
  .page-services .service-card{
    flex: initial;
    width: 100%;
    height: 520px;
  }
}

/* RESPONSIVE */
@media (max-width: 1024px){
  .services-inner{ padding: 0 24px; }
  .services-head{ flex-direction: column; }
  .services-cta.btn-outline{ margin-top: 0; }
  .service-card{ flex-basis: 360px; height: 470px; }
  .services-arrow{ display: none; } /* swipe/scroll on tablet */
}

@media (max-width: 640px){
  .services{ padding: 90px 0; }
  .services-heading h2{ font-size: 40px; }
  .service-card{ flex-basis: 84vw; height: 460px; }
  .service-content{ left: 22px; right: 22px; bottom: 28px; }
}

/* ================= SERVICES CONTROLS ================= */

.services-controls{
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* arrows */
.services-nav{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #A1A4B1;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s ease;
}

.services-nav img{
  width: 18px;
  filter: brightness(0);
}

.services-nav:hover{
  background: #02000F;
}

.services-nav:hover img{
  filter: brightness(1);
}

.services-nav:active{
  transform: scale(0.94);
}

/* dots */
.services-dots{
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 14px;
}

.services-dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #A1A4B1;
  border: none;
  cursor: pointer;
  position: relative;
}

@media (min-width: 1025px){
  .page-services .services-controls{
    display: none;
  }
}

.services-dot.is-active{
  background: #02000F;
}

.services-dot.is-active::after{
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid #A1A4B1;
}

/* ================= SERVICE CHIP ================= */

.service-chip {
  position: absolute;
  top: 8%;
  right: 28px;
  width: 55px;
  height: 55px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #232020;
  background: transparent;
  text-decoration: none;

  cursor: pointer;
  transform: translateY(-50%);

  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

@media (max-width: 768px) {
  .service-chip {
    display: none;
  }
}

/* arrow icon */
.service-chip img {
  margin-top: 5px;
  width: 30px;
  height: auto;
  filter: brightness(0);
  transform: rotate(-40deg);
}

/* ================= Why Choose US ================= */
.why-choose {
  padding: 120px 0;
  background: #F6F2ED;
}

.container {
  max-width: 1200px;
  margin: auto;
  position: relative;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

/* Wrapper aligns everything perfectly */
.eyebrow-wrap {
  display: flex;
  align-items: center;     /* 🔑 key fix */
  justify-content: center;
  gap: 14px;
}

/* Text + bone */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #F8721F;
  font-family: 'Fredoka', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;         
  white-space: nowrap;
}

/* Bone icon */
.eyebrow-icon {
  
  height: auto;
  display: block;
}

/* Lines */
.label-line {
  display: block;          
  height: 14px;          
}


.section-header h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: 56px;
  margin: 12px 0;
}

.section-header p {
  color: #6C6D71;
  font-size: 18px;
}

/* Arc */
.arc-wrapper {
  position: relative;
  width: 1180px;
  height: 430px;
  margin: 0 auto;
}


.arc-border {
  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 430px;

  border: 2px solid white;
  border-bottom: none;

  border-top-left-radius: 510px;
  border-top-right-radius: 510px;
}


.point {
  position: absolute;
  width: 197px;
  text-align: center;
  font-family: 'Fredoka', sans-serif;
}

.point .num {
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 500;
  margin: 0 auto 10px;
}

.point p {
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  color: #02000F;
}

.p1 { left: -95px; bottom: -80px; }
.p2 { left: -4px; bottom: 143px; }
.p3 { left: 507px; bottom: 321px; }
.p4 { right: -4px; bottom: 143px; }
.p5 { right: -95px; bottom: -80px; }

.arc-cta {
  position: absolute;
  left: 50%;
  bottom: 124px;
  transform: translateX(-50%);

  padding: 16px 32px;
  background: #F8721F;
  color: white;
  border-radius: 50px;
  text-decoration: none;

  font-family: 'Onest', sans-serif;
  font-size: 16px;
}


.why-image {
  width: 707px;
  height: 184px;
  margin: -60px auto 0; 
  position: relative;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.why-image {
  animation: floatUp 0.8s ease both;
}

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


.why-choose {
  position: relative;
  overflow: hidden;
}


.why-decorations .deco {
  position: absolute;
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
  
}


.deco.heart {
  width: 42px;
  top: 80px;
  left: 120px;
}

.deco.home {
 width: 44px;
  bottom: 200px;
  left: 160px;


}

.deco.bandage {
   width: 48px;
  top: 220px;
  right: 140px;

}

.deco.bowl {
  width: 50px;
  bottom: 120px;
  right: 220px;
}

.deco.bone {
  width: 50px;
  top: 140px;
  left: 100%;
  transform: translateX(-50%);
  
}

@keyframes floatSoft {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.why-decorations .deco:not(.bone) {
  animation: floatSoft 6s ease-in-out infinite;
}

@media (max-width: 768px) {
 

  .deco.bone {
    width: 80px;
    top: 100px;
  }

  .deco.home {
    width: 42px;
    top: -40px;
    left: -10px;
  }
  .deco.heart {
  width: 42px;
  top: 180px;
  left: 20px;
}
.deco.bandage {
  width: 48px;
  top: 620px;
  right: 40px;
}
.deco.bowl {
  width: 50px;
  bottom: 320px;
  right: 320px;
}
}


/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

  .why-choose {
    padding: 72px 16px;
  }

  /* Header */
  .section-header h2 {
    font-size: 36px;
    line-height: 44px;
  }

  .section-header p {
    font-size: 16px;
    margin-top: 8px;
  }

  /* Eyebrow */
  .eyebrow-wrap {
    gap: 8px;
  }

  .label-line {
    width: 48px;
    height: auto;
  }

  /* ARC → OFF */
  .arc-border {
    display: none;
  }

  .arc-wrapper {
    width: 100%;
    height: auto;
    margin-top: 40px;

    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  /* Points become stacked cards */
  .point {
    position: static;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
  }

  .point .num {
    margin-bottom: 8px;
  }

  .point p {
    font-size: 20px;
    line-height: 28px;
  }

  /* CTA */
  .arc-cta {
    position: static;
    transform: none;
    margin: 24px auto 0;
    display: inline-block;
  }

  /* Image */
  .why-image {
    width: 100%;
    height: auto;
    margin-top: 40px;
  }

  .why-image img {
    height: auto;
  }


}
@media (max-width: 768px) {

  .mobile-line-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 56px;
    padding: 40px 0;
  }

  /* Vertical line */
  .mobile-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: white;
  }

  /* Each point */
  .point {
    position: relative;
    display: flex;
    flex-direction: column;      /* 🔑 STACK */
    align-items: center;
    text-align: center;
  }

  /* Number on the line */
  .point .num {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 20px;
    font-weight: 500;

    position: relative;
    z-index: 2;
  }

  /* Text BELOW number */
  .point p {
    margin-top: 12px;           /* space between number & text */
    max-width: 260px;
    font-size: 18px;
    line-height: 26px;
    color: #02000F;
  }

  /* Reset desktop offsets completely */
  .p1, .p2, .p3, .p4, .p5 {
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    top: auto !important;
  }
}


@media (max-width: 768px) {

  .mobile-line-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 34px;              /* 👈 controls spacing between points */
    padding: 24px 0;        /* 👈 creates start/end breathing space */
  }

  /* Vertical line */
  .mobile-line-wrap::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 24px;              /* 👈 starts at first point */
    bottom: 24px;           /* 👈 ends at last point */
    width: 2px;
    background: white;
    transform: translateX(-50%);
  }

}
@media (max-width: 768px) {

  .point {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 320px;
    margin: 0 auto;
  }

  .point .num {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 20px;
    font-weight: 500;
    flex-shrink: 0;

    /* 👇 THIS is the vertical adjustment */
    transform: translateY(-6px);  /* try -4px to -8px */
    z-index: 1;
  }

  .point p {
    font-size: 18px;
    line-height: 26px;
    color: #02000F;
    margin: 0;
  }

}



.marquee-wrap {
  margin-top: -80px ;
  width: 100%;
  height: 82px;
  overflow: hidden;
  position: relative;
  isolation: isolate; /* ⬅️ important */

  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}


/* TRACK */
.marquee-track {
  display: flex;
  
  width: max-content;
  animation: marquee 30s linear infinite;
}

/* ITEM */
.marquee-item {
  position: relative;
  height: 82px;
  padding-left: 32px;
  padding-right: 36px;

  display: flex;
  align-items: center;

  border-radius: 28px;
  border: 1px solid #A1A4B1;

}

/* WIDER CHIP (Professionalism etc.) */
.marquee-item.wide {
  padding-right: 56px;
}

/* LEFT ICON CAPSULE */
.marquee-icon {
  position: absolute;
  left: -14px;
  top: 6px;

  width: 28px;
  height: 70px;
  border-radius: 20px;
  outline: 1px solid #A1A4B1;
  outline-offset: -1px;

  display: grid;
  place-items: center;

}

/* ICON */
.marquee-icon img {
  width: 22px;
  height: auto;
}

/* TEXT */
.marquee-text {
  font-family: 'Fredoka', sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 36px;
  color: #02000F;
  white-space: nowrap;
}

/* ANIMATION */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* PAUSE ON HOVER */
.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}


.how-we-help {
  padding: 140px 60px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* GRID */
.how-grid {
  display: grid;
  grid-template-columns: 645px 1fr;
  gap: 60px;
  margin-top: 80px;
}

/* LEFT VISUAL */
.how-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.how-compare {
  position: relative;
  width: 100%;
  height: 570px;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
    z-index: 1;
}

.how-compare > * {
  grid-area: 1/ 1;
}

.how-before,
.how-after {
  width: 100%;
  height: 100%;
}

.how-before img,
.how-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* masking like comparison.md */
:root {
  --how-pos: 50%;
}

.how-before {
  -webkit-mask: linear-gradient(to right, #000 0, var(--how-pos), transparent 0);
  mask: linear-gradient(to right, #000 0, var(--how-pos), transparent 0);
}

.how-after {
  -webkit-mask: linear-gradient(to right, transparent 0, var(--how-pos), #000 0);
  mask: linear-gradient(to right, transparent 0, var(--how-pos), #000 0);
}

.how-compare input[type="range"] {
  z-index: 2;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.how-compare input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  inline-size: 40px;
  block-size: 40px;
  border-radius: 50%;
  background: transparent;
  border: none;
  box-shadow: none;
}

.how-compare input[type="range"]::-moz-range-thumb {
  appearance: none;
  inline-size: 40px;
  block-size: 40px;
  border-radius: 50%;
  background: transparent;
  border: none;
  box-shadow: none;
}

/* visual handle with arrows */
.how-handle{
  position:absolute;
  top:50%;
  left:50%;
  width:80px;
  height:80px;
  border-radius:50%;
  background:#F8721F;
  border:4px solid #fff;
  box-shadow:0 0 0 2px rgba(0,0,0,0.05);
  transform:translate(-50%,-50%);
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
}

.how-handle .arrow{
  width:0;
  height:0;
}

.how-handle .arrow.left{
  margin-right:6px;
  border-top:7px solid transparent;
  border-bottom:7px solid transparent;
  border-right:16px solid #fff;
}

.how-handle .arrow.right{
  margin-left:6px;
  border-top:7px solid transparent;
  border-bottom:7px solid transparent;
  border-left:16px solid #fff;
}

/* RIGHT STEPS */
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.how-step {
  position: relative;
  background: #F6F2ED;
  padding: 32px 56px 32px 88px;
  border-radius: 16px;
}

/* Icon */
.step-icon {
  position: absolute;
  left: 32px;
  top: 32px;
  width: 32px;
  height: 32px;

}

.step-icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Content */
.step-content h3 {
  font-family: 'Fredoka';
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
}

.step-content p {
  font-family: 'Onest';
  font-size: 16px;
  line-height: 24px;
  color: #6C6D71;
}

/* Step Number */
.step-num {
  position: absolute;
  right: 32px;
  top: 32px;
  font-family: 'Fredoka';
  font-size: 32px;
  font-weight: 500;
  color: #02000F;
}


.how-pet-group{
  margin-top: -42px;
  display: flex;
  justify-content: flex-end;
}

.how-pet-group img{
  width: 260px;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* floating decorative icons around how-we-help */
.how-decor{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.how-decor-icon{
  position: absolute;
  width: 40px;
  height: 40px;
  opacity: 0.9;
}

.how-decor-home{
  top: 36px;
  left: 48%;
}

.how-decor-heart{
  top: 120px;
  right: 16%;
}

.how-decor-bowl{
  top: 260px;
  left: 14%;
}

.how-decor-bone-back{
  top: 340px;
  right: 10%;
}

.how-decor-bandage{
  bottom: 80px;
  left: 18%;
}

.how-decor-ball{
  top: 240px;
  right: 18%;
}


/* ================= HOW WE HELP – MOBILE ================= */
@media (max-width: 768px) {

  /* Section padding */
  .how-we-help {
    padding: 80px 16px;
  }

  /* Header */
  .how-we-help .section-header h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .how-we-help .section-header p {
    font-size: 15px;
  }

  /* GRID → STACK */
  .how-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 48px;
  }

  /* IMAGE COMPARE */
  .how-compare {
    height: 360px;
    border-radius: 14px;
  }

  .how-handle {
    width: 64px;
    height: 64px;
  }

.how-badge {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);

  z-index: 10;              /* 🔥 important */
  pointer-events: none;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-family: Onest;
  font-weight: 500;
  color: #02000F;

  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

  
  .how-handle .arrow.left {
    border-right-width: 12px;
  }

  .how-handle .arrow.right {
    border-left-width: 12px;
  }

  /* STEPS */
  .how-steps {
    gap: 20px;
  }

  .how-step {
    padding: 24px 20px 24px 64px;
    border-radius: 14px;
  }

  /* Icon */
  .step-icon {
    left: 20px;
    top: 24px;
    width: 28px;
    height: 28px;
  }

  /* Text */
  .step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .step-content p {
    font-size: 15px;
    line-height: 22px;
  }

  /* Step number */
  .step-num {
    font-size: 24px;
    right: 20px;
    top: 20px;
    opacity: 0.6;
  }

  /* Pet group image */
  .how-pet-group {
    margin-top: 0;
    margin-bottom: -81px;  
    justify-content: center;
  }

  .how-pet-group img {
    width: 200px;
  }

  /* DECOR ICONS – SIMPLIFY */
  .how-decor-icon {
    width: 28px;
    height: 28px;
  
  }

  .how-decor-home {
    top: 20px;
    left: 70%;
  }

  .how-decor-heart {
    top: 80px;
    right: 8%;
  }

  .how-decor-bowl {
    top: auto;
    bottom: 140px;
    left: 8%;
  }

  .how-decor-bone-back {
            top: 40px;
    right: 50%;
  }

  .how-decor-bandage {
            top: 40px;
    left: 20%;
  }

  .how-decor-ball {
    display: none;
  }
}

/* ================= Our Success Stories ================= */
.stories-section {
  padding: 120px 60px;
  background: #F6F2ED;
  position: relative;
  overflow: hidden;
}

.stories-header {
  text-align: center;
  margin-bottom: 72px;
}

.stories-header .eyebrow {
  color: #F8721F;
  font-weight: 500;
  font-size: 16px;
}

.stories-header h2 {
  font-family: Fredoka;
  font-size: 56px;
  margin: 16px 0;
}

.stories-header p {
  color: #6C6D71;
}

/* decorative icons in stories section */
.stories-decor{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stories-icon{
  position: absolute;
  width: 40px;
  height: 40px;
 
}

.stories-icon-home{ top:167px; left: 12%; }
.stories-icon-heart{ top: 120px; right: 14%; }
.stories-icon-bowl{ top: 75px; left: 6%; }
.stories-icon-bone-back{ top: 340px; right: 8%; }
.stories-icon-bandage{ top: 43px; left: 18%; }
.stories-icon-ball{ top: 30px; right: 20%; }

/* GRID */
.stories-grid {
  display: grid;
  grid-template-columns: 427px 225px 427px 225px;
  gap: 24px;
  justify-content: center;
}

/* CARD */
.story-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

/* SIZES */
.story-card.large {
  height: 468px;
}

.story-card.small {
  height: 225px;
}

/* COLUMN STACK */
.story-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(2,0,15,0.55);
  opacity: 0;
  display: grid;
  place-items: center;
  transition: opacity .4s ease;
}

.icon {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.icon img{
  width: 28px;
  height: 28px;
}

/* HOVER */
.story-card:hover img {
  transform: scale(1.08);
}

.story-card:hover .overlay {
  opacity: 1;
}

/* INITIAL STATE */
.story-card {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition:
    opacity 0.8s cubic-bezier(.22,1,.36,1),
    transform 0.8s cubic-bezier(.22,1,.36,1);
  will-change: transform, opacity;
}

/* ACTIVE STATE */
.story-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* LIGHTBOX FOR STORIES */
.story-lightbox{
  position: fixed;
  inset: 0;
  background: rgba(2,0,15,0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.story-lightbox.is-open{
  display: flex;
}

.story-lightbox-backdrop{
  position: absolute;
  inset: 0;
}

.story-lightbox-img{
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  transform-origin: center center;
  transition: transform .2s ease;
  position: relative;
  z-index: 1;
}

.story-lightbox-close{
  position: absolute;
  top: 32px;
  right: 32px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
/* ================= STORIES – MOBILE ================= */
@media (max-width: 768px) {

  /* Section spacing */
  .stories-section {
    padding: 80px 16px;
  }

  /* Header */
  .stories-header {
    margin-bottom: 48px;
  }

  .stories-header .eyebrow {
    font-size: 14px;
  }

  .stories-header h2 {
    font-size: 34px;
    line-height: 42px;
    margin: 12px 0;
  }

  .stories-header p {
    font-size: 15px;
  }

  /* GRID → SINGLE COLUMN */
  .stories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Card sizing */
  .story-card.large {
    height: 320px;
    border-radius: 18px;
  }

  .story-card.small {
    height: 200px;
    border-radius: 18px;
  }

  /* Stack small cards normally */
  .story-column {
    gap: 20px;
  }

  /* Overlay icon */
  .icon {
    width: 52px;
    height: 52px;
  }

  .icon img {
    width: 24px;
    height: 24px;
  }

  /* Hover → tap friendly */
  .story-card:hover img {
    transform: none;
  }

  .story-card:hover .overlay {
    opacity: 0;
  }

  /* Make overlay visible on tap focus (mobile) */
  .story-card:active .overlay,
  .story-card:focus-within .overlay {
    opacity: 1;
  }

  /* Decorative icons – reduce clutter */
  .stories-icon {
    width: 28px;
    height: 28px;
  
  }

  .stories-icon-home {
    top: 40px;
    left: 70%;
  }

  .stories-icon-heart {
    top: 90px;
    right: 10%;
  }

  .stories-icon-bowl {
      top: 90px;
    left: 10%;
  }

  .stories-icon-bone-back {
    display: none;
  }

  .stories-icon-bandage {
    bottom: 80px;
    left: 10%;
    top: auto;
  }

  .stories-icon-ball {
    display: none;
  }

  /* Lightbox tweaks */
  .story-lightbox-img {
    max-width: 92vw;
    max-height: 80vh;
    border-radius: 18px;
  }

  .story-lightbox-close {
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}
/* ================= STORIES – MOBILE CAROUSEL ================= */
@media (max-width: 768px) {

  /* Grid becomes horizontal scroll */
  .stories-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 4px 4px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  /* Hide scrollbar */
  .stories-grid::-webkit-scrollbar {
    display: none;
  }
  .stories-grid {
    scrollbar-width: none;
  }

  /* Each item snaps */
  .story-card,
  .story-column {
    scroll-snap-align: center;
    flex-shrink: 0;
  }

  /* Single card width */
  .story-card.large,
  .story-card.small {
    width: 78vw;
    max-width: 320px;
    height: 380px;
    border-radius: 18px;
  }

  /* Stack small cards inside carousel */
  .story-column {
    width: 78vw;
    max-width: 320px;
    gap: 16px;
  }

  .story-column .story-card.small {
    width: 100%;
    height: 180px;
  }

  /* Disable hover scaling on mobile */
  .story-card:hover img {
    transform: none;
  }

  .story-card:hover .overlay {
    opacity: 0;
  }

  /* Tap feedback */
  .story-card:active .overlay {
    opacity: 1;
  }
}

/* ================= Card =================  */
.custom-requirements {
  padding: 80px 0;
  display: flex;
  justify-content: center;
  background: white;
}

.custom-bg {
  width: 1386.72px;
  height: 612.5px;
  position: relative;
  border-radius: 30px;
  background-image: url("assets/solutions_card.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}


/* Main layout */
.custom-inner {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
}

/* Left visual block (empty in Figma) */
.custom-left {
  width: 637.89px;
}

/* Right content */
.custom-content {
  width: 748.83px;
  padding-top: 120px;
  color: white;
}

/* Pill */
.custom-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 24px;
  border-radius: 100px;
  border: 2px solid white;
  font-family: 'Fredoka', sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 24px;
}

/* Heading */
.custom-content h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 67.98px;
  margin: 0 0 32px;
}

/* Description */
.custom-content p {
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  line-height: 28px;
  max-width: 668px;
  margin-bottom: 40px;
}

/* CTA Button */
.custom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 244.95px;
  height: 56px;
  background: white;
  border-radius: 50px;
  color: #F8721F;
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255,255,255,0.25);
}

/* decorative icons around card */
.custom-decor{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.custom-icon{
  position: absolute;
  width: 40px;
  height: 40px;
  opacity: 0.16;
}

.custom-icon-home{ top: 60px; left: 10%; }
.custom-icon-heart{ top: 40px; right: 16%; }
.custom-icon-bowl{ bottom: 120px; left: 6%; }
.custom-icon-bone-back{ bottom: 80px; right: 8%; }
.custom-icon-bandage{ top: 220px; right: 4%; }
.custom-icon-ball{ top: 260px; left: 70%; }



/* ================= CUSTOM REQUIREMENTS – MOBILE ================= */
@media (max-width: 768px) {

  /* Section wrapper */
  .custom-requirements {
    padding: 40px 16px;
  }

  /* Card */
  .custom-bg {
    width: 100%;
    height: auto;
    min-height: 520px;
    border-radius: 20px;
    background-position: center top;
    
  }

  

  /* Inner layout → stack */
  .custom-inner {
    flex-direction: column;
    height: auto;
  }

  /* Remove empty left block */
  .custom-left {
    display: none;
  }

  /* Content */
  .custom-content {
    width: 100%;
    padding: 64px 24px 56px;
    text-align: center;
  }

  /* Pill */
  .custom-pill {
    margin: 0 auto 20px;
    font-size: 14px;
    height: 34px;
    padding: 0 20px;
  }

  /* Heading */
  .custom-content h2 {
    font-size: 34px;
    line-height: 42px;
    margin-bottom: 20px;
  }

  /* Description */
  .custom-content p {
    font-size: 15px;
    line-height: 24px;
    max-width: 100%;
    margin-bottom: 32px;
  }

  /* CTA */
  .custom-btn {
    width: 100%;
    max-width: 260px;
    height: 52px;
    margin: 0 auto;
    font-size: 15px;
  }

  /* Pet icon strip */
  .pet-icon-strip {
    justify-content: center !important;
    margin-top: 28px;
    gap: 12px;
  }

  .pet-icon-strip img {
    width: 26px;
    height: 26px;
  }

  /* Decorative icons – reduce noise */
  .custom-icon {
    width: 26px;
    height: 26px;
    opacity: 0.1;
  }

  .custom-icon-bone-back,
  .custom-icon-ball {
    display: none;
  }

  .custom-icon-home {
    top: 24px;
    left: 70%;
  }

  .custom-icon-heart {
    top: 48px;
    right: 10%;
  }

  .custom-icon-bowl {
    bottom: 40px;
    left: 12%;
  }

  .custom-icon-bandage {
    display: none;
  }
}

/* Parallax layers prep */
.custom-bg {
  will-change: transform;
  transform: translateZ(0);
}

.custom-bg,
.custom-content,
.custom-pill,
.custom-content h2,
.custom-content p,
.custom-btn,
.pet-icon-strip {
  will-change: transform, opacity;
}


/* ================= FAQ =================  */
.faq-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  padding: 120px 60px;
}

.faq-eyebrow {
  color: #F8721F;
  font-family: Fredoka;
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}

.faq-header h2 {
  font-family: Fredoka;
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item.active {
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.faq-index {
  font-family: Fredoka;
  font-weight: 500;
}

.faq-title {
  flex: 1;
  text-align: left;
  font-family: Fredoka;
  font-size: 18px;
  font-weight: 500;
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 24px 24px;
  color: #6C6D71;
  line-height: 28px;
  font-family: Onest;
}

.faq-right img {
  width: 100%;
  border-radius: 32px;
  object-fit: cover;
}
/* ================= FAQ – MOBILE ================= */
@media (max-width: 768px) {

  .faq-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 6px;
  }

  /* Header */
  .faq-header h2 {
    font-size: 34px;
    line-height: 42px;
    margin-bottom: 32px;
  }

  /* FAQ items */
  .faq-question {
    padding: 18px 18px;
    gap: 12px;
  }

  .faq-index {
    font-size: 14px;
  }

  .faq-title {
    font-size: 16px;
    line-height: 22px;
  }

  .faq-icon {
    font-size: 18px;
  }

  .faq-answer p {
    padding: 0 18px 18px;
    font-size: 15px;
    line-height: 24px;
  }

  /* Right image */
  .faq-right img {
    border-radius: 20px;
  }
}
/* ================= FAQ ANSWER ANIMATION ================= */

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

/* When active */
.faq-item.active .faq-answer p {
  opacity: 1;
  transform: translateY(0);
}

/* ================= FAQ TITLE VISIBILITY ================= */

/* Desktop default */
.faq-mobile {
  display: none;
}

/* Mobile */
@media (max-width: 768px) {

  .faq-desktop {
    display: none;
  }

  .faq-mobile {
    display: block;
    text-align: center;
  }

  .faq-header {
    text-align: center;
  }
}

/* ================= FOOTER =================  */
.site-footer {
  background: #1F1F1F;
  color: #fff;
  padding: 100px 60px 30px;
  position: relative;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 80px;
  max-width: 1440px;
  margin: auto;
}

.footer-logo {
  width: 168px;
  margin-bottom: 24px;
}

.footer-desc {
  color: #ccc;
  line-height: 26px;
  margin-bottom: 32px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 50px;
  height: 50px;
  background: #29282B;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  transition: background 0.3s;
}

.footer-social a:hover {
  background: #F8721F;
}

/* CONTACT */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: center;
}

.contact-item .icon {
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #F8721F;
  flex-shrink: 0;
}

.contact-item small {
  font-size: 12px;
  opacity: 0.7;
}

.contact-item strong {
  font-family: Fredoka;
  font-size: 20px;
}

.footer-photo { 
  position: absolute;
  bottom: 0;
  
  right: 40%;
  pointer-events: none;
}

.footer-photo img {
  max-width: 320px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* 🔥 HIDE ON MOBILE */
@media (max-width: 768px) {
  .footer-photo {
    display: none;
  }
}


/* MAP COLUMN (replaces subscribe) */
.footer-map h4{
  font-family: Fredoka;
  font-size: 20px;
  margin-bottom: 18px;
}

.map-tabs{
  display: inline-flex;
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  background: #26222F;
  margin-bottom: 16px;
}

.map-tabs button{
  border: none;
  padding: 8px 16px;
  border-radius: 999px;
  background: transparent;
  color: #A1A4B1;
  font-family: 'Onest', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.25s ease,color 0.25s ease;
}

.map-tabs button.is-active{
  background: #F8721F;
  color: #ffffff;
}

.map-frame{
  margin-top: 8px;
  width: 100%;
  max-width: 360px;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.map-frame iframe{
  width: 100%;
  height: 100%;
  border: 0;
}

/* BOTTOM BAR */
.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-bottom span {
  color: #F8721F;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
}
@media (max-width: 992px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  /* Reorder for mobile/tablet: Brand -> Map -> Contact */
  .footer-brand {
    order: 1;
  }
  .footer-map {
    order: 2;
  }
  .footer-contact {
    order: 3;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ================= FOOTER – MOBILE POLISH ================= */
@media (max-width: 768px) {

  .site-footer {
    padding: 72px 16px 24px;
  }

  .footer-inner {
    gap: 48px;
    text-align: center;
  }

  /* Brand section */
  .footer-logo {
    margin: 0 auto 20px;
  }

  .footer-desc {
    margin: 0 auto 28px;
    max-width: 100%;
  }

  .footer-social {
    justify-content: center;
  }

  /* Contact section */
  .footer-contact {
    align-items: center;
  }

  .contact-item {
    justify-content: center;
    text-align: left;
    max-width: 320px;
  }

  .contact-item strong {
    font-size: 18px;
  }

  /* Map section */
  .footer-map h4 {
    text-align: center;
  }

  .map-tabs {
    justify-content: center;
  }

  .map-frame {
    margin: 12px auto 0;
    max-width: 100%;
    height: 200px;
  }

  /* Bottom bar */
  .footer-bottom {
    margin-top: 40px;
    text-align: center;
  }
}

.map-frame:hover {
  transform: translateY(-4px);
  transition: transform 0.3s ease;
}


.footer-top-shape {
  width: 100%;
  line-height: 0;           
  overflow: hidden;
  position: relative;
  z-index: 2;
      margin-bottom: -1px;
}

.footer-top-shape img {
  width: 100%;
  height: auto;
  display: block;
}

 /* =================ABOUT HERO ================= */
 .about {
  background: white;
 
}
 .about-hero {
  position: relative;
  padding: 32px;

  background: white;
}


.about-hero-bg {
  height: 500px;
  border-radius: 32px;
  background: url("./assets/about_header_bg.webp") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}



.about-mask {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, 820px);
  pointer-events: none;
}





.logo {
  font-weight: 700;
}

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-family: Onest;
  font-size: 16px;
  opacity: 0.9;
}

.main-nav a.active {
  opacity: 1;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.call-label {
  font-family: Fredoka;
  font-size: 18px;
}

.call-number {
  font-family: Onest;
  font-size: 16px;
}

.btn-outline {
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  font-family: Onest;
}

/* HERO CONTENT */
.about-hero-content {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
}

.about-hero-content h1 {
  font-family: Fredoka;
  font-size: 56px;
  color: white;
  margin-bottom: 120px;
}

/* BREADCRUMB */
.breadcrumb {
  margin-bottom: -220px;
  padding: 20px 48px;
  border-radius: 12px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-family: Fredoka;
  font-size: 24px;
}

.breadcrumb a {
  color: #02000F;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #F8721F;
}

.breadcrumb .current {
  color: #F8721F;
}

.divider {
  color: #02000F;
}

/* ================= MOBILE IMPROVEMENTS ================= */
@media (max-width: 768px) {

  .about-hero {
    padding: 16px;
  }

  .about-hero-bg {
    height: 300px;              /* smaller hero */
    border-radius: 20px;
  }

  /* 🔥 Hide mask on mobile */
  .about-mask {
    display: none;
  }

  .about-hero-content {
    padding: 0 16px;
  }

  .about-hero-content h1 {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 24px;        /* remove big gap */
  }

  /* Breadcrumb fixes */
  .breadcrumb {
    margin-bottom: 0;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 10px;
    background: white;          /* improves contrast */
  }

  .divider {
    font-size: 14px;
  }
}


/* ================= ABOUT US CONTENT ================= */
.about-section {
  padding: 120px 60px;
  position: relative;
  background: url(./assets/about_content_bg.svg);
}

.container {
  max-width: 1440px;
  margin: auto;
  position: relative;
}

/* DECOR */
.about-decor {
  position: absolute;
}
.decor-1 { top: 120px; right: 280px; }
.decor-2 { top: -79px; right: 40px; }

/* HEADER */
.about-pill {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 100px;
  border: 2px solid #F8721F;
  color: #F8721F;
  font-family: Fredoka;
  font-size: 16px;
  margin-bottom: 16px;
}

.about-header h2 {
  font-family: Fredoka;
  font-size: 56px;
  line-height: 68px;
  color: #02000F;
}

/* SLIDER */
.about-row {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  align-items: center;
}

.about-photo img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

.about-mission h3 {
  font-family: Fredoka;
  font-size: 28px;
  margin-bottom: 16px;
}

.about-mission p {
  font-family: Onest;
  font-size: 16px;
  line-height: 26px;
  color: #4E4E4E;
  margin-bottom: 24px;
}

/* FEATURES */
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;   
  margin-bottom: 16px;

  font-family: Onest;
  font-size: 16px;
  line-height: 26px;        
  color: #4E4E4E;
}

/* CHECK ICON */
.feature-list .dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: url("./assets/about_content_check.svg") no-repeat center;
  background-size: contain;

  margin-top: -4px;        
  flex-shrink: 0;            
}



.about-header {
  max-width: 720px;       
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
}

.about-title {
  margin-top: 12px;
  text-align: left;       
}

/* ================= ABOUT SECTION — MOBILE ================= */
@media (max-width: 768px) {

  .about-section {
    padding: 64px 16px;
    background-position: center top;
    background-size: cover;
  }

  .container {
    padding: 0;
  }

  /* HEADER */
  .about-header {
    max-width: 100%;
  }

  .about-pill {
    font-size: 14px;
    padding: 6px 16px;
    margin-bottom: 12px;
  }

  .about-header h2 {
    font-size: 32px;
    line-height: 40px;
  }

  /* ROW STACK */
  .about-row {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* IMAGE */
  .about-photo img {
    border-radius: 20px;
  }

  /* CONTENT */
  .about-mission h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .about-mission p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 20px;
  }

  /* FEATURES */
  .feature-list li {
    gap: 12px;
    font-size: 15px;
    line-height: 24px;
  }

  .feature-list .dot {
    width: 28px;
    height: 28px;
    margin-top: 2px;
  }
}


 /* ================= OUR HISTORY =================  */
 .history-section {
  padding: 120px 60px;
  background: #fff;
}

.history-header {
  text-align: center;
  margin-bottom: 60px;
}

.history-pill {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 100px;
  border: 1px solid #F8721F;
  color: #F8721F;
  font-family: Fredoka;
  font-size: 16px;
  margin-bottom: 12px;
}

.history-header h2 {
  font-family: Fredoka;
  font-size: 56px;
  line-height: 68px;
  color: #02000F;
}

.history-slider {
  position: relative;
  overflow: hidden;
}

.history-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.history-card {
  text-align: center;
  position: relative;
}

.year-pill {
  width: fit-content;
  margin: 0 auto 20px;
  padding: 10px 26px;
  border-radius: 48px;
  border: 1px solid #A1A4B1;
  font-family: Fredoka;
  font-size: 24px;
  font-weight: 600;
  color: #02000F;
}

.history-logo {
  margin-bottom: 16px;
}

.history-image {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 24px;
}

.history-card p {
  font-family: Onest;
  font-size: 16px;
  line-height: 28px;
  color: #6C6D71;
  max-width: 260px;
  margin: auto;
}

/* CONTROLS */
.history-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
}

.history-controls .nav {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #A1A4B1;
  background: #fff;
  font-size: 18px;
  cursor: pointer;
}

.dots {
  display: flex;
  gap: 12px;
}

.dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #A1A4B1;
}

.dots .dot.active {
  background: #02000F;
  box-shadow: 0 0 0 6px #fff, 0 0 0 7px #A1A4B1;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .history-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .history-header h2 {
    font-size: 36px;
    line-height: 44px;
  }

  .history-track {
    grid-template-columns: 1fr;
  }
}

 /* ================= Contact US =================  */
 .contact-section {
  padding: 120px 60px;
  background: #F6F2ED;
}

.contact-container {
  max-width: 1320px;
  margin: auto;
}

.contact-header {
  max-width: 600px;
  margin-bottom: 60px;
}

.contact-pill {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 100px;
  border: 2px solid #F8721F;
  color: #F8721F;
  font-family: Fredoka;
  font-size: 16px;
  margin-bottom: 16px;
}

.contact-header h2 {
  font-family: Fredoka;
  font-size: 56px;
  line-height: 68px;
  color: #02000F;
  margin-bottom: 12px;
}

.contact-header p {
  font-family: Onest;
  font-size: 18px;
  color: #6C6D71;
}

/* Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-info {
  background: #ffffff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.06);
}

.location-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.location-card {
  border: 1px solid #E3DCD4;
  border-radius: 20px;
  padding: 18px 20px;
  background: #fff;
  display: flex;
  gap: 16px;
  align-items: center;
  cursor: pointer;
  transition: border 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.location-card h4 {
  font-family: Fredoka;
  font-size: 20px;
  margin-bottom: 4px;
}

.location-card p {
  color: #6C6D71;
  font-size: 15px;
}

.location-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #FDF0E7;
  display: grid;
  place-items: center;
}

.location-card.is-active {
  border-color: #F8721F;
  background: #FFF8F3;

}



.location-details {
  border: 1px solid #E3DCD4;
  border-radius: 24px;
  padding: 28px;
  background: #FFFBF8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-map {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  min-height: 320px;
  height: 320px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.details-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #F8721F;
  margin-bottom: 8px;
}

.location-details h3 {
  font-family: Fredoka;
  font-size: 28px;
  margin-bottom: 24px;
}

.details-row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.details-row:first-of-type {
  border-top: none;
  padding-top: 0;
}

.details-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: white;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.details-row small {
  display: block;
  color: #6C6D71;
  font-size: 13px;
}

.details-row strong {
  font-size: 18px;
  color: #02000F;
}


/* Mobile */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 80px 20px;
  }

  .contact-header h2 {
    font-size: 40px;
    line-height: 48px;
  }

  .contact-info {
    padding: 24px;
  }

  .contact-details {
    order: 2;
  }

  .contact-map {
    min-height: 240px;
    height: 240px;
  }
}

/* ================= CONTACT DECORATIONS =================  */
.contact-decorations {
  position: relative;

}


.contact-decorations .contact-deco {
  position: absolute;
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
  
}


.contact-deco.heart {
  width: 42px;
top: -1012px;
    left: 240px;
}

.contact-deco.home {
 width: 44px;
    top: -907px;
    right: 203px;


}

.contact-deco.bandage {
   width: 48px;
top: -810px;
    right: 492px;

}

.contact-deco.bowl {
  width: 50px;
  bottom: 120px;
 left: 220px;
}

.contact-deco.bone {
  width: 50px;
 top: -740px;
    left: 102%;
  transform: translateX(-50%);
  
}

@keyframes floatSoft {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.contact-decorations .contact-deco:not(.bone) {
  animation: floatSoft 6s ease-in-out infinite;
}

@media (max-width: 768px) {
 

  .contact-deco.bone {
    width: 80px;
    top: 100px;
  }

  .contact-deco.home {
    width: 42px;
    top: -40px;
    left: -10px;
  }
  .contact-deco.heart {
  width: 42px;
  top: 180px;
  left: 20px;
}
.contact-deco.bandage {
  width: 48px;
  top: 620px;
  right: 40px;
}
.contact-deco.bowl {
  width: 50px;
  bottom: 320px;
  right: 320px;
}
}
 /* ================= SERVICES =================  */
.services-section {

  background: #fff;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* CARD */
.service-card {
  position: relative;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 0, 15, 0) 0%,
    rgba(2, 0, 15, 0.7) 80%
  );
}

/* TEXT */
.service-content {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  color: white;
}

.service-content h3 {
  font-family: Fredoka;
  font-size: 24px;
  margin-bottom: 8px;
}

.service-content p {
  font-family: Onest;
  font-size: 16px;
  line-height: 26px;
}

/* ARROW */
.service-arrow {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}
