:root {
  --orange: #E8722A;
  --dark-teal: #1E5A52;
  --light-bg: #FAF8F4;
  --card-bg: #F5F2EC;
  --text-dark: #1a2e2c;
  --text-gray: #5a6a68;
  --star-gold: #F5A623;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  background: #fff;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
.navbar {
  background: #fff;
  padding: 14px 0;
  box-shadow: 0 1px 0 #eee;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
a.navbar-brand img {
    width: 60%;
}

.brand-text {
  line-height: 1.1;
}

.brand-text .name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-teal);
  display: block;
}

.brand-text .llc {
  font-size: 0.7rem;
  color: var(--dark-teal);
  display: block;
}

.brand-text .sub {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 400;
  font-size: 0.92rem;
  padding: 0 14px !important;
  position: relative;
}

.navbar-nav .nav-link.active::after {
    color: var(--orange) !important;
    padding-bottom: 2px !important;
    width: 68%;
    position: absolute;
    content: '';
    background: #fd6a0a;
    height: 2px;
    bottom: -7px;
    left: 10px;
}

.btn-book {
    background: #e8722a;
    color: #fff !important;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 20px !important;
    letter-spacing: 0.5px;
    white-space: nowrap;
    width: 75%;
    float: inline-end;
	display:flex;
	justify-content:center;
	align-items:center;
	gap:10px;
}

.btn-book i {
  margin-right: 6px;
}

.btn-book:hover {
  background: #cf601d;
}

/**/
.pet-hero {
    background: #f8f9f9;
}

.pet-hero h1 {
    font-size: 48px;
    line-height: 1.2;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

/* Shadow overlay like your design */
.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0.9) 0%,
        rgba(255,255,255,0.6) 30%,
        rgba(255,255,255,0.2) 60%,
        rgba(255,255,255,0) 100%
    );
}

/* Bottom floating badge */
.pet-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #0f5132;
    color: #fff;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}



/* ── HERO ── */
.hero-section {
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
  padding: 60px 0 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f2f3ea;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #005b54;
    padding: 6px 14px;
    margin-bottom: 22px;
    font-family: 'Lato';
}
.hero-badge i {
  color: var(--orange);
  font-size: 0.7rem;
}

.hero-section h1 {
    font-family: 'Playfair Display';
    font-size: 50px;
    font-weight: 900;
    color: var(--dark-teal);
    line-height: 1.15;
    margin-bottom: 0;
}
.hom_desc {
    padding-left: 100px;
}

.hero-section h1 .orange {
  color: var(--orange);
  display: block;
}

.hero-desc {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 18px 0 28px;
  max-width: 380px;
}

.btn-hero-primary {
  background: var(--orange);
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 13px 24px;
  border: none;
  display: inline-flex;
  align-items: center;
	justify-content:center;
  gap: 8px;
  text-decoration: none;
  width: 40%;
}

.btn-hero-primary:hover {
  background: #cf601d;
  color: #fff;
}

.btn-hero-outline {
    border: 1px solid #005b54;
    color: #005b54;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 12px 24px;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-hero-outline:hover {
  background: var(--text-dark);
  color: #fff;
}

.hero-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.stars i {
  color: var(--star-gold);
  font-size: 1.05rem;
}

.hero-rating-text strong {
  font-weight: 900;
  color: var(--text-dark);
}

.hero-rating-text span {
  font-size: 0.82rem;
  color: var(--text-gray);
  display: block;
}

.hero-img-wrap {
  position: relative;
}

.hero-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
}

.hero-family-badge {
  position: absolute;
  bottom: 24px;
  right: 20px;
  background: var(--dark-teal);
  color: #fff;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-family-badge i {
  color: var(--star-gold);
}

/* ── SERVICES ── */
.services-section {
  background: var(--light-bg);
  padding: 70px 0 50px;
  position: relative;
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.section-eyebrow i {
  margin-left: 6px;
}

.section-title {
  font-family: 'Playfair Display';
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--dark-teal);
  line-height: 1.2;
}

.section-title em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  color: var(--dark-teal);
}

