﻿:root {
    --primary: #6a1b6d;
    --primary-light: #8e4a91;
    --secondary: #f4f6fb;
    --accent: #f8b739;
    --text: #333;
    --text-light: #666;
    --white: #fff;
    --shadow: 0 10px 25px rgba(0,0,0,.08);
    --radius: 12px;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

section {
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, var(--primary), #8a3a8d, #a95aac);
    color: var(--white);
    text-align: center;
    padding: 140px 20px 100px;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none" opacity="0.05"><path d="M0,0 L100,0 L100,100 Z" fill="white"/></svg>');
        background-size: cover;
    }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--primary);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--accent);
    font-size: 16px;
    margin-top: 20px;
}

    .cta-button:hover {
        background-color: transparent;
        color: var(--accent);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

/* HEADINGS */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

h2 {
    color: var(--primary);
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    
    text-align:center;
}

    h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: var(--accent);
        border-radius: 2px;
    }

h3 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* HAKKIMIZDA */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media(max - width:992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

.about-text p {
    margin-bottom: 20px;
    font-size: 17px;
}

.methodology-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

    .methodology-list li {
        padding: 12px 0 12px 40px;
        position: relative;
        margin-bottom: 10px;
        border-bottom: 1px solid #eee;
    }

        .methodology-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 12px;
            width: 24px;
            height: 24px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

/* VİZYON */
.vision-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #e8edf7 100%);
    position: relative;
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
}

.vision-quote {
    font-size: 28px;
    font-style: italic;
    color: var(--primary);
    line-height: 1.5;
    position: relative;
    padding: 0 40px;
}

    .vision-quote::before,
    .vision-quote::after {
        content: '"';
        font-size: 60px;
        color: var(--accent);
        opacity: 0.3;
        position: absolute;
        line-height: 1;
    }

    .vision-quote::before {
        top: -20px;
        left: 0;
    }

    .vision-quote::after {
        bottom: -40px;
        right: 0;
    }

/* AMAÇ ve NE ZAMAN */
.feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

    .feature-list li {
        padding: 15px 15px 15px 50px;
        position: relative;
        background-color: var(--white);
        border-radius: var(--radius);
        box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        transition: var(--transition);
    }

        .feature-list li:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        }

        .feature-list li::before {
            content: '•';
            position: absolute;
            left: 20px;
            top: 15px;
            color: var(--primary);
            font-size: 24px;
        }

/* HİZMET ALANLARI */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.12);
        border-top-color: var(--accent);
    }

    .service-card h3 {
        margin-bottom: 15px;
        font-size: 20px;
        color: var(--primary);
    }

    .service-card p {
        color: var(--text-light);
        flex-grow: 1;
    }

/* YÖNETİM KADROSU */
/* ===============================
   Yönetim Kadrosu
================================ */

.team-section {
    background-color: var(--secondary);
    padding: 80px 20px;
}

.team-grid {
    display: grid;
    /* 3'lü grid yapısı için değiştirildi */
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===============================
   Kart Yapısı
================================ */

.team-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }

/* ===============================
   Görsel Alan
================================ */

.team-img-container {
    position: relative;
    height: 280px; /* Kartlar 3'lü olunca biraz küçülttüm */
    background-color: #f4f4f4;
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    /* background-size HTML inline'dan geliyor */
}

/* Overlay */
.img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, transparent 60%, rgba(0,0,0,0.3) 100% );
    pointer-events: none;
}

/* Sosyal */
.team-social {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 2;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease;
}

    .team-social a:hover {
        background-color: var(--accent);
        transform: scale(1.1);
    }

/* ===============================
   İçerik Alanı
================================ */

.team-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

    .team-info h3 {
        color: var(--primary);
        font-size: 22px; /* Biraz küçülttüm */
        margin-bottom: 5px;
        font-weight: 700;
    }

.team-position {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.team-education {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 13px;
}

    .team-education i {
        color: var(--primary);
    }

.team-bio {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    flex-grow: 1;
    margin-bottom: 16px;
}

.team-experience {
    display: flex;
    flex-direction: column; /* Dikey hizaya getirdim */
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.exp-item {
    display: flex;
    align-items: flex-start; /* İkon ve metni üstten hizaladım */
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.4;
}

    .exp-item i {
        color: var(--primary);
        margin-top: 2px; /* İkonu biraz aşağı indirdim */
        flex-shrink: 0;
    }

/* ===============================
   Responsive Düzenlemeler
================================ */

/* Tablet boyutunda 2'li grid */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .team-img-container {
        height: 260px;
    }
}

/* Mobil boyutunda 1'li grid */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
    }

    .team-img-container {
        height: 300px;
    }
}

