/* =========================================================================
   VARIABLES & GLOBALS
   ========================================================================= */
:root {
    /* Colors */
    --color-primary: #184224; /* Dark Forest Green */
    --color-primary-hover: #1f542d;
    --color-secondary: #216637; /* Vibrant Green */
    --color-accent: #cff0d6; /* Light green accent */
    --color-bg-mint: #f4fbf6; /* Very light mint */
    --color-bg-white: #ffffff;
    --color-text-dark: #121c16;
    --color-text-body: #4a5a50;
    --color-border: #e0ece3;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-block: 100px;
    
    /* Transitions */
    --trans-fast: 0.2s ease;
    --trans-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(24, 66, 36, 0.05);
    --shadow-md: 0 8px 30px rgba(24, 66, 36, 0.08);
    --shadow-lg: 0 20px 40px rgba(24, 66, 36, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Smooth scrolling to anchors */
    scroll-padding-top: 80px; /* Offset for sticky header */
}

body {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text-body);
    background-color: var(--color-bg-white);
    overflow-x: hidden;
}

/* =========================================================================
   TYPOGRAPHY
   ========================================================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.15;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

h1 {
    font-size: clamp(3.2rem, 6vw, 5.2rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.25rem;
}

.text-gradient {
    background: linear-gradient(135deg, #b9e67d 0%, #2ecc71 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #2ecc71;
    display: inline-block;
}

.subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.subtitle.pill {
    padding: 0.4rem 1rem;
    background-color: var(--color-accent);
    color: var(--color-primary);
    border-radius: 50px;
}

.hero .subtitle.pill {
    background-color: rgba(255, 255, 255, 0.15) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(5px);
    display: inline-block;
    margin-bottom: 1.5rem;
}

/* =========================================================================
   UTILITIES
   ========================================================================= */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.text-center { text-align: center; }
.mb-huge { margin-bottom: 4rem; }
.mt-medium { margin-top: 2rem; }
.bg-mint { background: linear-gradient(180deg, var(--color-bg-white) 0%, var(--color-bg-mint) 100%); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--trans-fast);
    border: 2px solid transparent;
    white-space: nowrap; /* Prevent button text wrapping */
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    background-clip: padding-box;
    color: white;
    box-shadow: 0 4px 12px rgba(24, 66, 36, 0.1);
    border: none !important; /* Forces the removal of any artifact-causing border */
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    background-clip: padding-box;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(24, 66, 36, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    background-color: transparent;
}


/* Hero "Get in Touch" variant — dark green on light bg */
.btn-hero {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.btn-hero:hover {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* =========================================================================
   HEADER & NAVIGATION
   ========================================================================= */
#site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background-color: #ffffff;
    border-bottom: 1px solid var(--color-border);
    transition: var(--trans-fast);
    padding: 0.5rem 0;
}

#site-header.scrolled {
    padding: 0.8rem 0;
    border-bottom-color: var(--color-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
}

.logo img {
    height: 85px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem; /* Reduced from 2.5rem */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.25rem; /* Reduced from 2rem */
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-body);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--trans-fast);
    position: relative;
    white-space: nowrap; /* Prevent messy wrapping */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-secondary);
    transition: var(--trans-fast);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--color-primary);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.nav-social-link {
    font-size: 1.6rem;
    color: var(--color-primary);
    transition: var(--trans-smooth);
    display: flex;
    align-items: center;
    padding: 2px;
    text-decoration: none; /* Just to be safe */
    position: relative;
}

.nav-social-link::after {
    display: none !important; /* Forces the underline from the other links to stay away */
}

.nav-social-link:hover {
    color: var(--color-primary-hover);
    transform: scale(1.1);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-primary);
    cursor: pointer;
    z-index: 2500;
}

/* =========================================================================
   SECTIONS
   ========================================================================= */
section {
    padding: var(--spacing-block) 0;
    position: relative;
    z-index: 5; /* Base layer for sections */
}

.bg-paws {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1; /* Pushes decorative paws to the absolute back */
}

.bg-paws i {
    z-index: 1;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 10; /* Ensures container content is always above background paws */
}

/* HERO SECTION */
.hero {
    height: 80vh;
    min-height: 600px;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to top, rgba(24, 66, 36, 0.9) 0%, rgba(24, 66, 36, 0.6) 50%, rgba(24, 66, 36, 0.3) 100%), url('649662617_917892407631321_8314889326735513464_n.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the subtitle pill and buttons horizontally */
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: white;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 850px;
    margin: 0 auto 2.5rem;
    line-height: 1.4;
}

.hero-content p a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--trans-fast);
}

.hero-content p a:hover {
    border-bottom-color: white;
    color: #b9e67d;
}

/* Decorative Background Paws */
.hero-paws {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hero-paw {
    position: absolute;
    color: rgba(255, 255, 255, 0.15); /* Subtly visible on the image */
    font-size: 12rem;
    filter: none; /* Removed blur for high-res look */
    background-clip: padding-box; /* Fixes potential color slivers on rounded corners */
}

.hero-paw-1 {
    top: 68%;
    left: 15%; /* Moved closer to text */
    font-size: 7rem; /* Smaller */
    transform: rotate(20deg);
}

.hero-paw-2 {
    top: 42%;
    right: 12%;
    font-size: 9rem; /* Smaller */
    transform: rotate(-15deg);
}

.hero-areas-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 2.25rem 0; /* Precisely balanced to match the heading's natural margin-bottom */
    font-size: 1.05rem;
    color: var(--color-text-body);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.hero-areas-list li {
    font-weight: 500;
}


.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-hero {
    background-color: transparent !important;
    color: white !important;
    border: 2px solid white !important;
    padding: 1rem 2.2rem;
    border-radius: 50px;
}

.btn-hero:hover {
    background-color: white !important;
    color: var(--color-primary) !important;
    transform: translateY(-3px);
}

.image-wrapper {
    position: relative;
    border-radius: 40px;
}

.hero-image-mobile { display: none; }

.image-wrapper > img {
    width: 100%;
    height: auto;
    border-radius: 40px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    border: 8px solid white;
}

.trust-pill {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.trust-pill.right-align {
    left: auto;
    right: -20px;
    bottom: 30px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.trust-icon.green {
    background-color: var(--color-secondary);
}

.trust-text strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    font-size: 1.1rem;
    line-height: 1.2;
}

.trust-text span {
    font-size: 0.85rem;
    color: var(--color-text-body);
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    background: white;
    padding: 1rem 2rem;
    border-radius: 60px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    position: relative;
    z-index: 10;
}

.stats-compact {
    padding: 0.8rem 1.8rem;
    gap: 2.2rem;
    border-radius: 40px;
    margin-left: auto; /* Aligns to the right of the container */
    display: flex;
    flex-wrap: nowrap; /* Forces wording onto one row */
    white-space: nowrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    color: var(--color-primary);
}

.stats-compact .stat-item {
    gap: 0.5rem;
}

.stat-item i {
    font-size: 1.8rem;
    color: var(--color-secondary);
}

.stats-compact .stat-item i {
    font-size: 1.2rem;
}

.stats-compact .stat-item span {
    font-size: 0.95rem;
    font-weight: 700;
}

/* ABOUT SECTION */
.about-container {
    display: grid;
    grid-template-columns: minmax(400px, 1fr) 1.1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 40px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-md);
    border: 8px solid white;
}

.blob-bg {
    display: none;
}

/* SERVICES SECTION */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 30px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--trans-smooth);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.service-card .icon-box {
    width: 70px;
    height: 70px;
    background-color: var(--color-bg-mint);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    transition: var(--trans-fast);
}

