/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fefefe;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #1a1a1a;
    font-weight: 600;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

p {
    margin-bottom: 1.25rem;
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
}

a {
    color: #c7986b;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

a:hover {
    color: #a67c52;
    transform: translateY(-1px);
}

a:focus {
    outline: 2px solid #c7986b;
    outline-offset: 2px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* Enhanced Floating Header */
header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(199, 152, 107, 0.1);
    color: #1a1a1a;
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

/* Floating effect when scrolled */
header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 0.75rem 0;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(199, 152, 107, 0.08);
    border-bottom: 1px solid rgba(199, 152, 107, 0.15);
}

/* Hide navbar when scrolling down fast */
header.hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

/* Ensure body has top padding for fixed header */
body {
    padding-top: 90px;
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #c7986b;
    letter-spacing: -0.01em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Logo shrinks slightly when scrolled */
header.scrolled .logo {
    font-size: 1.5rem;
    transform: scale(0.95);
}

.logo:hover {
    color: #a67c52;
    transform: translateY(-1px);
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    color: #4a5568;
    font-weight: 500;
    padding: 0.75rem 0;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #c7986b, #a67c52);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

nav a:hover,
nav a.active {
    color: #c7986b;
    transform: translateY(-2px);
}

/* Phone Call Button */
.phone-cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    border: 2px solid transparent;
}

/* Phone button adjusts with navbar */
header.scrolled .phone-cta {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    transform: scale(0.95);
}

.phone-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
    color: white;
    background: linear-gradient(135deg, #c7986b, #a67c52);
    border-color: #c7986b;
}

/* Mobile menu toggle button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #c7986b;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Menu toggle adjusts with navbar */
header.scrolled .menu-toggle {
    transform: scale(0.9);
}

.menu-toggle:hover {
    background: rgba(199, 152, 107, 0.1);
    color: #c7986b;
}

/* Show hamburger menu on mobile and hide desktop nav */
@media (max-width: 768px) {
    header {
        padding: 0.75rem 0;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    header.scrolled .logo {
        font-size: 1.1rem;
    }
    
    .menu-toggle {
        display: block;
        font-size: 1.3rem;
        padding: 0.3rem;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem 1rem;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(199, 152, 107, 0.1);
        gap: 0;
        z-index: 1000;
    }
    
    nav ul.active,
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin-bottom: 0.75rem;
    }
    
    nav a {
        padding: 0.75rem 0;
        font-size: 1rem;
    }
    
    .phone-cta {
        display: none;
    }
}

/* Hero Section - Redesigned */
.hero {
    min-height: 60vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #c7986b, #a67c52);
    color: white;
    overflow: hidden;
}

/* Page-specific hero backgrounds and layouts */
.hero.about-hero {
    background: linear-gradient(135deg, #c7986b, #a67c52);
    color: white;
}

.hero.puppies-hero {
    background: linear-gradient(135deg, #c7986b, #a67c52);
    color: white;
}

.hero.gallery-hero {
    background: linear-gradient(135deg, #c7986b, #a67c52);
    color: white;
}

.hero.contact-hero {
    background: linear-gradient(135deg, #c7986b, #a67c52);
    color: white;
}

/* Walking paw prints animation container */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Subtle golden overlay */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: 
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(218, 165, 32, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 30%);
    animation: goldenFloat 20s ease-in-out infinite;
    pointer-events: none;
}

/* Individual paw print animation */
.hero-paw {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    animation: pawDissolve 4s ease-in-out;
    animation-fill-mode: both;
    background-image: url('../images/paw-print.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 40px;
    height: 40px;
}

@keyframes pawDissolve {
    0% { opacity: 0; }
    10% { opacity: 0.8; }
    70% { opacity: 0.8; }
    100% { opacity: 0; }
}

/* Cursor trail paw prints */
.cursor-paw {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    width: 25px;
    height: 30px;
    opacity: 0;
    background-image: url('../images/paw-print.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    transform-origin: top center;
    animation: walkingPawStep 2s ease-out forwards;
    filter: drop-shadow(0 0 3px rgba(0,0,0,0.8)) drop-shadow(0 0 1px rgba(255,255,255,0.8));
}

/* Fallback paw using emoji if image not found */
.cursor-paw.no-image {
    background-image: none;
}

.cursor-paw.no-image::before {
    content: '🐾';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    filter: drop-shadow(0 0 3px rgba(0,0,0,0.8)) drop-shadow(0 0 1px rgba(255,255,255,0.8));
    text-shadow: 0 0 3px rgba(0,0,0,0.8), 0 0 1px rgba(255,255,255,0.8);
}

@keyframes walkingPawStep {
    0% { 
        opacity: 0; 
        transform: translateY(15px) scale(0.4); 
    }
    8% { 
        opacity: 0.3; 
        transform: translateY(8px) scale(0.6); 
    }
    15% { 
        opacity: 0.7; 
        transform: translateY(3px) scale(0.8); 
    }
    25% { 
        opacity: 1; 
        transform: translateY(0px) scale(1); 
    }
    35% { 
        opacity: 1; 
        transform: translateY(-1px) scale(1.05); 
    }
    50% { 
        opacity: 0.9; 
        transform: translateY(0px) scale(1); 
    }
    70% { 
        opacity: 0.7; 
        transform: translateY(2px) scale(0.95); 
    }
    85% { 
        opacity: 0.4; 
        transform: translateY(6px) scale(0.7); 
    }
    100% { 
        opacity: 0; 
        transform: translateY(12px) scale(0.5); 
    }
}

@keyframes goldenFloat {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.02); opacity: 0.6; }
}

/* Hero content container */
.hero .container {
    position: relative;
    z-index: 2;
    max-width: none;
    padding: 0;
    height: 100%;
    display: contents;
}

/* Hero content - left side */
.hero-content {
    padding: 0 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Hero visual - right side */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

/* Hero typography */
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-align: left;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
    text-align: left;
    max-width: 500px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Hero buttons */
.hero .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0.5rem 0.5rem 0.5rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
}

.hero .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.hero .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

/* Hero carousel on right side */
.hero-carousel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-carousel .carousel {
    width: 100%;
    max-width: 450px;
}

.hero-carousel .puppy-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.hero-carousel .puppy-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hero-carousel .carousel-dots {
    margin-top: 1rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.hero-carousel .carousel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-carousel .carousel-dot.active {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Hero visual elements - paw prints for other pages */
.hero-visual::before {
    content: '🐾';
    position: absolute;
    font-size: 6rem;
    opacity: 0.2;
    top: 20%;
    left: 30%;
    animation: pawPulse 6s ease-in-out infinite;
}

.hero-visual::after {
    content: '🐾';
    position: absolute;
    font-size: 4rem;
    opacity: 0.15;
    top: 60%;
    right: 20%;
    animation: pawPulse 6s ease-in-out infinite 3s;
    transform: rotate(45deg);
}

@keyframes pawPulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.15; }
    50% { transform: scale(1.2) rotate(5deg); opacity: 0.25; }
}

/* Simple hero variant for inner pages */
.hero.simple-hero {
    min-height: 50vh;
    grid-template-columns: 1fr;
    text-align: center;
    background: linear-gradient(135deg, #c7986b, #a67c52);
    color: white;
}

.hero.simple-hero .hero-content {
    padding: 4rem;
    text-align: center;
    align-items: center;
}

.hero.simple-hero .hero-visual {
    display: none;
}

.hero.simple-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    text-align: center;
}

.hero.simple-hero p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 2rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #c7986b, #a67c52);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(199, 152, 107, 0.25);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(199, 152, 107, 0.35);
    color: white;
    animation: gentlePulse 2s ease-in-out infinite;
}

@keyframes gentlePulse {
    0%, 100% { box-shadow: 0 15px 35px rgba(199, 152, 107, 0.35); }
    50% { box-shadow: 0 15px 35px rgba(199, 152, 107, 0.45); }
}

.btn-secondary {
    background: transparent;
    border: 2px solid #c7986b;
    color: #c7986b;
    margin-left: 1rem;
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.btn-secondary:hover {
    background: #c7986b;
    border-color: #c7986b;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(199, 152, 107, 0.3);
}

/* Secondary button on dark backgrounds (hero section) */
.hero .btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    backdrop-filter: blur(10px);
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

/* Sections */
section {
    padding: 6rem 0;
    position: relative;
}

/* Smooth section backgrounds */
section:nth-child(even) {
    background: linear-gradient(135deg, #fff9f0 0%, #fef5e7 100%);
    position: relative;
}

section:nth-child(even)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(245, 166, 35, 0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: gentleBackgroundShift 20s ease-in-out infinite;
}

@keyframes gentleBackgroundShift {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Colorful alternating section backgrounds */
section:nth-child(odd):not(.hero) {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    position: relative;
}

section:nth-child(odd):not(.hero)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(52, 152, 219, 0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: subtleGlow 15s ease-in-out infinite;
}

@keyframes subtleGlow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

.section-alt {
    background: linear-gradient(135deg, #f0fff4 0%, #e8f5e8 100%);
    position: relative;
}

.section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(46, 204, 113, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #c7986b, #a67c52);
    border-radius: 2px;
}

.section-header h2 {
    margin-bottom: 1.5rem;
    position: relative;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #5a6c7d;
    font-weight: 400;
    line-height: 1.7;
}

/* Grid Layout */
.grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .grid-4 {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* Cards */
.card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(199, 152, 107, 0.1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c7986b, #a67c52);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(199, 152, 107, 0.05) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease-out;
    pointer-events: none;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover::after {
    transform: scale(1);
    animation: rippleEffect 0.8s ease-out;
}

@keyframes rippleEffect {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(1); opacity: 0; }
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.02);
}

.card h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-size: 1.4rem;
}

.card p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #c7986b;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

/* Enhanced Puppy Showcase Cards */
.puppies-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem 0;
}

.puppy-showcase-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(199, 152, 107, 0.1);
    position: relative;
    display: flex;
    flex-direction: row;
    height: 240px;
}

.puppy-showcase-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(199, 152, 107, 0.3);
}

.puppy-image-container {
    position: relative;
    overflow: hidden;
    width: 180px;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    flex-shrink: 0;
    order: 2;
}

.puppy-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.puppy-showcase-card:hover .puppy-image-container img {
    transform: scale(1.05);
}

.puppy-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.puppy-details {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    order: 1;
}

.puppy-details h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
}

.puppy-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.meta-item {
    background: rgba(199, 152, 107, 0.05);
    padding: 0.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(199, 152, 107, 0.1);
}

.meta-label {
    display: block;
    font-size: 0.7rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.meta-value {
    display: block;
    font-size: 0.85rem;
    color: #1a1a1a;
    font-weight: 700;
}

.puppy-description {
    color: #5a6c7d;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}

.puppy-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.puppy-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #c7986b;
    font-family: 'Playfair Display', serif;
}

.puppy-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #c7986b, #a67c52);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(199, 152, 107, 0.3);
    text-align: center;
    min-width: 100px;
}

.puppy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(199, 152, 107, 0.4);
    color: white;
    background: linear-gradient(135deg, #a67c52, #8b6914);
}

/* Legacy puppy card styles for other pages */
.puppy-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 380px;
    margin-bottom: 2rem;
}

.puppy-card:hover {
    transform: translateY(-5px);
}

.puppy-card img {
    width: 300px;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #f8f8f8;
    flex-shrink: 0;
}

.puppy-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.puppy-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b4513;
    margin: 1rem 0;
}

/* Horizontal Puppy Card Layout */
.horizontal-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 2rem;
  margin-bottom: 2rem;
}
.horizontal-card .puppy-info {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.horizontal-card img {
  width: 320px;
  max-width: 40vw;
  height: auto;
  object-fit: contain;
  border-radius: 0 10px 10px 0;
  background: #f8f8f8;
}
@media (max-width: 900px) {
  .horizontal-card {
    flex-direction: column;
    align-items: stretch;
  }
  .horizontal-card img {
    width: 100%;
    max-width: 100%;
    border-radius: 0 0 10px 10px;
  }
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-grid img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

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

.gallery-item .caption {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
    background: white;
    margin: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}



/* Contact Form */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(199, 152, 107, 0.1);
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(248, 250, 252, 0.5);
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #c7986b;
    background: white;
    box-shadow: 0 0 0 3px rgba(199, 152, 107, 0.1);
    transform: translateY(-1px);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: #cbd5e0;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* Contact Info */
.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.contact-item strong {
    margin-right: 1rem;
    min-width: 80px;
    color: #8b4513;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #2d3748;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    position: relative;
    border-top: 3px solid #c7986b;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(199, 152, 107, 0.3), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    position: relative;
    font-weight: 600;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #c7986b, #a67c52);
    border-radius: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
    transition: transform 0.2s ease;
}

.footer-section ul li:hover {
    transform: translateX(5px);
}

.footer-section a {
    color: #4a5568;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-section a:hover {
    color: #c7986b;
    text-decoration: underline;
}

.footer-section p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(74, 85, 104, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero wave animations */
.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(199, 152, 107, 0.15) 100%);
    clip-path: polygon(0 20%, 100% 0%, 100% 100%, 0% 100%);
    animation: waveFlow 8s ease-in-out infinite;
    pointer-events: none;
}

.hero-waves::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(45deg, rgba(166, 124, 82, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    clip-path: polygon(0 40%, 100% 20%, 100% 100%, 0% 100%);
    animation: waveFlow 6s ease-in-out infinite reverse;
}

@keyframes waveFlow {
    0%, 100% {
        clip-path: polygon(0 20%, 100% 0%, 100% 100%, 0% 100%);
        opacity: 0.7;
    }
    25% {
        clip-path: polygon(0 0%, 100% 30%, 100% 100%, 0% 100%);
        opacity: 0.9;
    }
    50% {
        clip-path: polygon(0 30%, 100% 10%, 100% 100%, 0% 100%);
        opacity: 0.6;
    }
    75% {
        clip-path: polygon(0 10%, 100% 40%, 100% 100%, 0% 100%);
        opacity: 0.8;
    }
}

/* Enhanced floating particles system */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

/* Multiple particle layers */
.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    animation: floatUp 15s linear infinite;
}

/* Particle layer 1 */
.floating-particles::before {
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(199, 152, 107, 0.8) 0%, rgba(199, 152, 107, 0.3) 70%, transparent 100%);
    left: 20%;
    animation-delay: -3s;
    animation-duration: 20s;
    box-shadow: 
        0 0 20px rgba(199, 152, 107, 0.3),
        0 0 40px rgba(199, 152, 107, 0.1);
}

