:root {
    --primary-bg: #1e1e1e;
    --secondary-bg: #2d2d2d;
    --accent-orange: #FF6B35;
    --deep-orange: #D2391A;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --text-secondary: #b0b0b0;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #1a1a1a 50%, #1a1a1a 75%, #0a0a0a 100%);
    background-size: 400% 400%;
    animation: illuminatedBackground 20s ease-in-out infinite;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(156, 163, 175, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(139, 146, 164, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 20% 70%, rgba(122, 129, 153, 0.06) 0%, transparent 50%);
    animation: dynamicLighting 25s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes illuminatedBackground {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

@keyframes dynamicLighting {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    33% {
        transform: scale(1.2) rotate(120deg);
        opacity: 0.6;
    }
    66% {
        transform: scale(0.8) rotate(240deg);
        opacity: 0.9;
    }
}

/* Section Title with Premium Pricing Tiers Styling */
.section-title {
    color: var(--accent-orange);
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    text-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
}


@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
    50% { opacity: 1; transform: translateX(-50%) scaleX(1.1); }
}

/* Hero Section Enhancements */
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 1.5rem 0 2rem 0;
    font-weight: 300;
    text-align: center;
    letter-spacing: 0.5px;
}

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

.hero-btn {
    position: relative;
    padding: 16px 32px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform-style: preserve-3d;
    letter-spacing: 0.5px;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    border-radius: 16px;
    transition: all 0.4s ease;
    z-index: -1;
}

.hero-btn::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.hero-btn.primary {
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.9), 
        rgba(210, 57, 26, 0.8));
    border: 1px solid rgba(255, 107, 53, 0.4);
    box-shadow: 
        0 8px 32px rgba(255, 107, 53, 0.4),
        0 2px 8px rgba(255, 107, 53, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-btn.primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(255, 107, 53, 0.5),
        0 4px 12px rgba(255, 107, 53, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.hero-btn.primary::after {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2), 
        rgba(255, 255, 255, 0.1));
}

.hero-btn.primary:hover::after {
    opacity: 1;
}

.hero-btn.secondary {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.6);
    color: var(--accent-orange);
    box-shadow: 
        0 8px 32px rgba(255, 107, 53, 0.2),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-btn.secondary:hover {
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.8), 
        rgba(210, 57, 26, 0.7));
    color: white;
    border-color: rgba(255, 107, 53, 0.8);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(255, 107, 53, 0.4),
        0 4px 12px rgba(255, 107, 53, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-btn.secondary::after {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15), 
        rgba(255, 255, 255, 0.08));
}

.hero-btn.secondary:hover::after {
    opacity: 1;
}

.hero-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: heroGlow 8s ease-in-out infinite;
    z-index: -1;
}

@keyframes heroGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.5; }
}

/* Enhanced Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(25, 25, 25, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    padding: 1rem 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    margin-right: 8px;
    object-fit: cover;
    border: 2px solid var(--accent-orange);
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--accent-orange), #9ca3af, var(--deep-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    text-decoration: none;
}

.logo-accent {
    color: var(--accent-orange);
}

.nav-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-link {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
    color: rgba(245, 245, 245, 0.8);
    text-decoration: none;
    padding: 10px 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    margin: 0 1px;
    cursor: pointer;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    background: rgba(255, 107, 53, 0.2);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.4);
}

.nav-link.admin-highlight {
    background: rgba(255, 107, 53, 0.2) !important;
    border: 1px solid rgba(255, 107, 53, 0.4) !important;
    border-radius: 6px !important;
    color: #FF6B35 !important;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3) !important;
}

.nav-link.admin-highlight:hover {
    background: rgba(255, 107, 53, 0.3) !important;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.5) !important;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 2.5rem 0;
}

/* Enhanced Cards */
.enhanced-card {
    background: rgba(25, 25, 25, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    position: relative;
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(255, 107, 53, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    transform: perspective(1000px) rotateX(1deg) translateZ(0);
}

.enhanced-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.25), transparent, rgba(255, 107, 53, 0.1));
    border-radius: 20px;
    z-index: -1;
}

