/* ============================================================
   PawPerfect — Public Panel Stylesheet
   Theme: #cc0001 (Red) + #0224cc (Blue)
   Font: Nunito + Playfair Display
============================================================ */

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
    --color-red:      #cc0001;
    --color-orange:      #eba938;
    --color-red-dark: #a80001;
    --color-blue:     #0224cc;
    --color-blue-dk:  #011aa0;
    --color-dark:     #0f1117;
    --color-body:     #3a3a3a;
    --bg-light:       #f7f8fc;
    --bg-white:       #ffffff;
    --border-color:   #e8eaf0;
    --shadow-sm:      0 2px 8px rgba(0,0,0,0.07);
    --shadow-md:      0 6px 24px rgba(0,0,0,0.10);
    --shadow-lg:      0 16px 48px rgba(0,0,0,0.14);
    --radius-sm:      8px;
    --radius-md:      16px;
    --radius-lg:      24px;
    --font-main:      'Nunito', sans-serif;
    --font-display:   'Playfair Display', serif;
    --font-fredoka:   'Fredoka', sans-serif;
    --transition:     all 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--font-main);
    color: var(--color-body);
    background: var(--bg-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.fw-800 { font-weight: 800 !important; }
.fw-700 { font-weight: 700 !important; }
.text-red  { color: var(--color-red)  !important; }
.text-blue { color: var(--color-blue) !important; }
.py-6 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.border-white-10 { border-color: rgba(255,255,255,0.1) !important; }
.text-white-75 { color: rgba(255,255,255,0.75) !important; }

/* ── Top Bar ─────────────────────────────────────────────────── */
.topbar {
    background: var(--color-dark);
    font-size: 0.8rem;
}

.topbar-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}
.topbar-link:hover { color: var(--color-red); }

/* ── Navbar ──────────────────────────────────────────────────── */
#mainNav {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    padding: 0.6rem 0;
}

#mainNav.scrolled {
    box-shadow: var(--shadow-md);
    padding: 0.3rem 0;
}

/* Brand */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.logo-paw {
    width: 40px;
    height: 40px;
    /* background: linear-gradient(135deg, var(--color-red), var(--color-blue)); */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
    font-family: var(--font-fredoka);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-blue);
}
.brand-accent { color: var(--color-red); }
.brand-tagline { font-family: var(--font-fredoka); font-size: 0.65rem; color: #888; letter-spacing: 0.08em; text-transform: uppercase; }

/* Nav Links */
#mainNav .nav-link {
    color: var(--color-dark);
    font-weight: 600;
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-size: 0.9rem;
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: var(--color-red);
    background: rgba(204,0,1,0.06);
}

/* Dropdown */
.dropdown-menu-services {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    min-width: 220px;
}
.dropdown-menu-services .dropdown-item {
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.8rem;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
}
.dropdown-menu-services .dropdown-item:hover {
    background: var(--bg-light);
}

/* Nav Buttons */
.btn-outline-primary {
    border-color: var(--color-blue);
    color: var(--color-blue);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
}
.btn-outline-primary:hover { background: var(--color-blue); color: #fff; }

.btn-primary {
    background: linear-gradient(135deg, var(--color-red), #e60002);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 14px rgba(204,0,1,0.3);
    transition: var(--transition);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-red-dark), var(--color-red));
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(204,0,1,0.4);
}

.btn-primary-blue {
    background: linear-gradient(135deg, var(--color-blue), #1a45ff);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    box-shadow: 0 4px 14px rgba(128,128,128,0.35);
    transition: var(--transition);
    /*padding: 0.65rem 1rem;*/
}

.btn-primary-blue:hover {
    background: linear-gradient(135deg, var(--color-blue-dk), var(--color-blue));
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(128,128,128,0.45);
}

/* ── Hero Section ────────────────────────────────────────────── */
.hero-section { position: relative;padding:15px;margin:auto; }

.hero-default {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--bg-white)
}

.hero-content { position: relative; z-index: 2; padding: 3rem 0; }
.min-vh-hero { min-height: 560px; }

.hero-badge {
    display: inline-block;
    background: rgba(244, 235, 235, 0.15);
    border: 2px solid rgba(204,0,1,0.4);
    color: var(--color-red);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.hero-title {
    padding-top: 0;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 4.2vw, 2.7rem);
    font-weight: 800;
    color: var(--color-blue);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: .99rem;
    color: var(--color-dark);
    max-width: 650px;
    line-height: 1.2;
}

