/* =============================================
   KEDIM OLSA - Global Styles
   ============================================= */

:root {
    --gold: #D4A017;
    --gold-light: #F0C040;
    --gold-dark: #B8860B;
    --brown-dark: #3B2A1A;
    --cream: #FDF8F0;
    --cream-dark: #F5EDD8;
    --text-dark: #1A1A2E;
    --text-mid: #4A4A6A;
    --text-light: #8888AA;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 12px rgba(212,160,23,0.10);
    --shadow-md: 0 8px 30px rgba(212,160,23,0.15);
    --shadow-lg: 0 20px 60px rgba(212,160,23,0.20);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
}

* { box-sizing: border-box; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    margin: 0;
}

.text-gold { color: var(--gold); }

/* =============================================
   NAVBAR
   ============================================= */

.ko-navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212,160,23,0.15);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    z-index: 1000;
}

.ko-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-icon { font-size: 28px; }

.brand-text {
    font-size: 22px;
    font-weight: 900;
    color: var(--brown-dark);
    letter-spacing: -0.5px;
}

.brand-accent { color: var(--gold); }

.ko-nav-link {
    color: var(--text-mid) !important;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 14px !important;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.ko-nav-link:hover, .ko-nav-link.active {
    color: var(--gold-dark) !important;
    background: rgba(212,160,23,0.08);
}

.ko-logo {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.ko-logo-footer {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.ko-toggler {
    border: none;
    color: var(--gold-dark);
    font-size: 20px;
}

/* =============================================
   BUTTONS
   ============================================= */

.ko-btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--brown-dark) !important;
    font-weight: 800;
    border-radius: 50px;
    padding: 9px 22px;
    border: none;
    box-shadow: 0 4px 15px rgba(212,160,23,0.35);
    transition: all 0.25s;
}

.ko-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,160,23,0.45);
}

.ko-btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold-dark) !important;
    font-weight: 700;
    border-radius: 50px;
    padding: 8px 20px;
    background: transparent;
    transition: all 0.25s;
}

.ko-btn-outline:hover {
    background: var(--gold);
    color: var(--brown-dark) !important;
}

.ko-btn-sm {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--brown-dark) !important;
    font-weight: 800;
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.85rem;
    border: none;
    transition: all 0.2s;
}

.ko-btn-sm:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }

.ko-btn-white {
    background: white;
    color: var(--gold-dark) !important;
    font-weight: 800;
    border-radius: 50px;
    padding: 12px 28px;
    border: none;
    transition: all 0.25s;
}

.ko-btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.ko-btn-gold-dark {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white !important;
    font-weight: 800;
    border-radius: 50px;
    padding: 12px 28px;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.25s;
}

.ko-btn-gold-dark:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.25); }

/* =============================================
   SECTION COMMONS
   ============================================= */

.section-tag {
    display: inline-block;
    background: rgba(212,160,23,0.12);
    color: var(--gold-dark);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
}

.section-desc {
    color: var(--text-mid);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
}

/* =============================================
   HERO
   ============================================= */

.ko-hero {
    background: linear-gradient(135deg, var(--cream) 0%, #fff9ee 60%, #fffdf7 100%);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
    background: var(--gold);
    pointer-events: none;
}

.shape-1 { width: 600px; height: 600px; top: -200px; right: -150px; }
.shape-2 { width: 300px; height: 300px; bottom: -100px; left: -80px; }
.shape-3 { width: 150px; height: 150px; top: 40%; left: 38%; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--brown-dark);
    font-weight: 800;
    font-size: 0.82rem;
    padding: 6px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(212,160,23,0.3);
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-dark);
    margin: 16px 0;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 500px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 992px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

.btn-hero {
    padding: 13px 28px;
    font-size: 0.95rem;
    font-weight: 800;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
}

.ko-btn-play {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--brown-dark) !important;
    font-weight: 800;
    border-radius: 50px;
    border: 2px solid rgba(212,160,23,0.3);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s;
}

.ko-btn-play:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.play-circle {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--brown-dark);
    box-shadow: 0 3px 10px rgba(212,160,23,0.4);
}

/* Search Box */
.hero-search-box {
    background: white;
    border-radius: var(--radius-lg);
    padding: 8px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212,160,23,0.15);
    margin-top: 28px;
}

.search-inner {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.search-select {
    flex: 1;
    min-width: 140px;
    border: none;
    background: var(--cream);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9rem;
    outline: none;
    cursor: pointer;
}

.search-btn {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--brown-dark);
    font-weight: 800;
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px 24px;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.search-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-item { display: flex; flex-direction: column; }

.stat-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold-dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(212,160,23,0.25);
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    width: 420px;
    height: 420px;
}

.hero-circle {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, var(--cream-dark), var(--cream));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(212,160,23,0.2);
}

.hero-cat-emoji { font-size: 120px; animation: float 3s ease-in-out infinite; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-cat-card {
    position: absolute;
    background: white;
    border-radius: var(--radius);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212,160,23,0.15);
    z-index: 2;
}

.card-1 { top: 30px; left: -10px; }
.card-2 { bottom: 30px; right: -10px; }

.cat-emoji { font-size: 28px; }
.cat-card-name { font-weight: 800; font-size: 0.82rem; color: var(--text-dark); }
.cat-card-price { font-weight: 900; font-size: 0.95rem; color: var(--gold-dark); }

.hero-badge-float {
    position: absolute;
    top: 10px;
    right: 0;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--brown-dark);
    font-weight: 800;
    font-size: 0.78rem;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    z-index: 3;
}

/* =============================================
   HAKKIMIZDA
   ============================================= */

.ko-about { background: white; }