.enhanced-card:hover {
    transform: perspective(1000px) rotateX(1deg) translateY(-4px) translateZ(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 6px 17px rgba(255, 107, 53, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 107, 53, 0.4);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-video-container.loaded {
    opacity: 1;
}

.hero-video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-video-container video.loaded {
    opacity: 1;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAsJCQcJCQcJCQkJCwkJCQkJCQsJCwsMCwsLDA0QDBEQDg4QDBQWEhMWEhIYFxQYICMfGiMeHBcfGCEeJykqLzI+PC85QVTZvb///7sAQwEIBwgOBw4fDgofOSkdKTc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3Nzc3/8AABEIAOEA4QMBIgACEQEDEQH/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUWEHInGBEzKRobHBFELR4fAjM1JiYnKCkqLxFWNzNTa//2oADAMBAAIRAxEAPwD1zTrwUAAAAQAAAAAAAAAAAAA==');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    opacity: 0.6;
    filter: blur(1px);
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(0, 0, 0, 0.5) 50%, 
        rgba(255, 107, 53, 0.2) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: clamp(1.5rem, 4vw, 3rem);
    margin-bottom: 2rem;
    line-height: 1.1;
    padding: 2rem 3rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15), 
        rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(255, 107, 53, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
}

.hero-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1), 
        transparent 50%,
        rgba(255, 107, 53, 0.05));
    border-radius: 24px;
    z-index: -1;
}

.hero-title-white {
    color: #ffffff;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 4px 16px rgba(0, 0, 0, 0.6),
        0 1px 2px rgba(0, 0, 0, 0.9);
}

.hero-title-orange {
    background: linear-gradient(135deg, var(--accent-orange), var(--deep-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 2px 8px rgba(255, 107, 53, 0.4),
        0 4px 16px rgba(255, 107, 53, 0.3);
    filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.4));
}

.hero-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-orange), var(--deep-orange));
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 8px 25px rgba(255, 107, 53, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    transform: perspective(1000px) rotateX(1deg) translateZ(0);
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), transparent);
    border-radius: 16px;
    z-index: -1;
}

.hero-btn:hover {
    transform: perspective(1000px) rotateX(1deg) translateY(-8px) translateZ(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 12px 35px rgba(255, 107, 53, 0.5), inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
    gap: 0.75rem;
    margin: 1rem 0;
}

/* Bloodline Dogs */
.bloodline-dog-name {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--accent-orange);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    background: rgba(45, 45, 45, 0.8);
    border: 2px solid rgba(255, 107, 53, 0.3);
    color: var(--text-gray);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

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

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

.tab-btn:hover,
.tab-btn.active {
    background: var(--accent-orange);
    color: white;
    border-color: var(--accent-orange);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--accent-orange), #D2391A);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Featured Breeding Card */
.featured-breeding-card {
    background: rgba(20, 20, 20, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 35% 30% 35%;
    min-height: 400px;
}

.featured-photo-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-image: url('https://page.gensparksite.com/v1/base64_upload/8d6c1f9d79323f97891bf01f0f7567da');
}

.featured-pedigree-section {
    padding: 2rem 1rem;
    background: rgba(30, 30, 30, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pedigree-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    width: 100%;
}

.pedigree-mini-card {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.8rem;
}

.pedigree-mini-name {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-orange);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.featured-info-section {
    padding: 2rem;
    background: rgba(25, 25, 25, 0.9);
}

/* Buttons */
.btn {
    position: relative;
    padding: 14px 28px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: rgba(245, 245, 245, 0.9);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    transform: perspective(1000px) rotateX(1deg) translateZ(0);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform-style: preserve-3d;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.6);
    color: var(--accent-orange);
    box-shadow: 
        0 8px 32px rgba(255, 107, 53, 0.2),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    border-radius: 12px;
    transition: all 0.4s ease;
    z-index: -1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 11px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.btn:hover {
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.8), 
        rgba(210, 57, 26, 0.7));
    color: white;
    border-color: rgba(255, 107, 53, 0.8);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(255, 107, 53, 0.4),
        0 4px 12px rgba(255, 107, 53, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn:hover::after {
    opacity: 1;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15), 
        rgba(255, 255, 255, 0.08));
}

