
/* Genel Stil ve Resetleme */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    color: #212529; /* Koyu gri metin */
    background-color: #f8f9fa; /* Daha açık bir arka plan */
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: #0d6efd; /* Daha canlı bir mavi */
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #0b5ed7; /* Mavi hover */
}

h1, h2, h3 {
    color: #212529;
}

/* Header (Top Bar) */
.top-bar {
    background-color: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #e7e7e7;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5em;
    font-weight: 700;
    color: #333;
}

.top-bar nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

.top-bar nav ul li {
    margin-left: 25px;
}

.top-bar nav ul li a {
    color: #555;
    font-weight: 500;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: color 0.3s, border-bottom-color 0.3s;
}

.top-bar nav ul li a:hover,
.top-bar nav ul li a.active {
    color: #0d6efd;
    border-bottom-color: #0d6efd;
}

/* Hero Section */
.hero {
    background-color: #e9ecef;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #555;
}

.btn {
    background-color: #0d6efd;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.3s;
}

.btn:hover {
    background-color: #0b5ed7;
    color: #fff;
    transform: translateY(-2px);
}

/* Info Section */
.info-section {
    padding: 60px 0;
    text-align: center;
}

.info-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.info-cards {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    flex-basis: 30%;
}

.card h3 {
    margin-top: 0;
    color: #20c997; /* Yeni vurgu rengi: Turkuaz */
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .social-links a {
    color: #fff;
    margin-left: 15px;
}

.footer .social-links a:hover {
    color: #0d6efd;
}

/* Page Specific Styles */
.page-header {
    background-color: #f1f3f5;
    padding: 40px 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2.8em;
}

.content-section {
    padding: 20px 0 60px;
}

.content-section p {
    margin-bottom: 1.5em;
    font-size: 1.1em;
}

/* İletişim Formu */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-btn:hover {
    background: #0b5ed7;
}

#form-status {
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
}

/* SSS (Accordion) */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}
.accordion-item {
    background-color: #fff;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.accordion-header {
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 20px;
    font-size: 1.1em;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.accordion-header::after {
    content: '+';
    font-size: 1.5em;
    color: #0d6efd;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-header::after {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 20px;
}
.accordion-content p {
    margin: 0;
    padding-bottom: 20px;
}

/* Yeni Eklenen Bölümler ve Stiller */

/* Genel Amaçlı */
.section-bg {
    background-color: #fff;
    padding: 60px 0;
}

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

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
    width: auto;
    display: block;
}

.section-title::after {
    content: '';
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: #0d6efd;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.media-content .section-title {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: auto;
    position: relative;
}

.media-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #555;
}

/* Hizmet Detayları */
.service-detail-item {
    margin-bottom: 40px;
}
.service-detail-item h3 {
    font-size: 1.8em;
    color: #0b5ed7; /* Koyu mavi */
    margin-bottom: 15px;
}

/* Hakkımızda Sayfası - Ekip */
.team-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.team-member {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    flex-basis: 250px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #0d6efd;
}
.team-member h4 {
    margin: 10px 0 5px 0;
    font-size: 1.2em;
}
.team-member span {
    color: #777;
    font-style: italic;
}

/* Süreç Adımları */
.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
}
.step {
    text-align: center;
    flex: 1;
}
.step-icon {
    width: 80px;
    height: 80px;
    background-color: #e8f9f5; /* Yeni vurgu rengi - açık ton */
    color: #20c997; /* Yeni vurgu rengi - koyu ton */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    margin: 0 auto 20px auto;
    font-weight: bold;
}
.step h4 {
    font-size: 1.3em;
    margin-bottom: 10px;
}

/* Öğrenci Yorumları */
.testimonial {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    margin: 0 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.testimonial blockquote {
    margin: 0;
    font-style: italic;
    color: #555;
    border-left: 4px solid #20c997; /* Yeni vurgu rengi */
    padding-left: 20px;
}
.testimonial-author {
    margin-top: 20px;
    text-align: right;
}
.testimonial-author strong {
    display: block;
}

/* YENİ EKLENEN GÖRSEL STİLLER */

/* İki Sütunlu Yapı */
.media-section {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 40px;
}

.media-section .media-image {
    flex: 1;
    max-width: 450px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.media-section .media-content {
    flex: 1.2;
}

/* Resim sağda olduğunda sıralamayı tersine çevir */
.media-section.image-right {
    flex-direction: row-reverse;
}

/* Hizmetler Sayfası İkon Listesi */
.service-feature-list {
    list-style: none;
    padding-left: 0;
}

.service-feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px; /* Artan boşluk */
    font-size: 1.1em;
}

.service-feature-list .icon {
    font-size: 1.2em;
    color: #20c997; /* Turkuaz vurgu rengi */
    margin-right: 15px;
    margin-top: 4px;
    width: 20px; /* İkonlar için sabit genişlik */
    text-align: center;
}

.service-feature-list strong {
    flex-basis: 200px; /* Başlıklar için sabit genişlik */
    flex-shrink: 0; /* Küçülmeyi engelle */
    padding-right: 20px; /* Başlık ve açıklama arası boşluk */
}

.service-feature-list span {
    flex-basis: 0;
    flex-grow: 1; /* Kalan tüm alanı doldur */
}


/* Animasyonlar */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.card, .team-member, .step, .testimonial {
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover, .team-member:hover, .step:hover, .testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* RESPONSIVE TASARIM */
@media (max-width: 1024px) {
    .container {
        max-width: 95vw;
        padding: 0 10px;
    }
    .info-cards, .process-steps, .team-section {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    .media-section {
        flex-direction: column !important;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
    .media-section .media-image {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }
    .media-content {
        align-items: center;
    }
}

@media (max-width: 700px) {
    .top-bar .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        padding: 0 8px;
        min-height: 48px;
        height: 48px;
    }
    .logo {
        font-size: 1.2em;
        padding: 0;
    }
    .menu-toggle {
        margin-left: auto;
        padding: 0;
        background: none;
        border: none;
        display: flex;
        align-items: center;
        height: 38px;
    }
    .menu-toggle svg {
        display: block;
        width: 28px;
        height: 28px;
    }
    .top-bar nav ul.main-menu {
        position: absolute;
        top: 48px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        padding: 0;
        margin: 0;
        z-index: 1100;
        display: none;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity 0.3s cubic-bezier(.4,0,.2,1), transform 0.3s cubic-bezier(.4,0,.2,1);
    }
    .top-bar nav ul.main-menu.open {
        display: flex;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .top-bar nav ul.main-menu li {
        margin: 0;
        border-bottom: 1px solid #eee;
        width: 100%;
        text-align: left;
    }
    .top-bar nav ul.main-menu li:last-child {
        border-bottom: none;
    }
    .top-bar .container {
        position: relative;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 4px;
    }
    .section-title {
        font-size: 1.2em;
    }
    .hero h1 {
        font-size: 1.2em;
    }
    .btn, .form-btn {
        padding: 10px 10px;
        font-size: 1em;
    }
    .card, .testimonial, .team-member {
        padding: 10px;
    }
    .contact-form {
        padding: 8px;
    }
    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1em;
    }
    .service-feature-list strong {
        flex-basis: 80px;
        padding-right: 5px;
        font-size: 0.95em;
    }
}

/* Menü açıkken hamburger animasyonu (isteğe bağlı) */
.menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

