/* ==============================
GLOBAL STYLES
============================== */
body {
    margin:0;
    font-family: 'Poppins', sans-serif;
    color: #222;
    line-height: 1.6;
    background: #fff;
}

.container {
    width: 90%;
    margin: auto;
    max-width: 1200px;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==============================
BUTTONS
================================= */
.zt-btn-primary {
    background: #ff6b00;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.zt-btn-primary:hover {
    background: #e35f00;
}

.zt-btn-outline {
    border: 2px solid #ff6b00;
    padding: 12px 26px;
    color: #ff6b00;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.zt-btn-outline:hover {
    background: #ff6b00;
    color: #fff;
}

/* ============================
TOP BAR
============================= */
.zt-topbar {
    width:100%;
    background: #002c5b;
    color: #fff;
    text-align: center;
    padding: 6px 0;
    font-size: 14px;
}


/* ============================
DEFAULT / DESKTOP
============================= */
.zt-header {
    width: 100%;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-bottom: 1px solid #eaeaea;
}

.zt-header-inner {
    
    margin: auto;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}


/* ============================
Desktop logo floating
============================= */
.zt-header-left {
    position: static;
    width: 160px; /* prevents content shifting off-screen */
}

.zt-header-left img,
.custom-logo {
    position: absolute;
    top: 18px;
    left: 40px;
    max-height: 150px !important;
    width: auto;
    z-index: 20;
}

.zt-header-nav {
    margin-left: auto;
}

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

.zt-header-phone,
.zt-header-btn {
    display: block;
}

/* shift menu to the right so logo does not overlap */
.zt-header-inner {
    padding-left: 150px;
}
@media(max-width: 1280px){
    .zt-header-inner{padding-left:100px}
}
@media(max-width: 1100px){
    .zt-header-inner{padding-left:60px}
}

/* SCROLLED STATE */
.zt-header.scrolled .zt-header-left img {
    max-height: 90px !important;
    top: 5px;
    transition: 0.3s ease;
}


/* ============================
MENU (Desktop)
============================= */
.zt-nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.zt-nav-menu li {
    list-style: none;
}

.zt-nav-menu li a {
    font-size: 20px;
    font-weight: 600;
    padding: 8px 0;
    transition: color 0.25s;
}

.zt-nav-menu li a:hover {
    color: #ff6b00;
}


/* ============================
HEADER RIGHT AREA
============================= */
.zt-header-right {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
    margin-right: auto;
    flex-shrink: 0;
}

.zt-header-phone {
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.zt-header-btn {
    background: #ff6b00;
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.25s;
}

.zt-header-btn:hover {
    background: #e96200;
}


/* ============================
MOBILE MENU
============================= */
.zt-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.zt-mobile-toggle span {
    width: 28px;
    height: 4px;
    background: #222;
    border-radius: 4px;
}

/* Hidden by default */
.zt-mobile-menu {
    display: none;
    background: #fff;
    padding: 25px;
    border-top: 1px solid #eee;
    color: #222;
}

.zt-mobile-menu-list li {
    list-style: none !important; /* REMOVE BULLETS */
    margin: 15px 0;
}

.zt-mobile-menu-list a {
    font-size: 18px;
    font-weight: 500;
    color: #222;
    display: block;
    padding: 12px 8px;
}


/* CTA in mobile */
.zt-mobile-cta-btn {
    display: block;
    background: #ff6b00;
    color: #fff;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    margin-top: 12px;
}


/* ============================
ACTIVE MOBILE MENU
============================= */
.zt-mobile-menu.active {
    display: block;
}
/* no overlay scroll lock needed for dropdown */


/* ============================
RESPONSIVE
============================= */
/* ============================
MOBILE (ONE ROW: LOGO + TOGGLE)
============================ */
@media(max-width: 992px) {

    /* HEADER WRAPPER */
    
    .zt-header-inner {
        padding: 14px 18px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    /* ===========================================
       BIG FLOATING LOGO (ZooWorld Mobile Style)
    ============================================ */
    .zt-header-left img,
    .custom-logo {
        position: relative !important;
        max-height: 85px !important;   /* BIGGER LOGO */
        width: auto;
        margin: 0;
        padding: 0;
        z-index: 20;
        transform: translateY(4px);    /* Slight floating effect */
    }


    /* Hide desktop menu + phone + button */
    
    .zt-header-nav,
    .zt-nav-menu,
    .zt-header-phone,
    .zt-header-btn {
        display: none !important;
    }

    /* ===========================================
       BIG PREMIUM HAMBURGER
    ============================================ */
    .zt-mobile-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;

        /* Positioning */
        margin-left: auto;
        margin-right: 12px;
        transform: scale(1.35) translateX(-6px); 
        /* 1.35 = larger hamburger */
        /* translateX = move slightly left for balance */
    }

    .zt-mobile-toggle span {
        width: 32px;                  /* larger lines */
        height: 4px;
        background: #222;
        border-radius: 4px;
    }

/* ===========================================
       MOBILE MENU PANEL
    ============================================ */
    .zt-mobile-menu {
        display: none;
        background: #ffffff;
        padding: 22px;
        border-top: 1px solid #eee;
    }

    .zt-mobile-menu.active {
        display: block !important;
    }

    .zt-mobile-menu-list li {
        list-style: none !important;
        padding: 14px 0;
        border-bottom: 1px solid #f1f1f1;
    }

    .zt-mobile-menu-list a {
        font-size: 18px;
        font-weight: 500;
        color: #222;
    }

    /* Mobile CTA Button */
    .zt-mobile-cta-btn {
        display: block;
        background: #ff6b00;
        color: #fff;
        padding: 14px;
        border-radius: 8px;
        font-weight: 700;
        margin-top: 16px;
        text-align: center;
    }
}

/* =======================================================
   SCROLLING LOGO ANIMATION (DESKTOP + MOBILE)
======================================================= */

/* Default (before scroll) */
.zt-header-left img {
    transition: all 0.35s ease;
}

/* AFTER SCROLL */
.zt-header.scrolled .zt-header-left img {
    max-height: 80px !important;   /* shrinks on scroll */
    top: 14px !important;            /* moves up */
}

/* MOBILE: same animation */
@media (max-width: 768px) {

    .zt-header-left img {
        max-height: 90px !important; /* initial mobile size */
        top: 0 !important;
        position: relative;
        transition: all 0.35s ease;
    }

    .zt-header.scrolled .zt-header-left img {
        max-height: 50px !important; /* shrink on scroll */
        top: 0px !important;         /* slight upward lift */
        transform: translateY(0);
    }


/* Keep header height stable */
    .zt-header {
        transition: height 0.35s ease, padding 0.3s ease;
    }

    .zt-header.scrolled {
        padding: 8px 20px !important; /* reduce padding instead of pushing logo */
    }
    
    /* Hamburger alignment */
    .zt-mobile-toggle {
        margin-top: 0 !important;
        transition: all 0.35s ease;
    }

    .zt-header.scrolled .zt-mobile-toggle {
        margin-top: 0 !important;  /* prevent shift */
    }
}

/* ===========================================
   HIDE TOPBAR ON MOBILE ONLY
=========================================== */
@media(max-width: 768px){
    .zt-topbar {
        display: none !important;
    }
}

/* ============================================
   PERFECT MOBILE LOGO + HAMBURGER ALIGNMENT
============================================ */
@media (max-width: 768px) {

    /* Mobile header layout */
    .zt-header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 18px !important; /* balanced spacing */
        position: relative;
    }

    /* Logo alignment */
    .zt-header-left img {
        max-height: 90px !important;
        position: relative;
        left: 0 !important;
        top: 0 !important;
        margin: 0;
        padding: 0;
        transform: translateY(0);
        display: block;
        transition: all 0.35s ease;
    }

    /* SCROLLED logo (50px) */
    .zt-header.scrolled .zt-header-left img {
        max-height: 50px !important;
        transform: translateY(0);
        top: 0 !important;
        margin: 0;
    }

    /* Hamburger placement */
    .zt-mobile-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        position: absolute;
        margin-left: 12px;  /* adjust Left/Right spacing */
        margin-right: 0;
        top: 0;
        transform: translateY(0);
        transition: all 0.3s ease;
    }

    /* Remove shift during scroll */
    .zt-header.scrolled .zt-mobile-toggle {
        margin-left: 12px;
        top: 0;
        transform: translateY(0);
    }

    /* Hide topbar on mobile */
    .zt-topbar {
        display: none !important;
    }

    /* Hide desktop menu */
    .zt-nav-menu {
        display: none !important;
    }
}

