@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* --- CUSTOM VARIABLES --- */
:root {
    --primary-yellow: #FCC203;
    --secondary-yellow: #FAD02C;
    --accent-orange: #EC6B12;
    --black: #000000;
    --white: #FFFFFF;
    --gray-dark: #121212;
    --gray-medium: #222222;
    --gray-light: #888888;
    
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-rounded: 'Fredoka', 'Outfit', sans-serif;
    --transition-smooth: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius: 12px;
}

/* --- RESET & GLOBAL STYLES --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: clip; /* prevent horizontal scroll / black edge bleed without breaking position:sticky */
}

body {
    font-family: var(--font-primary);
    background-color: var(--white);
    color: var(--black);
    overflow-x: clip;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

button {
    font-family: var(--font-primary);
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition-smooth);
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-yellow);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-orange);
}

/* --- STICKY HEADER --- */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1100px;
    height: 62px;
    z-index: 1000;
    background-color: var(--primary-yellow);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

header.scrolled {
    background-color: var(--primary-yellow);
    box-shadow: 0 8px 25px rgba(252, 194, 3, 0.35);
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.logo {
    display: none; /* logo now lives inside nav ul */
}

.mobile-logo {
    display: none; /* hidden on desktop, shown in mobile media query */
}

.mobile-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
}

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

nav {
    width: 100%;
}

nav ul {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
    width: 100%;
}

/* Logo item inside nav */
.nav-logo-item a {
    display: flex;
    align-items: center;
    padding: 0;
    background: none !important;
}

.nav-logo-img {
    height: 72px;
    width: auto;
    display: block;
    object-fit: contain;
}

nav ul li a {
    color: var(--black);
    font-size: 1rem;
    font-weight: 600;
    text-transform: none;
    padding: 0.45rem 0.9rem;
    border-radius: 30px;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

nav ul li a::after {
    display: none;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: rgba(0, 0, 0, 0.08);
    color: var(--black);
}



/* ============================================================
   ABOUT US SECTION
   ============================================================ */
.aboutus-section {
    background: #ffffff;
    padding: 0 2rem 3rem;
    overflow: hidden;
    scroll-margin-top: 100px;
}

.aboutus-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

/* ---- LEFT TEXT ---- */
.aboutus-text {
    flex: 0 0 40%;
    max-width: 420px;
}

.aboutus-heading {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
}

.aboutus-paw {
    font-size: 1.5rem;
    color: var(--primary-yellow);
}

.aboutus-heading h2 {
    font-family: var(--font-rounded);
    font-size: 2.4rem;
    font-weight: 600;
    color: #000000;
    line-height: 1;
}

.aboutus-heading h2 span {
    color: var(--accent-orange);
}

.aboutus-wave {
    font-size: 1.4rem;
    color: #000000;
    letter-spacing: -4px;
    margin-bottom: 1.4rem;
    opacity: 0.5;
}

.aboutus-text p {
    font-size: 1.05rem;
    color: #000000;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.aboutus-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #1a1a1a;
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-rounded);
    transition: var(--transition-smooth);
}

.aboutus-btn:hover {
    background: var(--primary-yellow);
    color: #000000;
    transform: translateY(-2px);
}

