:root{

    --primary-dark:#0a3d2f;
    --accent-gold:#d4af37;
    --accent-gold-light:#f4e8c1;
    --light-bg:#f9f7f2;
    --text-dark:#1a1a1a;
    --text-light:#666666;

}

body{

    font-family:'Poppins',sans-serif;
    background:var(--light-bg);

}

h1,h2,h3,h4,h5{

    font-family:'Playfair Display',serif;

}

html{

    scroll-behavior:smooth;

}
.hero-section{

    background-image:
        url("../images/hero1.webp");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

}

.hero-section{

    height:100vh;

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    color:white;

    position:relative;

}

.hero-section::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.5);

}

.hero-content{

    position:relative;

    z-index:2;

}

.hero-content h1{

    font-size:60px;

    font-weight:bold;

}

.hero-content p{

    font-size:22px;

    margin-top:20px;

}

.hero-buttons{

    margin-top:30px;

}
.hero-section{
    transition:
        background-image 1s ease-in-out;
}

@media(max-width:768px){

    .hero-section{

        min-height:70vh;

    }

}
@media(max-width:768px){

    .hero-section{

        background-image:
        url("../images/hero1-mobile.webp");

    }

}
@media(max-width:768px){

    .hero-content h1{

        font-size:36px;

        line-height:1.2;

    }

}

/* --  About Section --*/

.about-section{

    padding:100px 0;

    background:#f8f9fa;

}

.about-section h2{

    font-size:40px;

    margin-bottom:20px;

    color:#212529;

}

.about-section p{

    font-size:18px;

    line-height:1.8;

}

.about-section ul{

    list-style:none;

    padding:0;

}

.about-section ul li{

    margin-bottom:10px;

    font-size:18px;

}

/* -- Pets Section -- */
.pet-price{

    white-space: nowrap;

}

.pets-section{

    background:#f9f7f2;

}

.section-title{

    font-family:'Playfair Display',serif;

    color:#0a3d2f;

    font-weight:700;

}

#puppiesContainer .card{

    border:none;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,0.08);

    transition:0.4s;

}

#puppiesContainer .card:hover{

    transform:translateY(-10px);

}

#puppiesContainer img{

    width:100%;

    height:300px;

    object-fit:cover;

}

/* =====================
   REVIEWS
===================== */
.reviews-section{

    padding-top:80px;

}

.review-card{

    width:320px;

    min-height:220px;

    background:#fff;

    border-radius:20px;

    padding:25px;

    flex-shrink:0;

    box-shadow:
        0 8px 25px rgba(
            0,
            0,
            0,
            .08
        );

    transition:.3s;

}

.review-card:hover{

    transform:
        translateY(-8px);

}

.review-stars{

    color:#f5b301;

    font-size:22px;

    margin-bottom:15px;

}

.review-text{

    color:#555;

    line-height:1.7;

    font-size:16px;

    min-height:90px;

}

.review-user{

    margin-top:15px;

    font-size:18px;

    font-weight:600;

    color:#063d30;

}
.review-user i{

    margin-right:8px;

}

@media(max-width:768px){

    .review-card{

        width:280px;

        min-height:200px;

        padding:20px;

    }

}

/* =====================
   REVIEWS SLIDER
===================== */

.reviews-slider{

    width:100%;

    overflow:hidden;

    position:relative;

    padding:20px 0;

}

.reviews-track{

    display:flex;

    gap:30px;

    width:max-content;

    animation:
        reviewScroll 40s linear infinite;

}

.reviews-track:hover{

    animation-play-state:paused;

}

.review-card{

    width:380px;

    min-height:260px;

    background:#fff;

    border-radius:20px;

    padding:35px;

    flex-shrink:0;

    box-shadow:
        0 8px 25px rgba(
            0,
            0,
            0,
            .08
        );

    transition:.3s;

}

.review-card:hover{

    transform:
        translateY(-8px);

}

.review-stars{

    color:#f5b301;

    font-size:24px;

    margin-bottom:15px;

}

.review-text{

    color:#555;

    line-height:1.8;

    font-size:18px;

    min-height:120px;

}

.review-user{

    margin-top:20px;

    font-size:22px;

    font-weight:600;

    color:#063d30;

}

