/* Web Tasarım Sayfası Özel CSS - Zorunlu Yeniden Yükleme Önleme */
/* Tüm CSS değişkenleri sabit renklere çevrildi */

/* Page Description - LCP Optimizasyonu */
.page-description {
    font-size: 1.25rem;
    color: #6B7280;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    min-height: 3rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    contain: layout style;
}

/* Table of Contents */
.page-toc {
    margin-top: 1.5rem;
    contain: layout style;
}

.page-toc details {
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    overflow: hidden;
    min-height: 3rem;
    contain: layout style;
}

.page-toc summary {
    padding: 0.75rem 1rem;
    background: #F9FAFB;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1F2937;
    user-select: none;
    min-height: 2.5rem;
    contain: layout style;
}

.page-toc .toc-content {
    padding: 1rem;
    background: #FFFFFF;
    border-top: 1px solid #E5E7EB;
    min-height: 8rem;
    contain: layout style;
}

.page-toc .toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.4;
}

.page-toc .toc-link {
    color: #2563EB;
    text-decoration: none;
    padding: 0.25rem 0;
    display: block;
}

/* Process List */
.process-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    min-height: 10rem;
    contain: layout style;
}

.process-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    min-height: 1.8rem;
    contain: layout style;
}

.process-list li:last-child {
    margin-bottom: 0;
}

.process-list .process-bullet {
    position: absolute;
    left: 0;
    color: #2563EB;
    font-weight: 600;
    line-height: 1.8rem;
    height: 1.8rem;
}

/* How-to Guide Box */
.howto-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #F9FAFB;
    border-radius: 8px;
    border-left: 4px solid #2563EB;
    min-height: 15rem;
    contain: layout style;
}

.howto-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1F2937;
    min-height: 2rem;
    contain: layout style;
}

.howto-list {
    margin: 0;
    padding-left: 1.5rem;
    line-height: 1.8;
}

.howto-list li {
    margin-bottom: 0.75rem;
}

/* Features Grid - services.css'den taşındı (hardcoded renklerle CLS optimize) */
.features-minimal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
    contain: layout style;
}
@media (max-width: 768px) {
    .features-minimal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

/* Service Card Minimal - services.css'den taşındı (hardcoded renklerle CLS optimize) */
.service-card-minimal {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    contain: layout style;
}
.service-card-minimal:hover {
    border-color: #2563EB;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.service-card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    height: 1.5rem;
    line-height: 1;
    display: block;
}
.service-card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1F2937;
    min-height: 1.5rem;
    contain: layout style;
}
.service-card-description {
    font-size: 0.8rem;
    color: #6B7280;
    margin: 0;
    min-height: 2rem;
    contain: layout style;
}

/* Web Tasarım Feature Card - web-tasarim.php için özel */
.web-tasarim-feature-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    min-height: 150px;
    contain: layout style;
}

.web-tasarim-feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    height: 1.5rem;
    line-height: 1;
    display: block;
}

.web-tasarim-feature-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1F2937;
    min-height: 1.5rem;
    contain: layout style;
}

.web-tasarim-feature-text {
    font-size: 0.8rem;
    color: #6B7280;
    margin: 0;
    min-height: 2rem;
    contain: layout style;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    contain: layout style;
}

.package-card {
    border: 2px solid #E5E7EB;
    padding: 1.5rem;
    border-radius: 12px;
    min-height: 400px;
    contain: layout style;
}

.package-card.featured {
    border-color: #2563EB;
    position: relative;
}

.package-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #2563EB;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.package-icon {
    background: #2563EB;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
    contain: layout style;
}

.package-icon.success {
    background: #10B981;
}

.package-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1F2937;
    min-height: 2rem;
    contain: layout style;
}

.package-description {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #6B7280;
    min-height: 8rem;
    contain: layout style;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563EB;
    min-height: 2.5rem;
    contain: layout style;
}

.package-note {
    color: #6B7280;
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    min-height: 1.5rem;
    contain: layout style;
}

/* Testimonial Grid */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    contain: layout style;
}

.testimonial-card {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    min-height: 200px;
    contain: layout style;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    min-height: 2rem;
    contain: layout style;
}

.testimonial-stars {
    font-size: 1.25rem;
    color: #ffd700;
    height: 1.25rem;
    line-height: 1;
}

.testimonial-rating-value {
    margin-left: 0.5rem;
    font-weight: 600;
    color: #1F2937;
    min-height: 1.5rem;
    contain: layout style;
}

.testimonial-text {
    font-style: italic;
    color: #6B7280;
    margin-bottom: 1rem;
    line-height: 1.5;
    min-height: 4rem;
    contain: layout style;
}

.testimonial-author {
    font-weight: 600;
    color: #1F2937;
    min-height: 1.5rem;
    contain: layout style;
}

.testimonial-company {
    font-size: 0.875rem;
    color: #6B7280;
    min-height: 1.5rem;
    contain: layout style;
}