.btn-hero-primary {
    background: var(--color-red);
    color: #fff;
    border-radius: 50px;
    padding: 0.4rem 1.2rem;
    font-weight: 900;
    font-size: 1.2rem;
    border: none;
    box-shadow: 0 6px 24px rgba(204,0,1,0.45);
    transition: var(--transition);
}
.btn-hero-primary:hover { background: var(--color-red-dark); transform: translateY(-2px); color:#fff; }

.btn-hero-outline {
    background: transparent;
    color: var(--color-blue);
    border: 2px solid var(--color-blue-dk);
    border-radius: 50px;
    padding: 0.4rem 1.2rem;
    font-weight: 900;
    font-size: 1.2rem;
    transition: var(--transition);
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--color-red-dark); color: var(--color-red); }

.hero-illustration { position: relative; width: 360px; height: 280px; }
.hero-stats-card {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    width: 340px;
}

/* Search Bar */
.hero-search-bar {
    position: relative;
    z-index: 10;
    margin-top: -2rem;
}

/* ── Why Choose Dog Partners ─────────────────────────────────── */
.dp-why-section {
    background: #fff;
}

.dp-why-title {
    font-family: var(--font-fredoka);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-red);
    margin-bottom: 0.5rem;
}

.dp-why-divider {
    width: 60px;
    height: 3px;
    background: var(--color-blue);
    border-radius: 999px;
}

.dp-lines-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.dp-why-section .row.align-items-center {
    align-items: stretch !important;
}

.dp-line-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid transparent;
    border-left: 4px solid var(--color-red);
    border-radius: 0 1rem 1rem 0;
    background: #fff7f7;
    transition: var(--transition);
    color: var(--color-dark);
    text-align: left;
}

.dp-line-item:hover,
.dp-line-item.active {
    opacity: 1;
    box-shadow: 0 4px 18px rgba(0,0,0,0.09);
}

.dp-line-item:not(.active) {
    opacity: 0.45;
}

.dp-line-item:nth-child(even) {
    background: #f0f3ff;
    border-color: var(--color-blue);
}

.dp-line-item.active:nth-child(even) {
    border-color: var(--color-blue);
}

.dp-line-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    background: var(--color-red);
    color: #fff;
    font-weight: 800;
    border-radius: 8px;
    margin-right: 0.9rem;
    flex-shrink: 0;
}

.dp-line-item:nth-child(even) .dp-line-badge {
    background: var(--color-blue);
}

.dp-line-text {
    font-size: 1.0rem;
    font-weight: 600;
    color: #333;
}

.dp-img-slider {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 300px;
    max-height: 500px;
    overflow: hidden;
    border-radius: 1.25rem;
}

.dp-img-track {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
}

.dp-img-slide {
    position: relative;
    flex: 0 0 100% !important;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    box-sizing: border-box;
    background: #f8f9fc;
}

.dp-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #f8f9fc;
}

.dp-img-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 0.8rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
}

#dp-dots {
    gap: 0.5rem;
}

.dp-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.dp-dot.active {
    background: var(--color-red);
    transform: scale(1.3);
}

@media (max-width: 991px) {
    .dp-img-slider {
        min-height: 380px;
    }
}

.search-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem 2rem;
    border: 1px solid var(--border-color);
}
.search-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.3rem;
    display: block;
}
.search-input {
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.65rem 1rem;
    font-family: var(--font-main);
    font-weight: 600;
    color: var(--color-dark);
    transition: var(--transition);
}
.search-input:focus { border-color: var(--color-blue); box-shadow: 0 0 0 3px rgba(2,36,204,0.1); }
.btn-search {
    background: linear-gradient(135deg, var(--color-red), #e60002);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.65rem 1.5rem;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(204,0,1,0.3);
    transition: var(--transition);
}
.btn-search:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(204,0,1,0.4); color:#fff; }

/* ── Section Headers ─────────────────────────────────────────── */
.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(204,0,1,0.1), rgba(2,36,204,0.1));
    color: var(--color-red);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}
.section-title {
    font-family: var(--font-fredoka);
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.2;
}
.section-subtitle {
    font-size: 1.05rem;
    color: #666;
    max-width: 560px;
    margin: 0 auto;
}

