/* ===============================================
   PoodleHome - Custom Styles
   =============================================== */

:root {
    --primary-color: #000000;
    --secondary-color: #f5f5f5;
    --accent-color: #333333;
    --dark-color: #000000;
    --light-color: #fafafa;
    --white: #FFFFFF;
    --text-dark: #000000;
    --text-light: #666666;
    --shadow: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===============================================
   HEADER & NAVIGATION
   =============================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: linear-gradient(135deg, var(--white) 0%, var(--secondary-color) 100%);
    box-shadow: 0 4px 20px var(--shadow);
}

.navbar {
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled .navbar {
    padding: 15px 0;
}

.navbar-brand {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.navbar-brand:hover {
    color: var(--dark-color);
    transform: scale(1.05);
}

.navbar-brand i {
    font-size: 32px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 8px 20px !important;
    margin: 0 5px;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.navbar-toggler {
    border: 2px solid var(--primary-color);
    padding: 8px 12px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23D4A574' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===============================================
   KATEGORILER BÖLÜMÜ
   =============================================== */

.categories-section {
    background: var(--white);
    padding: 20px 0;
    margin-top: 80px;
    border-bottom: 1px solid var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    position: relative;
    transition: all 0.3s ease;
    z-index: 998;
}

.categories-section.hide-categories {
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.categories-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 5px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--secondary-color);
}

.categories-scroll::-webkit-scrollbar {
    height: 6px;
}

.categories-scroll::-webkit-scrollbar-track {
    background: var(--secondary-color);
    border-radius: 10px;
}

.categories-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.categories-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--dark-color);
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 110px;
    cursor: pointer;
    transition: var(--transition);
    padding: 12px 10px;
    border-radius: 15px;
}

.category-item:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.category-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--secondary-color);
    transition: var(--transition);
    box-shadow: 0 5px 20px var(--shadow);
}

.category-item:hover .category-icon {
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-item:hover .category-icon img {
    transform: scale(1.1);
}

.category-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    white-space: normal;
    transition: var(--transition);
    line-height: 1.3;
    max-width: 95px;
    word-break: break-word;
}

.category-item:hover .category-name {
    color: var(--primary-color);
}

.category-item.active-category {
    background: var(--secondary-color);
}

.category-item.active-category .category-icon {
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.category-item.active-category .category-name {
    color: var(--primary-color);
}

/* ===============================================
   HERO SECTION
   =============================================== */

.hero-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-hero {
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 6px 20px var(--shadow);
    transition: var(--transition);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.fade-in-delay {
    animation: fadeIn 1s ease 0.3s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease 0.6s forwards;
    opacity: 0;
}

/* ===============================================
   SECTION STYLES
   =============================================== */

.section-padding {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 20px auto 0;
}

.bg-light {
    background: linear-gradient(135deg, var(--light-color) 0%, var(--secondary-color) 100%) !important;
}

/* ===============================================
   PUPPY CARDS
   =============================================== */

.puppies-section {
    background: var(--white);
    padding-top: 60px !important;
}

.puppy-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.puppy-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.puppy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.3);
}

.puppy-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.puppy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.puppy-card:hover .puppy-image img {
    transform: scale(1.1);
}

.puppy-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 20px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.puppy-overlay .puppy-name {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.puppy-body {
    padding: 25px;
}

.puppy-name {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.puppy-description {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.6;
}

.puppy-info {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--secondary-color);
}

.puppy-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.puppy-info i {
    color: var(--primary-color);
    font-size: 16px;
}

.puppy-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.puppy-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

/* ===============================================
   BUTTONS
   =============================================== */

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    border: none;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-details {
    font-size: 14px;
}

.btn-outline-dark {
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    background: transparent;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-outline-dark:hover {
    background: var(--text-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* ===============================================
   BREED INFO SECTION
   =============================================== */

.breed-image img {
    box-shadow: 0 10px 40px var(--shadow);
    border-radius: 20px;
}

.breed-content {
    padding: 0 20px;
}

.breed-text {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.breed-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--white);
    border-radius: 10px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px var(--shadow);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.feature-item span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

/* ===============================================
   ABOUT SECTION
   =============================================== */

.about-content {
    padding: 0 20px;
}

.about-text {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image img {
    box-shadow: 0 10px 40px var(--shadow);
    border-radius: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--light-color));
    border-radius: 15px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

/* ===============================================
   TESTIMONIALS
   =============================================== */

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 25px var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.3);
}

.testimonial-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--secondary-color);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stars {
    margin-bottom: 15px;
}

.stars i {
    color: #FFD700;
    font-size: 16px;
    margin: 0 2px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.testimonial-location {
    font-size: 14px;
    color: var(--text-light);
}

/* ===============================================
   BLOG SECTION
   =============================================== */

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.3);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-light);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    color: var(--primary-color);
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.btn-read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-read-more:hover {
    color: var(--dark-color);
    gap: 12px;
}