/* ---- RIGHT IMAGE WRAP ---- */
.aboutus-image-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pet photo — full image, no crop, transparent bg shows section bg */
.aboutus-pet-img {
    width: 100%;
    max-width: 560px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Speech bubble */
.aboutus-bubble {
    position: absolute;
    top: 2%;
    right: 0;
    background: var(--primary-yellow);
    color: #1a1a1a;
    font-weight: 800;
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.4;
    padding: 0.8rem 1.1rem;
    border-radius: 50% 50% 50% 10% / 50% 50% 50% 10%;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    z-index: 3;
    box-shadow: 0 4px 16px rgba(252, 194, 3, 0.4);
}

.aboutus-bubble i {
    font-size: 0.75rem;
    color: var(--accent-orange);
}

/* Food bowl */
.aboutus-bowl {
    position: absolute;
    bottom: -10px;
    right: 8%;
    width: 64px;
    height: 64px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    z-index: 3;
    box-shadow: 0 4px 14px rgba(236, 107, 18, 0.4);
}

/* Decorative doodles */
.doodle {
    position: absolute;
    z-index: 3;
    pointer-events: none;
}

.doodle-dashes-top {
    top: 14%;
    left: 12%;
    width: 36px;
    height: 12px;
    border-top: 3px dashed var(--primary-yellow);
    border-radius: 4px;
    transform: rotate(-20deg);
}

.doodle-curl {
    bottom: 22%;
    left: 6%;
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50% 50% 50% 0;
    transform: rotate(30deg);
}

.doodle-arrow {
    bottom: 14%;
    left: 14%;
    width: 40px;
    height: 2px;
    background: var(--primary-yellow);
}
.doodle-arrow::after {
    content: '';
    position: absolute;
    right: -1px;
    top: -5px;
    border: 6px solid transparent;
    border-left-color: var(--primary-yellow);
}

/* Responsive */
@media (max-width: 768px) {
    .aboutus-section {
        padding: 2rem 1.5rem 3rem !important;
        overflow: visible !important;
        position: relative;
        z-index: 1; /* render above canvas section background */
    }
    .aboutus-container {
        flex-direction: column;
        gap: 2.5rem;
    }
    .aboutus-text {
        max-width: 100%;
        text-align: center;
    }
    .aboutus-heading {
        justify-content: center;
    }
    .aboutus-image-wrap {
        width: 100%;
        min-height: 280px;
    }
}

/* --- FOOTER --- */

/* ============================================================
   SHARED SECTION HEADING STYLES
   ============================================================ */
.sec-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.sec-heading h2 {
    font-family: var(--font-rounded);
    font-size: 2.5rem;
    font-weight: 600;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.sec-arrow {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    vertical-align: middle;
}

.sec-arrow-flip {
    transform: scaleX(-1);
    display: inline-block;
}

.sec-heading-decorations-left,
.sec-heading-decorations-right {
    display: inline-flex;
    align-items: center;
}

.sec-wave {
    font-size: 1.3rem;
    letter-spacing: -4px;
    color: #aaa;
    margin-top: 0.3rem;
}

.sec-wave-svg {
    display: block;
    margin: 0.5rem auto 0;
    width: 60px;
    height: 6px;
}

/* ============================================================
   OUR PRODUCTS SECTION
   ============================================================ */
.products-section {
    background: #fffdf5;
    padding: 3rem 2rem 2.5rem;
    overflow: hidden;
}

.products-section-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* Floating deco icons */
.sec-deco {
    position: absolute;
    font-size: 1.6rem;
    opacity: 0.12;
    color: var(--accent-orange);
    pointer-events: none;
}
.sec-deco-paw-tl { top: 0; left: 0; transform: rotate(-20deg); }
.sec-deco-bone-tr { top: 0; right: 0; transform: rotate(20deg); }
.sec-deco-paw-br { bottom: 60px; right: 20px; transform: rotate(30deg); }

/* Custom SVG deco arrows */
.sec-deco-arrow-l {
    top: 35%;
    left: -80px;
    opacity: 0.8;
}
.sec-deco-arrow-r {
    top: 35%;
    right: -80px;
    opacity: 0.8;
}
.sec-deco-heart-tr {
    top: -10px;
    right: 20px;
    color: #FCC203;
    font-size: 1.8rem;
    opacity: 0.8;
}

/* Product circle cards */
.product-circles {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.product-circle-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-circle-card:hover {
    transform: translateY(-8px);
}

.circle-img-wrap {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    border: 3px solid rgba(0,0,0,0.06);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s;
}

.product-circle-card:hover .circle-img-wrap {
    box-shadow: 0 10px 30px rgba(252,194,3,0.3);
}

.circle-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.02);
    transition: transform 0.4s ease;
}

.product-circle-card:hover .circle-img-wrap img {
    transform: scale(1.10);
}

.product-circle-card h3 {
    font-family: var(--font-rounded);
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.4rem;
}

.product-circle-card p {
    font-size: 0.9rem;
    color: #000000;
    line-height: 1.5;
}

/* CTA Button */
.products-cta,
.services-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.products-btn {
    font-family: var(--font-rounded);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #000000;
    color: #FCC203;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s, color 0.3s;
}

.products-btn:hover {
    background: #FCC203;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 194, 3, 0.35);
}

/* ============================================================
   OUR SERVICES SECTION
   ============================================================ */
.services-preview-section {
    background: #ffffff;
    padding: 3rem 2rem 2.5rem;
}

.services-preview-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* Service cards row */
.service-cards-row {
    display: flex;
    gap: 1.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-preview-card {
    border-radius: 24px;
    padding: 1rem 1rem 0;
    flex: 1;
    min-width: 310px;
    max-width: 350px;
    height: 240px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-preview-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

/* Individual card colors matching mockup */
.svc-card-grooming {
    background-color: #f3f2f8;
    border: 1px solid rgba(0, 0, 0, 0.02);
}
.svc-card-taxi {
    background-color: #fcf6e8;
    border: 1px solid rgba(0, 0, 0, 0.02);
}
.svc-card-boarding {
    background-color: #f7f1f9;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.svc-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: flex-start;
    padding-bottom: 1rem;
    z-index: 2;
    text-align: left;
}

/* Icon wraps */
.svc-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.svc-icon-wrap.bg-black {
    background-color: #000000;
}

.svc-icon-wrap.bg-orange {
    background-color: var(--accent-orange);
    box-shadow: 0 4px 12px rgba(236, 107, 18, 0.25);
}

.svc-text h3 {
    font-family: var(--font-rounded);
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.2rem;
}

.svc-text p {
    font-size: 0.88rem;
    color: #000000;
    line-height: 1.35;
    margin-bottom: 0.4rem;
    max-width: 130px;
}

.svc-link {
    font-family: var(--font-rounded);
    font-weight: 600;
    font-size: 0.9rem;
    color: #000000;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: transform 0.2s;
}

.svc-link:hover {
    transform: translateX(3px);
}

/* Pet image at card right side */
.svc-pet-img {
    width: 200px;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
    display: block;
    margin-top: auto;
    border-radius: 0 0 24px 0;
    z-index: 1;
    transition: transform 0.3s ease;
}

.svc-card-taxi .svc-pet-img {
    width: 145px;
    height: auto;
    max-height: 82%;
    margin-right: 12px;
    margin-bottom: 28px;
}

.svc-card-boarding .svc-pet-img {
    margin-bottom: 15px;
    height: calc(100% - 15px);
}

.service-preview-card:hover .svc-pet-img {
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .sec-heading h2 {
        font-size: 1.8rem;
        flex-wrap: nowrap;
    }
    .boarding-packages-section .sec-heading h2 {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
    }
    .boarding-packages-section .sec-heading-decorations-left {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
    }
    .boarding-packages-section .sec-heading-decorations-right {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }
    .boarding-packages-section .sec-heading-text {
        text-align: center !important;
        display: block !important;
    }
    .product-circles {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 1rem;
        justify-items: center;
    }
    .product-circle-card { max-width: 100%; width: 100%; }
    .circle-img-wrap { width: 120px; height: 120px; }
    /* ── Services: marquee style on mobile ── */
    .services-preview-section {
        padding: 2rem 0 2rem;
        overflow: hidden;
    }
    .services-preview-inner {
        padding: 0;
    }
    .service-cards-row {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 1.2rem;
        padding: 0.5rem 1.5rem 1.5rem;
        margin: 0;
        overflow-x: auto;
        overflow-y: visible;
        width: 100%;
        scrollbar-width: none; /* Hide scrollbar */
        -webkit-overflow-scrolling: touch;
    }
    .service-cards-row::-webkit-scrollbar { display: none; }

    .service-preview-card {
        flex: 0 0 290px;
        min-width: 290px;
        max-width: 290px;
        height: 190px;
        padding: 1.1rem 1rem 1rem;
        align-items: flex-start;
        justify-content: space-between;
        overflow: hidden;
    }

    .service-preview-card .svc-content {
        align-self: flex-start;
        flex: 1;
        z-index: 2;
        padding-bottom: 0;
        min-width: 0;
    }

    .service-preview-card .svc-text h3 {
        font-size: 1.1rem;
    }

    .service-preview-card .svc-text p {
        max-width: 140px;
        font-size: 0.82rem;
    }

    .service-preview-card .svc-pet-img {
        width: 38%;
        max-width: 130px;
        height: 100%;
        object-fit: contain;
        object-position: bottom right;
        align-self: flex-end;
        flex-shrink: 0;
        margin-right: 0;
        margin-bottom: 0;
        z-index: 1;
    }

    .svc-card-taxi .svc-pet-img {
        width: 35%;
        max-width: 110px;
        margin-right: 6px;
        margin-bottom: 10px;
    }
}


/* --- SERVICES PAGE: FEATURES / HIGHLIGHTS BAR --- */
.svc-features-bar {
    background-color: #fff8d6;
    padding: 2rem 4rem;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    margin: 2rem 3rem;
}

.svc-deco {
    position: absolute;
    font-size: 1.4rem;
    color: #ccc3b8;
    opacity: 0.5;
}
.svc-deco-tl { top: 10px; left: 16px; }
.svc-deco-br { bottom: 10px; right: 16px; transform: rotate(30deg); }

.svc-features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.svc-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    padding: 0 1.5rem;
}

.svc-feat-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0;
}

.svc-icon-orange { background: linear-gradient(135deg, #e8682a, #f0943a); }
.svc-icon-dark   { background: #3a3a3a; }
.svc-icon-yellow { background: linear-gradient(135deg, #e8a800, #FCC203); }

.svc-feat-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.25rem;
    line-height: 1.2;
}

.svc-feat-text p {
    font-size: 0.82rem;
    color: #555;
    margin: 0;
    line-height: 1.4;
}

.svc-feat-divider {
    width: 1px;
    height: 56px;
    background: repeating-linear-gradient(
        to bottom,
        #bbb 0px,
        #bbb 5px,
        transparent 5px,
        transparent 10px
    );
    flex-shrink: 0;
}
/* --- SERVICES PAGE: YELLOW SERVICE CARDS --- */
.svc-cards-section {
    padding: 2rem 2rem 3rem;
    background-color: #ffffff;
}

.svc-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.2rem;
    max-width: 1150px;
    margin: 0 auto;
}

.svc-card {
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    display: block;
    box-shadow: 0 8px 24px rgba(252, 194, 3, 0.15);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
}

.svc-card-main-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 40px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.svc-card:hover .svc-card-main-img {
    transform: scale(1.03);
}

.svc-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem;
    box-sizing: border-box;
    z-index: 2;
}

.svc-card-title {
    font-family: var(--font-rounded);
    font-size: 2.2rem;
    font-weight: 700;
    color: #121212;
    line-height: 1.1;
    margin: 0;
    max-width: 60%;
}

.svc-card-divider {
    width: 40px;
    height: 4px;
    background-color: #121212;
    border: none;
    border-radius: 2px;
    margin: 0.8rem 0;
}

.svc-card-desc {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 500;
    color: #333333;
    line-height: 1.4;
    margin: 0 0 1.5rem 0;
    max-width: 55%;
}

.svc-card-btn {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
    background-color: #000000;
    color: #FCC203;
    padding: 0.7rem 1.6rem;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

/* Pop up animation when hovering over the card */
.svc-card:hover .svc-card-btn {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* More pronounced popup when the button itself is hovered */
.svc-card-btn:hover {
    transform: translateY(-6px) scale(1.1) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3) !important;
}

/* Custom white theme for Pet Taxi card to ensure legibility on dark background image */
.svc-card-taxi-theme .svc-card-title {
    color: #ffffff !important;
}
.svc-card-taxi-theme .svc-card-divider {
    background-color: #ffffff !important;
}
.svc-card-taxi-theme .svc-card-desc {
    color: #ffffff !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Let's adjust sizes on medium screens (e.g., tablet / smaller desktop) */
@media (max-width: 1200px) {
    .svc-card-overlay {
        padding: 2.2rem;
    }
    .svc-card-title {
        font-size: 1.8rem;
    }
    .svc-card-desc {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    .svc-card-btn {
        padding: 0.6rem 1.3rem;
        font-size: 0.88rem;
    }
}

@media (max-width: 1024px) {
    .svc-card-overlay {
        padding: 2rem;
    }
    .svc-card-title {
        font-size: 1.6rem;
    }
    .svc-card-desc {
        font-size: 0.88rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 850px) {
    .svc-card-overlay {
        padding: 2.5rem;
    }
    .svc-card-title {
        font-size: 2rem;
    }
    .svc-card-desc {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
}

/* Responsiveness */
@media (max-width: 1024px) {
    .svc-cards-grid {
        gap: 1.5rem;
    }
    .svc-card {
        border-radius: 32px;
    }
    .svc-card-main-img {
        border-radius: 32px;
    }
}

@media (max-width: 850px) {
    .svc-cards-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin: 0 auto;
    }
    .svc-card {
        min-height: 280px;
    }
    .svc-card:not(.prod-card) {
        min-height: 230px;
    }
    .svc-card-main-img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        object-position: 85% center;
        border-radius: 28px;
    }
    .svc-card:not(.prod-card) .svc-card-main-img {
        height: 230px;
    }
    .svc-card:not(.prod-card) .svc-card-overlay {
        padding: 1.5rem;
    }
    .svc-card-title {
        font-size: 1.8rem;
        max-width: 50%;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    .svc-card:not(.prod-card) .svc-card-title {
        font-size: 1.5rem;
    }
    .prod-card .svc-card-title {
        margin-bottom: 0.8rem;
    }
    .svc-card-desc {
        max-width: 48%;
        margin-bottom: 1.6rem;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    .svc-card:not(.prod-card) .svc-card-desc {
        margin-bottom: 1rem;
    }
}

@media (max-width: 580px) {
    .svc-card-overlay {
        padding: 1rem 0.8rem 1rem 1.2rem;
        justify-content: center !important;
        background: transparent !important;
    }
    .svc-card-title {
        font-size: 1.25rem;
        max-width: 54%;
        color: #121212 !important;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    .prod-card .svc-card-title {
        margin-bottom: 0.4rem;
    }
    .svc-card-divider {
        margin: 0.4rem 0;
        height: 3px;
        width: 30px;
        background-color: #121212 !important;
    }
    .svc-card-desc {
        max-width: 52%;
        font-size: 0.8rem;
        line-height: 1.25;
        margin-bottom: 0.8rem;
        color: #333333 !important;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    .svc-card-btn, .prod-card-btn {
        padding: 0.45rem 0.9rem;
        font-size: 0.78rem;
        background-color: #000000 !important;
        color: #FCC203 !important;
    }
}

@media (max-width: 480px) {
    .svc-cards-section {
        padding: 2rem 1rem 3rem;
    }
    .svc-cards-grid {
        max-width: 100%;
    }
    .svc-card {
        border-radius: 24px;
        min-height: 240px;
    }
    .svc-card:not(.prod-card) {
        min-height: 200px !important;
    }
    .svc-card-main-img {
        border-radius: 24px;
        height: 240px;
        object-fit: cover;
        object-position: 85% center;
    }
    .svc-card:not(.prod-card) .svc-card-main-img {
        height: 200px !important;
    }
    /* Inherits card text coloring and centering from 580px breakpoint */
    .service-preview-card {
        min-width: unset !important;
        width: 100% !important;
    }
}

@media (max-width: 410px) {
    .svc-card-overlay {
        padding: 0.8rem 0.6rem 0.8rem 1rem;
        justify-content: center !important;
        background: transparent !important;
    }
    .svc-card-title {
        font-size: 1.15rem;
        max-width: 54%;
        color: #121212 !important;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    .svc-card:not(.prod-card) .svc-card-title {
        font-size: 1.08rem;
    }
    .prod-card .svc-card-title {
        margin-bottom: 0.3rem;
    }
    .svc-card-divider {
        margin: 0.3rem 0;
        height: 2.5px;
        width: 25px;
        background-color: #121212 !important;
    }
    .svc-card:not(.prod-card) .svc-card-divider {
        margin: 0.2rem 0;
    }
    .svc-card-desc {
        font-size: 0.75rem;
        margin-bottom: 0.6rem;
        max-width: 52%;
        line-height: 1.2;
        color: #333333 !important;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    .svc-card:not(.prod-card) .svc-card-desc {
        font-size: 0.7rem;
        margin-bottom: 0.45rem;
    }
    .svc-card:not(.prod-card) {
        min-height: 185px !important;
    }
    .svc-card:not(.prod-card) .svc-card-main-img {
        height: 185px !important;
    }
    .svc-card-btn, .prod-card-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.72rem;
        background-color: #000000 !important;
        color: #FCC203 !important;
    }
    .svc-card:not(.prod-card) .svc-card-btn {
        padding: 0.35rem 0.7rem;
        font-size: 0.68rem;
    }
}

@media (max-width: 360px) {
    .svc-card-title {
        font-size: 1.05rem;
    }
    .svc-card:not(.prod-card) .svc-card-title {
        font-size: 0.98rem;
    }
    .svc-card-desc {
        font-size: 0.7rem;
    }
    .svc-card:not(.prod-card) .svc-card-desc {
        font-size: 0.65rem;
    }
    .svc-card:not(.prod-card) {
        min-height: 175px !important;
    }
    .svc-card:not(.prod-card) .svc-card-main-img {
        height: 175px !important;
    }
    .svc-card-btn, .prod-card-btn {
        padding: 0.35rem 0.75rem;
        font-size: 0.68rem;
    }
    .svc-card:not(.prod-card) .svc-card-btn {
        padding: 0.3rem 0.65rem;
        font-size: 0.65rem;
    }
}



/* --- FOOTER --- */


footer {
    background-color: transparent;
    padding: 0;
    margin-top: 2.5rem;
    position: relative;
    overflow: visible;
}

.footer-main-card {
    background-color: var(--primary-yellow);
    border-radius: 40px 40px 0 0;
    padding: 2.2rem 4rem 1.6rem;
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1px 1fr 1px 2fr;
    gap: 2rem;
    align-items: stretch;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.brand-col .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-rounded);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1;
}

.footer-logo-img {
    height: 55px;
    width: auto;
    display: block;
    object-fit: contain;
}

.brand-col .paw-logo-icon {
    color: var(--primary-yellow);
    font-size: 2rem;
}

.brand-col .logo-text-white {
    color: var(--white);
}

.brand-col .logo-text-yellow {
    color: var(--primary-yellow);
}

.brand-col p {
    color: var(--gray-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 320px;
}

.footer-social-row {
    display: flex;
    gap: 0.8rem;
}

.social-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    border: none;
}

.social-circle:hover {
    background-color: var(--primary-yellow);
    color: #000000;
    transform: translateY(-3px);
}

.col-divider {
    border-left: 1.5px dashed rgba(0, 0, 0, 0.15);
    height: auto;
    align-self: stretch;
}

.footer-col h4 {
    color: var(--black);
    font-family: var(--font-rounded);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: none;
    letter-spacing: normal;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col ul li a {
    color: var(--gray-dark);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.newsletter-col p {
    color: var(--gray-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    max-width: 270px;
    position: relative;
    z-index: 8;
}

.newsletter-form {
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-radius: 30px;
    padding: 4px 4px 4px 16px;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 8;
}

.newsletter-input {
    border: none;
    outline: none;
    background: transparent;
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: var(--black);
    width: 100%;
    font-family: var(--font-primary);
}

.newsletter-input::placeholder {
    color: var(--gray-light);
}

.newsletter-btn {
    background-color: var(--primary-yellow);
    color: var(--black);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.newsletter-btn:hover {
    background-color: var(--accent-orange);
    color: var(--white);
    transform: scale(1.05);
}

/* Cute cartoon pets illustration */
.footer-pets-wrap {
    position: absolute;
    bottom: 0px;
    right: 20px;
    width: 340px;
    z-index: 6;
    pointer-events: none;
}

@media (min-width: 1025px) and (max-width: 1250px) {
    .footer-pets-wrap {
        right: -40px;
    }
}

.footer-pets-img {
    width: 100%;
    height: auto;
    display: block;
    transform: translateY(16px);
}

/* Yellow Copyright Bar with Wavy top edge */
.footer-bottom-bar {
    background-color: var(--gray-dark);
    color: var(--primary-yellow);
    padding: 0.8rem 2rem 0.8rem;
    text-align: center;
    position: relative;
    z-index: 5;
    margin-top: -1px;
}

.footer-bottom-bar::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    width: 100%;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 20' width='40' height='20'%3E%3Cpath d='M 0,20 A 20,20 0 0,1 40,20 Z' fill='%23121212'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 32px 16px;
}

.footer-bottom-badge {
    display: none;
}

.footer-copyright-text {
    font-family: var(--font-rounded);
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-policy-links {
    margin-top: 0.6rem;
    font-family: var(--font-rounded);
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.2rem;
}

.footer-policy-links a {
    color: var(--primary-yellow);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-policy-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-policy-links .separator {
    margin: 0 0.5rem;
    opacity: 0.5;
    color: var(--primary-yellow);
}

.footer-dev-link {
    margin-top: 0.5rem;
    font-family: var(--font-rounded);
    font-size: 0.85rem;
    font-weight: 500;
}

.footer-dev-link a {
    color: var(--primary-yellow);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-dev-link a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* --- COMMON LAYOUT & UTILITIES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 3rem 0;
}

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

.section-title {
    font-family: var(--font-rounded);
    font-size: 2.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.section-title span {
    color: var(--accent-orange);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto 4rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background-color: var(--primary-yellow);
    color: var(--black);
    padding: 1rem 2.2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(252, 194, 3, 0.3);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background-color: var(--secondary-yellow);
    box-shadow: 0 10px 30px rgba(252, 194, 3, 0.5);
    transform: translateY(-3px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background-color: transparent;
    color: var(--white);
    padding: 0.9rem 2.1rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* --- SCROLL CANVAS ANIMATION FRAMEWORK --- */
.scroll-canvas-container {
    position: relative;
    width: 100%;
    height: 350vh; /* Determines pinning scroll depth */
    background-color: var(--white);
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

@media (max-width: 768px) {
    /* Pull the banner up over the canvas bottom whitespace on mobile */
    .scroll-canvas-container {
        margin-bottom: -250px;
    }
    .sticky-canvas-wrapper {
        top: 0 !important;
        height: 100vh !important;
    }
}



.sticky-canvas-wrapper {
    position: sticky;
    top: 82px; /* Clear fixed desktop header (20px top + 62px height) */
    height: calc(100vh - 82px);
    width: 100%;
    overflow: hidden;
    background-color: var(--white);
    border: none;
    outline: none;
}

/* Bottom shadow fade to transition canvas into next sections */
.sticky-canvas-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to bottom, transparent, #ffffff);
    pointer-events: none;
    z-index: 10;
}

#scroll-animation-canvas {
    width: 100%;
    height: 100%;
    display: block;
    background-color: var(--white);
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}


/* Scroll Indicator Overlay */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--black);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 10;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.scroll-indicator.fade-out {
    opacity: 0;
}

.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid var(--black);
    border-radius: 12px;
    position: relative;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary-yellow);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel-anim 1.5s infinite;
}

@keyframes scroll-wheel-anim {
    0% { opacity: 0; transform: translate(-50%, 0); }
    15% { opacity: 1; }
    50% { opacity: 1; transform: translate(-50%, 10px); }
    100% { opacity: 0; transform: translate(-50%, 10px); }
}

/* --- BANNER SLIDESHOW (DESKTOP) --- */
/* Desktop: banner sits naturally below the scroll-canvas section — no overlap */
.banner-below-video {
    position: relative;
    z-index: 6;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: transparent;
    margin-top: 0;
    margin-bottom: 30px;
    border-bottom: none;
}

/* Keep the old #slide-banners selector working for JS slideshow targeting */
#slide-banners {
    justify-content: center;
    align-items: center;
    padding: 0;
    background: transparent;
}

/* Slideshow Wrapper */
.banner-slideshow-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Slideshow Track: holds all slides side by side, transitions via opacity */
.banner-slideshow-track {
    width: 100%;
    position: relative;
}

/* Individual Slide */
.banner-slide {
    width: 100%;
    display: none;
    animation: bannerFadeIn 0.6s ease-in-out;
}

.banner-slide.active {
    display: block;
}

@keyframes bannerFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.banner-slideshow-wrapper {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 36px;
}

.banner-img {
    width: 100% !important;
    height: auto !important;
    display: block;
    object-fit: contain;
    border-radius: 36px;
    box-shadow: none;
    transition: var(--transition-smooth);
    margin: 0 !important;
}

/* Navigation Arrow Buttons — hidden */
.banner-nav-btn {
    display: none;
}



@media (max-width: 768px) {
    /* Banner: uses z-index:2 so it paints above the canvas background even with overlap */
    .banner-below-video,
    #slide-banners {
        position: relative !important;
        z-index: 2 !important;
        margin-top: 18px !important;
        display: block !important;
        padding: 0 0.5rem !important;
        background: transparent !important;
        border-bottom: none;
    }

    .banner-slideshow-wrapper {
        width: 96% !important;
        border-radius: 14px !important;
        margin: 0 auto;
    }
    .banner-img {
        border-radius: 14px !important;
    }
    .banner-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
    .banner-prev { left: 10px; }
    .banner-next { right: 10px; }
}


/* --- BRAND LOGO / GRID CARDS --- */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1100px;
    margin-top: 2rem;
}

.brand-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: var(--transition-smooth);
}

.brand-card:hover {
    background: rgba(252, 194, 3, 0.05);
    border-color: var(--primary-yellow);
    transform: scale(1.05);
}

.brand-card img {
    max-height: 50px;
    max-width: 100%;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.brand-card:hover img {
    filter: none;
    opacity: 1;
}

/* --- PRODUCT SHOWCASE / SERVICES GRID --- */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    width: 100%;
    max-width: 1200px;
    margin-top: 2rem;
}

.showcase-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.showcase-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
    box-shadow: 0 15px 35px rgba(252, 194, 3, 0.15);
}

.showcase-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.showcase-card:hover .showcase-image img {
    transform: scale(1.08);
}

.showcase-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-yellow);
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
}

.showcase-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.showcase-info h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.showcase-info p {
    color: var(--gray-medium);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.showcase-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 1.2rem;
}

.showcase-price {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--accent-orange);
}

.showcase-link {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.showcase-link:hover {
    color: var(--accent-orange);
}

/* --- HOME PAGE LANDING --- */
.hero-landing {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    z-index: 10;
}

.hero-landing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(252, 194, 3, 0.08) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 850px;
    padding: 0 2rem;
}

.hero-tagline {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-title span {
    color: var(--primary-yellow);
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--gray-light);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-light);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse-icon {
    width: 24px;
    height: 38px;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary-yellow);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel-anim 1.5s infinite;
}

@keyframes scroll-wheel-anim {
    0% { top: 6px; opacity: 1; }
    50% { top: 16px; opacity: 0; }
    100% { top: 6px; opacity: 1; }
}

/* --- ABOUT SECTION --- */
.about-section {
    background: linear-gradient(to bottom, var(--black), var(--gray-dark));
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(1.1);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    pointer-events: none;
}

.about-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.about-text h2 span {
    color: var(--primary-yellow);
}

.about-text p {
    color: var(--gray-light);
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-feature i {
    width: 42px;
    height: 42px;
    background-color: rgba(252, 194, 3, 0.1);
    color: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 1px solid rgba(252, 194, 3, 0.2);
}

.about-feature span {
    font-weight: 600;
    font-size: 1rem;
}

/* --- MARQUEE SECTION --- */
.marquee-section {
    background-color: var(--black);
    overflow: hidden;
    padding: 3rem 0;
}

.marquee-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100vw;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-anim-left 35s linear infinite;
    gap: 2rem;
}

.marquee-track.reverse {
    animation: marquee-anim-right 35s linear infinite;
}

.marquee-card {
    width: 280px;
    background: var(--gray-dark);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-smooth);
}