/* ── Service Cards ───────────────────────────────────────────── */
.service-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem 1.75rem;
    transition: var(--transition);
    height: 100%;
}
.service-wrapper {
    width:100%;
    height:240px;
    flex-shrink:0;
    background:#f8f8f8;
    border-radius:.8rem .8rem 0 0;
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}
.service-card-title { font-size: 1.5rem; font-weight: 800; color: var(--color-dark); margin-bottom: 0.5rem; }
.service-card-desc  { font-size: 0.9rem; color: #666; line-height: 1.6; margin-bottom: 1rem; }
.service-card-link  { font-size: 0.85rem; font-weight: 700; text-decoration: none; transition: var(--transition); }
.service-card-link:hover { gap: 0.5rem; }

.service-card-cta {
    background: linear-gradient(135deg, var(--color-blue), var(--color-red));
    border-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* ── Service Detail Cards ────────────────────────────────────── */
.service-detail-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    height: 100%;
}

.service-banner {
    margin-bottom: 2rem;
}

.service-banner img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-blue), var(--color-red));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    flex-shrink: 0;
}

.service-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.service-info .text-muted {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.service-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.service-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.5rem;
}

.service-how-it-works h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.how-it-works-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

/* ── Service Stats Card ──────────────────────────────────────── */
.service-stats-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    height: 100%;
}

.service-stats-card h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #444;
}

.stat-item i {
    font-size: 1.2rem;
    min-width: 20px;
}

/* ── USP Cards ───────────────────────────────────────────────── */
.usp-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    transition: var(--transition);
}
.usp-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.usp-icon { font-size: 1.4rem; min-width: 28px; }
.usp-title { font-size: 0.9rem; font-weight: 800; color: var(--color-dark); }
.usp-desc  { font-size: 0.82rem; color: #666; }

/* ── How It Works ────────────────────────────────────────────── */
.how-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    position: relative;
    transition: var(--transition);
}
.how-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.how-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    opacity: 0.1;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
}
.how-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    margin: 0 auto;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.how-title { font-size: 1.05rem; font-weight: 800; color: var(--color-dark); }

/* ── Stats Bar ───────────────────────────────────────────────── */
.stats-bar {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: #bd2020 1px solid;
    box-shadow: var(--shadow-lg);
}
.stat-item {
    padding: 2.5rem 1.5rem;
    border-right: 3px solid rgba(23, 19, 19, 0.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
    font-family: var(--font-main);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-red);
    line-height: 1;
}
.stat-label { color: var(--color-blue); font-size: 0.95rem; margin-top: 0.4rem; }

/* ── Cities ──────────────────────────────────────────────────── */
.cities-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
.city-chip {
    background: #fff;
    border: 1.5px solid var(--border-color);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-dark);
    transition: var(--transition);
}
.city-chip:hover { border-color: var(--color-red); color: var(--color-red); }
.city-chip-more { background: var(--bg-light); color: #888; }

/* ── Review Cards ────────────────────────────────────────────── */
.review-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    height: 100%;
    transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-text {
    font-size: 0.92rem;
    color: #444;
    line-height: 1.7;
    font-style: italic;
}
.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-red), var(--color-blue));
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.review-name    { font-weight: 800; font-size: 0.9rem; color: var(--color-dark); }
.review-service { font-size: 0.78rem; color: #888; }

/* ── Video Cards ─────────────────────────────────────────────── */
.video-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.video-caption { font-size: 0.85rem; color: #555; font-weight: 600; background: #fff; }

/* ── Blog Cards ──────────────────────────────────────────────── */
.blog-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: #fff;
    transition: var(--transition);
    height: 100%;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-img-wrap { height: 200px; overflow: hidden; }
.blog-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-img { transform: scale(1.06); }
.blog-img-placeholder {
    height: 200px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-category {
    background: rgba(204,0,1,0.09);
    color: var(--color-red);
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.blog-title { font-size: 1rem; font-weight: 800; color: var(--color-dark); line-height: 1.4; }
.blog-excerpt { font-size: 0.87rem; line-height: 1.6; }
.blog-read-more {
    color: var(--color-blue);
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition);
}
.blog-read-more:hover { color: var(--color-red); }

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, #0d4dcf 0%, #2367ff 45%, #5a8dff 100%);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent 30%),
                radial-gradient(circle at bottom right, rgba(255,255,255,0.08), transparent 28%);
    pointer-events: none;
}
.cta-paw-icon {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14rem;
    color: rgba(255,255,255,0.08);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.cta-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
}
.cta-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
}
.cta-banner .btn-light {
    background: rgba(255,255,255,0.98);
    color: #0f172a;
    border: 1px solid rgba(255,255,255,0.75);
}
.cta-banner .btn-light:hover {
    background: #ffffff;
    color: #0f172a;
}
.cta-banner .btn-outline-light {
    color: #ffffff;
    border-color: rgba(255,255,255,0.9);
}
.cta-banner .btn-outline-light:hover {
    background: rgba(255,255,255,0.14);
    color: #ffffff;
}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
    background: #f8fbff;
    color: rgba(15, 23, 42, 0.85);
}
.footer-top {
    padding: 4rem 0 3rem;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}