.review-user i{

    margin-right:8px;

}

@keyframes reviewScroll{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}
/* -- Gallery Section -- */



/* -- Location & Contact -- */

.location-section{

    padding:100px 0;

    background:#ffffff;

}

.map-box{

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,0.08);

}

.contact-section{

    padding:100px 0;

    background:#0a3d2f;

    color:white;

}

.footer-section{

    background:#111;

    color:white;

    padding:60px 0 20px;

}

.footer-section a{

    color:#d4af37;

    text-decoration:none;

}

.footer-section a:hover{

    color:white;

}

/* -- Loading Screen -- */

.loading-screen{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:#0a3d2f;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    z-index:9999;

    color:white;

}

.loader{

    font-size:60px;

    animation:bounce 1s infinite;

}

@keyframes bounce{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-20px);

    }

}

/* -- Nav Bar -- */

.custom-navbar{

    background:rgba(255,255,255,0.95);

    backdrop-filter:blur(10px);

    box-shadow:0 2px 15px rgba(0,0,0,0.08);

    transition:all 0.3s ease;

}

.custom-navbar.scrolled{

    background:#0a3d2f;

    padding:8px 0;

}

.custom-navbar.scrolled .navbar-brand{

    color:#d4af37 !important;

}

.custom-navbar.scrolled .nav-link{

    color:white !important;

}

/* ==========================
   SCROLL TO TOP BUTTON
========================== */

#scrollTopBtn{

    position:fixed;

    bottom:25px;

    right:25px;

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:#d4af37;

    color:white;

    font-size:22px;

    cursor:pointer;

    display:none;

    z-index:999;

    box-shadow:0 5px 15px rgba(0,0,0,0.3);

    transition:0.3s;

}

#scrollTopBtn:hover{

    transform:translateY(-5px);

}

/* ==========================
   SCROLL ANIMATION
========================== */

.fade-section{

    opacity:1;

    transform:translateY(20px);

    transition:all 0.8s ease;

}

.fade-section.show{

    transform:translateY(0);

}

/* ==========================
   LIGHTBOX
========================== */

.lightbox{

    display:none;

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,0.9);

    z-index:9999;

    justify-content:center;

    align-items:center;

}

#lightboxImg{

    width:900px !important;

    height:600px !important;

    object-fit:contain !important;

    border-radius:15px;

    background:white;

}

#closeLightbox{

    position:absolute;

    top:20px;

    right:40px;

    color:white;

    font-size:40px;

    cursor:pointer;

}

/* ==========================
   COUNTERS
========================== */

.counter{

    color:#0a3d2f;

    transition:0.3s;

}

/* ==========================
   WHATSAPP FLOAT BUTTON
========================== */


.whatsapp-float{

    position:fixed;

    bottom:90px;

    right:25px;

    width:60px;

    height:60px;

    background:#25D366;

    color:white;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    text-decoration:none;

    z-index:999;

    box-shadow:0 5px 15px rgba(0,0,0,0.3);

    transition:0.3s;
   
}
@media(max-width:768px){

    .whatsapp-btn{

        width:55px;
        height:55px;

        bottom:90px;
        right:15px;

    }

    .scroll-top-btn{

        bottom:20px;
        right:15px;

    }

}

.whatsapp-float:hover{

    transform:scale(1.1);

}

.navbar-brand img{

    border-radius:50%;

}

.navbar-brand{

    font-weight:600;

    color:#d4af37 !important;

}

.filter-btn.active{

    background:#0a3d2f !important;

    color:white !important;

    border-color:#0a3d2f !important;

}

.filter-btn{

    margin:5px;

    transition:0.3s;

}

.filter-btn:hover{

    transform:translateY(-2px);

}
/* ==========================
   PET STATUS BADGES
========================== */
.status-available{

    background:#198754;

    color:white;

}

.status-reserved{

    background:#d4af37;

    color:black;

}

.status-sold{

    background:#dc3545;

    color:white;

}

/* ==========================
   PREMIUM PET MODAL
========================== */

#petModal .modal-dialog{
    max-width:950px;
}

#petModal .modal-content{
    border:none;
    border-radius:25px;
    overflow:hidden;
}