.marquee-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
}

.marquee-card-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #111;
}

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

.marquee-card-details h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.marquee-card-details span {
    font-size: 0.8rem;
    color: var(--primary-yellow);
    font-weight: 600;
    text-transform: uppercase;
}

.marquee-card-details p {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-top: 0.2rem;
}

@keyframes marquee-anim-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-anim-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* --- DETAILS MODAL --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 850px;
    border-radius: 16px;
    overflow: hidden;
    z-index: 2001;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background: var(--primary-yellow);
    color: var(--black);
    transform: rotate(90deg);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
}

.modal-image {
    height: 100%;
    min-height: 400px;
    background-color: #f5f5f5;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-body {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-tag {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.modal-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--black);
}

.modal-meta {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
}

.modal-description {
    color: var(--gray-medium);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-benefits {
    margin-bottom: 2rem;
}

.modal-benefits-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 0.8rem;
}

.modal-benefits ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modal-benefits ul li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.modal-benefits ul li i {
    color: var(--accent-orange);
}

/* --- BLOG PAGE --- */
.blog-header {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.9)), url('assets/images/blog_hero_bg.png') center/cover;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 60px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.blog-header .section-title,
.contact-header .section-title {
    color: var(--white) !important;
}

.blog-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-yellow);
    box-shadow: 0 15px 35px rgba(252, 194, 3, 0.15);
}

