/* ===============================
   BASE / RESET
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #ffffff;
  color: #111827;
  line-height: 1.6;
}


a {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {color: #111827;}


/* ================================
   NAVIGATION 
================================ */
/* FIX HEADER LAYOUT */
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* KEEP LOGO + TOGGLE INLINE */
.logo {
  display: flex;
  align-items: center;
}

/* MOBILE TOGGLE POSITION */
.mobile-nav-toggle {
  display: none;
  font-size: 38px;
  cursor: pointer;
}

@media (max-width: 992px) {

  .mobile-nav-toggle {
    display: block;
  }

  /* HIDE DESKTOP MENU */
  .navmenu {
    position: fixed;
    top: 0;
    right: -100%;
  }

  /* IMPORTANT: prevent nav from pushing layout */
  .navmenu ul {
    display: flex;
    flex-direction: column;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);

  padding: 12px 0;
  transition: 0.3s ease;
	border-bottom: 1px solid #ccc;
}

/* SCROLL EFFECT */
.header.scrolled {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* LOGO */
.logo img {
  height: 90px;
}
@media(max-width:992px){
   .logo img{
      height:55px;
   }
}

/* DESKTOP MENU */
.navmenu ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* LINKS */
.navmenu a {
  color: #34AD56;
  font-size: 16px;
  text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
}

/* CTA */
.cta-btn {
  border: 1px solid #4caf6d;
  padding: 10px 18px;
  border-radius: 999px;
background: #4caf6d;

}
a.cta-btn {color: #ffffff;
font-size: 12px; font-weight: bold;}

/* TOGGLE */

.mobile-nav-toggle {
  color: #222;
}.mobile-nav-toggle:hover {
  color: #4caf6d;
}

/* ================================
   MOBILE FIX (THIS WAS BROKEN)
================================ */
@media (max-width: 992px) {

  .mobile-nav-toggle {
    display: block;
    z-index: 10001;
  }

  /* MENU PANEL */
  .navmenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;

    background: #3C0B53;
    padding: 80px 30px;

    transition: right 0.3s ease;
    z-index: 10000;
  }

  /* SHOW MENU */
  .navmenu.active {
    right: 0;
  }

  /* LIST */
  .navmenu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* LINKS */
  .navmenu a {
    color: #fff;
    font-size: 18px;
  }

  /* CTA */
  .cta-btn {
    display: block;
    margin-top: 20px;
    text-align: center;
    background: #4caf6d;
    color: #fff;
  }
}

.header-phone{
    display:flex;
    align-items:center;
    gap:12px;

    text-decoration:none;
    margin-left:25px;
}

.phone-icon{
    width:42px;
    height:42px;

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

    background:#4CAF50;
    color:#fff;

    border-radius:50%;
    font-size:18px;
}

.phone-label{
    display:block;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#777;
    font-weight:600;
}

.phone-number{
    display:block;
    color:#4A0D67;
    font-size:18px;
    font-weight:800;
}
@media (max-width: 992px){

  .header-phone{
      display:flex;
      margin-left:auto;
      margin-right:15px;
  }

  .phone-label,
  .phone-number{
      display:none;
  }

  .phone-icon{
      width:44px;
      height:44px;
      border-radius:50%;
      background:#4CAF50;
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:18px;
  }
}
/* =========================================
   BODY OFFSET (PREVENT OVERLAP)
========================================= */
body {
  padding-top: 90px;
}
.hero-slider{
    height:600px;
}

.swiper-slide{
    background-size:cover;
    background-position:center right;
}

.slide1{
    background:url('../images/slide1.jpg');
    background-size:cover;
    background-position:center;
}
.slide2{
    background:url(../images/slide2.jpg) center/cover;
}

.slide3{
    background:url(../images/slide3.jpg) center/cover;
}

.slide4{
    background:url(../images/slide4.jpg) center/cover;
}
@media (max-width:768px){

    .slide1{
        background-position: center left;
    }

}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
}

.hero-content{
    position:absolute;
    left:8%;
    top:50%;
    transform:translateY(-50%);
    max-width:650px;
    z-index:2;
    color:white;
}

.hero-content h1{
    font-size:52px;
    line-height:1;
    font-weight:800;
    color:#4A0D67;
	max-width:500px;
}
.hero-content h1 span{
    display:block;
    color:#4A0D67!important;
	font-weight:800;
	font-size:32px;
	margin-top: 20px
}

.hero-content p{
    font-size:18px;
    line-height:1.7;
    max-width:500px;
    color:#222;
}
.btn-primary{
    background:#4A0D67;
    color:white;
    border-radius:12px;
    padding:18px 36px;
}