.service-card:hover .icon-box {
    background-color: var(--color-primary);
    color: white;
}

.service-card h3 {
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.service-card li i {
    color: var(--color-secondary);
    margin-top: 0.2rem;
}

/* WALKS SECTION */
.walks-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.walks-top-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr; /* Text 1fr, Image 1.3fr for larger image */
    gap: 4rem;
    align-items: flex-start;
}

.walks-illustration {
    position: relative;
    padding: 0 2rem;
}

.pet-backdrop-shape {
    display: none;
}

.photo-card-tilt {
    position: relative;
    z-index: 2;
    transform: rotate(-4deg);
    transition: var(--trans-smooth);
    width: 100%;
}

.photo-card-tilt:hover {
    transform: rotate(-1deg) scale(1.05);
}

.photo-card-img {
    width: 100%;
    aspect-ratio: 4 / 3; /* Forces consistent height/width across all sections */
    object-fit: cover;
    border-radius: 40px;
    box-shadow: var(--shadow-lg), 0 25px 60px rgba(24, 66, 36, 0.15);
    border: 8px solid white;
    display: block;
}

.photo-card-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    background-color: var(--color-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-md);
    border: 4px solid white;
    animation: float 3s ease-in-out infinite;
}

.walks-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.walks-feature-box {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem;
    background: var(--color-bg-mint);
    border-radius: 24px;
    border: 1px solid var(--color-border);
    border-left: 5px solid var(--color-secondary);
    transition: var(--trans-smooth);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.walks-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background-color: white;
    border-color: var(--color-secondary);
}

.walks-feature-box .icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    background: transparent !important;
}

.walks-feature-box .icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: brightness(1.1) contrast(1.15);
}

.walks-feature-box h4 {
    margin-bottom: 0.15rem;
    font-size: 1.1rem;
    color: var(--color-primary);
}

.walks-feature-box p {
    margin-bottom: 0;
    font-size: 0.85rem;
    color: var(--color-text-body);
}

.feature-list {
    list-style: none;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    padding: 1.5rem;
    background: var(--color-bg-mint);
    border-radius: 30px;
    border: 1px solid var(--color-border);
    border-left: 6px solid var(--color-secondary);
    transition: var(--trans-smooth);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.feature-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(33, 102, 55, 0.03);
    transition: var(--trans-smooth);
    z-index: 0;
}

.feature-list li:hover {
    transform: translateX(12px) rotate(-0.5deg);
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-lg);
    background: white;
}
.feature-list li:hover::before {
    width: 100%;
}

.feature-list .icon-wrapper {
    background-color: inherit;
    width: 80px;
    height: 80px;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none !important;
    outline: none !important;
    transition: var(--trans-smooth);
    box-shadow: none !important;
    z-index: 1;
}

.feature-list li:hover .icon-wrapper {
    background-color: inherit;
    transform: rotate(10deg) scale(1.15);
    border: none !important;
    box-shadow: none !important;
}

.feature-list .icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: brightness(1.1) contrast(1.15);
}

.feature-list h4 {
    margin-bottom: 0.3rem;
    font-size: 1.25rem;
    color: var(--color-primary);
    position: relative;
    z-index: 1;
}

.feature-list p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--color-text-body);
    position: relative;
    z-index: 1;
}
/* CATS SECTION */
.cats-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.cats-top-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 1fr; /* Illustration 1.3fr (LEFT), Content 1fr (RIGHT) */
    gap: 4rem;
    align-items: flex-start;
}

.cats-illustration {
    position: relative;
    padding: 0 2rem;
}

.cat-shape {
    display: none;
}

.photo-card-tilt-left {
    position: relative;
    z-index: 2;
    transform: rotate(4deg);
    transition: var(--trans-smooth);
    width: 100%;
}

.photo-card-tilt-left:hover {
    transform: rotate(1deg) scale(1.05);
}

.cat-badge {
    left: -15px !important;
    right: auto !important;
    background-color: var(--color-primary) !important;
}

.cats-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.cats-feature-box {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem;
    background: var(--color-bg-mint);
    border-radius: 24px;
    border: 1px solid var(--color-border);
    border-left: 5px solid var(--color-primary);
    transition: var(--trans-smooth);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.cats-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background-color: white;
    border-color: var(--color-primary);
}

.cats-feature-box .icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    background: transparent !important;
}

.cats-feature-box .icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: brightness(1.1) contrast(1.15);
}

.cats-feature-box h4 {
    margin-bottom: 0.15rem;
    font-size: 1.1rem;
    color: var(--color-primary);
}

.cats-feature-box p {
    margin-bottom: 0;
    font-size: 0.85rem;
    color: var(--color-text-body);
}

/* TRAINING SECTION */
.training-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left; /* Left align for desktop */
}

.training-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Left alignment of content for desktop */
}

.training-list {
    text-align: left; 
    margin: 1.5rem 0 0; /* Left aligned, remove auto centering */
    display: block;
}