.blog-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-image img {
    transform: scale(1.06);
}

.blog-info {
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--accent-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--black);
}

.blog-desc {
    color: var(--gray-medium);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
}

.blog-read-more {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card:hover .blog-read-more {
    color: var(--accent-orange);
}

/* --- CONTACT PAGE --- */
.contact-header {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1583511655857-d19b40a7a54e?auto=format&fit=crop&q=80&w=1500') center/cover;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
}

.contact-card-info {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.contact-card-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.contact-detail-item:last-child {
    margin-bottom: 0;
}

.contact-detail-item i {
    width: 48px;
    height: 48px;
    background-color: rgba(236, 107, 18, 0.08);
    color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid rgba(236, 107, 18, 0.2);
}

.contact-detail-text h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 0.3rem;
}

.contact-detail-text p {
    color: var(--gray-medium);
    font-size: 0.95rem;
}

.contact-form-container {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.contact-form-container h3 {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 2rem;
}

.form-group-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.6rem;
    color: var(--accent-orange);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: var(--black);
    padding: 1rem 1.2rem;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-orange);
    background-color: var(--white);
    outline: none;
    box-shadow: 0 0 10px rgba(236, 107, 18, 0.15);
}

.form-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-buttons button {
    flex: 1;
}

.map-section {
    padding-top: 0;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-main-card {
        padding: 2rem 1.5rem 0.8rem !important;
        border-radius: 30px 30px 0 0 !important;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        text-align: center;
    }
    .col-divider {
        display: none;
    }
    .footer-col {
        align-items: center;
    }
    .footer-col h4 {
        margin-bottom: 0.5rem !important;
    }
    .footer-col ul {
        gap: 0.4rem !important;
    }
    .brand-col .footer-logo {
        margin-bottom: 0.4rem !important;
    }
    .brand-col p {
        margin-bottom: 0.6rem !important;
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }
    .newsletter-col {
        display: none !important;
    }
    .footer-social-row {
        justify-content: center;
    }
    .footer-pets-wrap {
        position: relative;
        bottom: auto;
        right: auto;
        margin: -0.5rem auto -1rem;
        z-index: 4;
        width: 140px;
    }
    .footer-pets-img {
        transform: translateY(10px);
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        height: 60px;
        background: var(--primary-yellow);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    header.scrolled {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }
    /* Mobile header layout: burger left, logo centre */
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 100%;
        padding: 0 1.2rem;
        position: relative;
    }
    .mobile-nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        color: var(--black) !important;
        font-size: 1.5rem;
        border: none;
        padding: 0.3rem;
        flex-shrink: 0;
        z-index: 2;
    }
    /* Logo centred in the header bar */
    .mobile-logo {
        display: flex !important;
        align-items: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        height: 48px;
        z-index: 1;
    }
    .mobile-logo-img {
        height: 48px;
        width: auto;
        object-fit: contain;
        display: block;
    }
    .nav-logo-item {
        display: none !important;
    }
    nav {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: var(--black);
        padding: 3rem 2rem;
        transition: var(--transition-smooth);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    nav.active {
        left: 0;
    }
    nav ul {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    nav ul li a {
        font-size: 1.3rem;
        color: var(--white); /* Ensure mobile menu links are white on black dropdown */
    }
    nav ul li a.active {
        color: #FCC203 !important;
        background-color: transparent !important;
    }

    .hero-title {
        font-size: 3rem;
    }
    .hero-desc {
        font-size: 1.1rem;
    }
    .overlay-slide h2 {
        font-size: 2.2rem;
    }
    .overlay-slide p {
        font-size: 1rem;
    }
    .modal-content {
        max-height: 90vh;
        overflow-y: auto;
    }
    .modal-grid {
        grid-template-columns: 1fr;
    }
    .modal-image {
        min-height: 250px;
        height: 250px;
    }
    .modal-body {
        padding: 2rem;
    }
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .svc-features-bar {
        margin: 1.5rem 1rem !important;
        padding: 1.5rem 1rem !important;
        border-radius: 24px !important;
    }
    .svc-features-grid {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }
    .svc-feature-item {
        padding: 0;
    }
    .svc-feat-divider {
        display: none;
    }
    
    /* Mobile Footer Height Optimization */
    .footer-main-card {
        padding: 1.2rem 1.2rem 0.4rem !important;
        border-radius: 25px 25px 0 0 !important;
    }
    .footer-container {
        gap: 0.6rem !important;
    }
    .brand-col .footer-logo {
        margin-bottom: 0.2rem !important;
    }
    .brand-col p {
        margin-bottom: 0.4rem !important;
        font-size: 0.85rem !important;
        line-height: 1.35 !important;
    }
    .footer-social-row {
        gap: 0.5rem !important;
    }
    .social-circle {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.95rem !important;
    }
    .footer-col h4 {
        margin-bottom: 0.25rem !important;
        font-size: 1.05rem !important;
    }
    .footer-col ul {
        gap: 0.2rem !important;
    }
    .footer-col ul li a {
        font-size: 0.85rem !important;
    }
    .footer-pets-wrap {
        width: 90px !important;
        margin: -0.5rem auto -1.2rem !important;
    }
    .footer-pets-img {
        transform: translateY(6px) !important;
    }
    .footer-bottom-bar {
        padding: 0.5rem 1rem 0.5rem !important;
    }
    .footer-copyright-text {
        font-size: 0.8rem !important;
    }
    .footer-policy-links {
        margin-top: 0.25rem !important;
        font-size: 0.75rem !important;
        gap: 0.25rem 0.1rem !important;
    }
    .footer-policy-links .separator {
        margin: 0 0.25rem !important;
    }
    .footer-dev-link {
        margin-top: 0.2rem !important;
        font-size: 0.75rem !important;
    }

    /* Contact Page Mobile Optimization & Centering (screens below 768px) */
    .contact-page-title-wrap {
        text-align: center !important;
        margin: 2rem 0 1rem 0 !important;
    }
    .contact-page-title-wrap h1 {
        font-size: 2.2rem !important;
        text-align: center !important;
    }
    .contact-layout {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        margin: 1.5rem 0 2rem 0 !important;
    }
    .msg-form-card {
        padding: 1.5rem !important;
        text-align: center !important;
        border-radius: 28px !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02) !important;
        width: 100% !important;
    }
    .msg-form-card h2 {
        justify-content: center !important;
        font-size: 1.8rem !important;
        margin-bottom: 0.4rem !important;
    }
    .msg-form-card p.subtitle {
        margin-bottom: 1.5rem !important;
        font-size: 0.9rem !important;
    }
    .form-row-2 {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
    .form-field-wrap {
        margin-bottom: 1.2rem !important;
    }
    .form-field-wrap input, 
    .form-field-wrap select,
    .form-field-wrap textarea {
        padding: 0.85rem 1rem 0.85rem 3rem !important;
        font-size: 0.9rem !important;
    }
    .form-field-wrap i {
        left: 16px !important;
    }
    .form-acceptance-wrap {
        margin: 1.2rem 0 !important;
        gap: 8px !important;
        justify-content: center !important;
    }
    .form-acceptance-wrap input[type="checkbox"] {
        width: 18px !important;
        height: 18px !important;
        margin-top: 2px !important;
    }
    .form-acceptance-wrap label {
        font-size: 0.85rem !important;
    }
    .btn-send-msg {
        width: 100% !important;
        justify-content: center !important;
        padding: 0.85rem 2rem !important;
        font-size: 0.95rem !important;
    }
    .contact-info-section {
        text-align: center !important;
        align-items: center !important;
        gap: 1.2rem !important;
        width: 100% !important;
    }
    .contact-info-section h2 {
        justify-content: center !important;
        font-size: 1.8rem !important;
        margin-bottom: 0.4rem !important;
    }
    .info-row-item {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 0.6rem !important;
        padding-bottom: 1.2rem !important;
        width: 100% !important;
    }
    .info-text-box {
        text-align: center !important;
    }
    .info-text-box h4 {
        font-size: 1.05rem !important;
        margin-bottom: 0.2rem !important;
    }
    .info-text-box p {
        font-size: 0.95rem !important;
    }
    .info-social-row {
        justify-content: center !important;
        gap: 0.6rem !important;
    }
    .faq-section {
        margin-bottom: 2rem !important;
        text-align: center !important;
    }
    .faq-header-row {
        flex-direction: column !important;
        gap: 0.5rem !important;
        margin-bottom: 1.8rem !important;
        align-items: center !important;
    }
    .faq-header-row h2 {
        font-size: 1.8rem !important;
        justify-content: center !important;
    }
    .faq-grid-cols {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    .faq-col-card {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    .faq-icon-circle {
        margin: 0 auto 0.8rem auto !important;
    }
    .faq-col-card h4 {
        font-size: 1.05rem !important;
        margin-bottom: 0.4rem !important;
    }
    .faq-col-card p {
        font-size: 0.9rem !important;
    }

    /* Global Mobile Spacing Optimizations */
    .sec-heading {
        margin-bottom: 1.8rem !important;
    }
    .aboutus-section {
        padding: 1.5rem 1.2rem 1.8rem !important;
    }
    .aboutus-container {
        gap: 1.5rem !important;
    }
    .products-section {
        padding: 1.8rem 1.2rem 1.8rem !important;
    }
    .services-preview-section {
        padding: 1.8rem 1.2rem 1.8rem !important;
    }
    .branches-section {
        padding: 1.8rem 0 1.8rem !important;
    }
    .branches-subtitle {
        margin-bottom: 1.2rem !important;
    }
    .svc-cards-section {
        padding: 1.5rem 1.2rem 1.8rem !important;
    }
    .svc-cards-grid {
        gap: 1rem !important;
    }
    .about-values-section {
        padding: 1.8rem 0 !important;
    }
    .marquee-section {
        padding: 1.8rem 0 !important;
    }
    .faq-section {
        margin-bottom: 1.8rem !important;
    }
    .about-narrative {
        margin: 0 auto 1.5rem auto !important;
    }
    .about-vision-mission-grid {
        gap: 1.2rem !important;
    }
    .about-grid-card {
        padding: 1.5rem !important;
    }
    .grooming-packages-section,
    .boarding-packages-section {
        padding-top: 80px !important;
        padding-bottom: 1.2rem !important;
    }
    .section-padding {
        padding: 1.8rem 0 !important;
    }
}

/* ============================================================
   PRODUCT CARDS GRID (Black Cards)
   ============================================================ */
/* ============================================================
   PRODUCT CARDS SYSTEM BUTTONS
   ============================================================ */
.prod-card-btn {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.95rem;
    background-color: #000000;
    color: #FCC203;
    padding: 0.7rem 1.6rem;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

/* Pop up animations on card hover */
.svc-card:hover .prod-card-btn {
    transform: translateY(-4px) scale(1.05);
}

.prod-card-btn:hover {
    transform: translateY(-6px) scale(1.1) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4) !important;
}

/* ============================================================
   CONTACT PAGE STYLING
   ============================================================ */
.contact-page-title-wrap {
    text-align: left;
    margin: 3rem 0 1rem 0;
}

.contact-page-title-wrap h1 {
    font-family: var(--font-rounded);
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3.5rem;
    margin: 2rem auto 3rem;
}

.msg-form-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 40px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    text-align: left;
}

.msg-form-card::after {
    content: '♥';
    position: absolute;
    bottom: 25px;
    right: 35px;
    font-size: 1.5rem;
    color: #e5b3b3;
    opacity: 0.7;
    transform: rotate(-10deg);
}

.msg-form-card h2,
.contact-info-section h2,
.loc-card-overlay h2,
.faq-section h2 {
    font-family: var(--font-rounded);
    font-size: 2.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-wave-accent {
    color: #b5b5b5;
    font-size: 1.2rem;
    letter-spacing: -3px;
    font-weight: normal;
}

.msg-form-card p.subtitle {
    font-size: 0.95rem;
    color: var(--gray-light);
    margin-bottom: 2.2rem;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-field-wrap {
    position: relative;
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-field-wrap i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999999;
    font-size: 1rem;
    pointer-events: none;
}

.form-field-wrap.textarea-wrap i {
    top: 25px;
    transform: none;
}

.form-field-wrap input,
.form-field-wrap textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3.2rem;
    border: 1px solid #eaeaea;
    border-radius: 30px;
    outline: none;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: #000000;
    background-color: #fafafa;
    transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.form-field-wrap textarea {
    border-radius: 24px;
    resize: none;
}

.form-field-wrap input:focus,
.form-field-wrap textarea:focus {
    border-color: var(--primary-yellow);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(252, 194, 3, 0.15);
}

.form-field-wrap input::placeholder,
.form-field-wrap textarea::placeholder {
    color: #b5b5b5;
}

.form-acceptance-wrap {
    margin: 1.5rem 0 1.8rem 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.form-acceptance-wrap input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    accent-color: var(--primary-yellow);
    cursor: pointer;
    flex-shrink: 0;
}

.form-acceptance-wrap label {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--gray-medium);
    line-height: 1.4;
    cursor: pointer;
    user-select: none;
}

.form-acceptance-wrap label a {
    color: var(--accent-orange);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.form-acceptance-wrap label a:hover {
    color: var(--primary-yellow);
}

.btn-send-msg {
    background-color: var(--primary-yellow);
    color: var(--black);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.95rem 2.2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 6px 18px rgba(252, 194, 3, 0.25);
    border: none;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.btn-send-msg:hover {
    background-color: var(--secondary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(252, 194, 3, 0.35);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    text-align: left;
}

.info-row-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed #eaeaea;
}

.info-row-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.info-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #ffffff;
    flex-shrink: 0;
}

.info-icon-box.yellow-bg {
    background-color: var(--primary-yellow);
    color: var(--black);
}

.info-icon-box.dark-bg {
    background-color: #333333;
}

.info-text-box h4 {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.2rem;
}

.info-text-box p {
    font-size: 0.95rem;
    color: #333333;
    line-height: 1.4;
}

.info-text-box span.sub {
    font-size: 0.85rem;
    color: var(--gray-light);
    display: block;
    margin-top: 0.15rem;
}

.info-social-row {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.3rem;
}

.info-social-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    transition: background-color 0.3s, transform 0.3s;
}

.info-social-circle:hover {
    background-color: var(--primary-yellow);
    color: var(--black);
    transform: translateY(-2px);
}

.our-location-section {
    margin: 1.5rem 0 3rem;
}

.loc-banner-card {
    background-color: #f7f6f2;
    background-image: url('assets/images/extracted_images/contact_map.png');
    background-size: cover;
    background-position: center;
    border-radius: 40px;
    height: 380px;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 4rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.loc-card-overlay {
    background: #ffffff;
    border-radius: 30px;
    padding: 2.2rem;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    z-index: 2;
    text-align: left;
}

.loc-card-overlay p {
    font-size: 0.95rem;
    color: #333333;
    line-height: 1.45;
    margin: 0.8rem 0 1.5rem;
}

.btn-directions {
    background-color: #ffffff;
    color: #000000;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.75rem 1.6rem;
    border-radius: 30px;
    border: 1px solid #cccccc;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s, background-color 0.3s, transform 0.3s;
}

.btn-directions:hover {
    border-color: #000000;
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

.faq-section {
    margin-bottom: 3rem;
}

.faq-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.faq-view-all {
    font-family: var(--font-rounded);
    font-weight: 700;
    font-size: 1rem;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: transform 0.2s;
}

.faq-view-all:hover {
    transform: translateX(3px);
}

.faq-grid-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.faq-col-card {
    text-align: left;
}

.faq-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #f5f4ef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #000000;
    margin-bottom: 1.2rem;
    box-shadow: 0 3px 8px rgba(0,0,0,0.02);
}

.faq-col-card h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.faq-col-card p {
    font-size: 0.92rem;
    color: #555555;
    line-height: 1.45;
    margin-bottom: 0.8rem;
}

.faq-learn-more {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--accent-orange);
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    transition: transform 0.2s;
}

.faq-learn-more:hover {
    transform: translateX(2px);
}

/* Responsiveness for Contact Page */
@media (max-width: 950px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .loc-banner-card {
        padding-left: 2rem;
        padding-right: 2rem;
        height: auto;
        padding-top: 5rem;
        padding-bottom: 5rem;
        justify-content: center;
    }
    .loc-card-overlay {
        max-width: 100%;
    }
    .faq-grid-cols {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 650px) {
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .faq-grid-cols {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .msg-form-card {
        padding: 2rem;
    }
}

/* ============================================================
   ABOUT PAGE STYLING
   ============================================================ */
.about-page-hero {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.85)), url('assets/images/about_hero_bg.png') center/cover no-repeat;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 60px;
    border-radius: 0 0 40px 40px;
}
.about-page-hero h1 {
    font-family: var(--font-rounded);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}
.about-page-hero p {
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto;
    color: #f8f9fa;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    font-weight: 500;
}
@media (max-width: 768px) {
    .about-page-hero {
        height: 30vh;
        margin-top: 60px;
    }
    .about-page-hero h1 {
        font-size: 2.2rem;
    }
    .about-page-hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

.about-content-section {
    padding: 3rem 0;
    background-color: var(--white);
}
.about-narrative {
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
    text-align: center;
}
.about-narrative h2 {
    font-family: var(--font-rounded);
    font-size: 2.4rem;
    color: var(--black);
    margin-bottom: 1.5rem;
}
.about-narrative h2 span {
    color: var(--accent-orange);
}
.about-narrative p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
}

.about-vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    max-width: 1100px;
    margin: 0 auto 3rem auto;
    align-items: start;
}
.about-grid-card {
    background: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.02);
    transition: var(--transition-smooth);
    height: 100%;
}
.about-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    border-color: var(--primary-yellow);
}
.about-grid-card h3 {
    font-family: var(--font-rounded);
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.about-grid-card h3 i {
    color: var(--accent-orange);
}
.about-grid-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--gray-medium);
}
.about-mission-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}
.about-mission-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.05rem;
    color: var(--gray-medium);
    font-weight: 500;
}
.about-mission-list li i {
    color: var(--primary-yellow);
    font-size: 1.1rem;
}
@media (max-width: 768px) {
    .about-vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-grid-card {
        padding: 2rem;
    }
}