/* Stats Box */
.stats-box {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 8px;
    min-height: 200px;
    contain: layout style;
}

.stats-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1rem;
    min-height: 2.5rem;
    contain: layout style;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    min-height: 100px;
    contain: layout style;
}

.stat-item {
    text-align: center;
    min-height: 60px;
    contain: layout style;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2563EB;
    min-height: 2.5rem;
    contain: layout style;
}

.stat-label {
    font-size: 0.875rem;
    color: #6B7280;
    min-height: 1.5rem;
    contain: layout style;
}

/* Technology Grid */
.technology-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    contain: layout style;
}

.technology-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    min-height: 200px;
    contain: layout style;
}

.technology-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    height: 2rem;
    line-height: 1;
    display: block;
}

.technology-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1F2937;
    min-height: 1.8rem;
    contain: layout style;
}

.technology-description {
    font-size: 0.9rem;
    color: #6B7280;
    margin: 0;
    line-height: 1.4;
    min-height: 3.5rem;
    contain: layout style;
}

/* Location Grid */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
    contain: layout style;
}

.location-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 1rem;
    min-height: 120px;
    contain: layout style;
}

.location-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1F2937;
    min-height: 1.5rem;
    contain: layout style;
}

.location-description {
    font-size: 0.9rem;
    color: #6B7280;
    margin: 0;
    min-height: 3rem;
    contain: layout style;
}

/* Related Services Grid */
.related-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    contain: layout style;
}

.related-service-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    min-height: 250px;
    contain: layout style;
}

.related-service-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
    height: 2rem;
    line-height: 1;
}

.related-service-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1F2937;
    min-height: 1.8rem;
    contain: layout style;
}

.related-service-description {
    font-size: 0.9rem;
    color: #6B7280;
    margin-bottom: 1rem;
    line-height: 1.5;
    min-height: 4rem;
    contain: layout style;
}

.related-service-link {
    color: #2563EB;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.related-service-link:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    background: #F9FAFB;
    padding: 60px 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-note {
    margin-top: 1.5rem;
    text-align: center;
}

.cta-note small {
    color: #6B7280;
    font-size: 0.875rem;
}

/* Breadcrumb */
.page-breadcrumb {
    margin-top: 2rem;
}

/* Price Table */
.price-table-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #F9FAFB;
    border-radius: 8px;
    min-height: 400px;
    contain: layout style;
}

.price-table-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1F2937;
    min-height: 2rem;
    contain: layout style;
}

.price-table-warning {
    background: #FFF3CD;
    border: 1px solid #FFEB3B;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.price-table-warning p {
    margin: 0;
    font-size: 0.9rem;
    color: #856404;
    font-weight: 600;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-height: 200px;
    contain: layout style;
}

.price-table caption {
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: left;
    color: #1F2937;
    min-height: 1.5rem;
    contain: layout style;
}

.price-table thead tr {
    background: #FFFFFF;
    min-height: 3rem;
    contain: layout style;
}

.price-table th,
.price-table td {
    padding: 0.75rem;
    border: 1px solid #E5E7EB;
    text-align: left;
    min-height: 2.5rem;
    contain: layout style;
}

.price-table th {
    font-weight: 600;
}

.price-table tbody tr:nth-child(even) {
    background: #FFFFFF;
}

.price-table-price {
    text-align: center;
    font-weight: 600;
    color: #2563EB;
}

.price-table-note {
    font-size: 0.8rem;
    color: #6B7280;
    margin-top: 1rem;
    text-align: center;
    line-height: 1.6;
    min-height: 3rem;
    contain: layout style;
}

/* FAQ Section */
.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
    min-height: 60px;
    contain: layout style;
}

.faq-summary {
    padding: 1rem;
    background: #F9FAFB;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    min-height: 3.5rem;
    contain: layout style;
}

.faq-content {
    padding: 1rem;
    background: #FFFFFF;
    min-height: 80px;
    contain: layout style;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .technology-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .technology-card {
        min-height: 180px;
    }
    
    .related-service-card {
        min-height: 220px;
    }
}

