/* Genel Ayarlar */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.8;
    color: #444;
    /* Hareketli gradyan arkaplan */
    background: linear-gradient(-45deg, #e0f7fa, #ffffff, #add8e6, #fffafa);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

main {
    flex: 1;
}

/* Tüm içeriği ortalamak için bir kapsayıcı */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

/* Header ve Navigasyon */
header {
    background: #fff;
    padding: 1rem 0;
    border-bottom: 3px solid #ff7f50;
    display: flex;
    justify-content: center;
    /* Logo ve menüyü ortalamak için */
    align-items: center;
    padding: 10px 40px;
    gap: 50px;
    /* Logo ve menü arasına boşluk bırakmak için */
}

header .logo {
    margin: 0;
}

header .logo img {
    /* Logo görselinin boyutu ayarlandı */
    max-width: 150px;
    height: auto;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #ff7f50;
}

/* Ana Sayfa Başlık Alanı */
.hero-section {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 120px 0;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 40px;
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.primary-btn {
    background-color: #ff7f50;
    color: #fff;
}

.primary-btn:hover {
    background-color: #e56a42;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.secondary-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    margin-left: 15px;
}

.secondary-btn:hover {
    background-color: #fff;
    color: #ff7f50;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* İstatistik Bölümü */
.stats-section {
    padding: 60px 0;
}

.stats-container {
    display: flex;
    justify-content: center;
    text-align: center;
    background: #fdf5e6;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.stat-item {
    margin: 0 50px;
}

.stat-item h2 {
    font-size: 44px;
    color: #ff7f50;
    margin-bottom: 5px;
}

.stat-item p {
    color: #555;
    font-size: 19px;
}

/* GENEL BÖLÜM BAŞLIKLARI VE ALT BAŞLIKLARI */
.section-title {
    text-align: center;
    font-size: 40px;
    color: #333;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Yorumlar (Testimonials) Bölümü */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    padding: 25px;
    width: 280px;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.review-title {
    font-weight: 700;
    font-size: 20px;
    color: #ff7f50;
    margin-bottom: 10px;
}

.review-text {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    height: 90px;
    /* Yorum kartlarını eşitlemek için */
    overflow: hidden;
}

.psychologist-name {
    text-align: right;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    text-decoration: underline;
    font-size: 14px;
}

/* Nasıl Kullanılır Bölümü */
.how-it-works-section {
    padding: 80px 0;
    background-color: rgba(255, 127, 80, 0.1);
    /* Açık turuncu arka plan */
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    text-align: center;
    flex-wrap: wrap;
}

.step-card {
    width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #ff7f50;
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.step-card h3 {
    margin-top: 0;
    color: #333;
}

.step-card p {
    color: #666;
}

/* Detaylı Footer */
.detailed-footer {
    background: #2c2c2c;
    color: #fff;
    padding: 40px 0;
    text-align: center;
    margin-top: auto;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff7f50;
    text-decoration: underline;
}

.footer-disclaimer {
    color: #ccc;
    font-size: 12px;
    margin: 20px 0;
    padding: 0 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.copyright {
    font-size: 14px;
    color: #aaa;
}

/* Hakkımızda Sayfası Stilleri */
.about-section {
    padding: 80px 0;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: auto;
}

.about-content h1 {
    font-size: 42px;
    color: #ff7f50;
}

.about-content p {
    font-size: 18px;
    text-align: justify;
    margin-bottom: 20px;
}

/* İletişim Sayfası Stilleri */
.contact-section {
    padding: 80px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
}

.contact-info,
.contact-form {
    width: 45%;
    min-width: 300px;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.contact-info h2,
.contact-form h2 {
    font-size: 32px;
    color: #ff7f50;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    font-weight: 600;
    color: #555;
}

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

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

.contact-form button {
    background-color: #ff7f50;
    color: #fff;
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #e56a42;
}

.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    header .logo img {
        max-width: 120px;
        /* Mobil için logo boyutu küçültüldü */
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
    }

    header nav ul li {
        margin: 10px 0;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .stats-container {
        flex-direction: column;
    }

    .stat-item {
        margin: 15px 0;
    }

    .testimonials-container {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        width: 100%;
    }

    .how-it-works-section .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-section {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }
}
/* Ödeme ve güvenlik logoları */
.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin: 18px 0 6px;
    flex-wrap: wrap;
}
.payment-logos img {
    height: 28px;
    filter: grayscale(10%);
    opacity: 0.95;
    transition: transform .2s ease, opacity .2s ease, filter .2s ease;
}
.payment-logos img:hover {
    transform: translateY(-2px);
    opacity: 1;
    filter: none;
}