/* =============================
SECTIONS
=============================== */
.zt-section {
    padding: 70px 0;
}

.zt-section-alt {
    padding: 70px 0;
    background: #fafafa;
}

.zt-section-title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 40px;
}

/* =============================
   HERO SLIDER BASE
============================= */
.zt-hero-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    max-height: 820px;
    overflow: hidden;
}

.zt-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
}

.zt-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Overlay text area */
.zt-hero-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 0px 4px 18px rgba(0,0,0,0.65);
}

.zt-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.zt-hero-btn {
    background: #ff6b00;
    color: #fff;
    padding: 14px 30px;
    font-size: 20px;
    border-radius: 10px;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
}

.zt-hero-btn:hover {
    background: #e65e00;
}

/* Arrows */
.zt-hero-arrows {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 20;
}

.zt-arrow {
    font-size: 45px;
    color: white;
    cursor: pointer;
    padding: 10px;
    user-select: none;
    transition: 0.2s;
}

.zt-arrow:hover {
    opacity: 0.7;
}

/* =============================
   RESPONSIVE
============================= */
@media(max-width: 768px) {
    .zt-hero-slider {
        height: 65vh;
    }
    .zt-hero-content h1 {
        font-size: 28px;
    }
    .zt-hero-btn {
        font-size: 16px;
        padding: 10px 22px;
    }
}


