/**
 * KVKK Sayfası - Premium UI/UX Design
 * Modern, şık ve profesyonel tasarım
 */

/* ============================================================
   1. HERO SECTION
   ============================================================ */
.kvkk-hero {
    position: relative;
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: #ffffff;
    overflow: hidden;
}

.kvkk-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.kvkk-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(212,175,55,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.kvkk-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.kvkk-hero-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #D4AF37 0%, #C9A227 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.kvkk-hero-icon i {
    font-size: 48px;
    color: #000000;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
    }
}

.kvkk-hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.kvkk-hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 1px;
}

/* ============================================================
   2. CONTENT SECTION
   ============================================================ */
.kvkk-content-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.kvkk-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

/* ============================================================
   3. INTRO
   ============================================================ */
.kvkk-intro {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #D4AF37;
    margin-bottom: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.kvkk-intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin: 0;
    font-weight: 400;
}

/* ============================================================
   4. SECTIONS
   ============================================================ */
.kvkk-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.kvkk-section:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.kvkk-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.kvkk-section-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37 0%, #C9A227 100%);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.kvkk-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.kvkk-section-content {
    color: #333;
    line-height: 1.8;
}

.kvkk-section-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

/* ============================================================
   5. SUBSECTIONS
   ============================================================ */
.kvkk-subsection {
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #D4AF37;
}

.kvkk-subsection-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ============================================================
   6. LISTS
   ============================================================ */
.kvkk-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.kvkk-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.kvkk-list li:last-child {
    border-bottom: none;
}

.kvkk-list li i {
    position: absolute;
    left: 0;
    top: 12px;
    color: #D4AF37;
    font-size: 18px;
}

/* ============================================================
   7. INFO BOXES
   ============================================================ */
.kvkk-info-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e0e0e0;
    border-left: 4px solid #D4AF37;
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
}

.kvkk-info-box p {
    margin-bottom: 10px;
}

.kvkk-info-box p:last-child {
    margin-bottom: 0;
}

.kvkk-info-box i {
    color: #D4AF37;
    margin-right: 8px;
}

.kvkk-info-box h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000;
}

.kvkk-warning-box {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.kvkk-warning-box i {
    color: #ffc107;
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.kvkk-warning-box p {
    margin: 0;
    color: #856404;
    font-weight: 500;
}

/* ============================================================
   8. RIGHTS GRID
   ============================================================ */
.kvkk-rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.kvkk-right-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.kvkk-right-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #D4AF37;
}

.kvkk-right-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37 0%, #C9A227 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.kvkk-right-icon i {
    font-size: 24px;
    color: #000000;
}

.kvkk-right-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    flex: 1;
}

.kvkk-rights-note {
    text-align: center;
    font-size: 18px;
    margin-top: 30px;
    color: #000000;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

/* ============================================================
   9. CONTACT BOX
   ============================================================ */
.kvkk-contact-box {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.kvkk-contact-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.kvkk-contact-box h3 i {
    color: #D4AF37;
    font-size: 32px;
}

.kvkk-contact-box p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.kvkk-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #D4AF37 0%, #C9A227 100%);
    color: #000000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.kvkk-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #E5C047 0%, #D4AF37 100%);
    color: #000000;
}

.kvkk-contact-btn i {
    font-size: 20px;
}

/* ============================================================
   10. UPDATE INFO
   ============================================================ */
.kvkk-update-info {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.kvkk-update-info i {
    color: #D4AF37;
}

/* ============================================================
   11. SIMPLE CONTENT (Fallback)
   ============================================================ */
.kvkk-simple-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    line-height: 1.8;
    color: #555;
}

.kvkk-simple-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #000000;
    font-family: 'Playfair Display', serif;
}

.kvkk-simple-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #000000;
}

.kvkk-simple-content p {
    font-size: 16px;
    margin-bottom: 15px;
}

.kvkk-simple-content ul,
.kvkk-simple-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.kvkk-simple-content li {
    margin-bottom: 10px;
}

/* ============================================================
   12. RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .kvkk-hero {
        padding: 120px 0 80px;
    }
    
    .kvkk-hero-icon {
        width: 80px;
        height: 80px;
    }
    
    .kvkk-hero-icon i {
        font-size: 36px;
    }
    
    .kvkk-section {
        padding: 25px;
    }
    
    .kvkk-section-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .kvkk-section-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .kvkk-section-title {
        font-size: 24px;
    }
    
    .kvkk-rights-grid {
        grid-template-columns: 1fr;
    }
    
    .kvkk-contact-box {
        padding: 30px 20px;
    }
    
    .kvkk-intro {
        padding: 25px;
    }
    
    .kvkk-info-box,
    .kvkk-warning-box {
        padding: 20px;
    }
}

