/* BP Ajans - Hizmetler Sayfası CSS */

/* ===== PAGE HERO ===== */
.page-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #fafbfc 0%, #f8fafc 50%, #ffffff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), rgba(255, 143, 101, 0.05));
    z-index: 0;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02), rgba(255, 143, 101, 0.03));
    z-index: 0;
}

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

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    color: var(--dark-color);
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-subtitle strong {
    color: var(--dark-color);
    font-weight: 600;
}

.hero-stats-mini {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.stat-mini {
    text-align: center;
}

.stat-mini .stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-mini .stat-label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== MAIN SERVICES ===== */
.main-services {
    padding: 80px 0;
    background: var(--white);
}

.services-grid-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-main-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: start;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-main-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 107, 53, 0.1);
}

.service-main-card:hover::before {
    opacity: 1;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.25);
}

.service-content {
    min-width: 0;
}

.service-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 16px;
    line-height: 1.2;
}

.service-description {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-description strong {
    color: var(--dark-color);
    font-weight: 600;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.service-features .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-color);
}

.service-features .feature-item i {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 10px;
    flex-shrink: 0;
}

.service-types {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tag {
    background: #f8fafc;
    color: var(--text-light);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    max-width: none;
    width: auto;
    display: inline-block;
}
    transition: all 0.3s ease;
}

.service-tag:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    border-color: rgba(255, 107, 53, 0.2);
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 80px 0;
    background: #fafbfc;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.25);
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 14px;
}

/* ===== CTA SECTION ===== */
.services-cta {
    padding: 80px 0;
    background: var(--white);
}

.cta-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
    padding: 32px 20px;
    background: linear-gradient(135deg, #fafbfc 0%, #f8fafc 100%);
    border-radius: 18px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.06);
}

.cta-text {
    text-align: center;
    max-width: 340px;
    margin: 0 18px 0 0;
}

.cta-text h2 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 0;
    color: #232e3f;
}

.cta-actions {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}

.btn-primary-gradient,
.btn-outline {
    padding: 7px 18px;
    font-size: 0.95rem;
    border-radius: 22px;
    min-width: 0;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-text p {
    font-size: 1rem;
    line-height: 1.35;
    margin-bottom: 0;
    color: #232e3f;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary-gradient,
.btn-outline {
    padding: 10px 22px;
    font-size: 1rem;
    border-radius: 26px;
    min-width: 0;
}

.btn-primary-gradient i,
.btn-outline i {
    font-size: 1.1em;
    margin-right: 6px;
}

@media (max-width: 992px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
        padding: 22px 6px;
        gap: 18px;
        max-width: 98vw;
    }
    .cta-text {
        margin: 0;
    }
}

@media (max-width: 576px) {
    .cta-content {
        padding: 12px 2px;
        gap: 10px;
    }
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}


@media (max-width: 992px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
        padding: 32px 12px;
        gap: 28px;
    }
}

@media (max-width: 576px) {
    .cta-content {
        padding: 18px 4px;
        gap: 16px;
    }
}

.cta-actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

.btn-primary-gradient {
    background: linear-gradient(90deg, #FF6B35 0%, #FF8F65 100%);
    color: #fff;
    border: none;
    border-radius: 32px;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.09);
    transition: background 0.2s, box-shadow 0.2s;
}
.btn-primary-gradient:hover {
    background: linear-gradient(90deg, #FF8F65 0%, #FF6B35 100%);
    box-shadow: 0 6px 24px rgba(255, 107, 53, 0.15);
}

.btn-outline {
    border: 2px solid #cfd8dc;
    color: #1A1A1A;
    background: #fff;
    border-radius: 32px;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: border 0.2s, color 0.2s, background 0.2s;
}
.btn-outline:hover {
    border: 2px solid #FF6B35;
    color: #FF6B35;
    background: #fff5f0;
}

.cta-actions i {
    font-size: 1.3em;
    margin-right: 6px;
}

.cta-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 16px;
}

.cta-text p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .service-main-card {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    .service-icon-large {
        margin: 0 auto;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .hero-stats-mini {
        gap: 24px;
    }
    
    .service-main-card {
        padding: 30px 20px;
    }
    
    .service-title {
        font-size: 24px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-content {
        padding: 30px 20px;
    }
    
    .cta-text h2 {
        font-size: 24px;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-stats-mini {
        flex-direction: column;
        gap: 20px;
    }
    
    .service-types {
        justify-content: center;
    }
}