/* Primary Button Variant */
.btn.primary,
.btn-primary {
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.9), 
        rgba(210, 57, 26, 0.8));
    border: 1px solid rgba(255, 107, 53, 0.4);
    box-shadow: 
        0 8px 32px rgba(255, 107, 53, 0.4),
        0 2px 8px rgba(255, 107, 53, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn.primary:hover,
.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(255, 107, 53, 0.5),
        0 4px 12px rgba(255, 107, 53, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

.btn.primary::after,
.btn-primary::after {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2), 
        rgba(255, 255, 255, 0.1));
}

.btn.primary:hover::after,
.btn-primary:hover::after {
    opacity: 1;
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.status-badge.available {
    background: linear-gradient(135deg, 
        rgba(34, 197, 94, 0.2), 
        rgba(34, 197, 94, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #22c55e;
    box-shadow: 
        0 4px 16px rgba(34, 197, 94, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.status-badge.reserved {
    background: linear-gradient(135deg, 
        rgba(107, 114, 128, 0.2), 
        rgba(107, 114, 128, 0.1));
    border: 1px solid rgba(107, 114, 128, 0.4);
    color: #9ca3af;
    box-shadow: 
        0 4px 16px rgba(107, 114, 128, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.status-badge.sold {
    background: linear-gradient(135deg, 
        rgba(239, 68, 68, 0.2), 
        rgba(239, 68, 68, 0.1));
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
    box-shadow: 
        0 4px 16px rgba(239, 68, 68, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    padding: 1rem 0;
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        display: none;
    }
    
    .featured-breeding-card {
        grid-template-columns: 1fr;
        grid-template-rows: 250px auto auto;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.animate-in {
    animation: slideInUp 0.6s ease forwards;
}

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

.fade-in {
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Contact Form Styles */
.contact-form {
    background: rgba(25, 25, 25, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 8px 25px rgba(255, 107, 53, 0.15), inset 0 2px 0 rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateX(1deg) translateZ(0);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.25), transparent, rgba(255, 107, 53, 0.1));
    border-radius: 20px;
    z-index: -1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    background: rgba(45, 45, 45, 0.5);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    padding: 1rem;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

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

/* Puppy Cards */
.puppy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.puppy-grid-expanded {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 100%;
}

@media (min-width: 768px) {
    .puppy-grid-expanded {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .puppy-grid-expanded {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1600px) {
    .puppy-grid-expanded {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
}

.puppy-card {
    background: rgba(120, 120, 120, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(150, 150, 150, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(200, 200, 200, 0.1);
}

.puppy-card:hover {
    transform: translateY(-5px);
    background: rgba(150, 150, 150, 0.15);
    border: 1px solid rgba(180, 180, 180, 0.3);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(200, 200, 200, 0.2),
        inset 0 1px 0 rgba(220, 220, 220, 0.15),
        0 0 30px rgba(120, 120, 120, 0.2);
}

.puppy-card:hover .puppy-image-placeholder {
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow: 
        0 8px 30px rgba(255, 107, 53, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15),
        0 0 20px rgba(255, 107, 53, 0.1);
}

.puppy-image-placeholder {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    background: linear-gradient(45deg, rgba(120, 120, 120, 0.1), rgba(140, 140, 140, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(120, 120, 120, 0.3);
    overflow: hidden;
    border: 3px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    box-shadow: 
        0 4px 20px rgba(255, 107, 53, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.puppy-image-placeholder i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.puppy-image-placeholder img {
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    object-fit: cover;
    object-position: center;
    border-radius: 9px;
}

.puppy-info {
    padding: 1.5rem;
}

.puppy-name {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.puppy-price {
    background: transparent;
    color: var(--accent-orange);
    padding: 0.5rem 0;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.status-available {
    background: #22c55e;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-reserved {
    background: #eab308;
    color: black;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-sold {
    background: #ef4444;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

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

.gallery-item {
    background: rgba(45, 45, 45, 0.3);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(210, 57, 26, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(255, 107, 53, 0.3);
}

/* Mini Stat Cards for puppies page */
.stat-card-mini {
    background: rgba(25, 25, 25, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 8px 25px rgba(255, 107, 53, 0.15), inset 0 2px 0 rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateX(1deg) translateZ(0);
}

.stat-card-mini::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.25), transparent, rgba(255, 107, 53, 0.1));
    border-radius: 16px;
    z-index: -1;
}

.stat-card-mini:hover {
    transform: perspective(1000px) rotateX(1deg) translateY(-8px) translateZ(10px);
    border-color: var(--accent-orange);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 12px 35px rgba(255, 107, 53, 0.3), inset 0 2px 0 rgba(255, 255, 255, 0.15);
}

.stat-card-mini .stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 0.8rem;
    text-shadow: 0 4px 12px rgba(255, 107, 53, 0.4), 0 2px 6px rgba(0, 0, 0, 0.8);
    filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.3));
}

.stat-card-mini .stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.5px;
}

/* Timeline */
.timeline-container {
    background: rgba(25, 25, 25, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 3rem;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 8px 25px rgba(255, 107, 53, 0.15), inset 0 2px 0 rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateX(1deg) translateZ(0);
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.25), transparent, rgba(255, 107, 53, 0.1));
    border-radius: 20px;
    z-index: -1;
}

.timeline-horizontal {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 1200px) {
    .timeline-horizontal {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .timeline-horizontal {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .timeline-horizontal {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.timeline-stage {
    background: rgba(45, 45, 45, 0.6);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.timeline-stage:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.timeline-stage-number {
    background: var(--accent-orange);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
    font-size: 0.9rem;
}

.timeline-stage-title {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

.timeline-stage-description {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.3;
}

/* Video Container */
/* Professional Video Player Styles - Enhanced 3D Glassmorphic */
.professional-video-player {
    background: linear-gradient(135deg, rgba(15, 15, 20, 0.85), rgba(25, 25, 35, 0.90));
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 8px 20px rgba(255, 107, 53, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.15),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    border: 2px solid;
    border-image: linear-gradient(145deg, 
        rgba(255, 107, 53, 0.4), 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 107, 53, 0.3)) 1;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    position: relative;
    transform: perspective(1000px) rotateX(2deg) translateZ(0);
    transition: all 0.4s ease;
}

.professional-video-player::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(145deg, 
        rgba(255, 107, 53, 0.3), 
        transparent 30%, 
        transparent 70%, 
        rgba(255, 107, 53, 0.2));
    border-radius: 26px;
    z-index: -1;
    filter: blur(1px);
}

.professional-video-player::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.08) 0%, 
        transparent 25%, 
        transparent 75%, 
        rgba(255, 107, 53, 0.05) 100%);
    border-radius: 22px;
    pointer-events: none;
    z-index: 1;
}

.professional-video-player:hover {
    transform: perspective(1000px) rotateX(2deg) translateY(-8px) translateZ(15px);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.7),
        0 20px 45px rgba(0, 0, 0, 0.5),
        0 12px 25px rgba(255, 107, 53, 0.25),
        inset 0 3px 0 rgba(255, 255, 255, 0.2),
        inset 0 -3px 0 rgba(0, 0, 0, 0.3);
}

.video-player-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2.5rem 3rem 1.5rem 3rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 107, 53, 0.03) 50%, 
        transparent 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
}

.video-player-header::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 107, 53, 0.6) 50%, 
        transparent);
    filter: blur(0.5px);
}

.video-title {
    flex: 1;
}

.video-meta {
    margin-top: 0.5rem;
}

.video-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.subscribe-btn {
    background: linear-gradient(145deg, #FF0000, #CC0000);
    color: white;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 25px rgba(255, 0, 0, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    transform: perspective(1000px) rotateX(1deg) translateZ(5px);
}

.subscribe-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 32px;
    z-index: -1;
}

.subscribe-btn:hover {
    transform: perspective(1000px) rotateX(1deg) translateY(-3px) translateZ(10px);
    box-shadow: 
        0 15px 40px rgba(255, 0, 0, 0.5),
        0 8px 25px rgba(0, 0, 0, 0.4),
        inset 0 3px 0 rgba(255, 255, 255, 0.4),
        inset 0 -3px 0 rgba(0, 0, 0, 0.3);
    background: linear-gradient(145deg, #FF3333, #FF0000);
    border-color: rgba(255, 255, 255, 0.3);
}

.video-player-container {
    position: relative;
    margin: 0;
}

.video-frame {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: linear-gradient(135deg, #000000, #0a0a0a);
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    box-shadow: 
        inset 0 4px 8px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-frame:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 100px;
    height: 100px;
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.95), rgba(210, 57, 26, 0.95));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 15px 40px rgba(255, 107, 53, 0.5),
        0 8px 25px rgba(0, 0, 0, 0.4),
        inset 0 3px 0 rgba(255, 255, 255, 0.3),
        inset 0 -3px 0 rgba(0, 0, 0, 0.2);
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.8);
    position: relative;
    transform: perspective(1000px) rotateX(2deg) translateZ(10px);
    transition: all 0.4s ease;
}

.play-button::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.2), 
        transparent 50%, 
        rgba(255, 107, 53, 0.1));
    border-radius: 50%;
    z-index: -1;
    filter: blur(1px);
}

.play-button:hover {
    transform: perspective(1000px) rotateX(2deg) translateZ(15px) scale(1.1);
    box-shadow: 
        0 20px 50px rgba(255, 107, 53, 0.6),
        0 12px 35px rgba(0, 0, 0, 0.5),
        inset 0 4px 0 rgba(255, 255, 255, 0.4),
        inset 0 -4px 0 rgba(0, 0, 0, 0.3);
}

.video-description {
    padding: 2rem;
}

.video-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.stat-value {
    color: var(--accent-orange);
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
}

.social-engagement {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.engagement-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 16px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.engagement-btn:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.engagement-btn i {
    font-size: 1rem;
}

.channel-btn:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: #FF0000;
}

/* Legacy video container for compatibility */
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.8);
}

.video-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Reviews */
.review-card {
    background: rgba(45, 45, 45, 0.3);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.review-stars {
    color: var(--accent-orange);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.review-author {
    color: var(--accent-orange);
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: rgba(45, 45, 45, 0.3);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ Styles */
.faq-item {
    cursor: pointer;
}

.faq-answer {
    margin-top: 1rem;
    color: var(--text-secondary);
}

.faq-icon {
    transition: transform 0.3s ease;
}

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

.hidden {
    display: none;
}

/* Bloodline Hero Cards with Full Image and Floating Text */
.bloodline-hero-card {
    position: relative;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.bloodline-hero-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.bloodline-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bloodline-hero-card:hover .bloodline-hero-image {
    transform: scale(1.05);
}

.bloodline-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    color: white;
    text-align: center;
}

.bloodline-hero-overlay .bloodline-dog-name {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.bloodline-stats {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.bloodline-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Picture Gallery Styles */
.picture-gallery {
    margin: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(45, 45, 45, 0.3);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1.5rem;
    color: white;
    text-align: center;
}

.gallery-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--accent-orange);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.gallery-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}

/* Bloodline Carousel Styles */
.bloodline-carousel-container {
    position: relative;
    margin-top: 2rem;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.carousel-container {
    position: relative;
}

.nav-btn {
    background: rgba(255, 107, 53, 0.2);
    border: 2px solid rgba(255, 107, 53, 0.5);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    color: var(--accent-orange);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.nav-btn:hover:not([disabled]) {
    background: rgba(255, 107, 53, 0.4);
    border-color: var(--accent-orange);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.nav-btn[disabled] {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.page-indicator {
    color: var(--text-secondary);
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

.carousel-btn {
    background: rgba(255, 107, 53, 0.2);
    border: 2px solid rgba(255, 107, 53, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: var(--accent-orange);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 107, 53, 0.4);
    border-color: var(--accent-orange);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.carousel-indicators {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.3);
    border: 2px solid rgba(255, 107, 53, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.indicator:hover {
    background: rgba(255, 107, 53, 0.6);
    transform: scale(1.2);
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.carousel-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    display: block;
    opacity: 1;
}

.bloodline-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.bloodline-row:last-child {
    margin-bottom: 0;
}

/* Responsive Design for Carousel */
@media (max-width: 1400px) {
    .bloodline-row {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .bloodline-hero-card:nth-child(5) {
        grid-column: 2 / 4;
    }
}

@media (max-width: 1024px) {
    .bloodline-row {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .bloodline-hero-card:nth-child(4),
    .bloodline-hero-card:nth-child(5) {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .bloodline-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .carousel-nav {
        gap: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .bloodline-row {
        grid-template-columns: 1fr;
    }
}

/* Form Input Styles */
.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(45, 45, 45, 0.8);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-orange);
    background: rgba(45, 45, 45, 0.9);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input option {
    background: var(--secondary-bg);
    color: var(--text-light);
}

/* Grid Utilities */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

/* Puppy Grid Responsive Design */
@media (max-width: 1400px) {
    .puppy-carousel div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 1024px) {
    .puppy-carousel div[style*="grid-template-columns: repeat(4, 1fr)"],
    .puppy-carousel div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .puppy-carousel div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}

/* Reviews Page Styles */
.overall-rating {
    background: var(--secondary-bg);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.rating-summary {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
}

.rating-score {
    text-align: center;
}

.score {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-orange);
    font-family: 'Orbitron', sans-serif;
    display: block;
}

.stars {
    color: var(--accent-orange);
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.rating-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rating-bar {
    display: grid;
    grid-template-columns: 80px 1fr 40px;
    gap: 1rem;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

.bar {
    height: 8px;
    background: var(--primary-bg);
    border-radius: 4px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: var(--accent-orange);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: var(--secondary-bg);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.review-header {
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.reviewer-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-orange);
}

.reviewer-name {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.review-stars {
    color: var(--accent-orange);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.review-date {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.review-title {
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.review-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-images {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.review-images img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.leave-review-section {
    background: var(--secondary-bg);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.review-form-container h3 {
    color: var(--accent-orange);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 0.5rem;
}

.review-form-container p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: var(--primary-bg);
    color: var(--text-light);
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.star-rating {
    display: flex;
    gap: 0.25rem;
}

.star {
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.2s ease;
}

.star:hover,
.star.active {
    color: var(--accent-orange);
}

@media (max-width: 768px) {
    .rating-summary {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}
/* ===== GENDER FILTER TABS ===== */
.gender-filter-tabs {
  margin: 2rem 0;
}

.tab-container {
  position: relative;
  overflow: hidden;
}

.gender-tab {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gender-tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.gender-tab.active {
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}

.gender-tab i {
  transition: transform 0.3s ease;
}

.gender-tab:hover i {
  transform: scale(1.1);
}

/* Enhanced Puppy Name Styling */
.puppy-name {
  position: relative;
  display: inline-block;
}

.puppy-name::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-orange), transparent);
  border-radius: 2px;
  opacity: 0.7;
}

/* Enhanced Review Cards with Photo Backgrounds */
.review-card {
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.review-card .review-header,
.review-card .review-content {
  position: relative;
  z-index: 2;
}

.review-card .reviewer-name,
.review-card .review-title {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.review-card .review-text {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

.review-card .review-date {
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.review-card .review-stars i {
  color: var(--accent-orange);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.review-card .reviewer-avatar img {
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
