/* Hakkımızda Sayfası Stilleri */
:root {
    --red: #e20613;
    --dark: #333;
    --white: #fff;
    --light-bg: #f8f8f8;
    --gray: #666;
    --light-gray: #ddd;
}

/* Hero Bölümü */
.about-hero {
    position: relative;
    background-color: var(--light-bg);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    z-index: 2;
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
}

.about-breadcrumb {
    font-size: 1.1rem;
    color: var(--gray);
}

.about-breadcrumb a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-breadcrumb a:hover {
    color: var(--red);
}

.about-breadcrumb span {
    color: var(--red);
    font-weight: 500;
}

/* Hero Arka Plan Şekli */
.about-hero-shape {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    z-index: 1;
}

.about-hero-shape svg {
    width: 100%;
    height: 100%;
}

.about-hero-shape svg path {
    fill: var(--red);
    opacity: 0.8;
}

/* Hikayemiz Bölümü */
.our-story-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    z-index: 2;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.story-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.story-image {
    flex: 0 0 45%;
    position: relative;
}

.story-image img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.story-image-bg {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120%;
    height: 120%;
    z-index: 1;
}

.story-image-bg svg {
    width: 100%;
    height: 100%;
}

.story-image-bg svg path {
    fill: var(--red);
    opacity: 0.1;
}

.story-content {
    flex: 0 0 50%;
}

.story-content h2 {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 30px;
}

.story-content h2 span {
    color: var(--red);
}

.story-text p {
    margin-bottom: 20px;
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Vizyon ve Misyon Bölümü */
.vision-mission-section {
    padding: 100px 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.vm-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.vm-item {
    flex: 1;
    padding: 40px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background-color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(226, 6, 19, 0.2);
}

.vm-item h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.vm-item p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* VM Arka plan süslemeleri */
.vm-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.vm-shape {
    position: absolute;
    width: 350px;
    height: 350px;
}

.vm-shape svg {
    width: 100%;
    height: 100%;
}

.vm-shape svg path {
    fill: var(--red);
    opacity: 0.05;
}

.vm-decoration-image {
    position: absolute;
    width: 60%;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.top-right {
    top: -100px;
    right: -100px;
}

.top-right .vm-decoration-image {
    top: 30%;
    right: 30%;
    transform: rotate(15deg);
    animation: floatAnimation1 15s infinite ease-in-out;
}

/* Değerlerimiz Bölümü */
.values-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-header h2 {
    font-size: 3rem;
    color: var(--red);
    margin-bottom: 15px;
}

.values-header p {
    font-size: 1.2rem;
    color: var(--gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.value-item {
    padding: 30px;
    background-color: var(--light-bg);
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(226, 6, 19, 0.2);
}

.value-item h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.value-item p {
    color: var(--gray);
    line-height: 1.6;
}

/* Values Arka plan süslemeleri */
.values-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.values-shape {
    position: absolute;
    width: 350px;
    height: 350px;
}

.values-shape svg {
    width: 100%;
    height: 100%;
}

.values-shape svg path {
    fill: var(--red);
    opacity: 0.05;
}

.values-decoration-image {
    position: absolute;
    width: 60%;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.bottom-left {
    bottom: -100px;
    left: -100px;
}

.bottom-left .values-decoration-image {
    bottom: 30%;
    left: 30%;
    transform: rotate(-10deg);
    animation: floatAnimation2 15s infinite ease-in-out;
}

/* Başarı Rakamlarımız Bölümü */
.numbers-section {
    padding: 100px 0;
    background-color: var(--light-bg);
    position: relative;
    z-index: 2;
}

.numbers-header {
    text-align: center;
    margin-bottom: 60px;
}

.numbers-header h2 {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.numbers-header h2 span {
    color: var(--red);
}

.numbers-header p {
    font-size: 1.2rem;
    color: var(--gray);
}

.numbers-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.number-item {
    text-align: center;
    padding: 30px;
    min-width: 200px;
}

.number-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.number-value span {
    font-size: 2rem;
    font-weight: 500;
    margin-left: 5px;
}

.number-label {
    font-size: 1.2rem;
    color: var(--dark);
    font-weight: 500;
}

/* Ekibimiz Bölümü */
.team-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-header h2 {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.team-header h2 span {
    color: var(--red);
}

.team-header p {
    font-size: 1.2rem;
    color: var(--gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.team-member {
    display: flex;
    background-color: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-photo {
    flex: 0 0 40%;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-photo img {
    transform: scale(1.05);
}

.member-info {
    flex: 1;
    padding: 25px;
}

.member-info h3 {
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.member-title {
    font-size: 1.1rem;
    color: var(--red);
    font-weight: 500;
    margin-bottom: 15px;
}

.member-info p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.member-social {
    display: flex;
    gap: 15px;
}

.member-social a {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.member-social a:hover {
    background-color: var(--red);
    color: var(--white);
    transform: translateY(-5px);
}

/* Team Arka plan süslemeleri */
.team-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.team-shape {
    position: absolute;
    width: 350px;
    height: 350px;
    opacity: 0.05;
}

.team-shape svg {
    width: 100%;
    height: 100%;
}

.team-shape svg path {
    fill: var(--red);
}

/* Animasyonlar */
@keyframes floatAnimation1 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(15deg);
    }
    25% {
        transform: translateY(15px) translateX(10px) rotate(17deg);
    }
    50% {
        transform: translateY(5px) translateX(20px) rotate(14deg);
    }
    75% {
        transform: translateY(10px) translateX(5px) rotate(16deg);
    }
}

@keyframes floatAnimation2 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(-10deg);
    }
    25% {
        transform: translateY(-10px) translateX(15px) rotate(-9deg);
    }
    50% {
        transform: translateY(-5px) translateX(5px) rotate(-11deg);
    }
    75% {
        transform: translateY(-15px) translateX(10px) rotate(-8deg);
    }
}

/* Responsive Düzenlemeler */
@media (max-width: 992px) {
    .story-wrapper {
        flex-direction: column;
    }

    .story-image,
    .story-content {
        flex: 0 0 100%;
    }

    .vm-wrapper {
        flex-direction: column;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0;
    }

    .our-story-section,
    .vision-mission-section,
    .values-section,
    .numbers-section,
    .team-section {
        padding: 80px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .story-content h2,
    .numbers-header h2,
    .values-header h2,
    .team-header h2 {
        font-size: 2.3rem;
    }

    .vm-item {
        padding: 30px;
    }

    .vm-icon {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }

    .team-member {
        flex-direction: column;
    }

    .member-photo {
        flex: 0 0 250px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 60px 0;
    }

    .our-story-section,
    .vision-mission-section,
    .values-section,
    .numbers-section,
    .team-section {
        padding: 60px 0;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .story-content h2,
    .vm-item h2,
    .numbers-header h2,
    .values-header h2,
    .team-header h2 {
        font-size: 2rem;
    }

    .numbers-grid {
        flex-direction: column;
    }

    .number-item {
        min-width: 100%;
    }
}