/* ===============================================
   Programmatic SEO Page Styles
   BirSEO.com.tr
   =============================================== */

/* Navigation */
.navbar-seo {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-seo .nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.navbar-seo .nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.navbar-seo .nav-link {
    color: #0f172a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar-seo .nav-link:hover {
    color: #ff6b35;
}

.nav-phone-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.nav-phone-btn:hover {
    transform: translateY(-2px);
}

/* SEO Hero Section */
.seo-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, #fff5f0 0%, #fff 50%);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: #64748b;
}

.breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #ff6b35;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 900px;
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #475569;
    font-weight: 500;
}

.hero-features .feature-item svg {
    color: #22c55e;
    flex-shrink: 0;
}

/* Benefits Section */
.seo-benefits {
    padding: 4rem 0;
    background: #fff;
}

.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-center h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.section-header-center p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    padding: 2rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.7;
}

/* Packages Preview Section */
.seo-packages-preview {
    padding: 4rem 0;
    background: #f8fafc;
}

.packages-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.package-preview-card {
    padding: 2.5rem;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.package-preview-card.featured {
    border-color: #ff6b35;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.15);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.package-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    border-radius: 50%;
}

.package-preview-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.package-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
}

.package-features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
}

.package-features-list li:last-child {
    border-bottom: none;
}

.cta-center {
    text-align: center;
}

/* SEO Content Section */
.seo-content-section {
    padding: 4rem 0;
    background: #fff;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.seo-article h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.seo-article h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.seo-article p {
    font-size: 1.0625rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.content-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #475569;
    line-height: 1.7;
}

.content-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
}

.cta-box {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 16px;
    text-align: center;
    color: #fff;
}

.cta-box h4 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.cta-box .btn {
    background: #fff;
    color: #ff6b35;
}

.cta-box .btn:hover {
    background: #f8fafc;
}

/* FAQ Section */
.seo-faq {
    position: sticky;
    top: 100px;
}

.seo-faq h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.faq-item {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.faq-item h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.faq-item p {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.7;
}

/* CTA Section */
.seo-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.seo-footer {
    padding: 3rem 0 1rem;
    background: #0f172a;
    color: #fff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo p {
    color: #94a3b8;
    font-size: 0.9375rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact p {
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.footer-contact strong {
    color: #fff;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #1e293b;
    text-align: center;
    color: #64748b;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-seo .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .seo-faq {
        position: static;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 0.9375rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .btn-large {
        font-size: 0.9375rem;
        padding: 0.875rem 1.5rem;
    }
}

/* ===============================================
   Extra Small Devices (400px and below) - SEO Pages
   =============================================== */
@media (max-width: 400px) {
    /* Container için özel padding */
    .container {
        padding: 0 12px;
    }
    
    /* Navbar SEO optimizasyonu */
    .navbar-seo .nav-wrapper {
        padding: 0.5rem 0;
        gap: 0.5rem;
    }
    
    .navbar-seo .logo {
        font-size: 1.125rem;
        gap: 0.5rem;
    }
    
    .navbar-seo .logo-text {
        font-size: 1.125rem;
    }
    
    .navbar-seo .logo-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .navbar-seo .nav-links {
        gap: 0.75rem;
        padding: 1rem 0;
    }
    
    .navbar-seo .nav-link {
        font-size: 0.875rem;
        padding: 0.5rem 0;
    }
    
    .nav-phone-btn {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
        gap: 0.375rem;
    }
    
    .nav-phone-btn svg {
        width: 16px;
        height: 16px;
    }
    
    /* SEO Hero Section */
    .seo-hero {
        padding: 2.5rem 0 2rem;
    }
    
    .breadcrumb {
        font-size: 0.75rem;
        margin-bottom: 1.25rem;
        flex-wrap: wrap;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.875rem;
        margin-bottom: 1rem;
    }
    
    .hero-badge svg {
        width: 14px;
        height: 14px;
    }
    
    .hero-title {
        font-size: 1.375rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }
    
    .hero-stats {
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-cta-buttons {
        gap: 0.625rem;
    }
    
    .btn-large {
        font-size: 0.875rem;
        padding: 0.75rem 1.25rem;
    }
    
    /* Content sections */
    .section-title {
        font-size: 1.375rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.875rem;
    }
    
    /* Package cards */
    .package-card {
        padding: 1.25rem;
    }
    
    .package-name {
        font-size: 1.125rem;
    }
    
    .package-price {
        font-size: 1.75rem;
    }
    
    .package-features li {
        font-size: 0.8125rem;
        padding: 0.5rem 0;
    }
    
    /* FAQ Section */
    .faq-item {
        padding: 1rem;
    }
    
    .faq-question {
        font-size: 0.9375rem;
        padding-right: 2rem;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 2rem 0;
    }
    
    .cta-content {
        padding: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    
    .cta-content p {
        font-size: 0.875rem;
    }
    
    .cta-buttons {
        gap: 0.625rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        font-size: 0.875rem;
        padding: 0.75rem 1.25rem;
    }
    
    /* Features grid */
    .features-grid {
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .feature-description {
        font-size: 0.8125rem;
    }
    
    /* Footer */
    .footer-section {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-brand-text {
        font-size: 1rem;
    }
    
    .footer-description {
        font-size: 0.8125rem;
    }
    
    .footer-title {
        font-size: 0.9375rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .footer-links a {
        font-size: 0.8125rem;
    }
    
    .footer-contact {
        font-size: 0.8125rem;
    }
    
    .footer-bottom {
        font-size: 0.75rem;
        padding-top: 1.5rem;
    }
}
