/* ============================================
   Cobberdog Nederland - Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    /* Colors */
    --color-primary: #8B6914;
    --color-primary-light: #B8941E;
    --color-primary-dark: #6B5010;
    --color-secondary: #2C4A3E;
    --color-secondary-light: #3D6B5A;
    --color-accent: #D4A84B;
    
    --color-cream: #FDF8F0;
    --color-cream-dark: #F5EDE0;
    --color-warm-white: #FFFBF5;
    --color-text: #3A3530;
    --color-text-light: #6B635A;
    --color-text-muted: #9A9285;
    
    --color-success: #4A7C59;
    --color-error: #C75D5D;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(58, 53, 48, 0.05);
    --shadow-md: 0 4px 12px rgba(58, 53, 48, 0.08);
    --shadow-lg: 0 8px 24px rgba(58, 53, 48, 0.12);
    --shadow-xl: 0 16px 48px rgba(58, 53, 48, 0.16);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    
    /* Container */
    --container-max: 1280px;
    --container-padding: 1.5rem;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-warm-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-dark);
}

ul, ol {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text);
}

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

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

h3 {
    font-size: clamp(1.5rem, 2.5vw, 1.75rem);
    font-weight: 500;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--font-body);
}

h1 em, h2 em, h3 em {
    font-style: italic;
    color: var(--color-primary);
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
}

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

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

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

.btn-secondary:hover {
    background: var(--color-text);
    color: white;
}

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

.btn-outline:hover {
    background: var(--color-primary);
    color: white;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
}

.btn-nav {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 251, 245, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 105, 20, 0.1);
    transition: all var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

.logo-icon {
    font-size: 1.75rem;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text);
}

.logo-text span {
    color: var(--color-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-menu a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.nav-menu a:hover {
    color: var(--color-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition-fast);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-warm-white) 50%, var(--color-cream-dark) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 105, 20, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(44, 74, 62, 0.06) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 168, 75, 0.1) 0%, transparent 70%);
    top: 40%;
    left: 30%;
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: rgba(139, 105, 20, 0.1);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

.hero-text h1 {
    margin-bottom: var(--space-xl);
}

.hero-text p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-2xl);
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-placeholder {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--color-cream-dark) 0%, var(--color-cream) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1.125rem;
    border: 2px dashed rgba(139, 105, 20, 0.2);
}

.hero-image-badge {
    position: absolute;
    bottom: var(--space-xl);
    left: -20px;
    background: white;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-image-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-secondary);
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-muted);
    font-size: 0.8125rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ============================================
   Sections
   ============================================ */
.section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(139, 105, 20, 0.1);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-top: var(--space-md);
}

.section-header-light .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.section-header-light h2,
.section-header-light p {
    color: white;
}

.section-header-light h2 em {
    color: var(--color-accent);
}

/* About Section */
.section-about {
    background: var(--color-warm-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.about-text {
    margin-bottom: var(--space-2xl);
}

.about-features {
    display: grid;
    gap: var(--space-lg);
}

.feature {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.feature:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    margin-bottom: var(--space-xs);
    font-size: 1rem;
}

.feature-text p {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image-1 {
    grid-column: span 2;
}

.image-placeholder {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--color-cream-dark) 0%, var(--color-cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    border: 2px dashed rgba(139, 105, 20, 0.2);
}

.about-image-2 .image-placeholder {
    aspect-ratio: 1;
}

/* Breed Section */
.section-breed {
    background: var(--color-secondary);
    color: white;
}

.breed-content {
    max-width: 1000px;
    margin: 0 auto;
}

.breed-intro {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.breed-text {
    max-width: 800px;
    margin: 0 auto;
}

.breed-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.0625rem;
}

.breed-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.breed-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.breed-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.breed-card-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.breed-card h3 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.breed-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.75);
}

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

.breed-sizes h3 {
    color: white;
    margin-bottom: var(--space-xl);
}

.sizes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 700px;
    margin: 0 auto;
}

.size-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

.size-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.size-card h4 {
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.size-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Dogs Section */
.section-dogs {
    background: var(--color-cream);
}

.dogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.dog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.dog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.dog-image {
    position: relative;
}

.dog-image .image-placeholder {
    aspect-ratio: 4/3;
    border: none;
    border-radius: 0;
}

.dog-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--color-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
}

.dog-info {
    padding: var(--space-xl);
}

.dog-info h3 {
    margin-bottom: var(--space-xs);
}

