/* =============================================
   HAKKIMIZDA SAYFASI - ÖZEL CSS
   ============================================= */

/* Genel Sayfa Stili */
.about-page {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
    padding: 40px 0;
}

.about-article {
    max-width: 1200px;
    margin: 0 auto;
}

.about-article h1 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 50px;
    color: #2c5f2d;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Hero Box */
.hero-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 50px;
    border-radius: 25px;
    color: white;
    margin-bottom: 60px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 15s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 25px;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.hero-lead {
    font-size: 26px;
    line-height: 1.7;
    margin: 0 0 25px;
    text-align: center;
    color: white;
    font-weight: 700;
}

.hero-text {
    font-size: 18px;
    line-height: 1.9;
    margin: 0 0 25px;
    color: rgba(255,255,255,0.95);
}

.hero-philosophy {
    font-size: 20px;
    line-height: 1.8;
    margin: 35px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    text-align: center;
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

.hero-philosophy strong {
    font-size: 22px;
    display: block;
    margin-bottom: 15px;
}

/* Content Section */
.content-section {
    background: white;
    padding: 60px 50px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.content-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

/* Section Header Fancy */
.section-header-fancy {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.header-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.section-header-fancy h2 {
    font-size: 38px;
    color: #2c5f2d;
    margin: 0 0 20px;
    font-weight: 800;
}

.header-line {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    margin: 0 auto;
    border-radius: 3px;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(135deg, #f5f7ff 0%, #f0f7f0 100%);
    border: 3px solid #667eea;
}

.mission-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.mission-icon {
    font-size: 48px;
}

.mission-section h2 {
    font-size: 36px;
    color: #2c5f2d;
    margin: 0;
    font-weight: 800;
}

.section-subtitle {
    font-size: 24px;
    color: #667eea;
    margin: 0 0 30px;
    font-weight: 700;
    text-align: center;
}

.mission-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 20px;
}

.mission-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    font-size: 19px;
    line-height: 1.8;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.mission-highlight strong {
    display: block;
    font-size: 21px;
    margin-bottom: 15px;
}

/* Services Grid Modern */
.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card-modern {
    background: white;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #e0e0e0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-card-modern:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #667eea;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.service-card-modern.featured {
    border-color: #ffd700;
    background: linear-gradient(135deg, #fffbf0 0%, #fff8e1 100%);
}

.card-top {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 30px 30px;
    text-align: center;
    position: relative;
}

.service-card-modern.featured .card-top {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

.service-icon-large {
    font-size: 70px;
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.2));
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.3);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.card-badge.popular {
    background: rgba(255,255,255,0.9);
    color: #ffd700;
}

.service-card-modern h3 {
    font-size: 22px;
    color: #2c5f2d;
    margin: 25px 30px 15px;
    font-weight: 700;
}

.service-card-modern p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 30px 25px;
    color: #555;
}

.card-bottom {
    display: flex;
    gap: 10px;
    padding: 0 30px 30px;
    flex-wrap: wrap;
}

.feature-tag {
    background: #f0f7f0;
    color: #2c5f2d;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 2px solid #97c49e;
}

.services-footer-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: center;
    color: white;
}

.footer-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.services-footer-modern p {
    font-size: 18px;
    line-height: 1.8;
    margin: 0 0 15px;
    color: white;
}

.footer-cta {
    font-size: 22px !important;
    font-weight: 700 !important;
    margin: 20px 0 0 !important;
}

/* Approach Grid */
.section-intro {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.approach-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 35px;
    border-radius: 20px;
    border: 3px solid #e0e0e0;
    position: relative;
    transition: all 0.3s;
}

.approach-card:hover {
    transform: translateY(-5px);
    border-color: #667eea;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.approach-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(102, 126, 234, 0.15);
}

.approach-icon-large {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
}

.approach-card h4 {
    font-size: 20px;
    color: #2c5f2d;
    margin: 0 0 15px;
    font-weight: 700;
}

.approach-card p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 20px;
    color: #555;
}