.minor-title {
    margin-top: 2rem;
    font-size: 1.2rem;
    color: #000;
    font-weight: 700;
}

.training-list {
    list-style: none;
    margin-top: 1rem;
}

.training-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.training-list i {
    color: var(--color-secondary);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

/* SOCIAL FEED SECTION */
.social-feed {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--color-bg-white) 0%, var(--color-bg-mint) 100%);
    position: relative;
    overflow: hidden;
}

.gallery-fb-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 5rem 0 2rem;
    background-color: var(--color-bg-white);
}

.gallery-fb-heading {
    text-align: left; /* Align left to balance the image on the left */
    font-family: var(--font-heading);
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align content to start */
    justify-content: center;
    gap: 1.5rem;
}

.fb-cta-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-primary);
    max-width: 800px;
    margin: 0 auto;
}

.fb-cta-icons {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.fb-pet-icon {
    width: 90px;
    height: 90px;
    object-fit: contain;
    animation: happy-bounce 2s infinite alternate ease-in-out;
    mix-blend-mode: multiply;
}

.fb-pet-icon:nth-child(2) {
    width: 80px; /* Further balanced to match the dog's head size */
    height: 80px;
    animation-delay: 0.3s;
}

@keyframes happy-bounce {
    0% { transform: translateY(0) rotate(-8deg) scale(1); }
    100% { transform: translateY(-20px) rotate(8deg) scale(1.1); }
}

@media screen and (max-width: 768px) {
    .fb-cta-title {
        font-size: 2.2rem;
        padding: 0 1rem;
    }
    .fb-pet-icon {
        font-size: 3.5rem;
    }
}

.social-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.social-content {
    z-index: 2;
}

.social-content h2 {
    margin-bottom: 1.5rem;
}

.social-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.social-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-arrow {
    font-size: 2.5rem;
    color: var(--color-secondary);
    animation: point-right 1.5s infinite alternate ease-in-out;
}

@keyframes point-right {
    0% { transform: translateX(0); }
    100% { transform: translateX(10px); }
}

.fb-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: white;
    border: 2px solid var(--color-border);
    transition: var(--trans-smooth);
    min-height: 480px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.fb-container:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: var(--color-secondary);
}

.social-bg-paws {
    height: 100%;
}

.social-bg-paws .paw-bg {
    position: absolute;
    color: var(--color-secondary);
    pointer-events: none;
    z-index: 1;
}

.social-bg-paws .paw1 { top: 10%; left: 8%; right: auto; opacity: 0.2; font-size: 8rem; transform: rotate(-15deg); }

@media screen and (max-width: 992px) {
    .social-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .social-cta {
        flex-direction: column;
        justify-content: center;
        gap: 1rem;
    }

    .social-arrow {
        transform: rotate(90deg);
        animation: point-down 1.5s infinite alternate ease-in-out;
    }

    /* Move paw print inward on mobile to prevent clipping */
    .social-bg-paws {
        overflow: visible !important;
    }
    
    /* Refined mobile position for social feed paw print */
    .social-bg-paws .paw1 {
        left: 30px !important;
        top: 2% !important;
        font-size: 6rem !important;
        color: var(--color-secondary) !important;
        opacity: 0.2 !important;
        right: auto !important;
    }
}

/* CONTACT SECTION */
.contact {
    background-color: var(--color-bg-mint);
    padding-bottom: 2rem;
}

.contact-box {
    background-color: #edf7f0; /* Light sage green - distinct from mint background */
    border-radius: 40px;
    padding: 4rem;
    color: var(--color-text-body);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2; 
    border: 3px dotted var(--color-primary); /* Dark green dotted border as requested */
}






.contact-box h2 {
    color: var(--color-primary);
}

.contact-box .text-highlight {
    color: var(--color-secondary);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--trans-fast);
}

