/* KOBİ-50 Kategori Sayfaları Özel Stilleri */

/* Genel Sayfa Stilleri */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a202c;
}

.container {
    max-width: 90% !important;
    margin: 0 auto;
    padding: 0 2vw;
}

/* Sabit Geri Dön Butonu */
.fixed-back-button {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1000;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fixed-back-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
    color: white;
    text-decoration: none;
}

.fixed-back-button i {
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.fixed-back-button:hover i {
    transform: translateX(-3px);
}

/* Kategori Sayfası Header */
.category-page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 8vw 0 6vw;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.category-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.category-header-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.category-icon-large {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 3vw;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.category-icon-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
}

.category-icon-large:hover::before {
    left: 100%;
}

.category-icon-large:hover {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.category-icon-large i {
    font-size: 3rem;
    color: white;
    transition: transform 0.3s ease;
}

.category-icon-large:hover i {
    transform: scale(1.2);
}

.category-page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2vw;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.category-quote {
    font-size: 1.3rem;
    font-style: italic;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

/* Ana İçerik Bölümü */
.category-page-content {
    padding: 6vw 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.category-page-section {
    margin-bottom: 6vw;
    background: white;
    border-radius: 20px;
    padding: 4vw;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.category-page-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.category-page-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 3vw;
    position: relative;
    padding-bottom: 1.5vw;
}

.category-page-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.category-page-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2vw;
}

/* Kriterler Grid */
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3vw;
    margin-top: 4vw;
}

.criteria-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3vw;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.criteria-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.criteria-card:hover::before {
    transform: scaleX(1);
}

.criteria-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: white;
}

.criteria-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2vw;
    position: relative;
    overflow: hidden;
}

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

.criteria-card:hover .criteria-icon::before {
    left: 100%;
}

.criteria-icon i {
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.criteria-card:hover .criteria-icon i {
    transform: scale(1.2);
}

.criteria-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1.5vw;
}

.criteria-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* Belgeler Listesi */
.documents-list {
    display: grid;
    gap: 2vw;
    margin-top: 3vw;
}

.document-item {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2vw;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 5px solid #667eea;
    position: relative;
    overflow: hidden;
}

.document-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.document-item:hover::before {
    transform: translateX(0);
}

.document-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: white;
}

.document-item i {
    font-size: 1.3rem;
    color: #667eea;
    margin-right: 1.5vw;
    width: 25px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.document-item span {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Öne Çıkan Kartlar */
.standout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3vw;
    margin-top: 4vw;
}

.standout-card {
    background: white;
    padding: 3vw;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.standout-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.standout-card:hover::before {
    transform: scaleX(1);
}

.standout-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.standout-card i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 2vw;
    transition: transform 0.3s ease;
}

.standout-card:hover i {
    transform: scale(1.2);
}

.standout-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* CTA Bölümü */
.category-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 6vw;
    border-radius: 25px;
    text-align: center;
    color: white;
    margin-top: 6vw;
    position: relative;
    overflow: hidden;
}

.category-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.category-cta h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2vw;
    position: relative;
    z-index: 1;
}

.category-cta p {
    font-size: 1.3rem;
    margin-bottom: 3vw;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: white;
    color: #667eea;
    padding: 1.5vw 3vw;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: #667eea;
}

.cta-button i {
    margin-left: 0.8rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Diğer Kategoriler Bölümü */
.other-categories {
    padding: 6vw 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.other-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 4vw;
}

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

.other-category-card {
    background: white;
    padding: 3vw;
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.other-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--category-color), var(--category-color-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.other-category-card:hover::before {
    transform: scaleX(1);
}

.other-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.other-category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--category-color), var(--category-color-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2vw;
}

.other-category-icon i {
    font-size: 1.3rem;
    color: white;
}

.other-category-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1vw;
}

