/* ==========================================================================
   GS Dog Kannel CSS Design System
   Modern Premium Dark Theme with Amber Gold Accents & Glassmorphism
   ========================================================================== */

/* 1. Global Reset & Theme Variables */
:root {
    /* Color Palette (Light Purple Premium) */
    --clr-bg-deep: hsl(0, 0%, 98%);
    /* Very Light Grey/White #fafafa */
    --clr-bg-card: hsl(0, 0%, 100%);
    /* White cards */
    --clr-bg-card-hover: hsl(260, 40%, 97%);
    /* Soft purple highlight */
    --clr-glass: rgba(255, 255, 255, 0.6);
    --clr-glass-border: rgba(115, 51, 194, 0.1);
    --clr-glass-highlight: rgba(255, 255, 255, 0.8);

    --clr-primary: hsl(266, 75%, 55%);
    /* Vibrant Purple */
    --clr-primary-hover: hsl(266, 75%, 45%);
    /* Darker Purple */
    --clr-primary-light: hsl(260, 70%, 95%);
    /* Light violet/purple panel */

    --clr-secondary: hsl(339, 76%, 62%);
    /* Rose/Pink Accent #e85287 */
    --clr-secondary-hover: hsl(339, 76%, 52%);
    --clr-whatsapp: hsl(142, 70%, 45%);
    /* WhatsApp green */

    --clr-text-main: hsl(255, 36%, 10%);
    /* Dark Text */
    --clr-text-muted: hsl(255, 12%, 40%);
    /* Muted Text */
    --clr-text-dark: hsl(255, 36%, 10%);

    /* Typography - Clean Sans Serif for all */
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Effects & Transitions */
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(115, 51, 194, 0.12);
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    --border-radius-sm: 12px;
    --border-radius-md: 20px;
    --border-radius-lg: 32px;
    --border-radius-circle: 50%;

    /* Animation Tokens */
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --gradient-primary: linear-gradient(135deg, hsl(266, 75%, 55%), hsl(255, 90%, 75%));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--clr-bg-deep);
}

body {
    font-family: var(--font-body);
    color: var(--clr-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--clr-bg-deep);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--clr-bg-deep);
}

::-webkit-scrollbar-thumb {
    background: hsl(222, 30%, 18%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--clr-primary);
}

/* Typography Anchors */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--clr-text-main);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* 2. Layout Elements & Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    border-radius: var(--border-radius-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(115, 51, 194, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: var(--clr-primary);
    border: 2px solid rgba(115, 51, 194, 0.3);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: var(--clr-primary-light);
    border-color: var(--clr-primary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    padding: 14px;
}

/* Badge style */
.badge {
    background-color: var(--clr-primary);
    color: var(--clr-bg-deep);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 8px;
    vertical-align: middle;
}

/* 3. Header & Navigation */
.main-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    z-index: 1000;
    background-color: var(--clr-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--clr-glass-border);
    border-radius: 100px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.main-header.scrolled {
    top: 10px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.header-container {
    width: 100%;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--clr-primary);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--clr-text-main) 60%, var(--clr-text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--clr-text-main);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--clr-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    border-radius: 3px;
    background-color: var(--clr-primary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--clr-text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* 4. Classical Split Hero Section */
.hero-classical-split {
    position: relative;
    min-height: 80vh;
    padding-top: 140px;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    background-color: var(--clr-bg-deep);
    overflow: hidden;
}

.hero-split-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    z-index: 2;
}

.hero-content-column {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--clr-primary-light);
    color: var(--clr-primary);
    border: 1px solid rgba(115, 51, 194, 0.15);
    padding: 6px 16px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--clr-text-main);
    font-family: var(--font-heading);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin: 0 0 35px;
    max-width: 600px;
}

.hero-cta-group {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}

.hero-visual-column {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.framed-image-container {
    position: relative;
    background: transparent;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    width: 100%;
}

.framed-image-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.framed-hero-img {
    width: 100%;
    max-width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    display: block;
}

.hero-image-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 200px;
    height: 50px;
    box-shadow: var(--shadow-sm);
}

