/* ======================================
   HAKKIMIZDA SAYFASI CSS
   ====================================== */

/* Hero Banner */
.about-hero {
    position: relative;
    height: 450px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero-pattern.png');
    opacity: 0.1;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230, 0, 35, 0.1), transparent);
}

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

.hero-badge {
    display: inline-block;
    background: rgba(230, 0, 35, 0.9);
    color: white;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(230, 0, 35, 0.4);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 1.6;
}

/* Biz Kimiz Bölümü */
.about-story {
    padding: 100px 0;
    background: url('../images/hakkimizda-arkaplan.jpg') center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.about-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(2px);
}

.about-story .row {
    position: relative;
    z-index: 2;
}

.story-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-image {
    width: 100%;
    height: auto;
    display: block;
}

.story-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #e60023, #c00020);
    padding: 25px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(230, 0, 35, 0.4);
}

.badge-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-content {
    padding-left: 40px;
}

.section-label {
    display: inline-block;
    background: #f8f9fa;
    color: #e60023;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.2;
}

.story-text p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.9;
    margin-bottom: 20px;
}

.story-text p strong {
    color: #e60023;
    font-weight: 600;
}

/* Vizyon & Misyon */
.vision-mission {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.vm-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.vision-card {
    border-color: #e60023;
}

.vision-card:hover {
    border-color: #c00020;
}

.mission-card {
    border-color: #3498db;
}

.mission-card:hover {
    border-color: #2980b9;
}

.vm-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e60023, #c00020);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mission-card .vm-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.vm-icon i {
    font-size: 2rem;
    color: white;
}

.vm-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
}

.vm-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vm-item {
    display: flex;
    gap: 15px;
}

.vm-bullet {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background: #e60023;
    border-radius: 50%;
    margin-top: 8px;
}

.mission-card .vm-bullet {
    background: #3498db;
}

.vm-item p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin: 0;
}

.vm-item p strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Neden Biz */
.why-us {
    padding: 100px 0;
    background: url('../images/hakkimizda-arkaplan.jpg') center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(2px);
}

.why-us .container {
    position: relative;
    z-index: 2;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.section-description {
    font-size: 1.1rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.why-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 2;
}

.why-card:hover {
    border-color: #e60023;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(230, 0, 35, 0.15);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e60023, #c00020);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-icon i {
    font-size: 2rem;
    color: white;
}

.why-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.why-card p {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.7;
    margin: 0;
}

.why-card p strong {
    color: #e60023;
}

/* Değerlerimiz */
.values {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position: relative;
}

.values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/pattern.png');
    opacity: 0.05;
}

.values .section-label {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.values .section-title {
    color: white;
}

.values .section-description {
    color: rgba(255, 255, 255, 0.8);
}

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

.value-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    gap: 30px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #e60023;
    transform: translateY(-5px);
}

.value-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e60023, #c00020);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.value-content {
    flex: 1;
}

.value-icon {
    width: 50px;
    height: 50px;
    background: rgba(230, 0, 35, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.value-icon i {
    font-size: 1.5rem;
    color: #e60023;
}

.value-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.value-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0;
}

.value-content p strong {
    color: white;
    font-weight: 600;
}

/* CTA Section */
.about-cta {
    padding: 80px 0;
    background: url('../images/hakkimizda-arkaplan.jpg') center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(2px);
}

.about-cta .container {
    position: relative;
    z-index: 2;
}

.cta-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.1rem;
    color: #7f8c8d;
    line-height: 1.7;
    margin: 0;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #e60023, #c00020);
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 0, 35, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 0, 35, 0.5);
    color: white;
}

.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    color: white;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
        white-space: normal;
    }

    .story-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .about-hero {
        height: 350px;
    }

    .hero-title {
        font-size: 2.2rem;
        white-space: normal;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-story {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .story-text p {
        font-size: 1rem;
    }

    .vm-card {
        padding: 30px;
    }

    .vm-title {
        font-size: 1.6rem;
    }

    .why-us,
    .values {
        padding: 60px 0;
    }

    .cta-box {
        padding: 30px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .btn-cta-primary,
    .btn-cta-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 20px;
    }

    .hero-title {
        font-size: 1.8rem;
        white-space: normal;
    }

    .story-badge {
        bottom: 15px;
        right: 15px;
        padding: 15px 20px;
    }

    .badge-number {
        font-size: 2rem;
    }

    .value-item {
        padding: 25px;
        flex-direction: column;
        text-align: center;
    }

    .value-number {
        margin: 0 auto;
    }

    .value-icon {
        margin: 0 auto 15px;
    }
}
