/* DropSpeed - About Page Styles */
/* PDF s.3 - DropSpeed Nedir özel stilleri */

/* Page Banner */
.page-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 8rem 0 4rem;
    position: relative;
    color: var(--bg-white);
    text-align: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-banner__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.page-banner__title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.page-banner__subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin: 0;
}

/* About Content */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
}

.about-text .lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.about-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Process Flow */
.process-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    z-index: 2;
}

.process-step__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(0, 112, 185, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.process-step:hover .process-step__icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.process-step__icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.process-step:hover .process-step__icon img {
    filter: brightness(0) invert(1);
}

.process-step__content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.process-step__content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.advantage-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.advantage-card__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.advantage-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.advantage-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Us */
.why-choose-content {
    padding: 1rem 0;
}

.why-choose-content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.why-choose-content h3:first-child {
    margin-top: 0;
}

.why-choose-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.why-choose-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1rem 0;
}

.stat-card {
    background: var(--bg-white);
    padding: 2rem 1rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-card__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Urbanist', sans-serif;
}

.stat-card__label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: #FFFFFF;
    color: var(--text-muted);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.cta-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .process-step:nth-child(2n)::after {
        display: none;
    }
}

@media (max-width: 991px) {
    .page-banner {
        padding: 6rem 0 3rem;
    }
    
    .page-banner__title {
        font-size: 2.5rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .about-text .lead {
        font-size: 1.125rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 0.75rem;
    }
    
    .stat-card__number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 4rem 0 2rem;
    }
    
    .page-banner__title {
        font-size: 2rem;
    }
    
    .page-banner__subtitle {
        font-size: 1.125rem;
    }
    
    .process-flow {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .process-step {
        padding: 1.5rem 1rem;
    }
    
    .process-step__icon {
        width: 64px;
        height: 64px;
        margin-bottom: 1rem;
    }
    
    .process-step__icon img {
        width: 36px;
        height: 36px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .advantage-card {
        padding: 1.5rem;
    }
    
    .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-lg {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .page-banner {
        padding: 3rem 0 1.5rem;
    }
    
    .page-banner__title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .page-banner__subtitle {
        font-size: 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .about-text {
        font-size: 0.9rem;
    }
    
    .about-text .lead {
        font-size: 1rem;
    }
    
    .process-step {
        padding: 1rem;
    }
    
    .process-step__content h3 {
        font-size: 1rem;
    }
    
    .process-step__content p {
        font-size: 0.8rem;
    }
    
    .advantage-card {
        padding: 1rem;
    }
    
    .advantage-card__icon {
        font-size: 2.5rem;
    }
    
    .advantage-card h3 {
        font-size: 1.125rem;
    }
    
    .advantage-card p {
        font-size: 0.8rem;
    }
    
    .why-choose-content h3 {
        font-size: 1.25rem;
    }
    
    .why-choose-content p {
        font-size: 0.9rem;
    }
    
    .stat-card {
        padding: 1rem 0.5rem;
    }
    
    .stat-card__number {
        font-size: 1.75rem;
    }
    
    .stat-card__label {
        font-size: 0.75rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .page-banner {
        background: none !important;
        color: var(--text-dark) !important;
        padding: 2rem 0 !important;
    }
    
    .page-banner::before {
        display: none !important;
    }
    
    .page-banner__title,
    .page-banner__subtitle {
        color: var(--text-dark) !important;
    }
    
    .cta-section {
        background: none !important;
        color: var(--text-dark) !important;
    }
    
    .cta-title {
        color: var(--text-dark) !important;
    }
    
    .process-step,
    .advantage-card,
    .stat-card {
        box-shadow: none !important;
        border: 1px solid var(--border-light) !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .process-step,
    .advantage-card,
    .stat-card {
        border: 2px solid var(--text-dark);
    }
    
    .process-step__icon {
        border: 2px solid var(--primary-color);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .process-step,
    .advantage-card,
    .stat-card,
    .process-step__icon,
    .process-step__icon img {
        transition: none;
    }
    
    .process-step:hover,
    .advantage-card:hover,
    .stat-card:hover {
        transform: none;
    }
    
    .process-step:hover .process-step__icon {
        transform: none;
    }
}