.contact-item span {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-item:hover {
    color: var(--color-secondary);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.5rem;
    background: white;
    color: var(--color-secondary);
    padding: 0.8rem;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.areas-covered h3 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tag {
    background-color: white;
    color: var(--color-primary);
    border: 1px solid var(--color-border);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--color-text-body);
    text-decoration: none;
    transition: var(--trans-fast);
}

.footer-links a:hover {
    color: var(--color-primary);
}


/* =========================================================================
   DECORATIONS & BACKGROUNDS
   ========================================================================= */
.bg-paws {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.bg-paws i {
    position: absolute;
    color: var(--color-secondary);
    opacity: 0.2;
}
.paw1 { top: 15%; left: 5%; transform: rotate(-25deg); font-size: 6rem; }
.paw2 { top: 60%; right: 5%; transform: rotate(15deg); font-size: 8rem; }
.paw3 { bottom: 10%; left: 5%; transform: rotate(35deg); font-size: 5rem; }
.paw4 { top: 30%; right: 15%; transform: rotate(-10deg); font-size: 7rem; }
.paw5 { top: 38%; left: 10%; transform: rotate(20deg); font-size: 5rem; opacity: 0.2; }
.paw6 { bottom: 25%; right: 10%; transform: rotate(-30deg); font-size: 4.5rem; opacity: 0.06; }
.paw-tiny { font-size: 2.5rem !important; opacity: 0.05 !important; }

/* Fixed Anchored Positions */
.paw-hero-left { position: absolute; color: var(--color-secondary); opacity: 0.1; pointer-events: none; z-index: -1; top: -20px; left: -160px; transform: rotate(-15deg); font-size: 8rem; }
.paw-hero-photo { position: absolute; color: var(--color-secondary); opacity: 0.08; pointer-events: none; z-index: -1; bottom: -40px; right: -90px; transform: rotate(25deg); font-size: 13rem; }
.paw-footer-line { bottom: 50px; left: 5.5%; transform: rotate(-10deg); font-size: 11rem; z-index: 0; }

/* =========================================================================
   ANIMATIONS
   ========================================================================= */
.fade-in-up, .fade-in-left {
    opacity: 1; /* Guarantees visibility while keeping smooth transitions */
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up {
    transform: translateY(0);
}

.fade-in-left {
    transform: translateX(0);
}

.visible {
    opacity: 1 !important;
    transform: none !important;
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.float-anim {
    animation: float 4s ease-in-out infinite;
}

/* =========================================================================
   GALLERY PAGE SPECIFIC STYLES
   ========================================================================= */
.gallery-hero {
    height: 80vh !important;
    min-height: 650px;
    padding: 2rem 0;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(24, 66, 36, 0.6), rgba(24, 66, 36, 0.7)), url('gallery-assets/1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.gallery-hero .hero-container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

.gallery-hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 0;
}

.gallery-hero .hero-image {
    width: 100%;
}

.gallery-hero .hero-image .image-wrapper img {
    max-height: 550px;
    width: 100%;
    object-fit: cover;
    border-radius: 40px;
    border: 8px solid white;
}

@media screen and (max-width: 992px) {
    .gallery-hero {
        height: auto !important;
        padding: 4rem 0;
        min-height: auto;
    }
    
    .gallery-hero .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .gallery-hero .hero-content {
        align-items: center;
        text-align: center;
    }
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    background-color: white;
    color: var(--color-text-body);
    border: 2px solid var(--color-border);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: var(--trans-smooth);
}

.tab-btn:hover {
    border-color: var(--color-secondary);
    color: var(--color-primary);
}

.tab-btn.active {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media screen and (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--trans-smooth);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(24, 66, 36, 0.6), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--trans-smooth);
}

.gallery-overlay i {
    color: white;
    font-size: 3rem;
    transform: translateY(20px);
    transition: var(--trans-smooth);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

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

.gallery-item:hover .gallery-overlay i {
    transform: translateY(0);
}

/* Item hiding class used by JS */
.gallery-item.hidden {
    display: none !important;
}

/* Pagination Styling */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 4rem;
}

.pagination-btn {
    background-color: white;
    color: var(--color-primary);
    border: 2px solid var(--color-border);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--trans-smooth);
}

.pagination-btn:hover:not(:disabled) {
    border-color: var(--color-secondary);
    background-color: var(--color-bg-mint);
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #f5f5f5;
}

.page-numbers {
    display: flex;
    gap: 0.8rem;
}

.page-num {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--color-border);
    background: white;
    color: var(--color-text-body);
    font-weight: 600;
    cursor: pointer;
    transition: var(--trans-smooth);
}

.page-num:hover:not(.active) {
    border-color: var(--color-secondary);
    color: var(--color-primary);
}

.page-num.active {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

/* =========================================================================
   GALLERY LIGHTBOX MODAL
   ========================================================================= */
.lightbox-modal {
    display: none; 
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(24, 66, 36, 0.98); /* Slightly darker for focus */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 1;
}

.lightbox-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    max-width: 1200px;
    padding: 0 40px;
}

.lightbox-content {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    object-fit: contain;
}

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

.lightbox-prev, .lightbox-next {
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: var(--trans-smooth);
    padding: 20px;
    user-select: none;
}

.lightbox-prev:hover, .lightbox-next:hover {
    color: var(--color-accent);
    transform: scale(1.2);
}

#lightbox-caption {
    margin-top: 25px;
    display: block;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    font-family: var(--font-heading);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--trans-smooth);
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2010;
}

.lightbox-close:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    transform: rotate(90deg);
}

.gallery-bg-paws {
    height: 100%; 
    z-index: -1;
}

/* =========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================= */
@media screen and (max-width: 1024px) {
    .hero-container, .walks-container, .cats-container, .new-services-container, .training-container, .about-container {
        gap: 2rem;
    }
    
    .stats-container {
        display: flex;
        justify-content: center;
        gap: 4rem;
        background: white;
        padding: 1rem 2rem;
        border-radius: 60px;
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--color-border);
        position: relative;
        z-index: 15; /* Extra height to stay above About section background paws */
    }
    
    .stats-container {
        padding: 2rem 2.5rem; /* Increased horizontal padding */
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
        border-radius: 24px; /* Slightly more modern, less aggressive curve */
    }
    
    .stat-item {
        font-size: 0.9rem; /* Slightly smaller text for better fit */
    }
    
    /* Header & Nav */
    .mobile-menu-btn { display: block; }
    .main-nav {
        display: flex;
        position: absolute; /* absolute inside relative body/sticky header */
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        opacity: 0;
        pointer-events: none;
        transition: var(--trans-smooth);
    }
    
    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-box {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 2rem;
    }
}