.btn-outline{
    border:2px solid #4CAF50;
    color:#4CAF50;
    background:white;
    border-radius:12px;
}
.swiper-button-prev,
.swiper-button-next{

    width:60px;
    height:60px;

    background:#fff;
    border-radius:50%;

    box-shadow:0 10px 25px rgba(0,0,0,.10);

    color:#111;

    transition:.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover{

    background:#4A0D67;
    color:#fff;
}

.swiper-button-prev:after,
.swiper-button-next:after{

    font-size:22px;
    font-weight:700;
}
.swiper-button-prev{
    left:30px;
}

.swiper-button-next{
    right:30px;
}
@media (max-width: 768px){

    .swiper-button-prev,
    .swiper-button-next {

        width:40px;
        height:40px;

        background:rgba(255,255,255,.25);
border-radius:50%;
     

        box-shadow:none;
    }

    .swiper-button-prev:after,
    .swiper-button-next:after{
        font-size:16px;
        color:#fff;
    }

}


.trust-bar {
    background:#fff;
	margin-top:30px;
	margin-bottom:30px;
}

.trust-item{
    background:#f8f6f1;
    border:2px solid #4CAF50;
    border-radius:12px;
    padding:12px;
    font-size:14px;
    font-weight:600;
    height:100%;
}
.home-intro{
    padding:70px 0;
    background:#fff;
}

.home-intro h2{
    color:#4A0D67;
    font-size:48px;
    font-weight:700;
    margin-bottom:15px;
}

.home-intro p{
    font-size:20px;
    line-height:1.8;
    color:#555;
    margin:0;
}

.home-intro .btn-main{
    margin-top:0;
}

@media(max-width:768px){

    .home-intro{
        text-align:center;
        padding:50px 0;
    }

    .home-intro h2{
        font-size:32px;
    }

    .home-intro p{
        font-size:18px;
        margin-bottom:25px;
    }
}
.page-hero{
	    background:
    linear-gradient(
        90deg,
        rgba(248,246,241,.95) 0%,
        rgba(248,246,241,.80) 35%,
        rgba(248,246,241,.45) 65%,
        rgba(248,246,241,.10) 100%
    ),
  url('../images/about-pets.jpg') center center/cover no-repeat;
    position:relative;
    padding:120px 0;
}



.page-hero-content{
    position:relative;
    z-index:2;
    max-width:700px;
}

.page-hero h1{
    color:#fff;
    font-size:60px;
    font-weight:700;
    margin-bottom:20px;
}

.page-hero p{
    color:#fff;
    font-size:24px;
    line-height:1.6;
}
@media(max-width:768px){

.page-hero{
    padding:80px 0;
}

.page-hero h1{
    font-size:38px;
}

.page-hero p{
    font-size:18px;
}

}
.about-intro{
    background:#fff;
}

.about-intro h2{
    color:#4A0D67;
    font-size:48px;
    margin-bottom:25px;
}

.about-intro p{
    font-size:22px;
    line-height:1.8;
}

.why-us{
    background:#f8f6f1;
}

.trust-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.trust-card h4{
    margin-top:15px;
    color:#4A0D67;
}

.rates-section{
    background:#f8f6f1;
}
.rates-hero{
    background:
    linear-gradient(
        90deg,
        rgba(248,246,241,.95) 0%,
        rgba(248,246,241,.80) 35%,
        rgba(248,246,241,.45) 65%,
        rgba(248,246,241,.10) 100%
    ),
    url('../images/rates-cat.jpg');

    background-size:cover;
    background-position:center;
}

.page-hero-content{

    max-width:650px;
}

.page-hero-content h1{
    color:#4A0D67;
    font-size:60px;
    font-weight:700;
    margin-bottom:20px;
}

.page-hero-content p{
    color:#333;
    font-size:22px;
    line-height:1.6;
}
@media(max-width:768px){

.rates-hero{
    padding:80px 0;
}

.page-hero-content h1{
    font-size:40px;
}

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

}

.rate-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    height:100%;
}

.rate-card h3{
    color:#4A0D67;
    margin-bottom:20px;
    font-size:30px;
}

.price{
    color:#4CAF50;
    font-size:34px;
    font-weight:700;
    margin-bottom:25px;
}

.rate-card ul{
    padding-left:20px;
}

.rate-card li{
    margin-bottom:12px;
    line-height:1.7;
}

.rates-cta{
    padding:80px 0;
    text-align:center;
}

.rates-cta h2{
    color:#4A0D67;
    margin-bottom:15px;
}