.about-values-section {
    padding: 3rem 0;
    background-color: #fffdf5;
    text-align: center;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 3rem auto 0 auto;
}
.value-card {
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.02);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}
.value-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.value-card h4 {
    font-family: var(--font-rounded);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.6rem;
}
.value-card p {
    font-size: 0.9rem;
    line-height: 1.45;
    color: #333;
}

.val-love { background-color: #fff0f5; }
.val-love .value-card-icon { background-color: #ec4899; }
.val-care { background-color: #f3f2f8; }
.val-care .value-card-icon { background-color: #6366f1; }
.val-quality { background-color: #edf7f0; }
.val-quality .value-card-icon { background-color: #10b981; }
.val-trust { background-color: #fcf6e8; }
.val-trust .value-card-icon { background-color: #f59e0b; }
.val-innovation { background-color: #e0f2fe; }
.val-innovation .value-card-icon { background-color: #0ea5e9; }

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}
@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .value-card {
        padding: 1.8rem 1.2rem;
    }
}

/* ============================================================
   SERVICES PAGE GRID CENTERING (Odd Card Center)
   ============================================================ */
.services-page-grid {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
}
.services-page-grid .svc-card {
    flex: 0 1 calc(50% - 1.1rem);
}
@media (max-width: 850px) {
    .services-page-grid .svc-card {
        flex: 0 1 100%;
        max-width: 550px;
    }
}


/* ============================================================
   GLOBAL MODAL POPUP STYLES (SHARED SYSTEM)
   ============================================================ */
        /* --- GROOMING MODAL STYLES (COMPACTED TO AVOID SCROLLING) --- */
        .gmodal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }
        .gmodal.active {
            opacity: 1;
            pointer-events: auto;
        }
        .gmodal-backdrop {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }
        .gmodal-content {
            position: relative;
            background: var(--white);
            width: 90%;
            max-width: 880px;
            max-height: 92vh; /* Use most of the height */
            border-radius: 24px;
            overflow-y: hidden; /* Avoid scrolls on desktop */
            z-index: 2001;
            transform: scale(0.9);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
            display: flex;
            flex-direction: column;
        }
        .gmodal.active .gmodal-content {
            transform: scale(1);
        }
        .gmodal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.05);
            color: var(--black);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            z-index: 10;
            border: none;
            cursor: pointer;
            transition: var(--transition-smooth);
        }
        .gmodal-close:hover {
            background: var(--primary-yellow);
            color: var(--black);
            transform: rotate(90deg);
        }
        .gmodal-grid {
            display: grid;
            grid-template-columns: 1fr 1.15fr;
            flex-grow: 1;
        }
        .gmodal-left {
            background-color: #fcfcfb;
            padding: 1.5rem 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border-right: 1px solid rgba(0,0,0,0.04);
        }
        .gmodal-main-img-wrap {
            width: 100%;
            max-width: 300px;
            height: 220px;
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
            margin-bottom: 1rem;
            background-color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .gmodal-main-img-wrap img {
            width: 90%;
            height: 90%;
            object-fit: cover;
            border-radius: 10px;
        }
        .gmodal-thumbnails {
            display: flex;
            gap: 0.6rem;
            justify-content: center;
            width: 100%;
        }
        .gmodal-thumb {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            transition: var(--transition-smooth);
            box-shadow: 0 4px 10px rgba(0,0,0,0.04);
            background-color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2px;
        }
        .gmodal-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 6px;
        }
        .gmodal-thumb.active {
            border-color: var(--primary-yellow);
            transform: scale(1.06);
        }
        .gmodal-right {
            padding: 1.5rem 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .gmodal-tag {
            font-size: 0.75rem;
            font-weight: 800;
            color: #d4a373;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 0.3rem;
        }
        .gmodal-title {
            font-family: var(--font-rounded);
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--black);
            margin-bottom: 0.3rem;
            line-height: 1.2;
        }
        .gmodal-rating-row {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.8rem;
        }
        .gmodal-stars {
            color: #ffc107;
            font-size: 0.85rem;
        }
        .gmodal-reviews {
            color: #666;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .gmodal-desc {
            color: #444;
            font-size: 0.88rem;
            line-height: 1.5;
            margin-bottom: 1rem;
        }
        .gmodal-highlights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.6rem;
            margin-bottom: 1rem;
            background-color: #fcfcfb;
            padding: 0.8rem;
            border-radius: 12px;
            border: 1px solid rgba(0,0,0,0.03);
        }
        .gmodal-hl-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .gmodal-hl-icon {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background-color: rgba(252, 194, 3, 0.15);
            color: var(--black);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }
        .gmodal-hl-text {
            display: flex;
            flex-direction: column;
        }
        .gmodal-hl-text strong {
            font-size: 0.8rem;
            color: var(--black);
            font-weight: 700;
        }
        .gmodal-hl-text span {
            font-size: 0.7rem;
            color: #666;
        }
        .gmodal-packages-wrap {
            margin-bottom: 1rem;
        }
        .gmodal-section-title {
            display: block;
            font-size: 0.8rem;
            font-weight: 800;
            text-transform: uppercase;
            color: var(--black);
            margin-bottom: 0.5rem;
            letter-spacing: 0.5px;
        }
        .gmodal-tabs {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.6rem;
        }
        .gmodal-tab {
            background-color: var(--white);
            border: 2px solid #e7e7e5;
            border-radius: 12px;
            padding: 0.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            cursor: pointer;
            transition: var(--transition-smooth);
        }
        .gmodal-tab.active {
            border-color: var(--primary-yellow);
            background-color: #fffdf5;
            box-shadow: 0 4px 10px rgba(252, 194, 3, 0.06);
        }
        .tab-label {
            font-size: 0.75rem;
            font-weight: 800;
            color: var(--black);
        }
        .tab-sub {
            font-size: 0.65rem;
            color: #777;
            margin-bottom: 0.2rem;
        }
        .tab-price {
            font-size: 0.85rem;
            font-weight: 800;
            color: var(--black);
        }
        .gmodal-price-display {
            margin-bottom: 1rem;
        }
        .price-label {
            font-size: 0.75rem;
            color: #666;
            display: block;
            margin-bottom: 0.15rem;
        }
        .price-numbers {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .current-price {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--black);
        }
        .original-price {
            font-size: 1.05rem;
            text-decoration: line-through;
            color: #999;
        }
        .discount-badge {
            background-color: #10b981;
            color: var(--white);
            font-size: 0.7rem;
            font-weight: 800;
            padding: 0.15rem 0.4rem;
            border-radius: 5px;
            text-transform: uppercase;
        }
        .gmodal-buttons-row {
            display: grid;
            grid-template-columns: 1.25fr 1fr;
            gap: 0.8rem;
        }
        .gmodal-btn-book {
            background-color: var(--primary-yellow);
            color: var(--black);
            font-weight: 800;
            padding: 0.75rem;
            border-radius: 50px;
            text-align: center;
            font-size: 0.88rem;
            box-shadow: 0 4px 12px rgba(252,194,3,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            transition: var(--transition-smooth);
            text-decoration: none;
        }
        .gmodal-btn-book:hover {
            background-color: var(--black);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.25);
        }
        .gmodal-btn-enquire {
            border: 2px solid #e7e7e5;
            background-color: transparent;
            color: #333;
            font-weight: 700;
            padding: 0.75rem;
            border-radius: 50px;
            text-align: center;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-smooth);
            text-decoration: none;
        }
        .gmodal-btn-enquire:hover {
            background-color: #f4f4f3;
            border-color: #ccc;
            transform: translateY(-2px);
        }

        .gmodal-footer-banner {
            border-top: 1px solid rgba(0,0,0,0.05);
            background-color: #fcfcfb;
            padding: 1rem 2rem;
        }
        .gmodal-footer-features {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.8rem;
            margin-bottom: 0.5rem;
        }
        .gmodal-footer-feat-item {
            display: flex;
            align-items: flex-start;
            gap: 0.4rem;
        }
        .gmodal-footer-feat-item i {
            color: var(--primary-yellow);
            font-size: 0.95rem;
            margin-top: 0.1rem;
        }
        .gmodal-footer-feat-item strong {
            font-size: 0.75rem;
            display: block;
            color: var(--black);
        }
        .gmodal-footer-feat-item span {
            font-size: 0.65rem;
            color: #666;
        }
        .gmodal-footer-priority {
            text-align: center;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--black);
            border-top: 1px dashed rgba(0,0,0,0.08);
            padding-top: 0.4rem;
            margin-top: 0.4rem;
        }

        /* --- RESPONSIVENESS --- */
        @media (max-width: 992px) {
            .grooming-grid {
                grid-template-columns: 1fr;
            }
            .gmodal-content {
                overflow-y: auto; /* Fallback scroll for smaller devices */
            }
        }
        @media (max-width: 768px) {
            .grooming-hero {
                height: 30vh;
                margin-top: 80px;
            }
            .grooming-hero-content h1 {
                font-size: 2.2rem;
            }
            .grooming-hero-content p {
                font-size: 1rem;
                padding: 0 1rem;
            }
            .grooming-container {
                padding: 2.5rem 1.2rem;
            }
            .gmodal-grid {
                grid-template-columns: 1fr;
            }
            .gmodal-left {
                padding: 1.5rem;
            }
            .gmodal-main-img-wrap {
                height: 220px;
                margin-bottom: 1rem;
            }
            .gmodal-right {
                padding: 1.5rem;
            }
            .gmodal-title {
                font-size: 1.5rem;
            }
            .gmodal-footer-features {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            .gmodal-footer-banner {
                padding: 1.2rem 1.5rem;
            }
        }
        @media (max-width: 480px) {
            .grooming-card {
                height: auto;
                flex-direction: column;
                min-height: 360px;
            }
            .grooming-card-content {
                width: 100%;
                padding: 1.5rem;
            }
            .grooming-card-img-wrap {
                position: relative;
                width: 100%;
                height: auto;
                min-height: 200px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .grooming-card-img {
                width: 100%;
                height: auto;
                max-height: 260px;
                object-fit: contain;
                object-position: center bottom;
                border-radius: 0 0 28px 28px;
                display: block;
            }
            .gmodal-tabs {
                grid-template-columns: 1fr;
                gap: 0.5rem;
            }
            .gmodal-buttons-row {
                grid-template-columns: 1fr;
                gap: 0.8rem;
            }
            .gmodal-footer-features {
                grid-template-columns: 1fr;
            }
        }


/* ============================================================
   GROOMING SERVICE CARDS AND GRID STYLES
   ============================================================ */
        .grooming-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }
        .grooming-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        .grooming-card {
            background-color: var(--white);
            border-radius: 28px;
            height: 250px;
            display: flex;
            flex-direction: row;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.02);
            cursor: pointer;
            transition: var(--transition-smooth);
        }
        .grooming-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(252, 194, 3, 0.12);
        }
        
        /* Card background colors matching mockup pastel styling */
        .card-bg-1 { background-color: #f3f2f8; } /* Soft lavender/blue */
        .card-bg-2 { background-color: #fcf6e8; } /* Soft cream/yellow */
        .card-bg-3 { background-color: #edf7f0; } /* Soft green */
        .card-bg-4 { background-color: #fff0f5; } /* Soft pink */
        .card-bg-5 { background-color: #fffdf5; } /* Soft yellow/cream (Medicated) */

        .grooming-card-content {
            width: 60%;
            padding: 2rem 1.5rem 1.5rem 2rem;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            z-index: 2;
            height: 100%;
        }
        
        .grooming-card-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.15rem;
            margin-bottom: 0.8rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }
        .icon-bg-black { background-color: var(--black); }
        .icon-bg-yellow { background-color: var(--primary-yellow); color: var(--black); }

        .grooming-card-content h3 {
            font-family: var(--font-rounded);
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
            color: var(--black);
            line-height: 1.25;
            text-align: left;
        }
        .grooming-card-content p {
            font-size: 0.88rem;
            color: #333;
            line-height: 1.4;
            margin-bottom: 0.8rem;
            max-width: 250px;
            text-align: left;
        }
        .grooming-card-btn {
            background-color: var(--primary-yellow);
            color: var(--black);
            padding: 0.5rem 1.4rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            margin-top: auto;
            transition: var(--transition-smooth);
            border: none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            text-decoration: none;
        }
        .grooming-card:hover .grooming-card-btn {
            background-color: var(--black);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        }
        .grooming-card-btn.bg-black-btn {
            background-color: var(--black);
            color: var(--white);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }
        .grooming-card:hover .grooming-card-btn.bg-black-btn {
            background-color: var(--primary-yellow);
            color: var(--black);
            box-shadow: 0 6px 15px rgba(252, 194, 3, 0.25);
        }

        .grooming-card-img-wrap {
            position: absolute;
            right: 0;
            bottom: 0;
            width: 40%;
            height: 100%;
            z-index: 1;
        }
        .grooming-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            border-radius: 0 0 28px 0;
        }



/* ============================================================
   BOARDING SERVICE CARDS AND GRID STYLES
   ============================================================ */
        .boarding-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }
        .boarding-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
            margin-bottom: 3rem;
        }
        .boarding-card {
            background-color: var(--white);
            border-radius: 28px;
            height: 250px;
            display: flex;
            flex-direction: row;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.02);
            cursor: pointer;
            transition: var(--transition-smooth);
        }
        .boarding-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(252, 194, 3, 0.12);
        }
        
        /* Card background colors matching mockup pastel styling */
        .card-bg-1 { background-color: #f3f2f8; } /* Soft lavender/blue */
        .card-bg-2 { background-color: #fcf6e8; } /* Soft cream/yellow */
        .card-bg-3 { background-color: #edf7f0; } /* Soft green */
        .card-bg-4 { background-color: #fff0f5; } /* Soft pink */
        .card-bg-5 { background-color: #fffdf5; } /* Soft yellow/cream */

        .boarding-card-content {
            width: 60%;
            padding: 2rem 1.5rem 1.5rem 2rem;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            z-index: 2;
            height: 100%;
        }
        
        .boarding-card-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.15rem;
            margin-bottom: 0.8rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }
        .icon-bg-black { background-color: var(--black); }
        .icon-bg-yellow { background-color: var(--primary-yellow); color: var(--black); }

        .boarding-card-content h3 {
            font-family: var(--font-rounded);
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
            color: var(--black);
            line-height: 1.25;
            text-align: left;
        }
        .boarding-card-content p {
            font-size: 0.88rem;
            color: #333;
            line-height: 1.4;
            margin-bottom: 0.8rem;
            max-width: 250px;
            text-align: left;
        }
        .boarding-card-btn {
            background-color: var(--primary-yellow);
            color: var(--black);
            padding: 0.5rem 1.4rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            margin-top: auto;
            transition: var(--transition-smooth);
            border: none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            text-decoration: none;
        }
        .boarding-card:hover .boarding-card-btn {
            background-color: var(--black);
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        }
        .boarding-card-btn.bg-black-btn {
            background-color: var(--black);
            color: var(--white);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }
        .boarding-card:hover .boarding-card-btn.bg-black-btn {
            background-color: var(--primary-yellow);
            color: var(--black);
            box-shadow: 0 6px 15px rgba(252, 194, 3, 0.25);
        }

        .boarding-card-img-wrap {
            position: absolute;
            right: 0;
            bottom: 0;
            width: 40%;
            height: 100%;
            z-index: 1;
        }
        .boarding-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            border-radius: 0 0 28px 0;
        }


/* ============================================================
   ALL-SERVICES PAGE - MOBILE RESPONSIVE OVERRIDES
   ============================================================ */

@media (max-width: 900px) {
    .grooming-grid,
    .boarding-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    .grooming-container,
    .boarding-container {
        padding: 2rem 1.2rem !important;
    }
    .grooming-card,
    .boarding-card {
        height: auto !important;
        min-height: 0 !important;
        flex-direction: column !important;
        border-radius: 22px !important;
    }
    .grooming-card-content,
    .boarding-card-content {
        width: 100% !important;
        padding: 1.5rem 1.5rem 0.8rem !important;
        height: auto !important;
    }
    .grooming-card-img-wrap,
    .boarding-card-img-wrap {
        position: relative !important;
        width: 100% !important;
        height: 230px !important;
        right: auto !important;
        bottom: auto !important;
    }
    .grooming-card-img {
        border-radius: 0 0 22px 22px !important;
        object-fit: cover !important;
        object-position: center top !important;
    }
    .boarding-card-img {
        border-radius: 0 0 22px 22px !important;
        object-fit: cover !important;
        object-position: center !important;
    }
    .services-page-grid .svc-card {
        flex: 0 1 100% !important;
        max-width: 520px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .services-video-fullpage {
        height: 55vh !important;
    }
    .svc-features-grid {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem !important;
        padding: 1.5rem 1.2rem !important;
    }
    .svc-feat-divider {
        display: none !important;
    }
    .svc-cards-section {
        padding: 2rem 0 !important;
    }
    .grooming-packages-section,
    .boarding-packages-section {
        padding-top: 90px !important;
        padding-bottom: 2rem !important;
    }
    .grooming-card,
    .boarding-card {
        border-radius: 18px !important;
        min-height: 0 !important;
    }
    .grooming-card-content,
    .boarding-card-content {
        padding: 1.2rem 1.2rem 0.6rem !important;
    }
    .grooming-card-content h3,
    .boarding-card-content h3 {
        font-size: 1.05rem !important;
    }
    .grooming-card-content p,
    .boarding-card-content p {
        font-size: 0.82rem !important;
        max-width: 100% !important;
    }
    .grooming-card-img-wrap {
        height: 140px !important;
    }
    .boarding-card-img-wrap {
        height: 160px !important;
    }
    .grooming-card-img {
        object-position: center top !important;
    }
    .boarding-card-img {
        object-position: center !important;
    }
    .grooming-card-icon,
    .boarding-card-icon {
        width: 38px !important;
        height: 38px !important;
        font-size: 1rem !important;
    }
    .services-page-grid {
        padding: 0 1rem !important;
        gap: 0.8rem !important;
    }
    .services-page-grid .svc-card {
        max-width: 100% !important;
        border-radius: 18px !important;
        min-height: auto !important;
    }
    .prod-page-grid .svc-card-overlay {
        justify-content: center !important;
    }
    .gmodal-content {
        width: 95% !important;
        max-height: 94vh !important;
        overflow-y: auto !important;
        border-radius: 18px !important;
    }
    .gmodal-grid {
        grid-template-columns: 1fr !important;
    }
    .gmodal-left {
        padding: 1.2rem !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(0,0,0,0.06) !important;
    }
    .gmodal-main-img-wrap {
        height: 190px !important;
        max-width: 100% !important;
        margin-bottom: 0 !important;
    }
    .gmodal-right {
        padding: 1.2rem !important;
    }
    .gmodal-title {
        font-size: 1.25rem !important;
    }
    .gmodal-tabs {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
    }
    .gmodal-buttons-row {
        grid-template-columns: 1fr !important;
        gap: 0.7rem !important;
    }
    .gmodal-footer-features {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
    }
    .gmodal-footer-banner {
        padding: 0.9rem 1.2rem !important;
    }
}

/* ============================================================
   OUR BRANCHES SECTION
   ============================================================ */
.branches-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.branches-container {
    max-width: 1200px;
    margin: 0 auto;
}

.branches-subtitle {
    text-align: center;
    color: var(--gray-light);
    font-size: 1.05rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-primary);
}

/* Decorative floating paw & bone icons */
@keyframes branches-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.12; }
    50%       { transform: translateY(-18px) rotate(12deg); opacity: 0.22; }
}

.branch-deco {
    position: absolute;
    color: #FCC203;
    pointer-events: none;
    z-index: 0;
    animation: branches-float 5s ease-in-out infinite;
}

.branch-deco-1 { top: 5%;  left: 3%;   font-size: 3.5rem; animation-delay: 0s;    animation-duration: 6s; }
.branch-deco-2 { top: 15%; right: 4%;  font-size: 2.2rem; animation-delay: 1.2s;  animation-duration: 7s; }
.branch-deco-3 { top: 50%; left: 1.5%; font-size: 1.8rem; animation-delay: 0.6s;  animation-duration: 5.5s; }
.branch-deco-4 { top: 8%;  right: 10%; font-size: 2.8rem; animation-delay: 2s;    animation-duration: 8s; }
.branch-deco-5 { bottom: 12%; right: 2.5%; font-size: 2.5rem; animation-delay: 1.6s; animation-duration: 6.5s; }
.branch-deco-6 { bottom: 5%;  left: 6%; font-size: 2rem;   animation-delay: 0.3s; animation-duration: 5.8s; }

.branches-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1.8rem;
    padding: 0.5rem 0 1.5rem;
    overflow-x: auto;
    width: 100%;
    scrollbar-width: none; /* Hide scrollbar */
    -webkit-overflow-scrolling: touch;
}
.branches-grid::-webkit-scrollbar {
    display: none;
}