@media screen and (max-width: 768px) {
    .container { padding: 0 6%; }
    
    section {
        padding: 3.5rem 0 !important;
    }

    .new-services-section {
        padding: 3.5rem 0 !important;
    }
    
    /* Stack sections */
    .hero {
        padding-top: 2rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-image { display: none; }
    .hero-image-mobile { 
        display: block; 
        margin-bottom: 4rem; /* Increased for breathing room against buttons */
    }
    
    .hero-buttons { justify-content: center; }
    
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .about-image { max-width: 400px; margin: 0 auto 3rem; }
    .blob-bg { display: none; } /* Hide complicated shapes on mobile to keep it clean */
    
    .walks-container, .cats-container, .training-container {
        grid-template-columns: 1fr;
    }

    .walks-top-wrapper, .cats-top-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .walks-content, .cats-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .walks-feature-grid, .cats-feature-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .walks-feature-box, .cats-feature-box {
        width: 100%;
    }

    .walking-track {
        margin-top: 2rem;
        height: 80px;
    }
    
    /* Flip order so image is top on mobile */
    .walks-illustration, .cats-illustration { grid-row: 1; }
    
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Force Stack on Certificates into Individual Pill Boxes */
    .stats-container {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem; /* Breathing room between individual boxes */
        padding: 0;
        background: transparent;
        box-shadow: none;
        border: none;
        width: 100%; 
        margin: 0 auto;
    }

    .stat-item {
        width: 100%;
        max-width: 260px; /* Box width */
        justify-content: flex-start;
        font-size: 1rem;
        padding: 1rem 1.5rem;
        background: white;
        border-radius: 25px;
        border: 1px solid var(--color-border);
        box-shadow: var(--shadow-sm);
    }

    .paw-footer-line {
        bottom: 110px; /* Moved up */
        left: -5%;     /* Moved left */
        font-size: 7.5rem; /* Smaller size */
    }
}

@media screen and (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .trust-pill {
        left: 5px;
        right: 5px;
        bottom: -30px;
        padding: 0.8rem;
    }
    
    .trust-pill.right-align {
        right: 5px;
    }
    
    /* Contact Box Mobile Fixes */
    .contact-box {
        padding: 2.5rem 1.2rem;
        gap: 2rem;
    }
    
    .contact-item {
        font-size: clamp(0.7rem, 4vw, 0.95rem);
    }
    
    .contact-item span {
        white-space: nowrap; /* Ensures '.com' stays on single line */
    }

    .contact-item i {
        font-size: 1.1rem;
        padding: 0.5rem;
    }
    
    .tag {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
    }

    /* Gallery Pagination Tidy Up */
    .pagination {
        gap: 0.6rem;
        margin-top: 3rem;
    }

    .pagination-btn {
        padding: 0.8rem 1rem;
        gap: 0;
    }

    .pagination-btn span {
        display: none; /* Hide 'Previous' and 'Next' text on mobile */
    }

    .pagination-btn i {
        font-size: 1.2rem;
    }

    .page-numbers {
        gap: 0.4rem;
    }

    .page-num {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* =========================================================================
   WALKING ANIMATION (PLAYFUL OVERHAUL)
   ========================================================================= */
.walking-track {
    position: relative;
    width: 100%;
    height: 100px;
    margin-top: 4rem;
    overflow: hidden;
    pointer-events: none;
}

.lane {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    transform: translateY(-20px);
}

.lane-dog { top: 0; }
.lane-cat { top: 0; }

.walking-pet {
    position: absolute;
    display: flex;
    align-items: flex-end;
    z-index: 2;
    bottom: 5px;
}

.lane-dog .walking-pet { animation: walk-stroll 6s linear infinite; }
.lane-cat .walking-pet { transform: scaleX(-1); animation: walk-stroll-reverse 6s linear infinite; }

.css-pet {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.1));
}

.pet-body { position: relative; border-radius: 20px; z-index: 2; }
.pet-head { position: absolute; border-radius: 50%; z-index: 3; }

.pet-eye {
    width: 6px; height: 6px; background: #000; border-radius: 50%;
    position: absolute; top: 6px; right: 5px; z-index: 3;
}
.pet-eye::after {
    content: ''; width: 2.5px; height: 2.5px; background: #fff;
    border-radius: 50%; position: absolute; top: 0.5px; right: 0.5px;
}

.dog .css-pet { animation: body-wiggle 0.6s ease-in-out infinite alternate; }
.dog .pet-body { width: 44px; height: 24px; background: #2c5e38; border-radius: 20px 20px 10px 10px; } 
.dog .pet-head { 
    width: 28px; height: 28px; background: #2c5e38; 
    top: -15px; right: -12px; border-radius: 40% 60% 60% 40%;
}
.dog .pet-head::before { 
    content: ''; position: absolute; width: 6px; height: 6px; background: #000;
    border-radius: 50%; right: -6px; top: 12px; z-index: 2;
}
.dog .pet-head::after { 
    content: ''; position: absolute; width: 16px; height: 16px; background: #2c5e38;
    right: -8px; bottom: 2px; border-radius: 5px 15px 10px 5px; z-index: 1;
}
.dog .pet-smile { 
    width: 8px; height: 12px; background: #ff7675; border-bottom: none; border-radius: 4px;
    position: absolute; bottom: -2px; right: 0px; z-index: 0;
    animation: pant 0.2s ease-in-out infinite alternate; opacity: 1; transform-origin: top;
}

.dog .floppy-ear {
    width: 12px; height: 18px; background: #184224;
    position: absolute; top: -2px; left: -2px; border-radius: 50% 50% 40% 40%; transform: rotate(-15deg);
    animation: ear-flop 0.3s ease-in-out infinite alternate; z-index: 4;
}
.dog-tail {
    width: 7px; height: 18px; background: #2c5e38;
    position: absolute; left: -4px; bottom: 10px; border-radius: 4px;
    transform-origin: bottom center; animation: tail-wag 0.12s ease-in-out infinite alternate;
}
.bone {
    width: 14px; height: 5px; background: #fff;
    position: absolute; right: -12px; bottom: 8px; border-radius: 2px; transform: rotate(15deg);
    z-index: 5; box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
.bone::before, .bone::after {
    content: ''; position: absolute; width: 6px; height: 6px; background: #fff; border-radius: 50%;
}
.bone::before { left: -3px; top: -3px; box-shadow: 0 5px 0 #fff; }
.bone::after { right: -3px; top: -3px; box-shadow: 0 5px 0 #fff; }

.pet-legs { display: flex; justify-content: space-around; width: 100%; position: absolute; bottom: -10px; }
.leg { width: 5px; height: 14px; background: currentColor; border-radius: 3px; transform-origin: top center; }
.dog .leg { background: #2c5e38; }
.leg:nth-child(odd) { animation: leg-swing 0.18s ease-in-out infinite alternate; }
.leg:nth-child(even) { animation: leg-swing 0.18s ease-in-out infinite alternate-reverse; }

.paw-lane { position: absolute; width: 100%; height: 100%; display: flex; align-items: flex-end; justify-content: space-evenly; }
.paw-lane i { font-size: 0.75rem; color: var(--color-secondary); opacity: 0; }

.lane-dog .paw-lane i { animation: paw-trail-right 6s linear infinite; }

.lane-dog .paw-lane i:nth-child(1) { animation-delay: 0.9s; }
.lane-dog .paw-lane i:nth-child(2) { animation-delay: 1.36s; }
.lane-dog .paw-lane i:nth-child(3) { animation-delay: 1.82s; }
.lane-dog .paw-lane i:nth-child(4) { animation-delay: 2.29s; }
.lane-dog .paw-lane i:nth-child(5) { animation-delay: 2.75s; }
.lane-dog .paw-lane i:nth-child(6) { animation-delay: 3.21s; }
.lane-dog .paw-lane i:nth-child(7) { animation-delay: 3.67s; }
.lane-dog .paw-lane i:nth-child(8) { animation-delay: 4.13s; }
.lane-dog .paw-lane i:nth-child(9) { animation-delay: 4.60s; }
.lane-dog .paw-lane i:nth-child(10) { animation-delay: 5.06s; }

/* Cat Specific Details - Friendly Cartoony Overhaul */
.cat .css-pet { animation: body-wiggle 0.3s ease-in-out infinite alternate; }

.cat .pet-body { 
    width: 40px; 
    height: 20px; 
    background: #f3a683; /* Ginger */
    border-radius: 12px;
    background-image: linear-gradient(90deg, transparent 70%, #e17055 70%, #e17055 85%, transparent 85%); /* Stripes */
}

.cat .pet-head {
    width: 26px; 
    height: 24px; 
    background: #f3a683;
    top: -13px; 
    right: -10px; 
    border-radius: 50% 50% 48% 48%;
    box-shadow: inset -2px -1px 0 rgba(0,0,0,0.1);
}

/* White Muzzle */
.cat .pet-head::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 10px;
    background: #ffffff;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: 1;
}

/* Pink Nose - Centered */
.cat .pet-head::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 3px;
    background: #fab1a0; /* Sweet Pink */
    bottom: 8px;
    left: 11px; /* Centered on 26px head */
    border-radius: 50%;
    z-index: 2;
}

.cat .pet-eye { 
    top: 7px; 
    width: 7px; 
    height: 7px; 
    background: #000; 
    border-radius: 50%; 
    z-index: 3;
}
/* Eye positioning for forward-facing look - Symmetrical */
.cat .eye-l { right: 14px; }
.cat .eye-r { right: 5px; }
.cat .pet-eye::after {
    content: ''; 
    width: 2.5px; 
    height: 2.5px; 
    background: #fff;
    border-radius: 50%; 
    position: absolute; 
    top: 1px; 
    right: 1px;
}
/* Second highlight for extra sparkle */
.cat .pet-eye::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 1px;
    background: #fff;
    border-radius: 50%;
    bottom: 1.5px;
    left: 1.5px;
}

/* Updated Smiley Mouth - Centered */
.cat .pet-smile {
    position: absolute;
    width: 8px;
    height: 4px;
    border-bottom: 1.5px solid #2d3436;
    border-radius: 0 0 10px 10px;
    right: 9px;
    bottom: 5px;
    z-index: 2;
    transform: none;
}

.cat .cat-ear {
    width: 11px; height: 13px;
    background: #f3a683;
    position: absolute;
    border-radius: 4px 12px 2px 2px;
    overflow: hidden;
}
/* Inner ear color */
.cat .cat-ear::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fab1a0;
    opacity: 0.5;
    clip-path: polygon(20% 100%, 80% 100%, 50% 20%);
}

.cat .ear-left { left: 0px; top: -7px; transform: rotate(-25deg); z-index: -1; }
.cat .ear-right { right: 4px; top: -7px; transform: rotate(18deg); }

.cat .leg { background: #f3a683 !important; border: none; } 

.cat .cat-tail {
    width: 28px; 
    height: 7px; 
    background: #f3a683;
    position: absolute; 
    left: -16px; 
    top: 4px; 
    border-radius: 10px;
    transform-origin: right center; 
    animation: cat-tail-wag 1.5s ease-in-out infinite;
    background-image: repeating-linear-gradient(90deg, transparent, transparent 5px, rgba(225, 112, 85, 0.4) 5px, rgba(225, 112, 85, 0.4) 10px);
}

/* String Ball - More Detailed */
.string-wrapper {
    position: absolute;
    right: -32px; 
    bottom: -2px;
    display: flex;
    align-items: center;
    z-index: 10;
}

/* Loose thread effect */
.string-wrapper::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 15px;
    border-bottom: 2px solid #ff4757;
    border-left: 2px solid #ff4757;
    border-radius: 0 0 0 15px;
    left: -20px;
    bottom: 5px;
    opacity: 0.6;
    transform: rotate(10deg);
}

.string-ball {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ff4757; /* Vibrant Red */
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3) 0%, transparent 40%),
        repeating-linear-gradient(45deg, transparent, transparent 3px, rgba(0,0,0,0.1) 3px, rgba(0,0,0,0.1) 6px),
        repeating-linear-gradient(-45deg, transparent, transparent 4px, rgba(0,0,0,0.05) 4px, rgba(0,0,0,0.05) 8px);
    box-shadow: 
        inset -2px -2px 5px rgba(0,0,0,0.2),
        2px 2px 4px rgba(0,0,0,0.1);
    animation: ball-roll 6s linear infinite;
    position: relative;
    z-index: 2;
}

@keyframes ball-roll {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(1080deg); } 
}