/************************************
 PREMIUM FEATURE SECTION (V2.0)
************************************/

.zt-feature-section {
    padding: 90px 0;
    background: #fff;
}

/* Grid Layout */
.zt-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: stretch;
}

/* Card Container */
.zt-feature-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    transition: all 0.35s ease;
    position: relative;
}

/* Hover Elevation */
.zt-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.20);
}

/* IMAGE (Fixed cropping) */
.zt-feature-img {
    width: 100%;
    height: 230px;
    overflow: hidden;
    position: relative;
}

.zt-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;        /* FIX: maintain center crop */
    object-position: center;  /* FIX: no more top cropping */
    transition: transform 0.6s ease;
}

/* Image zoom on hover */
.zt-feature-card:hover .zt-feature-img img {
    transform: scale(1.10);
}

/* BEAUTIFUL OVERLAY GRADIENT */
.zt-feature-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0)
    );
    pointer-events: none;
}

/* Content */
.zt-feature-content {
    padding: 30px;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;   /* FIX: center vertically */
    align-items: center;
    height: 170px;              /* PERFECT balanced height */
}

/* Title */
.zt-feature-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin: 0 0 12px 0;
}

/* Description */
.zt-feature-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* MOBILE RESPONSIVE */
@media(max-width: 768px) {
    .zt-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .zt-feature-img {
        height: 190px;
    }
}


/* ============================================================
   MEET OUR ANIMALS — PREMIUM HOVER TITLE CARDS
============================================================ */
.zt-animals-section .zt-animal-card {
    position: relative;
    width: 100%;
    padding-top: 100%; 
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(0,0,0,0.12);
    transition: 0.35s ease;
}

.zt-animals-section .zt-animal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.22);
}

/* Image */
.zt-animals-section .zt-animal-image {
    position: absolute;
    inset: 0;
}

.zt-animals-section .zt-animal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
}

.zt-animals-section .zt-animal-card:hover img {
    transform: scale(1.12);
}

/* Hover Overlay */
.zt-animals-section .zt-animal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.75));
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    transition: 0.35s ease;
}

.zt-animals-section .zt-animal-card:hover .zt-animal-overlay {
    opacity: 1;
}

/* Title */
.zt-animals-section .zt-animal-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

/* ============================================================
   PHOTO GALLERY — NO TITLE, NO OVERLAY
============================================================ */
.zt-gallery-item {
    position: relative;
    width: 100%;
    padding-top: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.zt-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.20);
}

