/* Temel Stil Tanımlamaları */

:root {
    /* Ana renkler */
    --primary-color: #4D4483;
    /* Mor tonu - başlıklar ve ana öğeler için */
    --secondary-color: #F9A4A2;
    /* Şeftali/pembe - vurgular ve ikonlar için */
    --accent-color: #EFF1F7;
    /* Açık mavi/gri - arka planlar için */
    --dark-color: #272460;
    /* Koyu mor - aktif öğeler ve karanlık vurgular için */
    --text-color: #5B5F78;
    /* Gri-mor metin rengi */
    --light-color: #F9F9FC;
    /* Çok açık mavi-beyaz */
    --section-bg: #FFFFFF;
    /* Beyaz arka plan */
    /* Gölgelendirmeler */
    --shadow-sm: 0 5px 15px rgba(77, 68, 131, 0.05);
    --shadow-md: 0 8px 25px rgba(77, 68, 131, 0.08);
    --shadow-lg: 0 15px 35px rgba(77, 68, 131, 0.12);
    /* Yuvarlaklıklar */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.7;
    background-color: #f5f5f5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--primary-color);
}


/* Navbar styling */

.navbar {
    background-color: white;
    box-shadow: var(--shadow-navbar);
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar-brand {
    font-weight: 800;
    font-size: 2rem;
    color: var(--primary-color);
}

.nav-link {
    font-weight: 600;
    font-size: 1.05rem;
    padding: 10px 20px !important;
    margin: 0 5px;
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: rgba(77, 68, 131, 0.1);
    color: var(--primary-color);
}

.navbar .nav-link.active {
    background-color: rgba(77, 68, 131, 0.1) !important;
}


/* Button styling */

.btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

.btn-secondary:hover {
    background-color: #E7908E;
    border-color: #E7908E;
    color: white;
}


/* Modern Hero Bölümü - Daha düşük yükseklik */

.hero {
    background: linear-gradient(rgba(39, 36, 96, 0.8), rgba(77, 68, 131, 0.9)), url('../img/animal-banner2.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 140px;
    /* Daha düşük padding değerleri */
    position: relative;
    overflow: hidden;
    color: white;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: white;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero p.lead {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 400;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


/* İstatistik Kartları */

.stats-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0 50px;
    flex-wrap: wrap;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 25px 40px;
    min-width: 200px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}


/* Hero buton stilini güncelle */

.hero .btn-primary {
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: var(--radius-xl);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 25px rgba(249, 164, 162, 0.3);
    margin-top: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hero .btn-primary:hover {
    background-color: #F08E8C;
    border-color: #F08E8C;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(249, 164, 162, 0.4);
}


/* Responsive ayarlamalar */

@media (max-width: 992px) {
    .hero h1 {
        font-size: 4rem;
    }
    .stat-card {
        padding: 20px 30px;
        min-width: 180px;
    }
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 150px;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .hero p.lead {
        font-size: 1.3rem;
    }
    .stats-container {
        gap: 15px;
    }
    .stat-card {
        padding: 15px 25px;
        min-width: 150px;
    }
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .stat-card {
        width: 80%;
    }
}


/* Section styling */

section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: var(--section-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}


/* Animal card styling */

.animal-card-standard {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s ease;
    background: white;
    position: relative;
    border: none;
}

.animal-card-standard:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-img-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.card-img {
    transition: transform 0.7s ease;
}

.animal-card-standard:hover .card-img {
    transform: scale(1.1);
}

.status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.status-badge.available {
    background-color: rgba(77, 68, 131, 0.15);
    color: var(--primary-color);
    border: 2px solid rgba(77, 68, 131, 0.3);
}

.status-badge.adopted {
    background-color: rgba(249, 164, 162, 0.15);
    color: #E7908E;
    border: 2px solid rgba(249, 164, 162, 0.3);
}

.card-content {
    padding: 30px;
}

.card-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.animal-attributes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.attribute i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 5px;
}

.btn-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    background-color: var(--light-color);
    color: var(--dark-color);
    text-decoration: none;
    border-radius: var(--radius-xl);
    font-weight: 600;
    transition: all 0.3s ease;
}

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


/* Statistics section */

.statistics-section {
    background-color: var(--light-color);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 100"><path fill="%23ffffff" d="M0,32L48,48C96,64,192,96,288,96C384,96,480,64,576,48C672,32,768,32,864,42.7C960,53,1056,75,1152,74.7C1248,75,1344,53,1392,42.7L1440,32L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>');
    background-size: cover;
    background-position: center;
}

.statistics-item {
    text-align: center;
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.statistics-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.statistics-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary-color);
}

.statistics-item .number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    line-height: 1.2;
    margin-bottom: 10px;
}