.framed-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background-color: var(--clr-primary);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Stats Section (Separated below Hero) */
.stats-banner-section {
    padding: 20px 0 60px;
    background-color: var(--clr-bg-deep);
}

.stats-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    z-index: 3;
}

.stat-card {
    background-color: var(--clr-bg-card);
    border: 2px solid var(--clr-primary-light);
    border-radius: var(--border-radius-md);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--clr-primary);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    font-size: 2rem;
    color: var(--clr-primary);
    margin-bottom: 15px;
    background: var(--clr-primary-light);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--clr-text-main);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    font-weight: 500;
}

/* 5. Breeds Section */
.breeds-section {
    padding: 160px 20px 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-tag {
    font-family: var(--font-heading);
    color: var(--clr-primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.6rem;
    margin-bottom: 15px;
}

.section-title.text-left {
    text-align: left;
}

.section-description {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
}

.section-description.text-left {
    text-align: left;
}

/* Filter tabs style */
.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 35px;
}

.filter-btn {
    background-color: var(--clr-bg-card);
    color: var(--clr-text-muted);
    border: 1px solid var(--clr-glass-border);
    padding: 10px 22px;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    color: var(--clr-text-main);
    border-color: rgba(255, 255, 255, 0.2);
}

.filter-btn.active {
    background-color: var(--clr-primary);
    color: var(--clr-bg-deep);
    border-color: var(--clr-primary);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

/* Breeds Grid & Cards */
.breeds-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 40px;
}

@media (max-width: 1400px) {
    .breeds-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1100px) {
    .breeds-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .breeds-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .breeds-grid {
        grid-template-columns: 1fr;
    }
}

.breed-card {
    background-color: var(--clr-bg-card);
    border: 1px solid var(--clr-glass-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}

.breed-card:hover {
    transform: translateY(-8px);
    border-color: var(--clr-primary-light);
    box-shadow: var(--shadow-lg);
}

.breed-image-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.breed-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.breed-card:hover .breed-image {
    transform: scale(1.05);
}

.breed-glass-overlay {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 60%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    pointer-events: none;
    z-index: 10;
    transition: var(--transition-smooth);
}

.breed-card:hover .breed-glass-overlay {
    transform: rotate(30deg) translate(20%, 20%);
}

.breed-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--clr-glass);
    backdrop-filter: blur(8px);
    border: 1px solid var(--clr-glass-border);
    color: var(--clr-text-main);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.breed-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.breed-name {
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.breed-card-btn {
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
    padding: 16px;
    font-size: 1rem;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    text-align: center;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: block;
    width: 100%;
    text-decoration: none;
}

.breed-card-btn:hover {
    background: var(--clr-primary-hover);
}

.breed-desc {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.breed-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--clr-glass-border);
    border-bottom: 1px solid var(--clr-glass-border);
    padding: 14px 0;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    color: var(--clr-text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.meta-val {
    font-weight: 700;
}

.meta-val.price {
    color: var(--clr-primary);
}

/* 6. Why Choose Us Section */
.why-us-section {
    padding: 100px 20px;
    background-color: var(--clr-bg-deep);
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.features-list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.feature-item {
    background: linear-gradient(135deg, rgba(115, 51, 194, 0.08) 0%, rgba(255, 255, 255, 1) 40%);
    background-color: var(--clr-bg-card);
    border: 1px solid var(--clr-glass-border);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(115, 51, 194, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: #fff;
    color: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-glass-border);
}

.feature-text h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-weight: 800;
    color: var(--clr-text-main);
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

/* Visual customer testimonial block */
.why-us-visual {
    position: relative;
    padding: 20px;
}

.visual-card {
    background-color: var(--clr-bg-card);
    border: 1px solid var(--clr-glass-border);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.visual-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: 0;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.visual-rating {
    color: #fbbc05;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.visual-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--clr-text-main);
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.visual-author {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background-color: var(--clr-bg-card-hover);
    border-radius: var(--border-radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    font-size: 1.2rem;
    border: 1px solid var(--clr-glass-border);
}

.author-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

/* 7. Footer Section */
.site-footer {
    background-color: hsl(222, 47%, 2%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 80px 20px 30px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--clr-bg-card);
    border: 1px solid var(--clr-glass-border);
    border-radius: var(--border-radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-muted);
    font-size: 1rem;
}

.social-link:hover {
    color: var(--clr-bg-deep);
    background-color: var(--clr-primary);
    border-color: var(--clr-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.15rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
    color: #ffffff;
}

.footer-logo .logo-text {
    background: transparent;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
    color: #ffffff;
    font-weight: 800;
    /* Ensure it is bold */
}

/* Social Media Brand Colors */
.social-link[aria-label="Facebook"] {
    color: #1877F2;
}

.social-link[aria-label="Instagram"] i {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-link[aria-label="WhatsApp"] {
    color: #25D366;
}

.social-link[aria-label="YouTube"] {
    color: #FF0000;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--clr-primary);
}

.links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.links-list a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.links-list a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-list li i {
    color: var(--clr-primary);
    font-size: 1.1rem;
    margin-top: 4px;
}

.contact-list li span {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.contact-list li strong {
    font-size: 0.95rem;
    color: #ffffff;
}

.contact-list li strong a:hover {
    color: var(--clr-primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* 8. Booking Consultation Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 20px;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: var(--clr-bg-card);
    border: 1px solid var(--clr-glass-border);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 500px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transform: scale(0.85);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.open .modal-card {
    transform: scale(1);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--clr-text-muted);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--clr-text-main);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-paw-icon {
    font-size: 2.2rem;
    color: var(--clr-primary);
    margin-bottom: 12px;
}

.modal-header h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text-muted);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid var(--clr-glass-border);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px 12px 45px;
    color: var(--clr-text-main);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

.input-wrapper input:focus,
.input-wrapper select:focus {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(115, 51, 194, 0.15);
}

/* Custom styling for options selection */
.input-wrapper select option {
    background-color: var(--clr-bg-card);
    color: var(--clr-text-main);
}

/* 9. Floating WhatsApp Action Button */
.whatsapp-floating-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--clr-whatsapp);
    color: white;
    border-radius: var(--border-radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.35);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.whatsapp-floating-widget:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: hsl(142, 70%, 40%);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.5);
}

.whatsapp-floating-widget i {
    animation: floatingIcon 4s ease-in-out infinite;
}

/* Tooltip text */
.whatsapp-floating-widget .tooltip-text {
    position: absolute;
    right: 75px;
    background-color: var(--clr-bg-card);
    color: var(--clr-text-main);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--clr-glass-border);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.whatsapp-floating-widget:hover .tooltip-text {
    opacity: 1;
    transform: translateX(0);
}

/* 10. Keyframe Animations */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

@keyframes floatingIcon {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(10deg) scale(1.05);
    }
}

/* 11. Media Queries (Responsive Styling) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .why-us-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--clr-bg-card);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        gap: 25px;
        transition: var(--transition-smooth);
    }

    .nav-menu.open {
        left: 0;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .stats-container {
        position: static;
        transform: none;
        width: 100%;
        grid-template-columns: 1fr;
        padding: 0 20px;
        margin-top: 40px;
    }

    .hero-section {
        padding-bottom: 60px;
    }

    .breeds-section {
        padding-top: 80px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
        max-width: 320px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   Multi-Page Restructure & Client Gallery Styling
   ========================================================================== */

/* Secondary Page Hero Banner */
.page-hero-section {
    position: relative;
    padding-top: 150px;
    padding-bottom: 60px;
    text-align: center;
    background-image: linear-gradient(185deg, rgba(15, 23, 42, 0.8) 0%, var(--clr-bg-deep) 100%), url('assets/German Shepherd.jpeg');
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
    border-bottom: 1px solid var(--clr-glass-border);
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, var(--clr-bg-deep) 95%);
    z-index: 1;
}

.page-hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--clr-text-main) 60%, var(--clr-text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
}

/* About Page Story Section */
.about-story-section,
.why-us-detailed-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: flex-start;
}

.story-p {
    font-size: 1rem;
    color: var(--clr-text-muted);
    margin-bottom: 20px;
}

.stats-row-small {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.small-stat {
    flex: 1;
    min-width: 120px;
}

.small-stat strong {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--clr-primary);
    display: block;
    line-height: 1.1;
}

.small-stat span {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.story-card {
    background-color: var(--clr-bg-card);
    border: 1px solid var(--clr-glass-border);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.story-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--clr-primary);
}

.story-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.story-list li {
    display: flex;
    gap: 12px;
    font-size: 0.95rem;
    align-items: flex-start;
}

.text-gold {
    color: var(--clr-primary);
    margin-top: 4px;
}

/* Happy Clients Gallery Grid Styling */
.client-gallery-section {
    padding: 80px 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    background-color: var(--clr-bg-card);
    border: 1px solid var(--clr-glass-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.25);
    box-shadow: var(--shadow-md);
}

.gallery-image-wrapper {
    position: relative;
    height: 250px;
    background-color: hsl(222, 35%, 10%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: hsl(222, 20%, 30%);
}

.image-placeholder i {
    font-size: 2.5rem;
}

.image-placeholder span {
    font-size: 0.85rem;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.9);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-image-wrapper:hover .gallery-overlay {
    opacity: 1;
}

.gallery-rating {
    color: var(--clr-primary);
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.gallery-quote {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--clr-text-main);
    line-height: 1.6;
    margin-bottom: 15px;
}

.gallery-author {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-primary);
}

/* Contact Page Styles */
.contact-details-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-page-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-intro-text {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    margin-bottom: 40px;
}

.contact-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background-color: var(--clr-bg-card);
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid var(--clr-glass-border);
}

.info-card:hover {
    border-color: var(--clr-primary);
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.info-card-icon {
    width: 45px;
    border-radius: 50%;
    background-color: var(--clr-primary-light);
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.info-card-text span {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    display: block;
}

.info-card-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

.info-card-text h4 a:hover {
    color: var(--clr-primary);
}

.form-card-wrapper {
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid #fff;
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

.form-card-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-card-wrapper p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    margin-bottom: 30px;
}

/* Additional Media Queries */
@media (max-width: 900px) {

    .about-container,
    .contact-page-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================================================
   Google Reviews Card & Ratings Badge Components
   ========================================================================== */

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(115, 51, 194, 0.12);
    border-radius: 30px;
    padding: 8px 18px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text-main);
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.google-badge:hover {
    border-color: rgba(115, 51, 194, 0.3);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.google-badge i.fa-google {
    color: #4285F4;
}

.google-stars {
    color: #fbbc05;
    display: inline-flex;
    gap: 2px;
}

.gallery-grid,
.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
    align-items: stretch;
}

@media (max-width: 1200px) {

    .gallery-grid,
    .google-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .gallery-grid,
    .google-reviews-grid {
        grid-template-columns: 1fr;
    }
}

.google-card {
    background-color: var(--clr-bg-card);
    border: 2px solid var(--clr-primary-light);
    border-radius: var(--border-radius-md);
    padding: 40px 24px 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    height: 100%;
}

.google-card:hover {
    transform: translateY(-5px);
    border-color: var(--clr-primary);
    box-shadow: var(--shadow-md);
}

.google-card.highlight {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: scale(1.05);
    z-index: 2;
    color: #fff;
}

.google-card.highlight:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.google-avatar-wrapper {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: var(--clr-primary-light);
    box-shadow: var(--shadow-sm);
    z-index: 3;
}

.google-card.highlight .google-avatar-wrapper {
    border-color: var(--clr-primary);
}

.google-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.google-verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 18px;
    height: 18px;
    background: var(--clr-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.google-card.highlight .google-verified-badge {
    border-color: var(--clr-primary);
}

.google-card-rating {
    color: #fbbc05;
    font-size: 1rem;
    margin-top: 15px;
    margin-bottom: 8px;
    display: flex;
    gap: 4px;
}

.google-card.highlight .google-card-rating {
    color: #fff;
}

.google-author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--clr-text-main);
}

.google-card.highlight .google-author-info h4 {
    color: #fff;
}

.google-card-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--clr-text-main);
    margin-bottom: 10px;
}

.google-card.highlight .google-card-title {
    color: #fff;
}

.google-card-text {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    line-height: 1.55;
    flex-grow: 1;
}

.google-card.highlight .google-card-text {
    color: rgba(255, 255, 255, 0.9);
}

.google-card-footer {
    margin-top: 20px;
    background: var(--clr-bg-deep);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    font-weight: 600;
}

.google-card.highlight .google-card-footer {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* --- Scenery Client Photo Gallery --- */
.scenery-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 0 20px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.scenery-photo {
    width: 280px;
    background: #ffffff;
    padding: 12px 12px 45px 12px;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.scenery-photo img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 2px;
}

/* Scattered polaroid-like rotations with continuous floating motion */
.scenery-photo {
    --rot: 0deg;
    animation: floatScenery 6s ease-in-out infinite;
}

.scenery-photo:nth-child(1) {
    --rot: -4deg;
    animation-delay: 0s;
}

.scenery-photo:nth-child(2) {
    --rot: 3deg;
    animation-delay: -1s;
}

.scenery-photo:nth-child(3) {
    --rot: -2deg;
    animation-delay: -2s;
}

.scenery-photo:nth-child(4) {
    --rot: 5deg;
    animation-delay: -3s;
}

.scenery-photo:nth-child(5) {
    --rot: -3deg;
    animation-delay: -4s;
}

.scenery-photo:nth-child(6) {
    --rot: 2deg;
    animation-delay: -5s;
}

@keyframes floatScenery {
    0% {
        transform: translateY(0px) rotate(var(--rot));
    }

    50% {
        transform: translateY(-12px) rotate(var(--rot));
    }

    100% {
        transform: translateY(0px) rotate(var(--rot));
    }
}

.scenery-photo:hover {
    transform: rotate(0deg) scale(1.08) translateY(-15px) !important;
    animation-play-state: paused;
    z-index: 10;
    box-shadow: 0 25px 50px rgba(115, 51, 194, 0.25);
}

@media (max-width: 991px) {
    .logo-text {
        font-size: 1rem;
    }

    .logo .badge {
        display: none;
    }

    #btnBookConsultationTop {
        display: inline-flex !important;
        padding: 8px 12px !important;
        font-size: 0.8rem !important;
    }

    .header-actions a[href^="tel:"] {
        padding: 8px 12px !important;
        font-size: 0.8rem !important;
        margin-right: 5px !important;
    }

    .header-actions {
        gap: 5px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .hero-classical-split {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .hero-split-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content-column {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content-column .hero-title {
        font-size: 2.8rem;
    }

    .hero-content-column .hero-cta-group {
        justify-content: center;
    }

    .framed-hero-img {
        max-height: 300px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-banner-section {
        padding: 20px 0 40px;
    }
}

/* ==========================================================================
   Premium Animation & Motion System
   ========================================================================== */

/* Intersection Observer Baseline States */
.anim-hidden {
    opacity: 0;
    will-change: transform, opacity;
}

.anim-fade-up {
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-spring), transform 0.8s var(--ease-spring);
}

.anim-slide-left {
    transform: translateX(-40px);
    transition: opacity 0.8s var(--ease-spring), transform 0.8s var(--ease-spring);
}

.anim-slide-right {
    transform: translateX(40px);
    transition: opacity 0.8s var(--ease-spring), transform 0.8s var(--ease-spring);
}

.anim-zoom-in {
    transform: scale(0.9);
    transition: opacity 0.8s var(--ease-spring), transform 0.8s var(--ease-spring);
}

.anim-visible {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}

/* Stagger Delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-150 {
    transition-delay: 0.15s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

/* Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 9999;
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    transition: width 0.1s linear;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background-image: url('assets/Poodle.jpeg');
    background-size: cover;
    background-position: center;
    border: 2px solid #ffffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.custom-cursor.hovering {
    width: 60px;
    height: 60px;
    border-color: var(--clr-primary);
    box-shadow: 0 6px 16px rgba(115, 51, 194, 0.4);

}

/* Hide custom cursor on mobile and touch devices */
@media (max-width: 991px),
(pointer: coarse) {
    .custom-cursor {
        display: none !important;
    }
}

    /* Ripple Effect */
    .ripple {
        position: absolute;
        border-radius: 50%;
        transform: scale(0);
        animation: ripple-anim 0.6s linear;
        background-color: rgba(255, 255, 255, 0.4);
        pointer-events: none;
    }

    @keyframes ripple-anim {
        to {
            transform: scale(4);
            opacity: 0;
        }
    }

    /* Button enhancements */
    .btn {
        position: relative;
        overflow: hidden;
        transition: var(--transition-smooth);
    }

    .btn-primary:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(115, 51, 194, 0.3);
    }

    /* Gradient Mesh Orb */
    .gradient-orb {
        position: absolute;
        width: 50vw;
        height: 50vw;
        max-width: 600px;
        max-height: 600px;
        background: radial-gradient(circle, rgba(115, 51, 194, 0.08) 0%, rgba(232, 82, 135, 0.05) 50%, transparent 70%);
        border-radius: 50%;
        filter: blur(50px);
        z-index: 0;
        pointer-events: none;
        animation: floatOrb 15s ease-in-out infinite alternate;
    }

    @keyframes floatOrb {
        0% {
            transform: translate(0, 0) scale(1);
        }

        100% {
            transform: translate(100px, -50px) scale(1.2);
        }
    }

    /* Nav Blur Enhancement */
    .main-header.scrolled {
        background: rgba(255, 255, 255, 0.85) !important;
        backdrop-filter: blur(16px) !important;
        border-bottom: 1px solid var(--clr-glass-border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .nav-link {
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--gradient-primary);
        transition: width 0.3s var(--ease-smooth);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }

    /* Form floating interactions */
    .input-wrapper {
        position: relative;
        overflow: hidden;
        border-radius: var(--border-radius-sm);
    }

    .input-wrapper::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0%;
        height: 2px;
        background: var(--gradient-primary);
        transition: width 0.4s var(--ease-spring);
    }

    .input-wrapper:focus-within::after {
        width: 100%;
    }

    /* New Split Layout Banner */
    .home-choose-banner.split-layout {
        background-color: var(--clr-bg-subtle);
        padding: 100px 20px;
        overflow: hidden;
    }

    .split-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 60px;
    }

    .split-text {
        flex: 1;
        text-align: left;
    }

    .split-text .section-description {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .split-images {
        flex: 1;
        position: relative;
        height: 550px;
        display: flex;
        justify-content: center;
    }

    .ascending-stack {
        position: relative;
        width: 100%;
        max-width: 450px;
    }

    .stack-img {
        position: absolute;
        border-radius: var(--border-radius-lg);
        border: 10px solid var(--clr-bg);
        box-shadow: var(--shadow-xl);
        object-fit: cover;
        transition: transform 0.4s ease, z-index 0s;
    }

    .stack-img:hover {
        transform: scale(1.05) translateY(-10px);
        z-index: 10 !important;
    }

    /* Ascending stack up to up to up */
    .img-1 {
        width: 250px;
        height: 300px;
        bottom: 0;
        left: 0;
        z-index: 3;
    }

    .img-2 {
        width: 230px;
        height: 280px;
        bottom: 110px;
        left: 120px;
        z-index: 2;
    }

    .img-3 {
        width: 210px;
        height: 260px;
        bottom: 220px;
        left: 240px;
        z-index: 1;
    }

    @media (max-width: 900px) {
        .home-choose-banner.split-layout {
            padding: 50px 15px;
        }

        .split-container {
            flex-direction: row;
            align-items: center;
            text-align: left;
            gap: 20px;
        }

        .split-text {
            flex: 1.2;
            margin-bottom: 0;
            text-align: left;
            background: transparent;
            box-shadow: none;
            backdrop-filter: none;
            padding: 0;
        }

        .split-text .section-title {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .split-text .section-description {
            margin: 0 0 20px 0;
            font-size: 0.95rem;
        }

        .split-text .btn {
            padding: 10px 20px;
            font-size: 0.9rem;
        }

        .split-images {
            flex: 0.8;
            height: auto;
            display: flex;
            justify-content: flex-end;
            position: static;
        }

        .ascending-stack {
            display: flex;
            justify-content: flex-end;
            height: auto;
            max-width: 100%;
        }

        /* Hide extra images on mobile */
        .img-2,
        .img-3 {
            display: none !important;
        }

        /* Bold, aesthetic outline design for the single mobile image */
        .img-1 {
            position: relative;
            width: 100%;
            max-width: 280px;
            height: auto;
            aspect-ratio: 4/5;
            left: auto;
            bottom: auto;
            border: 8px solid var(--clr-primary);
            border-radius: 40px 10px 40px 10px;
            box-shadow: 0 15px 35px rgba(115, 51, 194, 0.3), 0 0 0 4px var(--clr-bg);
            z-index: 1;
        }
    }

    @media (max-width: 500px) {
        .split-container {
            gap: 15px;
        }

        .split-text .section-title {
            font-size: 1.5rem;
        }

        .split-text .section-description {
            font-size: 0.85rem;
        }

        .img-1 {
            border-width: 6px;
            border-radius: 30px 8px 30px 8px;
        }
    }

    /* Animated Paw Print Particles */
    #paw-particles-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        pointer-events: none;
        z-index: 9999;
        overflow: hidden;
    }

    .paw-particle {
        position: absolute;
        background-image: url('assets/paw.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        filter: grayscale(1) brightness(1.2) contrast(1.5);
        mix-blend-mode: multiply;
        opacity: 0.12;
    }

    @keyframes driftPaws {
        0% {
            transform: translate(0, 0) rotate(0deg);
        }

        100% {
            transform: translate(var(--tx), var(--ty)) rotate(var(--tr));
        }
    }

    /* Custom Hero for Why Choose Us */
    #why-choose-hero {
        background-image: linear-gradient(185deg, rgba(255, 255, 255, 0.7) 0%, rgba(240, 248, 255, 0.85) 100%), url('assets/why-choose-bg.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        background-blend-mode: normal;
        color: var(--clr-bg-deep);
    }

    #why-choose-hero .page-title {
        color: #000000;
        -webkit-text-fill-color: #000000;
        background: none;
        font-weight: 900;
        text-shadow: 0 1px 3px rgba(255, 255, 255, 1), 0 0 10px rgba(255, 255, 255, 0.8);
    }

    #why-choose-hero .page-subtitle {
        color: #000000;
        font-weight: 400;
        text-shadow: 0 1px 3px rgba(255, 255, 255, 1), 0 0 10px rgba(255, 255, 255, 0.8);
    }

    #why-choose-hero .section-tag {
        background-color: rgba(0, 0, 0, 0.05);
        border-color: rgba(0, 0, 0, 0.1);
        color: var(--clr-primary);
    }

    #why-choose-hero .page-hero-overlay {
        display: none;
    }

    /* Custom Hero for About Us (Legacy) */
    #about-hero {
        background-image: linear-gradient(185deg, rgba(255, 255, 255, 0.7) 0%, rgba(240, 248, 255, 0.85) 100%), url('assets/legacy-bg.jpg');
        background-size: cover;
        background-position: center 20%;
        background-attachment: fixed;
        background-blend-mode: normal;
        color: var(--clr-bg-deep);
    }

    #about-hero .page-title {
        color: #000000;
        -webkit-text-fill-color: #000000;
        background: none;
        font-weight: 900;
        text-shadow: 0 1px 3px rgba(255, 255, 255, 1), 0 0 10px rgba(255, 255, 255, 0.8);
    }

    #about-hero .page-subtitle {
        color: #000000;
        font-weight: 400;
        text-shadow: 0 1px 3px rgba(255, 255, 255, 1), 0 0 10px rgba(255, 255, 255, 0.8);
    }

    #about-hero .section-tag {
        background-color: rgba(0, 0, 0, 0.05);
        border-color: rgba(0, 0, 0, 0.1);
        color: var(--clr-primary);
    }

    #about-hero .page-hero-overlay {
        display: none;
    }

    /* Custom Hero for Consultation Page */
    #consultation-hero {
        background-image: linear-gradient(185deg, rgba(255, 255, 255, 0.75) 0%, rgba(245, 250, 255, 0.9) 100%), url('assets/consultation-bg.avif');
        background-size: cover;
        background-position: center 30%;
        background-attachment: fixed;
        background-blend-mode: normal;
        color: var(--clr-bg-deep);
    }

    #consultation-hero .page-title {
        color: #000000;
        -webkit-text-fill-color: #000000;
        background: none;
        font-weight: 900;
        text-shadow: 0 1px 3px rgba(255, 255, 255, 1), 0 0 10px rgba(255, 255, 255, 0.8);
    }

    #consultation-hero .page-subtitle {
        color: #000000;
        font-weight: 400;
        text-shadow: 0 1px 3px rgba(255, 255, 255, 1), 0 0 10px rgba(255, 255, 255, 0.8);
    }

    #consultation-hero .section-tag {
        background-color: rgba(0, 0, 0, 0.06);
        border-color: rgba(0, 0, 0, 0.12);
        color: var(--clr-primary);
    }

    #consultation-hero .page-hero-overlay {
        display: none;
    }

    /* Custom Hero for Breeds Page */
    #breeds-hero {
        background-image: linear-gradient(185deg, rgba(255, 255, 255, 0.7) 0%, rgba(240, 248, 255, 0.85) 100%), url('assets/breeds-bg.jpg');
        background-size: cover;
        background-position: center 30%;
        background-attachment: fixed;
        background-blend-mode: normal;
        color: #000000;
    }

    #breeds-hero .page-title {
        color: #000000;
        -webkit-text-fill-color: #000000;
        background: none;
        font-weight: 900;
        text-shadow: 0 1px 3px rgba(255, 255, 255, 1), 0 0 10px rgba(255, 255, 255, 0.8);
    }

    #breeds-hero .page-subtitle {
        color: #000000;
        font-weight: 400;
        text-shadow: 0 1px 3px rgba(255, 255, 255, 1), 0 0 10px rgba(255, 255, 255, 0.8);
    }

    #breeds-hero .section-tag {
        background-color: rgba(0, 0, 0, 0.05);
        border-color: rgba(0, 0, 0, 0.1);
        color: var(--clr-primary);
    }

    #breeds-hero .page-hero-overlay {
        display: none;
    }

    /* Modern Search Bar */
    .search-container {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
        width: 100%;
    }

    .search-box {
        position: relative;
        width: 100%;
        max-width: 600px;
        margin: 0 20px;
    }

    .search-icon {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--clr-text-muted);
        font-size: 1.2rem;
        transition: color 0.3s ease;
        z-index: 2;
    }

    .search-input {
        width: 100%;
        padding: 16px 20px 16px 50px;
        font-size: 1.1rem;
        font-weight: 700;
        font-family: inherit;
        color: #000000;
        background-color: #ffffff;
        border: 2px solid transparent;
        border-radius: 50px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        outline: none;
        position: relative;
    }

    .search-input::placeholder {
        color: #a0aec0;
        font-weight: 400;
    }

    .search-input:hover {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), 0 2px 5px rgba(0, 0, 0, 0.03);
        transform: translateY(-1px);
    }

    .search-input:focus {
        box-shadow: 0 10px 30px rgba(108, 92, 231, 0.15), 0 0 0 4px rgba(108, 92, 231, 0.1);
        border-color: var(--clr-primary);
        transform: translateY(-2px);
    }

    .search-box:focus-within .search-icon {
        color: var(--clr-primary);
    }