@keyframes cat-tail-wag {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(30deg); }
}

@keyframes walk-stroll-reverse { 0% { right: -15%; } 100% { right: 110%; } }

/* Reversing Paw Prints for Right-to-Left movement */
.lane-cat .paw-lane i { animation: paw-trail-left 6s linear infinite; }
@keyframes paw-trail-left { 0%, 3%, 100% { opacity: 0; } 6%, 15% { opacity: 0.12; transform: scale(0.8) rotate(-15deg); } 20% { opacity: 0; } }

/* Delays recalculated for 6s right-to-left: child(10) is on right, hits cat first */
.lane-cat .paw-lane i:nth-child(10) { animation-delay: 1.16s; }
.lane-cat .paw-lane i:nth-child(9) { animation-delay: 1.59s; }
.lane-cat .paw-lane i:nth-child(8) { animation-delay: 2.02s; }
.lane-cat .paw-lane i:nth-child(7) { animation-delay: 2.45s; }
.lane-cat .paw-lane i:nth-child(6) { animation-delay: 2.88s; }
.lane-cat .paw-lane i:nth-child(5) { animation-delay: 3.32s; }
.lane-cat .paw-lane i:nth-child(4) { animation-delay: 3.75s; }
.lane-cat .paw-lane i:nth-child(3) { animation-delay: 4.18s; }
.lane-cat .paw-lane i:nth-child(2) { animation-delay: 4.61s; }
.lane-cat .paw-lane i:nth-child(1) { animation-delay: 5.04s; }

@keyframes walk-stroll { 0% { left: -15%; } 100% { left: 110%; } }
@keyframes body-wiggle { from { transform: translateY(0) rotate(-2deg); } to { transform: translateY(-3px) rotate(2deg); } }
@keyframes leg-swing { from { transform: rotate(-35deg); } to { transform: rotate(35deg); } }
@keyframes tail-wag { from { transform: rotate(-25deg); } to { transform: rotate(25deg); } }
@keyframes paw-trail-right { 0%, 3%, 100% { opacity: 0; } 6%, 15% { opacity: 0.15; transform: scale(1) rotate(15deg); } 20% { opacity: 0; } }
@keyframes ear-flop { from { transform: rotate(-15deg); } to { transform: rotate(5deg); } }
@keyframes pant { from { transform: scaleY(1); } to { transform: scaleY(1.3); } }