.section-title .heart {
  color: var(--star-gold);
  font-style: normal;
}

.title-underline {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 10px auto 40px;
}

.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 20px 28px;
  text-align: center;
  height: 100%;
  border: 1px solid #ede9e0;
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #f0f0e5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.service-icon i {
  font-size: 1.6rem;
  color: var(--dark-teal);
}

.service-card h5 {
    font-weight: 900;
    font-size: 18px;
    color: #000000;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 15px;
    color: #212121;
    line-height: 1.6;
    margin: 0;
}

.service-card .card-line {
  width: 36px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 14px auto 0;
}

.btn-view-all {
    border: 1px solid #005b54;
    color: #005b54;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 11px 38px;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-top: 36px;
}

.btn-view-all:hover {
  background: var(--text-dark);
  color: #fff;
}

.paw-bg {
  position: absolute;
  right: 30px;
  top: 50px;
  opacity: 0.06;
  font-size: 8rem;
  color: var(--dark-teal);
  pointer-events: none;
}


/**/
.feature-bar {
    background: #fbf8f4;
}
.feature-wrapper {
    background: #f0f0e5;
    border-radius: 20px;
    padding: 25px 30px;
    gap: 20px;
}

.feature-item {
    gap: 15px;
    max-width: 245px;
    padding-right: 20px;
}

/* Right border on all except last */
.feature-item:not(:last-child) {
    border-right: 1px solid #dcdcdc;
}

/* spacing for proper gap */


.feature-item img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.feature-item h6 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #1b4332;
}

.feature-item p {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-wrapper {
        flex-direction: column;
    }

    .feature-item {
        max-width: 100%;
    }
}

/**/
/* ── TRUST STRIP ── */
.trust-strip {
  background: #fff;
  border-top: 1px solid #ede9e0;
  border-bottom: 1px solid #ede9e0;
  padding: 22px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-item i {
  font-size: 1.5rem;
  color: var(--dark-teal);
}

.trust-item strong {
  font-size: 0.88rem;
  font-weight: 900;
  color: var(--text-dark);
  display: block;
}

.trust-item span {
  font-size: 0.78rem;
  color: var(--text-gray);
}



/* ── SECTION ── */
  .testimonials-section {
    background: var(--light-bg);
    padding: 70px 20px 60px;
    overflow: hidden;
  }

  .section-head {
    text-align: center;
    margin-bottom: 44px;
  }

  .eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .eyebrow svg { width: 16px; height: 16px; fill: var(--star-gold); }

  .section-title {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--text-dark);
  }

  /* ── SLIDER WRAPPER ── */
  .slider-outer {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
  }

  /* ── ARROW BUTTONS ── */
  .arrow-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--dark-teal);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.15s;
    z-index: 10;
    box-shadow: 0 2px 12px rgba(0,0,0,0.13);
  }

  .arrow-btn:hover { background: var(--orange); transform: scale(1.08); }
  .arrow-btn svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

  /* ── TRACK ── */
  .slider-viewport {
    overflow: hidden;
    flex: 1;
    margin: 0 16px;
  }

  .slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }

  /* ── CARDS ── */
  .test-card {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 30px 28px 26px;
    flex-shrink: 0;
    min-width: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s;
  }

  .test-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.09); }

  .stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
  }

  .stars svg {
    width: 20px;
    height: 20px;
    fill: var(--star-gold);
  }

  .test-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
    min-height: 72px;
  }

  .test-footer {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    overflow: hidden;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Placeholder pet avatars */
  .avatar-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .test-name {
    font-weight: 900;
    font-size: 0.92rem;
    color: var(--text-dark);
    margin-bottom: 2px;
  }

  .test-role {
    font-size: 0.78rem;
    color: var(--text-gray);
    font-weight: 400;
  }

  /* ── DOTS ── */
  .dots-wrap {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
  }

  .dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, transform 0.2s;
  }

  .dot.active {
    background: var(--orange);
    transform: scale(1.15);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 600px) {
    .arrow-btn {
      width: 38px;
      height: 38px;
    }
    .slider-viewport {
      margin: 0 10px;
    }
    .testimonials-section {
      padding: 50px 12px 44px;
    }
  }