/* Gallery Images */
.zt-gallery-item .zt-animal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
}

.zt-gallery-item:hover img {
    transform: scale(1.15);
}

/* Hide overlays & titles in gallery */
.zt-gallery-item .zt-animal-overlay,
.zt-gallery-item .zt-animal-title {
    display: none !important;
}

/* Load More */
.hidden-item {
    display: none;
}

#zt-loadmore-btn {
    background: #ff7f32;
    color: #fff;
    padding: 12px 26px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s ease;
}

#zt-loadmore-btn:hover {
    background: #e56700;
}

/* Responsive */
@media(max-width: 768px){
    .zt-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .zt-animals-section .zt-animal-title {
        font-size: 16px;
    }
}


/* ===============================
   UPGRADED PREMIUM ANIMAL CARDS
===============================*/

.zt-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}


/* Card Container */
.zt-animal-card {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 perfect square */
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.12);
}

.zt-animal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.20);
}

.zt-animal-card a {
    display: block;
    height: 100%;
}

.zt-animal-link {
    position: absolute;
    inset: 0;
    display: block;
}
/* Image */



.zt-animal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.zt-animal-card:hover .zt-animal-image img {
    transform: scale(1.12);
}

/* Hover Overlay */

.zt-animal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0) 50%,
        rgba(0,0,0,0.75) 100%
    );
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 18px;
    transition: 0.35s ease;
}

/* Show title overlay on hover ONLY for Animal Cards */

.zt-animal-card:not(.zt-gallery-item) .zt-animal-overlay {
    opacity: 0;
    transition: 0.35s ease;
}

.zt-animal-card:not(.zt-gallery-item):hover .zt-animal-overlay {
    opacity: 1;
}

/* Title */
.zt-animal-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

/* Glow Border on Hover */
.zt-animal-card:hover {
    border: 2px solid rgba(255, 136, 0, 0.6);
}

/* MOBILE FIX: Title always visible */
@media(max-width: 767px){
    .zt-animal-overlay {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}


/* PACKAGE CARD */
.zt-package-card {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.zt-package-price {
    font-size: 22px;
    color: #ff6b00;
    font-weight: 700;
    margin: 10px 0;
}

/* ------------------------------
TESTIMONIALS
------------------------------ */
.zt-testimonials {
    padding: 70px 0;
    background: #fff7f1;
}

.zt-testimonial-slider {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.testimonial-item {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

/* ------------------------------
CTA
------------------------------ */
.zt-cta {
    padding: 60px 0;
    background: #ff6b00;
    color: #fff;
}

.zt-cta-box {
    text-align: center;
}

.zt-center {
    text-align: center;
    margin-top: 30px;
}

/* BOOKING FORM */
.zt-booking-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    margin-top: 20px;
}

.zt-form-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.zt-booking-form input,
.zt-booking-form select,
.zt-booking-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
}



/* -----------------------------------------------------
   PREMIUM PHOTO GALLERY SECTION
------------------------------------------------------ */

.zt-gallery-section {
    padding: 80px 0;
    background: radial-gradient(800px circle at 20% 10%, #0b1220 0%, #0b1220 25%, #0f172a 70%),
                linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
    background-color: #0b1220;
}

.zt-gallery-section .zt-section-title {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 40px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.35);
}


/* -----------------------------------------------------
   GALLERY GRID (used same style as Meet Our Animals)
------------------------------------------------------ */

.zt-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

/* -----------------------------------------------------
   GALLERY ITEM CARD (same as your Animal Cards)
------------------------------------------------------ */



.zt-gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

/* -----------------------------------------------------
   IMAGE BOX
------------------------------------------------------ */

.zt-animal-link {
    position: absolute;
    inset: 0;
    display: block;
}



.zt-animal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* FIX CROPPING */
    object-position: center; /* FIX CENTER FOCUS */
    transition: transform 0.5s ease;
}

/* ZOOM ON HOVER */
.zt-gallery-item:hover img {
    transform: scale(1.15);
}

/* -----------------------------------------------------
   HOVER OVERLAY + TEXT
------------------------------------------------------ */

.zt-animal-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

/* -----------------------------------------------------
   LOAD MORE BUTTON
------------------------------------------------------ */

.zt-loadmore-wrap {
    text-align: center;
    margin-top: 30px;
}

#zt-loadmore-btn {
    background: #ff7a00;
    padding: 12px 28px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
}