.statistics-item .label {
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--dark-color);
    display: block;
}


/* About section */

.about-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--secondary-color);
    border-radius: calc(var(--radius-lg) - 10px);
    z-index: 1;
    pointer-events: none;
}

.about-img img {
    transform: scale(1.05);
    transition: all 0.7s ease;
}

.about-img:hover img {
    transform: scale(1);
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

.about-feature {
    background-color: white;
    border-radius: var(--radius-md);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

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

.about-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    background-color: rgba(255, 122, 0, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.about-feature h5 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.about-feature p {
    margin-bottom: 0;
    color: var(--text-color);
}


/* Contact section */

.contact-section {
    padding: 120px 0;
    position: relative;
    background-color: var(--light-color);
}

.contact-section .card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: none;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.contact-section .card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.contact-section .card-title {
    font-size: 1.4rem;
    color: var(--dark-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.contact-section .form-control {
    padding: 15px 20px;
    border-radius: var(--radius-md);
    border: 1px solid #E6E9ED;
    background-color: #F9FAFB;
    font-size: 1rem;
}

.contact-section .form-control:focus {
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
    border-color: var(--primary-color);
}

.page-header {
    background: linear-gradient(rgba(39, 36, 96, 0.8), rgba(77, 68, 131, 0.9)), url('../img/animal-banner2.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: white;
}

.breadcrumb {
    background: transparent;
    display: inline-flex;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: white;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}


/* İletişim Sayfası CSS */


/* İletişim Bilgileri */

.contact-info {
    background-color: var(--light-color);
}

.contact-info h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 10px;
}


/* İletişim Formu */

.contact-info form {
    background-color: white;
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.contact-info .form-label {
    font-weight: 600;
}

.contact-info .form-control {
    border-radius: var(--radius-md);
    border: 1px solid var(--primary-color);
}

.contact-info .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 5px rgba(249, 164, 162, 0.5);
}

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

.contact-info .btn-primary:hover {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
}


/* Sosyal Medya Bağlantıları */

.social-links {
    margin-top: 15px;
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--secondary-color);
}


/* Footer */

.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 30px;
}

.footer h5 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer ul li a:hover {
    color: white;
    text-decoration: none;
    padding-left: 5px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 50px;
    text-align: center;
}

.copyright p {
    margin-bottom: 0;
    font-size: 0.9rem;
}


/* Detay Kartı */

.animal-detail-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.animal-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.animal-details {
    padding: 25px;
}

.animal-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.animal-subtitle {
    color: #6c757d;
    margin-bottom: 20px;
}

.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    border-radius: var(--radius-xl);
    padding: 8px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.status-available {
    background-color: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.status-adopted {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.detail-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.detail-label {
    font-weight: 600;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.detail-value {
    font-weight: 500;
    color: #333;
    font-size: 1.05rem;
}

.action-btn {
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}


/* Sahiplendirme Bilgileri Bölümü */

.info-section {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.info-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 10px;
}


/* Sahiplendirme Aşamaları Stilleri */

.process-steps {
    position: relative;
    padding: 20px 0;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 19px;
    width: 2px;
    background-color: #0d6efd;
    opacity: 0.3;
}

.step-item {
    position: relative;
    padding-bottom: 30px;
    padding-left: 60px;
}

.step-item:last-child {
    padding-bottom: 0;
}

.step-circle {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #0d6efd;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    z-index: 2;
    box-shadow: 0 0 0 5px rgba(13, 110, 253, 0.1);
}

.step-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #0d6efd;
    font-weight: 600;
}

.step-content p {
    color: #6c757d;
    margin-bottom: 0;
}


/* Modal Stilleri */

.modal-content {
    border-radius: 15px;
}

.modal-header {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.success-icon {
    font-size: 4rem;
    color: #198754;
}


/* Animasyonlar */

.animate-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}


/* Modern Navigasyon Butonları */

.animal-navigation {
    display: flex;
    align-items: center;
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

.nav-btn {
    display: flex;
    align-items: center;
    padding: 10px 18px;
    background: linear-gradient(145deg, #ffffff, #f5f7fa);
    border-radius: 50px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.nav-btn:hover {
    background: linear-gradient(145deg, var(--primary-color), var(--primary-color));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(13, 110, 253, 0.25);
}

.nav-prev i {
    margin-right: 10px;
    font-size: 1rem;
}

.nav-next i {
    margin-left: 10px;
    font-size: 1rem;
}

.nav-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f8f9fa;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-disabled:hover {
    background: #f8f9fa;
    color: #6c757d;
    transform: none;
    box-shadow: none;
}


/* Responsive Düzenlemeler */

@media (max-width: 768px) {
    .animal-image {
        height: 300px;
    }
    .animal-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .nav-btn {
        padding: 8px 12px;
    }
    .nav-btn span {
        display: none;
    }
    .nav-prev i,
    .nav-next i {
        margin: 0;
        font-size: 1rem;
    }
}


/* Hayvan Detay Header - Koyu Arka Plan */

.animal-detail-header {
    background: linear-gradient(rgba(33, 37, 41, 0.9), rgba(52, 58, 64, 0.9)), url('https://images.unsplash.com/photo-1548199973-03cce0bbc87b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    margin-bottom: 0;
    position: relative;
}

.animal-detail-header:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(to bottom right, transparent 49%, #f8f9fa 50%);
}

.animal-detail-header h1 {
    color: white;
    font-weight: 800;
}

.animal-detail-header .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.animal-detail-header .status-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 15px;
}

.animal-detail-header .status-available {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.animal-detail-header .status-adopted {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}


/* Modern Hayvan Listeleme Sayfası Stilleri */

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.animal-hero {
    overflow: hidden;
}


/* Modern kart tasarımı */

.animal-card-modern {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background: white;
    position: relative;
    border: none;
}

.animal-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-img-container {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.animal-card-modern:hover .card-img {
    transform: scale(1.1);
}

.no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    color: #adb5bd;
}

.no-image i {
    font-size: 3rem;
}

.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    border-radius: var(--radius-xl);
    padding: 8px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.status-badge.adopted {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 2px solid rgba(220, 53, 69, 0.2);
}

.status-badge.available {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 2px solid rgba(40, 167, 69, 0.2);
}

.card-content {
    padding: 20px;
}

.card-title {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #212529;
}

.animal-attributes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.attribute {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #6c757d;
}

.attribute i {
    color: var(--primary-color);
    font-size: 1rem;
}

.btn-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background-color: #f8f9fa;
    color: #212529;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.filter-container {
    position: relative;
    z-index: 10;
    margin-top: -50px;
}

.form-floating>.form-select,
.form-floating>.form-control {
    border-radius: var(--radius-md);
    border: 1px solid #e9ecef;
}

.form-floating>label {
    color: #6c757d;
}


/* Modern pagination */

.pagination-modern {
    gap: 5px;
}

.pagination-modern .page-link {
    border-radius: var(--radius-md);
    border: none;
    color: #6c757d;
    padding: 10px 16px;
    font-weight: 600;
}

.pagination-modern .page-link:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

.pagination-modern .page-item.active .page-link {
    background-color: var(--primary-color);
    color: white;
}

.pagination-modern .page-item.disabled .page-link {
    background-color: transparent;
    color: #ced4da;
}

.results-info h4 {
    color: #212529;
    font-weight: 700;
}


/* Responsive düzenlemeler */

@media (max-width: 768px) {
    .card-img-container {
        height: 200px;
    }
    .animal-attributes {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .animal-hero {
        padding: 100px 0 80px;
    }
    .filter-container {
        margin-top: -30px;
    }
    .form-floating {
        margin-bottom: 10px;
    }
}


/* Filter Container Styling */

.filter-container .card {
    border-radius: 25px;
    border: none;
    box-shadow: var(--shadow-md) !important;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s ease !important;
    transition: all 0.3s ease;
}

.filter-container .card:hover {
    box-shadow: var(--shadow-lg);
}

.filter-container .card-body {
    padding: 25px;
}


/* Form elements with standard shadows */

.form-floating>.form-select:focus,
.form-floating>.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(77, 68, 131, 0.25);
    border-color: var(--primary-color);
}


/* Button shadows */

.btn-primary,
.btn-success,
.btn-outline-secondary {
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-success:hover,
.btn-outline-secondary:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}


/* Results info card */

.results-info {
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}


/* Badge için standart stil */

.badge {
    border-radius: var(--radius-md);
    padding: 5px 10px;
    font-weight: 600;
    font-size: 0.75rem;
}


/* Görseldeki adımlar tasarımını uygulama */

.adoption-steps {
    margin: 80px 0;
}

.adoption-steps .section-title h2 {
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 800;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e9ecef;
    z-index: 0;
}

.step-card {
    flex: 1;
    min-width: 250px;
    position: relative;
    border-radius: var(--radius-lg);
    padding: 25px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.step-card.active {
    background-color: var(--dark-color);
    color: white;
}

.step-card:not(.active) {
    background-color: var(--accent-color);
    color: var(--text-color);
}

.step-number {
    font-size: 5rem;
    font-weight: 900;
    position: absolute;
    bottom: -15px;
    right: 15px;
    opacity: 0.1;
    color: inherit;
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.step-card.active .step-icon {
    background-color: var(--secondary-color);
    color: white;
}

.step-card:not(.active) .step-icon {
    background-color: white;
    color: var(--primary-color);
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.step-card p {
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.step-card.active h3 {
    color: white;
}

.step-card:not(.active) h3 {
    color: var(--dark-color);
}


/* Kategori Kartları */

.category-section {
    background-color: var(--accent-color);
}

.category-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.category-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    text-align: center;
    flex: 1;
    min-width: 220px;
    max-width: 300px;
    transition: all 0.4s ease;
    color: var(--text-color);
    text-decoration: none;
}

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

.category-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background-color: var(--primary-color);
    color: white;
}

.category-card h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.category-card p {
    color: var(--text-color);
    margin-bottom: 0;
}


/* Görüntü Galerisi */

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: all 0.5s ease;
}

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


/* Başa Dön Butonu */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--dark-color);
    color: white;
    transform: translateY(-5px);
}

.recent-animals {
    margin-top: 15px;
}

.recent-animals .animal-link {
    margin-right: 5px;
}

.recent-animals img {
    border: 3px solid white;
    border-radius: var(--radius-md);
    transition: transform 0.3s;
    width: 100px;
    height: auto;
}

.recent-animals img:hover {
    transform: scale(1.1);
}


/* Ensure the recent animals section displays a maximum of 9 images */

.recent-animals {
    display: flex;
    flex-wrap: wrap;
}

.recent-animals .animal-link {
    flex: 0 0 30%;
    max-width: 30%;
    margin-bottom: 10px;
}