.other-category-description {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Kategori Renkleri */
.other-category-card[href*="istihdami-koruma"] {
    --category-color: #3b82f6;
    --category-color-light: #60a5fa;
}

.other-category-card[href*="kapasite-gelistirme"] {
    --category-color: #10b981;
    --category-color-light: #34d399;
}

.other-category-card[href*="kuresel-rekabetcilik"] {
    --category-color: #f59e0b;
    --category-color-light: #fbbf24;
}

.other-category-card[href*="girisimcilik"] {
    --category-color: #8b5cf6;
    --category-color-light: #a78bfa;
}

.other-category-card[href*="stratejik-urun"] {
    --category-color: #06b6d4;
    --category-color-light: #22d3ee;
}

.other-category-card[href*="ar-ge-inovasyon"] {
    --category-color: #ec4899;
    --category-color-light: #f472b6;
}

.other-category-card[href*="yurt-disi-pazar"] {
    --category-color: #8b5cf6;
    --category-color-light: #a78bfa;
}

.other-category-card[href*="enerji-verimliligi"] {
    --category-color: #10b981;
    --category-color-light: #34d399;
}

.other-category-card[href*="mikro-isletme-liderligi"] {
    --category-color: #f59e0b;
    --category-color-light: #fbbf24;
}

.other-category-card[href*="dijital-donusum"] {
    --category-color: #6366f1;
    --category-color-light: #818cf8;
}

.other-category-card[href*="sosyal-sorumluluk"] {
    --category-color: #ec4899;
    --category-color-light: #f472b6;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .fixed-back-button {
        bottom: 1.5rem;
        left: 1.5rem;
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .category-page-header {
        padding: 10vw 0 8vw;
        min-height: 50vh;
    }
    
    .category-page-header h1 {
        font-size: 2.5rem;
    }
    
    .category-quote {
        font-size: 1.1rem;
    }
    
    .category-icon-large {
        width: 100px;
        height: 100px;
    }
    
    .category-icon-large i {
        font-size: 2.5rem;
    }
    
    .category-page-section {
        padding: 5vw;
        margin-bottom: 5vw;
    }
    
    .category-page-section h2 {
        font-size: 2rem;
    }
    
    .criteria-grid {
        grid-template-columns: 1fr;
        gap: 4vw;
    }
    
    .criteria-card {
        padding: 4vw;
    }
    
    .documents-list {
        gap: 3vw;
    }
    
    .document-item {
        padding: 3vw;
    }
    
    .standout-grid {
        grid-template-columns: 1fr;
        gap: 4vw;
    }
    
    .standout-card {
        padding: 4vw;
    }
    
    .category-cta {
        padding: 8vw;
    }
    
    .category-cta h3 {
        font-size: 2rem;
    }
    
    .other-categories-grid {
        grid-template-columns: 1fr;
        gap: 4vw;
    }
    
    .other-category-card {
        padding: 4vw;
    }
}

@media (max-width: 480px) {
    .fixed-back-button {
        bottom: 1rem;
        left: 1rem;
        padding: 0.7rem 1rem;
        font-size: 0.75rem;
    }
    
    .category-page-header h1 {
        font-size: 2rem;
    }
    
    .category-quote {
        font-size: 1rem;
    }
    
    .category-page-section h2 {
        font-size: 1.6rem;
    }
    
    .category-page-section p {
        font-size: 1rem;
    }
    
    .criteria-card h3 {
        font-size: 1.2rem;
    }
    
    .document-item span {
        font-size: 0.9rem;
    }
    
    .standout-card p {
        font-size: 0.9rem;
    }
    
    .category-cta h3 {
        font-size: 1.8rem;
    }
    
    .category-cta p {
        font-size: 1.1rem;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.category-page-section {
    animation: fadeInUp 0.8s ease forwards;
}

.criteria-card {
    animation: slideInLeft 0.6s ease forwards;
}

.criteria-card:nth-child(1) { animation-delay: 0.1s; }
.criteria-card:nth-child(2) { animation-delay: 0.2s; }
.criteria-card:nth-child(3) { animation-delay: 0.3s; }
.criteria-card:nth-child(4) { animation-delay: 0.4s; }
.criteria-card:nth-child(5) { animation-delay: 0.5s; }
.criteria-card:nth-child(6) { animation-delay: 0.6s; }

.document-item {
    animation: slideInLeft 0.6s ease forwards;
}

.document-item:nth-child(1) { animation-delay: 0.1s; }
.document-item:nth-child(2) { animation-delay: 0.2s; }
.document-item:nth-child(3) { animation-delay: 0.3s; }
.document-item:nth-child(4) { animation-delay: 0.4s; }
.document-item:nth-child(5) { animation-delay: 0.5s; }
.document-item:nth-child(6) { animation-delay: 0.6s; }

.standout-card {
    animation: fadeInUp 0.6s ease forwards;
}

.standout-card:nth-child(1) { animation-delay: 0.1s; }
.standout-card:nth-child(2) { animation-delay: 0.2s; }
.standout-card:nth-child(3) { animation-delay: 0.3s; }
.standout-card:nth-child(4) { animation-delay: 0.4s; }
.standout-card:nth-child(5) { animation-delay: 0.5s; }

/* Dot Navigation */
.page-nav-dots {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.page-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.page-nav-dot:hover {
    background: rgba(102, 126, 234, 0.6);
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.page-nav-dot.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: scale(1.3);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.page-nav-dot::before {
    content: attr(data-title);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(10px);
}

.page-nav-dot::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.page-nav-dot:hover::before,
.page-nav-dot:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Responsive Dot Navigation */
@media (max-width: 768px) {
    .page-nav-dots {
        right: 1rem;
        gap: 0.8rem;
    }
    
    .page-nav-dot {
        width: 10px;
        height: 10px;
    }
    
    .page-nav-dot::before {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .page-nav-dots {
        right: 0.8rem;
        gap: 0.6rem;
    }
    
    .page-nav-dot {
        width: 8px;
        height: 8px;
    }
    
    .page-nav-dot::before {
        font-size: 0.6rem;
        padding: 0.3rem 0.6rem;
    }
} 

/* --- KOBİ-50 Ana Sayfa Navigation Dots Stilleri --- */
.page-nav {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
}
.page-nav__label {
    position: absolute;
    left: -180px;
    top: 0;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.85);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, left 0.3s;
    white-space: nowrap;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-nav__label.active {
    opacity: 1;
}
.page-nav__label-text {
    display: block;
}
.page-nav__dots {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.page-nav-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.3);
    border: 2px solid #fff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.08);
}
.page-nav-dot:hover {
    background: rgba(102, 126, 234, 0.6);
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}
.page-nav-dot.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: scale(1.3);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}
@media (max-width: 768px) {
    .page-nav {
        right: 1rem;
    }
    .page-nav__dots {
        gap: 0.8rem;
    }
    .page-nav-dot {
        width: 11px;
        height: 11px;
    }
    .page-nav__label {
        left: -120px;
        font-size: 0.8rem;
        min-width: 80px;
    }
}
@media (max-width: 480px) {
    .page-nav {
        right: 0.5rem;
    }
    .page-nav__dots {
        gap: 0.5rem;
    }
    .page-nav-dot {
        width: 8px;
        height: 8px;
    }
    .page-nav__label {
        left: -90px;
        font-size: 0.7rem;
        min-width: 60px;
    }
}
/* --- Sonu --- */ 