/* TR Domain Belgeler Page CSS - SEO & Mobile Optimized */
.tr-domain-belgeler-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #f8f9fa;
}

.hero-section {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    padding: 100px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::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"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.95;
}

.documents-section {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 20px;
    color: #718096;
    max-width: 700px;
    margin: 0 auto;
}

.domain-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.domain-type-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.domain-type-card {
    border-top: 4px solid #4facfe;
}

.domain-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.domain-type-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.domain-type-card h3 i {
    color: #4facfe;
    font-size: 32px;
}

.documents-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.documents-list li {
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    color: #495057;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.documents-list li:last-child {
    border-bottom: none;
}

.documents-list li i {
    color: #4facfe;
    margin-top: 4px;
    font-size: 18px;
    flex-shrink: 0;
}

.documents-list li strong {
    color: #2d3748;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.documents-list li span {
    color: #718096;
    font-size: 14px;
    display: block;
    margin-top: 5px;
}

.info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.info-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h4 i {
    color: #4facfe;
}

.info-card p {
    color: #718096;
    line-height: 1.7;
    font-size: 15px;
}

.process-section {
    padding: 100px 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: #4facfe;
    z-index: 1;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 2;
}

.process-step h4 {
    font-size: 22px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.process-step p {
    color: #718096;
    line-height: 1.7;
    font-size: 15px;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-cta {
    background: white;
    color: #4facfe;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    color: #4facfe;
    text-decoration: none;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 50px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .documents-section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 16px;
    }
    
    .domain-types-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .domain-type-card {
        padding: 30px 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-step::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .domain-type-card {
        padding: 25px 15px;
    }
}