@media (max-width: 768px) {
    .page-description {
        font-size: 1.125rem;
        min-height: 4.5rem;
    }
    
    .page-toc details {
        min-height: 2.5rem;
    }
    
    .page-toc summary {
        font-size: 0.875rem;
        min-height: 2.2rem;
        padding: 0.625rem 0.875rem;
    }
    
    .page-toc .toc-content {
        min-height: 6rem;
        padding: 0.875rem;
    }
    
    .page-toc .toc-list {
        grid-template-columns: 1fr;
        gap: 0.375rem;
    }
    
    .process-list {
        min-height: 8rem;
    }
    
    .process-list li {
        min-height: 1.6rem;
        font-size: 0.938rem;
    }
    
    .howto-box {
        min-height: 12rem;
        padding: 1.25rem;
    }
    
    .howto-title {
        font-size: 1.125rem;
        min-height: 1.8rem;
    }
    
    .features-minimal-grid {
        gap: 0.75rem;
    }
    
    .service-card-minimal {
        padding: 0.875rem;
        min-height: 120px;
    }
    
    .service-card-icon {
        font-size: 1.25rem;
        height: 1.25rem;
        margin-bottom: 0.375rem;
    }
    
    .service-card-title {
        font-size: 0.938rem;
        min-height: 1.4rem;
    }
    
    .service-card-description {
        font-size: 0.75rem;
        min-height: 1.8rem;
    }
    
    .web-tasarim-feature-card {
        min-height: 130px;
        padding: 0.875rem;
    }
    
    .web-tasarim-feature-icon {
        font-size: 1.25rem;
        height: 1.25rem;
        margin-bottom: 0.375rem;
    }
    
    .web-tasarim-feature-title {
        font-size: 0.938rem;
        min-height: 1.4rem;
    }
    
    .web-tasarim-feature-text {
        font-size: 0.75rem;
        min-height: 1.8rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .package-card {
        min-height: 350px;
        padding: 1.25rem;
    }
    
    .package-title {
        font-size: 1.125rem;
        min-height: 1.8rem;
    }
    
    .package-description {
        min-height: 7rem;
        font-size: 0.938rem;
    }
    
    .package-price {
        font-size: 1.375rem;
        min-height: 2.2rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .testimonial-card {
        min-height: 180px;
        padding: 1.25rem;
    }
    
    .testimonial-text {
        min-height: 3.5rem;
        font-size: 0.938rem;
    }
    
    .stats-box {
        min-height: 180px;
        padding: 1.25rem;
    }
    
    .stats-title {
        font-size: 1.375rem;
        min-height: 2.2rem;
    }
    
    .stats-grid {
        gap: 1rem;
        min-height: 80px;
    }
    
    .stat-item {
        min-height: 50px;
    }
    
    .stat-value {
        font-size: 1.75rem;
        min-height: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.813rem;
        min-height: 1.4rem;
    }
    
    .technology-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .technology-card {
        min-height: 180px;
        padding: 1.25rem;
    }
    
    .technology-icon {
        font-size: 1.75rem;
        height: 1.75rem;
        margin-bottom: 0.875rem;
    }
    
    .technology-title {
        font-size: 1rem;
        min-height: 1.6rem;
    }
    
    .technology-description {
        font-size: 0.875rem;
        min-height: 3rem;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }
    
    .location-card {
        min-height: 100px;
        padding: 0.875rem;
    }
    
    .location-title {
        font-size: 0.938rem;
        min-height: 1.4rem;
    }
    
    .location-description {
        font-size: 0.875rem;
        min-height: 2.5rem;
    }
    
    .related-services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .related-service-card {
        min-height: 220px;
        padding: 1.25rem;
    }
    
    .related-service-icon {
        font-size: 1.75rem;
        height: 1.75rem;
        margin-bottom: 0.875rem;
    }
    
    .related-service-title {
        font-size: 1rem;
        min-height: 1.6rem;
    }
    
    .related-service-description {
        font-size: 0.875rem;
        min-height: 3.5rem;
    }
    
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-buttons {
        gap: 0.875rem;
        margin-top: 1.5rem;
    }
    
    .price-table-box {
        min-height: 350px;
        padding: 1.25rem;
    }
    
    .price-table-title {
        font-size: 1.125rem;
        min-height: 1.8rem;
    }
    
    .price-table {
        font-size: 0.813rem;
        min-height: 180px;
    }
    
    .price-table th,
    .price-table td {
        padding: 0.625rem;
        min-height: 2.2rem;
        font-size: 0.813rem;
    }
    
    .price-table-note {
        font-size: 0.75rem;
        min-height: 2.5rem;
    }
    
    .faq-item {
        min-height: 50px;
    }
    
    .faq-summary {
        font-size: 1rem;
        min-height: 3rem;
        padding: 0.875rem;
    }
    
    .faq-content {
        min-height: 70px;
        padding: 0.875rem;
        font-size: 0.938rem;
    }
}

@media (max-width: 480px) {
    .page-description {
        font-size: 1rem;
        min-height: 4rem;
    }
    
    .service-card-minimal {
        min-height: 110px;
        padding: 0.75rem;
    }
    
    .web-tasarim-feature-card {
        min-height: 120px;
        padding: 0.75rem;
    }
    
    .package-card {
        min-height: 320px;
        padding: 1rem;
    }
    
    .testimonial-card {
        min-height: 160px;
        padding: 1rem;
    }
    
    .technology-card {
        min-height: 160px;
        padding: 1rem;
    }
    
    .related-service-card {
        min-height: 200px;
        padding: 1rem;
    }
    
    .stats-grid {
        gap: 0.75rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
        min-height: 2rem;
    }
    
    .price-table-box {
        padding: 1rem;
    }
    
    .price-table th,
    .price-table td {
        padding: 0.5rem;
        font-size: 0.75rem;
    }
}