.btn-main{
    display:inline-block;
    background:#4A0D67;
    color:#fff;
    padding:15px 35px;
    border-radius:12px;
    text-decoration:none;
    margin-top:20px;
}
.services-hero{
    position:relative;
    min-height:500px;

    background:
	linear-gradient(
        90deg,
        rgba(248,246,241,.95) 0%,
        rgba(248,246,241,.80) 35%,
        rgba(248,246,241,.45) 65%,
        rgba(248,246,241,.10) 100%
    ),
    url('../images/services-birds2.jpg');

    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
}

.hero-content{
    max-width:800px;
}

.hero-content h1{
    font-size:58px;
    color:#5a1680;
    font-weight:700;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
    line-height:1.6;
    color:#333;
}
.services-card-wrap{
    margin-top:-90px;
    position:relative;
    z-index:5;
}

.services-card{
    background:#fff;
    padding:50px;
    border-radius:25px;

    box-shadow:
    0 10px 40px rgba(0,0,0,.08);
}

.services-card h2{
    color:#4caf50;
    font-size:32px;
    margin-bottom:30px;
}

.services-card ul{
    list-style:none;
    padding:0;
}

.services-card li{
    padding:12px 0;
    border-bottom:1px solid #eee;
    font-size:22px;
	 padding-left:35px;
	  position:relative;
}
.services-list{
    list-style:none;
    padding:0;
}

.services-list li{
    position:relative;
    padding-left:40px;
    margin-bottom:20px;
    font-size:22px;
    line-height:1.6;
}

.services-list li:before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#4CAF50;
    font-weight:bold;
}
.service-grid{
    padding:80px 0;
}

.service-box{
    background:#fff;
    padding:40px;
    border-radius:20px;
    height:100%;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

    transition:.3s;
}

.service-box:hover{
    transform:translateY(-5px);
}

.icon{
    font-size:42px;
    margin-bottom:20px;
}

.service-box h3{
    color:#5a1680;
    font-size:26px;
    margin-bottom:20px;
}

.service-box p{
    font-size:18px;
    line-height:1.8;
}
.contact-hero{
    background:
    linear-gradient(
        90deg,
        rgba(248,246,241,.95) 0%,
        rgba(248,246,241,.80) 35%,
        rgba(248,246,241,.45) 65%,
        rgba(248,246,241,.10) 100%
    ),
    url('../images/contact.jpg');

    background-size:cover;
    background-position:center;
	padding: 120px 0 20px 0
}
.contact-section{
    padding:10px 0;
    background:#f8f6f1;
}

.contact-wrapper{
    background:#fff;
    padding:50px;
    border-radius:25px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.06);
}

.contact-form h2{
    color:#4A0D67;
    margin-bottom:30px;
}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:15px 20px;

    border:1px solid #ddd;

    border-radius:12px;

    margin-bottom:20px;

    font-size:18px;
}

.contact-form input:focus,
.contact-form textarea:focus{

    outline:none;

    border-color:#4CAF50;
}

.contact-form button{

    background:#4A0D67;

    color:#fff;

    border:none;

    padding:15px 35px;

    border-radius:12px;

    font-size:18px;

    transition:.3s;
}

.contact-form button:hover{

    background:#4CAF50;
}
.contact-info{
    margin-top:-70px;
    position:relative;
    z-index:5;
}

.contact-card{

    background:#fff;

    text-align:center;

    padding:35px;

    border-radius:20px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.06);

    height:100%;
}

.contact-card i{

    font-size:42px;

    color:#4CAF50;

    margin-bottom:20px;
}

.contact-card h3{

    color:#4A0D67;

    margin-bottom:10px;
}
.service-area-box{

    background:#f8f6f1;

    border-left:5px solid #4CAF50;

    border-radius:15px;

    padding:25px 30px;

    margin-bottom:40px;

    box-shadow:
    0 5px 20px rgba(0,0,0,.05);
}

.service-area-box h3{

    color:#4A0D67;

    font-size:28px;

    margin-bottom:12px;

    font-weight:700;
}

.service-area-box p{

    margin:0;

    font-size:18px;

    color:#555;

    line-height:1.7;
}

.service-area-box i{

    color:#4CAF50;

    margin-right:10px;
}



.footer-logo{
    width:180px;
    height:auto;
    display:block;
    margin:0 auto 15px;
}
.footer{
    background:#f8f6f1;
    padding:60px 0 30px;
    margin-top:80px;
    border-top:1px solid #e5e5e5;
}

.footer h3{
    color:#4A0D67;
    font-weight:700;
}

.footer a{
    color:#4A0D67;
    text-decoration:none;
    font-weight:600;
}

.footer-phone{
    color:#4CAF50;
    font-size:22px;
    font-weight:700;
}

.copyright{
    color:#777;
    font-size:14px;
}