.premium-modal-body{
    padding:25px;
}

.pet-category-badge{
    display:inline-block;
    background:#eef4ef;
    color:#0a3d2f;
    padding:10px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:15px;
}

.pet-modal-title{
    font-family:'Playfair Display',serif;
    color:#0a3d2f;
    font-size:38px;
    font-weight:700;
    margin-bottom:10px;
}

.pet-divider{
    position:relative;
    text-align:center;
    margin:18px 0;
}

.pet-divider::before,
.pet-divider::after{
    content:"";
    position:absolute;
    top:50%;
    width:40%;
    height:2px;
    background:#d4af37;
}

.pet-divider::before{
    left:0;
}

.pet-divider::after{
    right:0;
}

.pet-divider span{
    color:#d4af37;
    background:#fff;
    padding:0 12px;
}

.pet-description{
    color:#666;
    font-size:15px;
    margin-bottom:15px;
}

/* INFO CARDS */

.info-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:12px;
    padding:15px;
    min-height:80px;
    box-shadow:0 3px 10px rgba(0,0,0,.05);
}

.card-icon{
    color:#d4af37;
    font-size:18px;
    margin-bottom:8px;
}

.info-card small{
    display:block;
    color:#777;
    font-weight:600;
    margin-bottom:4px;
}

.info-card h6{
    margin:0;
    color:#0a3d2f;
    font-size:15px;
    font-weight:700;
}

/* IMAGE */

.premium-modal-image{
    width:100%;
    aspect-ratio:16/9;
    max-height: 350;
    object-fit:cover;
    border-radius:20px;
    display:block;
}


/* ABOUT PET */

.about-pet-box{
    margin-top:15px;
    background:#fafafa;
    border:1px solid #ececec;
    border-radius:18px;
    padding:18px;
    min-height:140px; /* optional */
}

.about-pet-box p{
    color:#666;
    line-height:1.8;
    margin-top:10px;
    white-space:pre-wrap;
    word-wrap:break-word;
}
.about-pet-box h5{
    color:#0a3d2f;
    margin-bottom:10px;
    font-weight:700;
}

/* FOOTER */

#petModal .modal-footer{
    padding:20px;
    gap:15px;
}

#petModal .modal-footer .btn{
    min-width:170px;
    height:48px;
    border-radius:12px;
    font-weight:600;
}

/* ==========================
   SOCIAL LINKS
========================== */

.social-links{

    display:flex;

    gap:20px;

    margin-top:20px;

}

.social-icon{

    width:50px;

    height:50px;

    border-radius:50%;

    background:#0a3d2f;

    color:#d4af37;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    font-size:22px;

    transition:0.3s;

    border:2px solid #d4af37;

}

.social-icon:hover{

    background:#d4af37;

    color:#0a3d2f;

    transform:translateY(-5px);

}


/* mobile*/
@media (max-width: 768px){

    .premium-modal-body{
        padding:15px;
    }

    .pet-modal-title{
        font-size:28px;
    }

    .pet-category-badge{
        padding:8px 14px;
        font-size:13px;
    }

    .pet-description{
        font-size:14px;
    }

    .info-card{
        padding:10px;
        min-height:70px;
    }

    .card-icon{
        font-size:16px;
    }

    .info-card h6{
        font-size:14px;
    }

    .premium-modal-image{
        max-height:220px;
    }

    #petModal .modal-footer .btn{
        min-width:130px;
        height:42px;
        font-size:14px;
    }

}
/* ==========================
   NEW PREMIUM PET CARDS
========================== */
/* =====================
   PET CARDS
===================== */
.pet-icon{
    color:#d4af37;
    margin-right:8px;
    width:18px;
    text-align:center;
}

.pet-price{
    color:#0b4f3a;
    font-size:1.2rem;
    font-weight:700;
    margin:12px 0;
}

.pet-price .pet-icon{
    color:#d4af37;
    font-size:1.1rem;
}

.pet-card{
    transition:0.3s ease;
}

.pet-card .card{
    border:none;
    border-radius:20px;
    overflow:hidden;
    height:100%;
    background:#fff;
    box-shadow:
        0 5px 15px rgba(0,0,0,0.08);
}