.footer-bottom {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding: 1.5rem 0 0;
    font-size: 0.9rem;
    color: rgba(55, 65, 81, 0.8);
}
.footer-heading {
    color: var(--color-blue);
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a {
    color: rgba(31, 41, 55, 0.78);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--color-red); padding-left: 4px; }
.footer-desc {
    font-size: 0.95rem;
    line-height: 1.9;
    color: rgba(31, 41, 55, 0.8);
    max-width: 380px;
}

.footer-contact { list-style: none; padding: 0; }
.footer-contact li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.85rem; font-size: 0.92rem; }
.footer-contact i { width: 18px; color: var(--color-red); }
.footer-contact a { color: rgba(15, 23, 42, 0.9); text-decoration: none; transition: var(--transition); font-weight: 600; }
.footer-contact a:hover { color: var(--color-red); }
.footer-contact span { color: rgba(15, 23, 42, 0.85); }

.footer-legal-links a { color: rgba(75, 85, 99, 0.8); text-decoration: none; font-size: 0.85rem; transition: var(--transition); }
.footer-legal-links a:hover { color: var(--color-red); }
.footer-legal-links span { color: rgba(148, 163, 184, 0.75); }

.site-footer .footer-brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}
.site-footer .footer-brand .logo-paw {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}
.site-footer .footer-brand .logo-paw img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
}
.site-footer .footer-brand .ms-2 {
    display: inline-block;
}

.social-links { display: flex; gap: 0.65rem; }
.social-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.2);
    color: rgba(75, 85, 99, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.5rem;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}
.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
    color: #ffffff;
}
.social-btn.facebook { color: #1877f2; }
.social-btn.instagram { color: #e1306c; }
.social-btn.youtube { color: #ff0000; }
.social-btn.whatsapp { color: #25d366; }
.social-btn.facebook:hover { background: #1877f2; border-color: #1877f2; }
.social-btn.instagram:hover { background: #e1306c; border-color: #e1306c; }
.social-btn.youtube:hover { background: #ff0000; border-color: #ff0000; }
.social-btn.whatsapp:hover { background: #25d366; border-color: #25d366; }

/* ── WhatsApp Float Button ───────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    z-index: 1050;
    transition: var(--transition);
    animation: waPulse 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

@keyframes waPulse {
    0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
    50%      { box-shadow: 0 6px 30px rgba(37,211,102,0.7); }
}

/* ── Page Loader ─────────────────────────────────────────────── */
.page-loader {
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
    .hero-content    { padding: 3rem 0; }
    .min-vh-hero     { min-height: 460px; }
    .hero-title      { font-size: 1.8rem; }
    .search-card     { padding: 1.25rem; }
    .section-title   { font-size: 1.6rem; }
    /* .stats-bar .stat-item { padding: 1.5rem 0.5rem; } */
    /* .stat-number     { font-size: 1.8rem; } */
    .cta-title       { font-size: 1.5rem; }
    .cta-banner      { padding: 2.5rem 1.25rem; }
    .service-wrapper {
    width:100%;
    height:208px;}
}
@media (max-width: 768px) {
    .stats-bar .stat-item {
        padding: 1.5rem 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .stat-number {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .stat-label {
        font-size: 0.8rem;
        margin-top: 0.3rem;
    }
}
@media (max-width: 768px) {
    .stat-item {
        border-right: 1px solid rgba(0,0,0,0.08);
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }

    /* Remove right border from every 2nd item */
    .stat-item:nth-child(2n) {
        border-right: none;
    }

    /* Remove bottom border from last row */
    .stat-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}
@media (max-width: 576px) {
    .py-6 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
    .hero-actions    { display: flex; flex-direction: row; gap: 0.75rem; align-items: flex-start; }
    .btn-hero-primary, .btn-hero-outline { width: 100%;font-size: 1rem;font-weight: 600; text-align: center; }
    .how-card        { padding: 2rem 1.25rem; }
}