/* Particle layer 2 */
.floating-particles::after {
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(166, 124, 82, 0.7) 0%, rgba(166, 124, 82, 0.2) 70%, transparent 100%);
    left: 80%;
    animation-delay: -12s;
    animation-duration: 25s;
    box-shadow: 
        0 0 25px rgba(166, 124, 82, 0.4),
        0 0 50px rgba(166, 124, 82, 0.1);
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 0.4;
        transform: translateY(10vh) scale(0.9);
    }
    100% {
        transform: translateY(-10vh) scale(0.6);
        opacity: 0;
    }
}

/* Add particles to sections */
section {
    position: relative;
}

section .floating-particles {
    z-index: 1;
}

/* Apply smooth animations to elements */
.hero-content {
    animation: fadeInUp 1s ease-out 0.3s both;
    position: relative;
    z-index: 2;
}

.card {
    animation: fadeInUp 0.8s ease-out both;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }

h2 {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.gallery-grid img {
    animation: fadeInUp 0.6s ease-out both;
}

.gallery-grid img:nth-child(1) { animation-delay: 0.1s; }
.gallery-grid img:nth-child(2) { animation-delay: 0.2s; }
.gallery-grid img:nth-child(3) { animation-delay: 0.3s; }
.gallery-grid img:nth-child(4) { animation-delay: 0.4s; }
.gallery-grid img:nth-child(5) { animation-delay: 0.5s; }
.gallery-grid img:nth-child(6) { animation-delay: 0.6s; }

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced page transitions */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }
    
    .hero-content {
        padding: 2rem;
        text-align: center;
        order: 1;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-carousel {
        order: 1;
        margin-bottom: 1rem;
    }
    
    .hero h1 {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .hero p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: none;
    }
    
    .hero.simple-hero {
        min-height: 40vh;
    }
    
    .hero .btn {
        display: inline-block;
        margin: 0.5rem;
        max-width: 280px;
    }
    
    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }
    
    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
        display: block;
        text-align: center;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .card {
        padding: 2rem;
    }

    .puppies-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .puppy-showcase-card {
        margin-bottom: 1rem;
        flex-direction: column;
        height: auto;
    }

    .puppy-image-container {
        width: 100%;
        height: 250px;
        order: 1;
    }

    .puppy-details {
        padding: 1.5rem;
        order: 2;
    }

    .puppy-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

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

    .puppy-card {
        flex-direction: column;
    }

    .puppy-card img {
        width: 100%;
        height: 250px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section {
        min-width: auto;
    }
    
    .contact-form {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .gallery-item .caption {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    /* Contact page mobile optimizations */
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-item {
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .contact-item strong {
        margin-bottom: 0.25rem;
        margin-right: 0;
    }
    
    /* Email inquiry buttons mobile */
    div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    
    

    
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #c7986b;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 8px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .menu-toggle:hover {
        background: rgba(199, 152, 107, 0.1);
        color: #c7986b;
    }
    
    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .grid {
        gap: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .card,
    .puppy-card {
        margin-bottom: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item .caption {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
    
    /* Make buttons larger for touch */
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .phone-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        min-height: 44px;
    }
}

/* Print Styles */
@media print {
    .menu-toggle,
    .btn,
    nav {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
  font-size: 1.15rem;
  line-height: 1.8;
}
.about-content h3 {
  margin-top: 2.5rem;
  color: #8b4513;
  font-size: 1.35rem;
}
.about-content p {
  margin-bottom: 1.5rem;
}
@media (max-width: 600px) {
  .about-content {
    padding: 1rem 0.5rem;
    font-size: 1rem;
  }
  .about-content h3 {
    font-size: 1.1rem;
    margin-top: 2rem;
  }
}

.carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
}
.carousel-track {
  width: 100%;
  max-width: 900px;
  min-height: 350px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.carousel-arrow {
  background: #fff;
  border: 2px solid #c7986b;
  color: #c7986b;
  font-size: 2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 2;
}
.carousel-arrow:hover {
  background: #c7986b;
  color: #fff;
}
@media (max-width: 900px) {
  .carousel-track {
    min-height: 0;
  }
}
@media (max-width: 600px) {
  .carousel-arrow {
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
  }
  .carousel-track {
    max-width: 100vw;
    padding: 0 0.5rem;
  }
}

.scrollable-carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
}
.scrollable-carousel > .puppy-card {
  flex: 0 0 80%;
  max-width: 600px;
  min-width: 320px;
  scroll-snap-align: center;
  box-sizing: border-box;
}
@media (min-width: 700px) {
  .scrollable-carousel > .puppy-card {
    flex: 0 0 48%;
    max-width: 480px;
  }
}
@media (min-width: 1100px) {
  .scrollable-carousel > .puppy-card {
    flex: 0 0 32%;
    max-width: 400px;
  }
}
.scrollable-carousel::-webkit-scrollbar {
  height: 10px;
}
.scrollable-carousel::-webkit-scrollbar-thumb {
  background: #e2e2e2;
  border-radius: 5px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 1.5rem 0 0.5rem 0;
}
.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e2e2e2;
  display: inline-block;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active {
  background: #c7986b;
  transform: scale(1.2);
}
.text-center .btn.btn-secondary {
  margin-top: 1rem;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.carousel-controls .carousel-dots {
  margin: 0;
}
@media (max-width: 600px) {
  .carousel-controls {
    gap: 0.7rem;
    margin-top: 1rem;
  }
}

.vertical-carousel-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.vertical-carousel-layout .carousel-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.vertical-controls {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  display: flex;
}
.vertical-carousel-layout .text-center {
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (max-width: 700px) {
  .vertical-carousel-layout .carousel-track {
    width: 100%;
  }
  .vertical-carousel-layout .puppy-card {
    width: 100%;
    max-width: 100vw;
  }
}

.about-timeline {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2.5rem;
  position: relative;
  min-height: 900px;
  /* overflow: visible; */
}
.timeline {
  position: sticky;
  top: 200px;
  /* Remove transform: translateY(-50%); */
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 160px;
  margin-top: 2.5rem;
  height: fit-content;
  z-index: 2;
  padding: 0 20px;
}
/* Fixed indicator line */
.timeline-indicator {
  display: none !important;
}
.timeline-indicator::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid #c7986b;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.timeline a {
  text-decoration: none;
  position: relative;
  display: block;
}
.timeline-point {
  position: relative;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 3px solid #e2e2e2;
  border-radius: 50%;
  margin: 3rem 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-point::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(199, 152, 107, 0.1);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
  z-index: -1;
}
.timeline-point:hover::before {
  opacity: 1;
  transform: scale(1);
}
.timeline-point[data-label]::after {
  content: attr(data-label);
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  font-weight: 500;
  opacity: 0.7;
  transition: all 0.3s ease;
}
.timeline-point:hover[data-label]::after {
  opacity: 1;
  color: #8b4513;
  transform: translateY(-50%) translateX(5px);
}
/* Enhanced active state with background and emoji */
.timeline-point.active {
  background: #c7986b;
  border-color: #c7986b;
  transform: scale(1.15);
  box-shadow: 0 0 0 8px rgba(199, 152, 107, 0.2), 0 6px 20px rgba(199, 152, 107, 0.3);
}
.timeline-point.active[data-label]::after {
  opacity: 1;
  color: #8b4513;
  font-weight: 600;
}
/* Timeline icons */
.timeline-point[data-label="Early Years"] .icon::before {
  content: '🏥';
  font-size: 18px;
  position: absolute;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.timeline-point[data-label="Puppy Beginnings"] .icon::before {
  content: '🐕';
  font-size: 18px;
  position: absolute;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.timeline-point[data-label="Discovering Poodles"] .icon::before {
  content: '✨';
  font-size: 18px;
  position: absolute;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.timeline-point[data-label="Philosophy"] .icon::before {
  content: '❤️';
  font-size: 18px;
  position: absolute;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.timeline-point[data-label="The Future"] .icon::before {
  content: '🌟';
  font-size: 18px;
  position: absolute;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
/* Show emoji on hover or when active */
.timeline-point:hover .icon::before,
.timeline-point.active .icon::before {
  opacity: 1;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 40px;
  width: 2px;
  height: calc(100% - 80px);
  background: #e2e2e2;
  transform: translateX(-50%);
  z-index: 0;
}
/* Progress bar */
.timeline::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 40px;
  width: 2px;
  height: var(--progress, 0%);
  background: linear-gradient(to bottom, #c7986b 0%, #a67c52 100%);
  transform: translateX(-50%);
  z-index: 1;
  transition: height 0.3s ease;
}
@media (max-width: 900px) {
  .about-timeline {
    display: block;
  }
  .timeline {
    display: none;
  }
  .timeline-indicator {
    display: none;
  }
}

/* Scroll offset for anchor links */
.about-content h3[id] {
  scroll-margin-top: 180px;
}

/* About Page Visual Elements */
.pull-quote {
  margin: 3rem 0;
  padding: 2rem 0;
  text-align: center;
  position: relative;
}
.pull-quote blockquote {
  font-size: 1.8rem;
  font-family: 'Playfair Display', serif;
  color: #8b4513;
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  position: relative;
}
.pull-quote blockquote::before,
.pull-quote blockquote::after {
  content: '"';
  font-size: 4rem;
  color: #c7986b;
  opacity: 0.3;
  position: absolute;
}
.pull-quote blockquote::before {
  top: -20px;
  left: -40px;
}
.pull-quote blockquote::after {
  bottom: -40px;
  right: -40px;
}

/* Stat Boxes */
.stat-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}
.stat-box {
  background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
  border: 2px solid #c7986b;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(199, 152, 107, 0.1);
  transition: all 0.3s ease;
}
.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(199, 152, 107, 0.2);
}
.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #c7986b;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 1.1rem;
  color: #666;
  font-weight: 500;
}

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, rgba(199, 152, 107, 0.1) 0%, rgba(199, 152, 107, 0.05) 100%);
  border-left: 4px solid #c7986b;
  border-radius: 10px;
  padding: 2rem;
  margin: 2.5rem 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.highlight-box h4 {
  color: #8b4513;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.highlight-box ul {
  list-style: none;
  padding: 0;
}
.highlight-box li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}
.highlight-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #c7986b;
  font-weight: bold;
}

/* Process Timeline */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.step-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.process-step h5 {
  color: #8b4513;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.process-step p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
  color: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  margin: 3rem 0 0 0;
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}
.cta-box h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 2rem;
}
.cta-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.cta-box .btn {
  background: white;
  color: #8b4513;
  font-weight: 600;
}
.cta-box .btn:hover {
  background: #f8f8f8;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pull-quote blockquote {
    font-size: 1.4rem;
  }
  .stat-boxes {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .stat-number {
    font-size: 2.5rem;
  }
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .cta-box {
    padding: 2rem;
  }
}