/* REFERANSLAR SLIDER */
/* REFERANSLAR SLIDER */
.references-section {
    background-color: #111;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

    .references-section h2 {
        color: var(--white);
        text-align: center;
        margin-bottom: 40px;
    }

.slider-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    margin-bottom: 30px;
}

.slider-track {
    display: flex;
    gap: 60px;
    width: max-content;
}

.slider-track-1 {
    animation: scroll 80s linear infinite;
}

.slider-track-2 {
    animation: scroll 90s linear infinite reverse; /* Ters yönde ve farklı hızda */
}

.slider-container:hover .slider-track {
    animation-play-state: paused;
}

.slider-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d7d7d7;
    border-radius: 10px;
    padding: 20px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

    .slider-item:hover {
        transform: scale(1.1);
        z-index: 10;
    }

.slider-img {
    height: 80px; /* Daha küçük boyut */
    width: auto;
    max-width: 120px;
    /*filter: grayscale(100%);*/
    opacity: 0.7;
    transition: var(--transition);
}

.slider-item:hover .slider-img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .references-section {
        padding: 40px 0;
    }

    .slider-container {
        padding: 10px 0;
        margin-bottom: 20px;
    }

    .slider-item {
        padding: 15px 20px;
    }

    .slider-img {
        height: 60px;
        max-width: 100px;
    }

    .slider-track {
        gap: 40px;
    }

    .slider-track-1 {
        animation: scroll 60s linear infinite;
    }

    .slider-track-2 {
        animation: scroll 70s linear infinite reverse;
    }
}
/*.references-section {
    background-color: #111;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

    .references-section h2 {
        color: var(--white);
        text-align: center;
        margin-bottom: 40px;
    }

.slider-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.slider-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scroll 100s linear infinite;
}

.slider-container:hover .slider-track {
    animation-play-state: paused;
}

.slider-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d7d7d7;
    border-radius: 10px;
    padding: 20px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

    .slider-item:hover {
        transform: scale(1.5);
    }

.slider-img {
    height: 100px;
    filter: grayscale(0%);
    opacity: 0.8;
    transition: var(--transition);
}

.slider-item:hover .slider-img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}*/

/* FOOTER */
footer {
    background: #111;
    color: #fff;
    padding: 70px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-logo p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-contact h4,
.footer-links h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

    .footer-contact h4::after,
    .footer-links h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background-color: var(--accent);
    }

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.8;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent);
    width: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

    .footer-links a:hover {
        color: var(--accent);
        padding-left: 5px;
    }

.footer-links i {
    margin-right: 10px;
    color: var(--accent);
    width: 20px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 14px;
}

/* RESPONSIVE */
@media(max - width:768px) {
    .hero h1 {
        font-size: 36px
    }

    .hero p {
        font-size: 18px
    }

    h2 {
        font-size: 30px
    }

    .vision-quote {
        font-size: 22px
    }

    .slider-track {
        gap: 40px
    }

    .slider-item {
        padding: 15px 20px
    }

    .slider-img {
        height: 50px
    }
}

@media(max - width:480px) {
    section {
        padding: 60px 20px
    }

    .hero {
        padding: 100px 20px 60px
    }

        .hero h1 {
            font-size: 28px
        }

    h2 {
        font-size: 26px
    }

    .services-grid {
        grid-template-columns: 1fr
    }

    .team-grid {
        grid-template-columns: 1fr
    }
}


/* Hakkımızda bölümü için ek CSS */
.service-highlights {
    margin-top: 20px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    background-color: rgba(106, 27, 109, 0.03);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

    .service-item:hover {
        background-color: rgba(106, 27, 109, 0.08);
        border-left-color: var(--primary);
        transform: translateX(5px);
    }

.service-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
}

.service-detail h4 {
    margin: 0 0 5px 0;
    color: var(--primary);
    font-size: 17px;
}

.service-detail p {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
}

.full-services-note {
    margin-top: 25px;
    padding: 15px;
    background-color: rgba(248, 183, 57, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
    font-size: 15px;
}

    .full-services-note i.fa-arrow-right {
        color: var(--accent);
        margin-right: 10px;
    }

.inline-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    margin-left: 5px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

    .inline-link:hover {
        color: var(--accent);
        text-decoration: underline;
    }

    .inline-link i {
        margin-left: 5px;
        font-size: 12px;
    }

/* Responsive düzenlemeler */
@media (max-width: 992px) {
    .service-item {
        padding: 12px;
    }

    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .service-highlights {
        margin-top: 15px;
    }

    .full-services-note {
        padding: 12px;
        font-size: 14px;
    }
}