.pet-card .card:hover{
    transform:translateY(-5px);

    box-shadow:
        0 12px 25px rgba(0,0,0,0.12);
}

/* Image */

.pet-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

/* Card Body */

.pet-card .card-body{
    padding:20px;
}

/* Pet Name */

.pet-card h5{
    font-size:28px;
    font-weight:700;
    color:#0a3d2f;
    margin-bottom:15px;
}

/* Details */

.pet-card p{
    margin-bottom:8px;
    color:#555;
    font-size:15px;
}

.pet-card strong{
    color:#222;
}

/* Price */

.pet-card p:nth-of-type(4){
    font-size:18px;
    font-weight:700;
    color:#d4af37;
}

/* Status Badge */

.pet-card .badge{
    padding:8px 14px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
}

/* View Details Button */

.pet-card .btn-dark{
    background:#0a3d2f;
    border:none;
    border-radius:10px;
    padding:10px;
    font-weight:600;
    transition:0.3s;
}

.pet-card .btn-dark:hover{
    background:#d4af37;
    color:#0a3d2f;
}
.pet-card p i{

    color:#d4af37;

    margin-right:6px;

}

.pet-price{

    font-size:20px;

    font-weight:700;

    color:#d4af37;

    margin:10px 0;

}
.pet-card .btn-dark{

    width:100%;

    padding:8px;

    font-size:13px;

}
/* Mobile */

@media(max-width:768px){

    .pet-card img{

        height:170px;

        object-fit:cover;

    }

    .pet-card .card-body{

        padding:12px;

    }

    .pet-card h5{

        font-size:18px;

        margin-bottom:8px;

    }

    .pet-card p{

        font-size:13px;

        margin-bottom:4px;

    }

    .pet-card .badge{

        font-size:11px;

        padding:6px 10px;

    }

    .pet-card .btn-dark{

        padding:8px;

        font-size:13px;

    }

}

/*=============
Why us
=============*/

.why-choose-box{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
}

.why-choose-box h3{
    color:#044b3b;
    font-weight:700;
    margin-bottom:25px;
}

.why-item{
    background:#f8f9fa;
    padding:15px 20px;
    border-radius:12px;
    margin-bottom:15px;
    font-weight:500;
    transition:.3s;
}

.why-item:hover{
    transform:translateX(5px);
    background:#eef7f4;
}


/* --  contact  Card --*/

.contact-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    height:100%;
}

.contact-title{
    color:#003d2e;
    font-weight:700;
    margin-bottom:25px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:20px;
    font-size:17px;
}

.contact-item i{
    color:#ff4da6;
    font-size:18px;
    min-width:20px;
    margin-top:4px;
}

.contact-card-buttons{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.contact-card-buttons .btn{
    flex:1;
    padding:12px;
    font-weight:600;
    border-radius:10px;
}




.navbar-nav .nav-link::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient(
        90deg,
        #d4af37,
        #f5d76e
    );
    transform: translateX(-50%);
    transition: width .3s ease;
}

.navbar-nav .nav-link:hover::after{
    width: 80%;
}
/* Navbar Links */
.navbar-nav .nav-link{
    position: relative;
    color: #333 !important;
    font-weight: 600;
    margin: 0 8px;
    transition: all 0.3s ease;
}

/* Hover Effect */
.navbar-nav .nav-link:hover{
    color: #d4af37 !important 
}

/* ==========================
   MOBILE RESPONSIVE
========================== */


@media (max-width:768px){

    .hero-section{

        height:100vh;

        background-position:center center !important;

        background-size:cover !important;

    }

    .hero-content h1{

        font-size:42px;

        line-height:1.2;

        margin-bottom:20px;

    }

    .hero-content p{

        font-size:18px;

        padding:0 15px;

    }

}

@media(max-width:768px){

    .hero-buttons{

        display:flex;

        flex-direction:column;

        gap:15px;

        align-items:center;

    }

    .hero-buttons .btn{

        width:220px;

    }

}

.hero-buttons .btn{

    width:220px;

}