#zt-loadmore-btn:hover {
    background: #e56700;
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.4);
}

/* Hidden items initially */
.hidden-item {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* -----------------------------------------------------
   MOBILE RESPONSIVE
------------------------------------------------------ */

@media(max-width: 768px) {

    .zt-gallery-section {
        padding: 60px 0;
    }

    .zt-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .zt-animal-title {
        font-size: 14px;
    }

    .zt-gallery-item {
        border-radius: 14px;
    }

    #zt-loadmore-btn {
        font-size: 14px;
        padding: 10px 22px;
    }
}

/* -----------------------------------------
   PREMIUM GALLERY GRID
----------------------------------------- */

.zt-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 26px;
    margin-top: 40px;
}

/* Card container */
.zt-gallery-item,
.zt-animal-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover lift effect */
.zt-gallery-item:hover,
.zt-animal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Image wrapper */
.zt-animal-image {
    width: 100%;
    aspect-ratio: 1 / 1; /* Makes perfect square */
    overflow: hidden;
    position: relative;
}

/* Image */
.zt-animal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    display: block;
}

/* Zoom on hover */
.zt-gallery-item:hover img,
.zt-animal-card:hover img {
    transform: scale(1.12);
}

/* Overlay for title on hover */
.zt-animal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 18px;
    transition: opacity 0.3s ease;
    border-radius: 18px;
}

/* Show overlay on hover */
.zt-gallery-item:hover .zt-animal-overlay,
.zt-animal-card:hover .zt-animal-overlay {
    opacity: 1;
}

/* Title inside overlay */
.zt-animal-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-shadow: 0 3px 8px rgba(0,0,0,0.4);
    margin: 0;
}

/* Category filter buttons */
.zt-gallery-filters {
    text-align: center;
    margin-top: 15px;
}

.filter-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px 22px;
    border-radius: 30px;
    margin: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #ff7f32;
    color: #fff;
    border-color: #ff7f32;
}


/* Hide elements for load more */
.hidden-item {
    display: none;
}

/* Load more button */
#zt-loadmore-btn {
    display: inline-block;
    background: #ff7f32;
    color: #fff;
    padding: 12px 26px;
    border-radius: 30px;
    border: none;
    margin: 35px auto 0;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.25s;
}

#zt-loadmore-btn:hover {
    background: #e96c21;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .zt-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .zt-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Smooth fade + zoom + glow */
.zt-animal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.4s ease;
    transform-origin: center;
}

.zt-gallery-item:hover img {
    transform: scale(1.14);
    filter: brightness(1.15) saturate(1.15);
}

.zt-animal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0));
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    transition: opacity 0.35s ease;
    border-radius: 18px;
    z-index: 2;
}

.zt-gallery-item:hover .zt-animal-overlay {
    opacity: 1;
}

.zt-animal-title {
    transform: translateY(15px);
    opacity: 1;
    transition: all 0.35s ease;
}

.zt-gallery-item:hover .zt-animal-title {
    transform: translateY(0);
    opacity: 1;
}

.filter-btn {
    position: relative;
    overflow: hidden;
}



.filter-btn.active::before,
.filter-btn:hover::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #ff7f32, #ff9d60);
    z-index: -1;
    opacity: 1;
    transition: all 0.3s ease;
}

.filter-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zt-masonry {
    column-count: 3;
    column-gap: 25px;
}

@media (max-width: 768px) {
    .zt-masonry { column-count: 2; }
}

@media (max-width: 480px) {
    .zt-masonry { column-count: 1; }
}

.zt-masonry .zt-gallery-item {
    break-inside: avoid;
    margin-bottom: 25px;
}

.lb-data .lb-caption {
    font-size: 18px !important;
    font-weight: 600 !important;
}

.lb-outerContainer {
    border-radius: 12px !important;
}

.lb-image {
    border-radius: 12px !important;
}