/* ===============================================
   FOOTER
   =============================================== */

.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 32px;
    color: #ffffff;
}

.footer-description {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-3px);
    text-decoration: none;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
    display: inline-block;
}

.footer-links ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
    text-decoration: underline;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.footer-contact ul li i {
    color: #ffffff;
    font-size: 16px;
    margin-top: 3px;
    min-width: 18px;
}

.footer-bottom {
    margin-top: 60px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

/* ===============================================
   SCROLL TO TOP BUTTON
   =============================================== */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 20px var(--shadow);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow);
}

/* ===============================================
   FLOATING CONTACT BUTTONS
   =============================================== */

.floating-contact-buttons {
    position: fixed;
    bottom: 100px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 998;
    opacity: 1;
    visibility: visible;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    color: white;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: floatAnimation 3s ease-in-out infinite;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    color: white;
}

.phone-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
}

.phone-btn:hover {
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px var(--shadow);
    color: white;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating-btn:nth-child(2) {
    animation-delay: 0.5s;
}

/* Mobile Bottom Bar (Hidden on Desktop) */
.mobile-contact-bar {
    display: none;
}

/* ===============================================
   BLOG PAGE STYLES
   =============================================== */

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    margin-top: 80px;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.page-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-header .breadcrumb-item {
    font-size: 14px;
}

.page-header .breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.page-header .breadcrumb-item a:hover {
    color: var(--text-dark);
}

.page-header .breadcrumb-item.active {
    color: var(--text-dark);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    content: "•";
    color: var(--text-light);
}

/* Blog Filter */
.blog-filter-section {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid #e0e0e0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--text-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* Blog List */
.blog-list-section {
    background: var(--secondary-color);
}

/* ===============================================
   BLOG DETAIL PAGE
   =============================================== */

/* Blog Detail Header */
.blog-detail-header {
    padding: 130px 0 30px;
    background: var(--white);
    margin-top: 80px;
}

.blog-detail-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.blog-detail-header .breadcrumb-item {
    font-size: 14px;
}

.blog-detail-header .breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.blog-detail-header .breadcrumb-item a:hover {
    color: var(--text-dark);
}

.blog-detail-header .breadcrumb-item.active {
    color: var(--text-dark);
}

/* Blog Detail Content */
.blog-detail-section {
    background: var(--secondary-color);
}

.blog-detail-content {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--shadow);
}

.blog-featured-image {
    margin-bottom: 30px;
}

.blog-featured-image img {
    width: 100%;
    object-fit: cover;
    max-height: 500px;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.blog-category-badge {
    background: var(--text-dark);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.blog-meta-item {
    color: var(--text-light);
    font-size: 14px;
}

.blog-meta-item i {
    margin-right: 5px;
}

.blog-detail-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.3;
}

.blog-detail-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-detail-text p {
    margin-bottom: 20px;
}

.blog-detail-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.blog-detail-text ul,
.blog-detail-text ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.blog-detail-text li {
    margin-bottom: 10px;
}

.blog-detail-text strong {
    font-weight: 600;
    color: var(--text-dark);
}

/* Share Buttons */
.blog-share {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--secondary-color);
}

.blog-share h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.facebook-btn {
    background: #1877f2;
}

.twitter-btn {
    background: #1da1f2;
}

.whatsapp-btn {
    background: #25d366;
}

.linkedin-btn {
    background: #0077b5;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px var(--shadow);
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* Recent Posts Widget */
.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.recent-post-item:last-child {
    margin-bottom: 0;
}

.recent-post-item:hover {
    transform: translateX(5px);
}

.recent-post-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h6 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.recent-post-date {
    font-size: 12px;
    color: var(--text-light);
}

.recent-post-date i {
    margin-right: 5px;
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list li:last-child {
    margin-bottom: 0;
}

.category-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-list a:hover {
    color: var(--text-light);
    padding-left: 10px;
}

.category-list i {
    font-size: 14px;
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: var(--white);
}

.cta-widget .widget-title {
    color: var(--white);
}

.cta-widget p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-widget .btn-dark {
    background: var(--white);
    color: var(--text-dark);
    border: none;
    width: 100%;
    padding: 12px;
    font-weight: 600;
}

.cta-widget .btn-dark:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Pagination */
.pagination {
    gap: 10px;
}

.pagination .page-link {
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    background: var(--white);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: var(--transition);
}

.pagination .page-link:hover {
    background: var(--text-dark);
    color: var(--white);
    border-color: var(--text-dark);
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: var(--text-dark);
    color: var(--white);
    border-color: var(--text-dark);
}

.pagination .page-item.disabled .page-link {
    border-color: #e0e0e0;
    color: #999;
    background: var(--white);
    cursor: not-allowed;
}

.pagination .page-item.disabled .page-link:hover {
    background: var(--white);
    color: #999;
    transform: none;
}

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */

@media (max-width: 992px) {
    .header {
        background: linear-gradient(135deg, var(--white) 0%, var(--secondary-color) 100%);
        box-shadow: 0 4px 20px var(--shadow);
    }

    .navbar-collapse {
        background: var(--white);
        padding: 15px;
        border-radius: 10px;
        margin-top: 10px;
        box-shadow: 0 4px 15px var(--shadow);
    }

    .categories-section {
        margin-top: 70px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 36px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .breed-features {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 13px;
    }

    .category-icon {
        width: 75px;
        height: 75px;
    }

    .category-item {
        min-width: 95px;
    }

    .category-name {
        font-size: 13px;
        max-width: 75px;
    }
}

@media (max-width: 768px) {
    .categories-section {
        padding: 15px 0;
    }

    .hero-section {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 15px;
    }

    .btn-hero {
        padding: 10px 30px;
        font-size: 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .puppy-image {
        height: 250px;
    }

    .navbar-brand {
        font-size: 24px;
    }

    .navbar-brand i {
        font-size: 28px;
    }

    .nav-link {
        padding: 10px 15px !important;
        margin: 5px 0;
    }

    /* Blog Page Responsive */
    .page-header {
        padding: 120px 0 60px;
        margin-top: 70px;
    }

    .page-title {
        font-size: 36px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .filter-btn {
        padding: 8px 20px;
        font-size: 13px;
    }

    /* Blog Detail Responsive */
    .blog-detail-header {
        padding: 110px 0 20px;
        margin-top: 70px;
    }

    .blog-detail-content {
        padding: 30px 20px;
    }

    .blog-detail-title {
        font-size: 28px;
    }

    .blog-sidebar {
        position: static;
        margin-top: 30px;
    }

    /* Show mobile bar on tablet too */
    .floating-contact-buttons {
        display: none;
    }

    .mobile-contact-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 8px 15px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        gap: 10px;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid var(--secondary-color);
    }

    .mobile-contact-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 10px 15px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .mobile-whatsapp-btn {
        background: #25D366;
        color: white;
    }

    .mobile-phone-btn {
        background: var(--primary-color);
        color: white;
    }

    .mobile-contact-btn i {
        font-size: 16px;
    }

    .scroll-top {
        bottom: 90px;
    }

    body {
        padding-bottom: 80px;
    }
}

@media (max-width: 576px) {
    .categories-section {
        padding: 12px 0;
    }

    .category-icon {
        width: 110px;
        height: 110px;
    }

    .category-item {
        min-width: 120px;
    }

    .category-name {
        font-size: 13px;
        max-width: 110px;
        line-height: 1.2;
    }

    /* Hide hero section on mobile */
    .hero-section {
        display: none;
    }

    .section-padding {
        padding: 50px 0;
    }

    /* Puppies section directly after categories */
    .puppies-section {
        padding-top: 30px !important;
    }

    .section-title {
        font-size: 26px;
    }

    .puppy-overlay .puppy-name {
        font-size: 14px;
    }

    .puppy-overlay {
        padding: 10px 12px;
    }

    .puppy-price {
        font-size: 16px;
    }

    .puppy-description {
        font-size: 12px;
        line-height: 1.4;
    }

    .puppy-body {
        padding: 15px;
    }

    .puppy-info {
        font-size: 11px;
        gap: 10px;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .puppy-footer {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .btn-details {
        width: 100%;
        padding: 8px 15px;
        font-size: 13px;
    }

    .blog-title {
        font-size: 18px;
    }

    .breed-content,
    .about-content {
        padding: 0;
        margin-top: 30px;
    }

    /* Hide floating buttons on mobile */
    .floating-contact-buttons {
        display: none;
    }

    /* Show mobile bottom bar */
    .mobile-contact-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 8px 12px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
        z-index: 1000;
        gap: 8px;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #e0e0e0;
    }

    .mobile-contact-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 9px 12px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .mobile-whatsapp-btn {
        background: #25D366;
        color: white;
    }

    .mobile-whatsapp-btn:hover {
        background: #128C7E;
        color: white;
    }

    .mobile-phone-btn {
        background: var(--primary-color);
        color: white;
    }

    .mobile-phone-btn:hover {
        background: #333333;
        color: white;
    }

    .mobile-contact-btn i {
        font-size: 15px;
    }

    .scroll-top {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 80px;
        right: 15px;
    }

    /* Add padding to body to prevent content hiding behind mobile bar */
    body {
        padding-bottom: 70px;
    }
}

/* ===============================================
   UTILITY CLASSES
   =============================================== */

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.rounded-3 {
    border-radius: 20px !important;
}