.dog-subtitle {
    font-size: 0.875rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.dog-description {
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

.dog-details {
    margin-bottom: var(--space-lg);
    font-size: 0.875rem;
}

.dog-details li {
    padding: var(--space-xs) 0;
    border-bottom: 1px solid var(--color-cream);
}

.dog-details li:last-child {
    border-bottom: none;
}

/* Pups Section */
.section-pups {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
}

.pups-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.pups-current {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
}

.pups-status {
    margin-bottom: var(--space-lg);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.2);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4ADE80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.pups-current h3 {
    color: white;
    margin-bottom: var(--space-xl);
}

.nest-info {
    margin-bottom: var(--space-xl);
}

.nest-parents {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.parent {
    text-align: center;
}

.parent-image {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-sm);
}

.parent-image .image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    font-size: 0.75rem;
    aspect-ratio: 1;
}

.parent-image .image-placeholder.small {
    aspect-ratio: 1;
}

.parent span {
    font-size: 0.875rem;
    opacity: 0.9;
}

.parent-divider {
    font-size: 1.5rem;
    opacity: 0.5;
}

.nest-details {
    font-size: 0.9375rem;
}

.nest-details li {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nest-details li:last-child {
    border-bottom: none;
}

.pups-process h3 {
    color: white;
    margin-bottom: var(--space-xl);
}

.process-steps {
    display: grid;
    gap: var(--space-lg);
}

.step {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.step-number {
    width: 36px;
    height: 36px;
    background: var(--color-accent);
    color: var(--color-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.step h4 {
    color: white;
    margin-bottom: var(--space-xs);
}

.step p {
    font-size: 0.9375rem;
    opacity: 0.85;
}

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

.pups-included h3 {
    color: white;
    margin-bottom: var(--space-xl);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.included-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.included-icon {
    font-size: 1.5rem;
}

.included-item span:last-child {
    font-size: 0.875rem;
    text-align: center;
}

/* Health Section */
.section-health {
    background: var(--color-warm-white);
}

.health-content {
    max-width: 1000px;
    margin: 0 auto;
}

.health-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
}

.health-intro p {
    font-size: 1.0625rem;
    color: var(--color-text-light);
}

.health-tests {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.test-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.test-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.test-icon {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.test-card h4 {
    margin-bottom: var(--space-sm);
}

.test-card p {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.health-guarantee {
    background: var(--color-secondary);
    color: white;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
}

.health-guarantee h3 {
    color: white;
    margin-bottom: var(--space-md);
}

.health-guarantee p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Section */
.section-faq {
    background: var(--color-secondary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: var(--space-md);
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-xl);
    background: none;
    border: none;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 var(--space-xl) var(--space-xl);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

/* Locations Section */
.section-locations {
    background: var(--color-cream);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.location-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    background: white;
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.location-card:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.location-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-base);
}

.location-card:hover .location-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Section */
.section-contact {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-3xl);
}

.contact-info {
    display: grid;
    gap: var(--space-lg);
}

.contact-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.contact-icon {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.contact-card h4 {
    color: white;
    margin-bottom: var(--space-sm);
}

.contact-card p,
.contact-card a {
    color: rgba(255, 255, 255, 0.9);
}

.contact-card a:hover {
    color: var(--color-accent);
}

.contact-note {
    display: block;
    margin-top: var(--space-xs);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.contact-form-wrapper {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
}

.contact-form {
    display: grid;
    gap: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-md);
    border: 2px solid var(--color-cream-dark);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-checkbox {
    flex-direction: row;
    align-items: center;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin: 0;
}

.form-checkbox label {
    font-size: 0.875rem;
    font-weight: 400;
}

/* Footer */
.footer {
    background: var(--color-text);
    color: white;
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand .logo {
    margin-bottom: var(--space-lg);
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer-links h4 {
    color: white;
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    display: grid;
    gap: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

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

.footer-links li:not(:has(a)) {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: var(--space-xl);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: white;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .breed-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pups-content {
        grid-template-columns: 1fr;
    }
    
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .health-tests {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: var(--space-xl);
        gap: var(--space-md);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-lg);
    }
    
    .breed-features {
        grid-template-columns: 1fr;
    }
    
    .sizes-grid {
        grid-template-columns: 1fr;
    }
    
    .dogs-grid {
        grid-template-columns: 1fr;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
    }
    
    .health-tests {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .stat {
        flex: 1;
        min-width: 100px;
    }
}