/*cta*/

  .cta-wrapper {
    max-width: 1100px;
    margin: auto;
  }

  .cta-box {
    background: linear-gradient(135deg, #0f5f56, #0a4d46);
    border-radius: 20px;
    padding: 30px 40px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
  }

  /* Left Icon */
  .cta-icon {
    background: #fff7ed;
    color: #ff6a00;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

  /* Text Content */
  .cta-content {
    flex: 1;
    min-width: 250px;
  }

.cta-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Playfair Display';
}

  .cta-content p {
    font-size: 15px;
    opacity: 0.9;
  }

  /* Button Area */
  .cta-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .cta-btn {
    background: #ff6a00;
    color: #fff;
    border: none;
    padding: 14px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
	  justify-content:center;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
	  text-decoration:none;
/* 	  width: 240px; */
  }

  .cta-btn:hover {
    background: #e55d00;
  }

.cta-note {
    font-size: 15px;
    position: relative;
    top: 10px;
    left: 20px;
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: 600;
}

  /* Decorative Leaf */
  .cta-box::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 50%;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .cta-box {
      flex-direction: column;
      align-items: flex-start;
      padding: 25px;
    }

    .cta-action {
      width: 100%;
    }

    .cta-btn {
      width: 100%;
      justify-content: center;
    }
  }
  .ct_bx {
    background: #fbf8f4;
    padding-bottom: 40px;
}
/**/

/* ── FOOTER ── */
.footer {
    background: #fbf8f4;
    border-top: 1px solid #ede9e0;
    padding: 15px 0;
}

.footer-logo .name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--dark-teal);
  font-size: 1rem;
}

.footer-logo .sub {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.footer-contact a {
    font-size: 15px;
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
}
.footer-contact a i {
  color: var(--dark-teal);
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.9rem;
    text-decoration: none;
    margin-left: 8px;
    background: #00564e;
}

.footer-social a:hover {
  background: var(--dark-teal);
  color: #fff;
  border-color: var(--dark-teal);
}

.footer-copy {
  background: #f5f2ec;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-gray);
  padding: 12px 0;
}

/* ── PLACEHOLDER IMAGE STYLES ── */
.placeholder-img {
  background: linear-gradient(135deg, #c9dbd8 0%, #a8c5c0 50%, #8fb3ae 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(30, 90, 82, 0.3);
  font-size: 4rem;
}

.placeholder-avatar {
  background: linear-gradient(135deg, #ddd 0%, #bbb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1.2rem;
}

/* ── LOGO SVG ── */
.logo-svg {
  width: 56px;
  height: 56px;
}

@media (max-width: 991px) {
  .hero-section {
    padding: 40px 0 0;
  }

  .hero-img-wrap img {
    height: 360px;
    border-radius: 12px;
  }

  .trust-item {
    margin-bottom: 16px;
  }
}

@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-img-wrap img {
    height: 280px;
  }

  .hero-desc {
    max-width: 100%;
  }

  .trust-strip .col-6 {
    border-bottom: 1px solid #ede9e0;
    padding-bottom: 16px;
  }

  .cta-section .text-md-end {
    text-align: left !important;
    margin-top: 20px;
  }
}




button.cta-btn img {
    width: 7%;
}
.ar_wrp img {
    position: absolute;
    width: 11%;
    left: 57%;
    bottom: 20px;
}
.footer-logo img {
    width: 60%;
}
.btn-book img {
    width: 10%;
    position: relative;
    bottom: 0px;
}
.btn-hero-primary img {
    width: 9%;
}

a.cta-btn img{
	width:20px;
}

@media(max-width:767px){
	.hom_desc{
		padding-left:0px;
	}
	
	.navbar-nav li.nav-item{
		padding: 10px 0px;
	}
	
	.navbar-nav .nav-link.active::after{
		width:20%;
	}
	
	.navbar-brand {
    width: 78%;
}
	.feature-wrapper{
		padding:20px;
	}
}