.branch-card {
    flex: 0 0 290px;
    min-width: 290px;
    max-width: 290px;
    background: #fbfbfd;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.branch-card-img-wrap {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.branch-storefront-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.branch-card:hover .branch-storefront-img {
    transform: scale(1.05);
}

.branch-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.branch-card-content h3 {
    font-family: var(--font-rounded);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.8rem;
}

.branch-info-text {
    font-size: 0.92rem;
    color: var(--gray-medium);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.branch-info-text i {
    color: var(--primary-yellow);
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.branch-card-actions {
    margin-top: auto;
    display: flex;
    gap: 0.8rem;
    padding-top: 1.2rem;
}

.branch-btn {
    flex: 1;
    font-family: var(--font-rounded);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 0.5rem;
    border-radius: 30px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-direction {
    background: #000000;
    color: #FCC203;
    border: 1px solid #000000;
}

.btn-direction:hover {
    background: #FCC203;
    color: #000000;
}

.btn-whatsapp {
    background: #000000;
    color: #ffffff;
    border: 1px solid #000000;
}

.btn-whatsapp i {
    color: #FCC203;
}

.btn-whatsapp:hover {
    background: #FCC203;
    color: #000000;
    border-color: #FCC203;
}

.btn-whatsapp:hover i {
    color: #000000;
}


/* ============================================================
   OUR BRANCHES SECTION - RESPONSIVENESS
   ============================================================ */
@media (max-width: 768px) {
    .branches-section {
        padding: 3rem 0 3rem;
        overflow: hidden;
    }
    .branches-container {
        padding: 0;
    }
    .branches-subtitle {
        margin-bottom: 1.5rem;
        padding: 0 1.5rem;
    }
    .sec-heading.text-center {
        padding: 0 1.5rem;
    }

    /* ── Branches: horizontal marquee on mobile ── */
    .branches-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 1.2rem;
        padding: 0.5rem 1.5rem 1.5rem;
        margin: 0;
        overflow-x: auto;
        overflow-y: visible;
        width: 100%;
        scrollbar-width: none; /* Hide scrollbar */
        -webkit-overflow-scrolling: touch;
    }
    .branches-grid::-webkit-scrollbar { display: none; }

    .branch-card {
        flex: 0 0 290px;
        min-width: 290px;
        max-width: 290px;
    }

    .branch-card-content {
        padding: 1.25rem;
        text-align: center !important;
        align-items: center !important;
    }
    .branch-info-text {
        justify-content: center !important;
    }
    .branch-card-actions {
        flex-direction: row !important;
        gap: 0.6rem;
        padding-top: 1rem;
        width: 100%;
    }
    .branch-btn {
        flex: 1 !important;
    }
    .branch-deco {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .branches-section {
        padding: 2.5rem 1rem;
    }
    .branches-section .sec-heading h2 {
        font-size: 1.8rem;
    }
    .branches-section .sec-arrow {
        display: none !important;
    }
}

/* ============================================================
   PRODUCT PAGE CUSTOM CARDS & RESPONSIVENESS
   ============================================================ */
.prod-page-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2.2rem !important;
    max-width: 1150px;
    margin: 0 auto;
}

.prod-card {
    background: transparent !important;
    border-radius: 38px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
    overflow: hidden;
    height: auto !important;
    min-height: unset !important;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.prod-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12) !important;
}

.prod-card .svc-card-main-img {
    width: 100% !important;
    height: auto !important;
    max-height: unset !important;
    display: block !important;
    object-fit: contain !important;
    border-radius: 38px !important;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1) !important;
}