/* =========================================================================
   MY SERVICES REDESIGN V2 (AS PER SCREENSHOT MOCKUP)
   ========================================================================= */
.new-services-section {
    padding: 6rem 0;
    overflow: hidden; /* Prevent staggered cards from creating horizontal scroll if too close to edge */
}

.new-services-container {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    align-items: center;
    text-align: center;
}

.services-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 850px;
    margin: 0 auto;
}

.services-cta {
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.2rem 1.5rem;
    border-radius: 40px;
    box-shadow: var(--shadow-md);
    position: relative;
    max-width: 380px;
}

.guarantee-icon i {
    font-size: 2rem;
    color: #69f0ae; /* Bright green as per mockup */
}

.guarantee-text {
    display: flex;
    flex-direction: column;
}

.guarantee-text strong {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 1rem;
}

.guarantee-text span {
    font-size: 0.85rem;
    color: #666;
}

.guarantee-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ffca28; /* Thumbs up yellow badge */
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    font-size: 0.9rem;
}

.services-image-box {
    margin-top: 2rem;
}

.services-image-box img {
    width: 100%;
    border-radius: 40px;
    box-shadow: var(--shadow-lg);
    object-fit: contain;
}

.services-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem; /* Increased gap for a more premium, airy feel */
}

.service-card-v2 {
    background: white;
    padding: 2.5rem 2rem; /* Balanced padding */
    border-radius: 35px;
    box-shadow: 0 10px 30px rgba(24, 66, 36, 0.05);
    transition: var(--trans-smooth);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(24, 66, 36, 0.1);
}

.icon-bubble {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem; /* Centers the icon bubble then adds space below */
}

.icon-bubble img {
    width: 65%;
    height: 65%;
    object-fit: contain;
    mix-blend-mode: multiply; /* Keep the dark green icons blending nicely */
}