.about-img-box {
    position: relative;
    background: linear-gradient(135deg, var(--cream-dark), var(--cream));
    border-radius: var(--radius-lg);
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212,160,23,0.15);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.about-img-placeholder { font-size: 120px; }

.about-badge-float {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--brown-dark);
    font-weight: 800;
    font-size: 0.82rem;
    padding: 8px 18px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.about-desc {
    color: var(--text-mid);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features { display: flex; flex-direction: column; gap: 10px; }

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.92rem;
}

.about-feature i { color: var(--gold-dark); font-size: 16px; }

/* =============================================
   FARKIMIZ BANNER
   ============================================= */

.ko-fark {
    background: linear-gradient(135deg, var(--brown-dark), #5C3D1E);
    padding: 28px 0;
}

.fark-box {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.fark-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--brown-dark);
    box-shadow: 0 4px 15px rgba(212,160,23,0.4);
}

.fark-title {
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-right: 6px;
}

.fark-content {
    flex: 1;
    color: rgba(255,255,255,0.88);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 600;
}

.fark-content strong {
    color: var(--gold-light);
}

.fark-badge {
    background: rgba(212,160,23,0.18);
    border: 1.5px solid var(--gold);
    color: var(--gold-light);
    font-weight: 800;
    font-size: 0.82rem;
    padding: 8px 18px;
    border-radius: 50px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .fark-badge { width: 100%; text-align: center; }
}

/* =============================================
   CATEGORIES (BREEDS)
   ============================================= */

.ko-categories { background: white; }

.breed-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px;
    background: var(--cream);
    border-radius: var(--radius);
    border: 2px solid transparent;
    text-decoration: none;
    transition: all 0.25s;
    text-align: center;
}

.breed-card:hover {
    border-color: var(--gold);
    background: #fffcf2;
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.breed-card-all {
    background: linear-gradient(135deg, rgba(212,160,23,0.12), rgba(212,160,23,0.05));
    border-color: rgba(212,160,23,0.3);
}

.breed-emoji { font-size: 40px; margin-bottom: 10px; }
.breed-name { font-weight: 800; font-size: 0.85rem; color: var(--text-dark); margin-bottom: 4px; }
.breed-count { font-size: 0.75rem; color: var(--text-light); font-weight: 600; }

/* =============================================
   LISTINGS
   ============================================= */

.ko-listings { background: var(--cream); }

.listing-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212,160,23,0.10);
    transition: all 0.3s;
}

.listing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.listing-img {
    background: linear-gradient(135deg, var(--cream-dark), var(--cream));
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.listing-emoji { font-size: 90px; }

.listing-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--brown-dark);
    font-weight: 800;
    font-size: 0.72rem;
    padding: 4px 12px;
    border-radius: 50px;
}

.listing-fav {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}

.listing-fav:hover { background: var(--gold); color: white; }

.listing-body { padding: 18px; }

.listing-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 8px;
}

.listing-meta i { color: var(--gold); margin-right: 4px; }

.listing-name {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.listing-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.tag {
    background: var(--cream);
    color: var(--text-mid);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
}

.tag-green {
    background: rgba(34,197,94,0.1);
    color: #16a34a;
}

.listing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid rgba(212,160,23,0.12);
}

.listing-price {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--gold-dark);
}

/* =============================================
   WHY US
   ============================================= */

.ko-why { background: white; }

.why-card {
    padding: 32px 28px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    text-align: center;
    transition: all 0.3s;
}

.why-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--brown-dark);
    margin: 0 auto 16px;
    box-shadow: 0 6px 20px rgba(212,160,23,0.3);
}

.why-card h5 {
    font-weight: 900;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin: 0;
}

/* =============================================
   CTA SECTION
   ============================================= */

.ko-cta { padding: 40px 0 60px; background: var(--cream); }

.cta-box {
    background: linear-gradient(135deg, var(--brown-dark) 0%, #5C3D1E 100%);
    border-radius: var(--radius-lg);
    padding: 50px 48px;
    position: relative;
    overflow: hidden;
}

.cta-shapes .cta-shape-1,
.cta-shapes .cta-shape-2 {
    position: absolute;
    border-radius: 50%;
    background: rgba(212,160,23,0.12);
}

.cta-shape-1 { width: 300px; height: 300px; top: -100px; right: -80px; }
.cta-shape-2 { width: 150px; height: 150px; bottom: -60px; left: 20%; }

.cta-title {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
}

.cta-desc { color: rgba(255,255,255,0.7); font-size: 1rem; margin: 0; }

/* =============================================
   FOOTER
   ============================================= */

.ko-footer {
    background: var(--brown-dark);
    padding: 60px 0 0;
    color: rgba(255,255,255,0.7);
}

.ko-footer .footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ko-footer .brand-text { color: white; }

.footer-desc { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.6); }

.footer-title {
    color: var(--gold-light);
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }

.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s;
}
.social-links a:hover { background: var(--gold); color: var(--brown-dark); }

.footer-newsletter {
    display: flex;
    gap: 8px;
}

.footer-newsletter input {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-size: 0.88rem;
    outline: none;
}

.footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }

.footer-newsletter button {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    color: var(--brown-dark);
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s;
}

.footer-newsletter button:hover { transform: scale(1.05); }

.footer-hr { border-color: rgba(255,255,255,0.08); margin: 40px 0 20px; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-light); }

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.6rem; }
    .search-inner { flex-direction: column; }
    .search-select { width: 100%; }
    .search-btn { width: 100%; }
    .hero-stats { gap: 12px; justify-content: center; }
    .stat-num { font-size: 1.2rem; }
    .cta-box { padding: 32px 24px; }
    .cta-title { font-size: 1.5rem; }
}