.prod-card:hover .svc-card-main-img {
    transform: scale(1.03) !important;
}

/* Responsiveness for product cards */
@media (max-width: 850px) {
    .prod-page-grid {
        grid-template-columns: 1fr !important;
        max-width: 550px !important;
        margin: 0 auto !important;
        padding: 0 1rem !important;
    }
    .prod-card {
        border-radius: 28px !important;
    }
    .prod-card .svc-card-main-img {
        border-radius: 28px !important;
    }
}

@media (max-width: 480px) {
    .prod-page-grid {
        gap: 1.25rem !important;
    }
    .prod-card {
        border-radius: 20px !important;
    }
    .prod-card .svc-card-main-img {
        border-radius: 20px !important;
    }
}

/* =============================================
   HERO LOGO OVERLAY (fades out on scroll)
   ============================================= */
.hero-logo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
    transition: none;
}

.hero-logo-img {
    width: clamp(180px, 38vw, 520px);
    max-width: 90%;
    object-fit: contain;
    /* Subtle drop shadow so the logo pops on any frame */
    filter: drop-shadow(0 4px 32px rgba(0,0,0,0.18));
    animation: herologoPulse 3s ease-in-out infinite;
}

@keyframes herologoPulse {
    0%, 100% { transform: scale(1);      }
    50%       { transform: scale(1.03);  }
}