/* Specific bubble background colors as per screenshot vibe */
.bg-blue { background-color: #29b6f6; }
.bg-orange { background-color: #ffe082; }
.bg-green { background-color: #a5d6a7; }
.bg-light-blue { background-color: #81d4fa; }
.bg-rose { background-color: #ef9a9a; }
.bg-purple { background-color: #ce93d8; }

.service-card-v2 h3 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 0.8rem;
}

.service-card-v2 p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

@media screen and (min-width: 1025px) {
    .services-grid-v2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 1024px) {
    .new-services-container {
        /* Flex column inherited from base styles */
    }
    
    .staggered-card {
        margin-top: 0; /* Simplify for tablet */
    }
}

@media screen and (max-width: 768px) {
    .training-container {
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .training-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .training-list {
        text-align: left;
    }

    .services-grid-v2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-compact {
        margin-left: 0;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        gap: 1.2rem;
        flex-direction: column;
        padding: 1rem;
    }

    .gallery-fb-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 3rem;
    }

    .gallery-fb-heading {
        align-items: center;
        text-align: center;
    }

    .stats-compact .stat-item {
        font-size: 0.9rem;
        max-width: 100%;
        width: 100%;
        justify-content: center;
    }
}
@keyframes point-down {
    0% { transform: rotate(90deg) translateY(0); }
    100% { transform: rotate(90deg) translateY(10px); }
}

/* =========================================================================
   SOCIAL FEED SECTION
   ========================================================================= */
.social-feed {
    background-color: var(--color-bg-mint);
    overflow: hidden;
}

.social-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.social-bg-paws {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.social-content h2 {
    margin-bottom: 1.5rem;
}

.social-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-arrow {
    font-size: 2rem;
    color: var(--color-secondary);
    animation: point-right 2s infinite;
}

@media (max-width: 992px) {
    .social-arrow {
        transform: rotate(90deg);
        animation: point-down 2s infinite;
        margin: 1rem 0; /* Clear vertical spacing on mobile */
    }
}

.fb-container {
    background: white;
    padding: 1rem;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    border: 8px solid white;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.fb-container iframe {
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
}

/* =========================================================================
   CONTACT & FOOTER
   ========================================================================= */
.contact {
    background: linear-gradient(180deg, #ffffff 0%, var(--color-bg-mint) 100%);
    color: var(--color-text-body);
    padding: 3rem 0; /* Compact spacing from reference photo */
    border-top: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.contact h2 { 
    color: var(--color-primary); 
    margin-bottom: 1rem; 
    font-size: clamp(2.5rem, 5.5vw, 3.8rem); /* Increased size */
}

.contact h3 { 
    color: var(--color-primary); 
    margin-bottom: 1.5rem; 
    font-size: 1.4rem; 
}

/* Consolidated into main .contact-box style above */

.peeking-pets {
    position: absolute;
    top: -140px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15rem;
    pointer-events: none;
    z-index: 5;
}

.peeking-pet {
    height: 190px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
    transition: var(--trans-smooth);
}

.peeking-pet:hover {
    transform: translateY(-10px) scale(1.05);
}

.dog-peek { margin-right: -2rem; }
.cat-peek { margin-left: -2rem; }

@media (max-width: 768px) {
    .peeking-pets {
        top: -100px;
        gap: 5rem;
    }
    .peeking-pet {
        height: 120px;
    }
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-top: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: var(--color-primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: var(--trans-fast);
}

.contact-item i {
    font-size: 2rem;
    color: var(--color-primary);
    opacity: 1;
}

.contact-item:hover {
    color: var(--color-secondary);
}

.contact-item:hover i {
    color: var(--color-secondary);
    opacity: 1;
}

.icon-circle {
    width: 52px;
    height: 52px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.icon-circle i {
    font-size: 1.8rem !important;
    color: var(--color-primary) !important;
}

.contact-item:hover {
    color: var(--color-secondary);
    transform: translateX(8px);
}

.contact-item:hover .icon-circle {
    transform: scale(1.05);
    background-color: var(--color-secondary);
}

.contact-item:hover .icon-circle i {
    color: white !important;
}

.paw-footer-line {
    font-size: 11rem; /* Slightly smaller from 15rem */
    color: var(--color-primary);
    opacity: 0.05;
    position: absolute;
    bottom: 1.5rem; /* Lifted up from -2rem */
    left: 4.5rem; /* Shifted right from 2rem */
    transform: rotate(-10deg);
}

.decorative-bottom-paw {
    position: absolute;
    bottom: 2rem;
    right: 4rem;
    font-size: 5rem;
    color: var(--color-primary);
    opacity: 0.1;
    pointer-events: none;
    transform: rotate(20deg);
}

.areas-covered {
    position: relative;
}

.tag {
    background: white;
    color: var(--color-primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--color-border);
    transition: var(--trans-fast);
}

.tag:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 2rem; /* Compact margin from photo */
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-text-body);
}

.footer-bottom a:hover {
    text-decoration: underline !important;
}

/* =========================================================================
   ANIMATIONS
   ========================================================================= */
/* Delay Utlities */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes point-right {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
    .social-container, .contact-box {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .contact {
        padding: 4rem 0;
    }
    .contact-box {
        padding: 2.5rem 1.5rem; /* Increased padding to make box feel bigger */
        border-radius: 30px; /* Slightly smoother corners for larger box */
        gap: 0; 
    }
    .contact h2 {
        font-size: 2.1rem; /* Upscaled heading */
        margin-bottom: 0.25rem;
    }
    .contact-box p {
        font-size: 1rem; /* Upscaled body text */
        margin-bottom: 1rem; /* More breathing room under body text */
        line-height: 1.4;
    }
    .contact-methods {
        display: flex;
        flex-direction: column;
        gap: 0 !important; /* KEPT: Perfectly tight grouping as requested */
        margin-top: 1.25rem; /* Increased breathing room above phone number */
        margin-bottom: 1.25rem; /* breathing room below */
    }
    .contact-item {
        font-size: 0.95rem; /* Upscaled contact text */
        padding: 0.25rem 0 !important; 
        margin: 0 !important;
        line-height: 1.2 !important;
        background: none;
    }
    .contact-item i {
        font-size: 1.2rem; /* Upscaled icons */
        width: 24px;
        color: var(--color-primary);
        background: none !important;
        box-shadow: none !important;
    }
    .areas-covered {
        margin-top: 0.5rem;
    }
    .areas-covered h3 {
        margin-bottom: 0.75rem;
        font-size: 1.2rem; /* Upscaled label */
    }
    .tags {
        gap: 0.5rem;
    }
    .tag {
        padding: 0.45rem 1rem; /* Bolder tags */
        font-size: 0.9rem;
    }
    .tag i {
        font-size: 0.7rem; /* Tiny subtle paw */
    }

    /* Hero section mobile refinements */
    .hero-paw-2 {
        display: none; /* Hide the overlapping right paw on mobile */
    }

    .hero-paw-1 {
        top: 15%;
        left: 5%;
        font-size: 5rem; /* Smaller and out of the way */
        opacity: 0.08;
    }

    /* Refine Hero CTA button widths */
    .hero-cta {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-cta .btn {
        width: 260px !important; /* Consistently narrower and tidier */
        margin: 0.5rem auto !important;
    }

    .decorative-bottom-paw {
        display: none; /* Hide decorative elements that might cause horizontal scroll */
    }

    /* Prevent paws from overlapping text on narrow mobile screens */
    .bg-paws i {
        opacity: 0.02; /* Even more subtle on mobile */
    }

    /* Hero section centering */
    .about-content {
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .about-content h2, 
    .about-content p {
        text-align: center !important;
    }
    
    .about-content .btn {
        width: 260px !important; /* Force a tidy, narrower width */
        margin-left: auto;
        margin-right: auto;
    }

    .stats-container.stats-compact {
        justify-content: center !important;
        margin-left: auto;
        margin-right: auto;
    }

    /* Specifically repositioning/hiding paws that overlap text in screenshots */
    .about .bg-paws .paw3, 
    .about .bg-paws .paw4 {
        top: 5%;
        bottom: auto;
    }

    .cats .bg-paws .paw5 {
        bottom: 5%;
        right: 2%;
        font-size: 4rem;
    }

    .training .bg-paws .paw2,
    .training .bg-paws .paw5 {
        display: none; /* Too cluttered on mobile training section */
    }

    /* Training section mobile centering */
    .training-container {
        grid-template-columns: 1fr;
    }

    .training-content {
        align-items: center;
        text-align: center;
        display: flex;
        flex-direction: column;
    }

    .training-content h2,
    .training-content p,
    .training-content .minor-title {
        text-align: center !important;
    }

    .training-list {
        display: table; /* Force container to shrink to fit text exactly */
        margin: 1.5rem auto 2rem; /* perfectly center the block */
        text-align: left;
        list-style: none;
        padding-left: 0;
    }

    .training-list li {
        display: flex;
        align-items: flex-start;
        text-align: left;
        padding-left: 0;
        margin-bottom: 1rem;
    }

    .training-list li i {
        margin-right: 0.8rem;
        margin-top: 5px; /* Perfect alignment with first line of text */
        flex-shrink: 0;
        color: var(--color-primary);
    }

    .training .btn {
        width: 260px !important;
        margin-left: auto;
        margin-right: auto;
    }

    .social-feed .bg-paws .paw-bg {
        top: 2%; /* Moved up slightly as requested */
        left: -10%;
        font-size: 6rem;
    }

    .paw-footer-line {
        bottom: 0; /* Moved to absolute bottom to stay clear of text */
        left: -8%;
        font-size: 8rem;
        opacity: 0.15 !important; 
        color: var(--color-primary);
    }

    /* Training section centering override */
    .training-container, .training-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .training-list {
        text-align: left; /* Keep list bullets aligned left for readability */
        display: inline-block;
        margin: 1.5rem auto 0;
    }

    /* Reduce excess space at bottom and balance text */
    footer {
        padding-bottom: 0 !important;
    }
    .footer-bottom {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
        margin-top: 0.5rem !important;
        display: flex;
        flex-direction: column;
        gap: 2.5rem; /* Increased distance to move "Site by" further down */
    }
    .footer-bottom p {
        margin: 0 !important;
    }
}