@media (max-width:768px){

    .navbar-collapse{

        background:#0a3d2f;

        padding:20px;

        border-radius:15px;

        margin-top:15px;

    }

    .navbar-nav .nav-link{

        color:white !important;

        padding:12px 0;

        border-bottom:1px solid rgba(255,255,255,0.1);

    }
    .navbar-nav{

        text-align:center;

    }

}

@media(max-width:768px){

    .navbar-nav .nav-link::after{

        display:none;

    }

}

@media(max-width:768px){

    .contact-card{

        margin-top:20px;

        padding:25px;

    }

}
@media(max-width:768px){

    .navbar-brand span{

        font-size:16px;

    }

    .navbar-brand img{

        width:45px;

        height:45px;

    }

}

/* ==========================
   MARQUEE GALLERY
========================== */

.gallery-section{

    background:linear-gradient(
        180deg,
        #063d30,
        #04271f
    );

    padding:100px 0;

    overflow:hidden;

    margin-top:80px;

}

.gallery-title{

    text-align:center;

    color:#ffffff;

    margin-bottom:40px;

    font-size:40px;

    font-weight:700;

    letter-spacing:1px;

}
.gallery-subtitle{

    text-align:center;

    color:rgba(255,255,255,.85);

    font-size:20px;

    margin-top:-30px;

    margin-bottom:50px;

}

.gallery-row{

    overflow:hidden;

    white-space:nowrap;

    margin-bottom:25px;

}

.gallery-track{

    display:flex;

    gap:20px;

    width:max-content;

}

.gallery-card{

    width:320px;

    height:260px;

    overflow:hidden;

    border-radius:24px;

    flex-shrink:0;

    box-shadow:
        0 10px 30px rgba(
            0,
            0,
            0,
            .25
        );

}

.gallery-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.4s;

}

.gallery-card:hover img{

    transform:scale(1.08);

}

.row-left .gallery-track{

    animation:
        scrollLeft 35s linear infinite;

}

.row-right .gallery-track{

    animation:
        scrollRight 35s linear infinite;

}

.gallery-track:hover{

    animation-play-state:paused;

}

@keyframes scrollLeft{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

@keyframes scrollRight{

    from{

        transform:translateX(-50%);

    }

    to{

        transform:translateX(0);

    }

}

@media(max-width:768px){

    .gallery-card{

        width:250px;

        height:200px;

    }

}

/* ==========================
   SCROLLING TICKER BAR
========================== */

.pet-ticker{

    width:100%;

    overflow:hidden;

    background:#d4af37;

    padding:12px 0;

    white-space:nowrap;

    margin:0;

}

.ticker-track{

    display:flex;

    align-items:center;

    gap:40px;

    width:max-content;

    animation:tickerScroll 20s linear infinite;

    font-weight:700;

    color:#0a3d2f;

    font-size:15px;

    letter-spacing:1px;

}

@keyframes tickerScroll{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

@media(max-width:768px){

    .pet-ticker{

        padding:10px 0;

    }

    .ticker-track{

        gap:20px;

        font-size:13px;

    }

}
.pet-ticker i{

    color:#fff8c4;

    margin-right:8px;

    font-size:14px;

}

/* ==========
Cursor
============*/
.custom-cursor{

    width:20px;
    height:20px;

    border:2px solid #d4af37;

    border-radius:50%;

    position:fixed;

    top:0;
    left:0;

    pointer-events:none;

    transform:translate(-50%, -50%);

    z-index:9999;

    transition:
        width .2s ease,
        height .2s ease,
        background .2s ease;

}

.custom-cursor.active{

    width:35px;
    height:35px;

    background:rgba(212,175,55,.2);

}

@media(max-width:768px){

    .custom-cursor{
        display:none;
    }

}

.review-modal{

    display:none;

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.7);

    z-index:9999;

}

.review-modal-content{

    background:white;

    width:90%;

    max-width:600px;

    margin:100px auto;

    padding:25px;

    border-radius:15px;

}

.close-review{

    float:right;

    font-size:30px;

    cursor:pointer;

}

.short-review{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    line-height: 1.8;
}

.read-more-btn{

    background: none;

    border: none;

    color: #d4af37;

    font-size: 14px;

    font-weight: 600;

    padding: 0;

    margin-top: 8px;

    cursor: pointer;

}

.read-more-btn:hover{

    color: #b89228;

}