@media (max-width: 767px) {
    .hero-logo-img {
        width: clamp(140px, 60vw, 300px);
    }
}

/* --- FLOATING WHATSAPP BUTTON --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 24px;
    right: 24px;
    background-color: #25d366;
    color: #ffffff !important;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: whatsappPulse 2.2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    background-color: #22c35e;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55);
}

.whatsapp-float i {
    color: #ffffff !important;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Adjust floating button on very small screens to avoid overlaying essential content */
@media (max-width: 480px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}

/* Desktop Footer Height Optimization */
@media (min-width: 1025px) {
    .footer-main-card {
        padding: 1.4rem 4rem 0.8rem;
    }
    .footer-container {
        gap: 1.5rem;
    }
    .brand-col .footer-logo {
        margin-bottom: 0.4rem;
    }
    .brand-col p {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }
    .footer-social-row {
        gap: 0.6rem;
    }
    .footer-col h4 {
        margin-bottom: 0.5rem;
    }
    .footer-col ul {
        gap: 0.4rem;
    }
    .newsletter-col p {
        margin-bottom: 0.6rem;
    }
    .footer-pets-wrap {
        width: 270px;
        bottom: 0px;
    }
    .footer-bottom-bar {
        padding: 0.4rem 2rem 0.4rem;
    }
}

/* ==========================================================================
   PERFORMANCE & STABILITY OPTIMISATIONS
   ========================================================================== */

/* GPU Acceleration for Video Hero Elements */
.services-video-fullpage video,
.product-video-fullpage video {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* aspect-ratio Constraints to prevent Cumulative Layout Shifts (CLS) */
.banner-slideshow-wrapper {
    aspect-ratio: 2.8 / 1;
}

.aboutus-pet-img {
    aspect-ratio: 1.4 / 1;
}

/* Off-screen Containment Rendering (Lazy Layout Rendering) */
.aboutus-section,
.products-section,
.services-preview-section,
.branches-section {
    content-visibility: auto;
    contain-intrinsic-size: 600px;
}

/* Accessibility focus-visible styles for keyboard navigation compliance */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--accent-orange);
    outline-offset: 2px;
}

/* Screen reader only helper for visually hidden heading elements (SEO) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