.approach-tag {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

/* Values Grid Modern */
.values-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-card-modern {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid #e0e0e0;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.value-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.value-card-modern:hover::before {
    transform: scaleX(1);
}

.value-card-modern:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.value-icon-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.value-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 15px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.value-icon {
    font-size: 40px;
}

.value-card-modern h3 {
    font-size: 20px;
    color: #2c5f2d;
    margin: 0 0 15px;
    font-weight: 700;
}

.value-card-modern p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    color: #555;
}

/* Audience Grid Modern */
.audience-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.audience-card-modern {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    border: 3px solid #e0e0e0;
    transition: all 0.3s;
    text-align: center;
}

.audience-card-modern:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.audience-icon-bg {
    font-size: 70px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

.audience-card-modern h3 {
    font-size: 19px;
    color: #2c5f2d;
    margin: 0 0 15px;
    font-weight: 700;
}

.audience-card-modern p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 20px;
    color: #555;
}

.audience-stats {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.audience-stats span {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

/* Why Grid Modern */
.why-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.why-card-modern {
    background: white;
    padding: 35px;
    border-radius: 20px;
    border: 3px solid #e0e0e0;
    transition: all 0.3s;
    position: relative;
}

.why-card-modern:hover {
    transform: translateX(10px);
    border-color: #667eea;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.why-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.why-icon-emoji {
    font-size: 40px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.why-card-modern h4 {
    font-size: 22px;
    color: #2c5f2d;
    margin: 0 0 15px;
    font-weight: 700;
}

.why-card-modern p {
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    color: #555;
}

.why-arrow {
    position: absolute;
    bottom: 25px;
    right: 30px;
    font-size: 30px;
    color: #667eea;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s;
}

.why-card-modern:hover .why-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* CTA Section Modern */
.cta-section-modern {
    margin-top: 60px;
    margin-bottom: 40px;
}

.cta-background {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 70px 50px;
    border-radius: 30px;
    box-shadow: 0 25px 80px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content-wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-icon-large {
    font-size: 80px;
    margin-bottom: 25px;
    animation: pulse-large 2s infinite;
}

@keyframes pulse-large {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cta-section-modern h2 {
    color: white !important;
    font-size: 42px;
    margin: 0 0 20px;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.cta-section-modern p {
    font-size: 20px;
    margin: 0 0 40px;
    color: rgba(255,255,255,0.95);
}

.cta-buttons-modern {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-primary-modern {
    background: white;
    color: #667eea;
}

.btn-primary-modern:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255,255,255,0.4);
}

.btn-secondary-modern {
    background: rgba(255,255,255,0.2);
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid white;
}

.btn-secondary-modern:hover {
    background: white;
    color: #667eea;
    transform: translateY(-5px) scale(1.05);
}

.btn-icon {
    font-size: 24px;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid rgba(255,255,255,0.3);
}

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

.stat-number {
    font-size: 38px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

.stat-divider {
    width: 2px;
    background: rgba(255,255,255,0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid-modern,
    .values-grid-modern,
    .audience-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .approach-grid,
    .why-grid-modern {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-article {
        padding: 0 20px;
    }

    .about-article h1 {
        font-size: 36px;
    }

    .hero-box {
        padding: 40px 25px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-lead {
        font-size: 22px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-philosophy {
        font-size: 17px;
        padding: 25px 20px;
    }

    .content-section {
        padding: 40px 25px;
    }

    .section-header-fancy h2 {
        font-size: 30px;
    }

    .services-grid-modern,
    .values-grid-modern,
    .audience-grid-modern,
    .approach-grid,
    .why-grid-modern {
        grid-template-columns: 1fr;
    }

    .cta-background {
        padding: 50px 25px;
    }

    .cta-section-modern h2 {
        font-size: 32px;
    }

    .cta-buttons-modern {
        flex-direction: column;
        align-items: center;
    }

    .btn-modern {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .cta-stats {
        flex-direction: column;
        gap: 25px;
    }

    .stat-divider {
        display: none;
    }
}