/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6B4C9A;
    --primary-light: #8B6BBF;
    --primary-dark: #4A3370;
    --secondary: #E8D5F5;
    --accent: #F0A500;
    --bg: #FAFBFF;
    --bg-alt: #F4F0FA;
    --text: #2D2D3A;
    --text-light: #6B6B80;
    --text-lighter: #9B9BB0;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(107, 76, 154, 0.08);
    --shadow-md: 0 8px 30px rgba(107, 76, 154, 0.12);
    --shadow-lg: 0 20px 60px rgba(107, 76, 154, 0.15);
    --shadow-xl: 0 30px 80px rgba(107, 76, 154, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(107, 76, 154, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(107, 76, 154, 0.4);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.logo-icon {
    font-size: 1.4rem;
    color: var(--primary);
}

.logo-text {
    font-family: 'Inter', sans-serif;
    color: var(--text);
}

.logo-highlight {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-light);
    bottom: -100px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-3deg); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.2rem;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.2;
}

.title-highlight {
    color: var(--primary);
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--secondary);
    z-index: -1;
    border-radius: 4px;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 500px;
    line-height: 1.8;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
}

.hero-blob {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--secondary), rgba(107, 76, 154, 0.1));
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

.hero-card {
    position: absolute;
    background: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: cardFloat 4s ease-in-out infinite;
}

.card-1 { top: 60px; right: 20px; animation-delay: 0s; }
.card-2 { bottom: 140px; left: 0; animation-delay: 1.5s; }
.card-3 { bottom: 50px; right: 40px; animation-delay: 3s; }

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.card-icon { font-size: 1.5rem; }
.card-text { font-weight: 500; font-size: 0.9rem; color: var(--text); }

/* ===== SECTION COMMON ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== PSIKOLOG LIST ===== */
.psikologlar {
    background: var(--bg-alt);
    padding-top: 120px;
}

.psikolog-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.psikolog-card {
    display: grid;
    grid-template-columns: auto 200px 1fr;
    gap: 28px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    border: 1px solid rgba(107, 76, 154, 0.06);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.psikolog-card:nth-child(1) { animation-delay: 0.05s; }
.psikolog-card:nth-child(2) { animation-delay: 0.1s; }
.psikolog-card:nth-child(3) { animation-delay: 0.15s; }
.psikolog-card:nth-child(4) { animation-delay: 0.2s; }
.psikolog-card:nth-child(5) { animation-delay: 0.25s; }
.psikolog-card:nth-child(6) { animation-delay: 0.3s; }
.psikolog-card:nth-child(7) { animation-delay: 0.35s; }
.psikolog-card:nth-child(8) { animation-delay: 0.4s; }
.psikolog-card:nth-child(9) { animation-delay: 0.45s; }
.psikolog-card:nth-child(10) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.psikolog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(107, 76, 154, 0.15);
}

.psikolog-rank {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 60px;
    text-align: center;
    opacity: 0.8;
}

.psikolog-image {
    width: 200px;
    height: 240px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.psikolog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.psikolog-card:hover .psikolog-image img {
    transform: scale(1.05);
}

.psikolog-info h3 {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 8px;
}

.psikolog-specialty {
    display: inline-block;
    padding: 4px 14px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.psikolog-desc {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== CRITERIA SECTION ===== */
.criteria {
    background: var(--bg);
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.criteria-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(107, 76, 154, 0.05);
}

.criteria-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.criteria-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.criteria-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text);
}

.criteria-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.7);
    padding: 50px 0 30px;
}

.footer-content {
    text-align: center;
    margin-bottom: 30px;
}

.footer-content .logo {
    justify-content: center;
    margin-bottom: 12px;
}

.footer-content .logo-text {
    color: var(--white);
}

.footer-content p {
    font-size: 0.9rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.6rem; }
    .criteria-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 24px;
        box-shadow: var(--shadow-md);
        border-radius: 0 0 var(--radius-md) var(--radius-md);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title { font-size: 2.2rem; }
    .hero-desc { margin: 0 auto 36px; }
    .hero-visual { display: none; }

    .section-title { font-size: 1.9rem; }

    .psikolog-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 24px;
    }

    .psikolog-rank {
        font-size: 1.8rem;
    }

    .psikolog-image {
        width: 160px;
        height: 200px;
        margin: 0 auto;
    }

    .criteria-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .btn { padding: 12px 24px; font-size: 0.9rem; }
}

/* ===== SEO CONTENT SECTION ===== */
.seo-content {
    background: var(--bg-alt);
    padding: 80px 0;
}

.seo-article h2 {
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 20px;
}

.seo-article h3 {
    font-size: 1.3rem;
    color: var(--text);
    margin-top: 28px;
    margin-bottom: 12px;
}

.seo-article p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 16px;
    max-width: 800px;
}

/* ===== FAQ SECTION ===== */
.faq {
    background: var(--bg);
    padding: 100px 0;
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(107, 76, 154, 0.08);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    padding: 20px 28px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 300;
    transition: var(--transition);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item[open] summary {
    color: var(--primary);
}

.faq-item p {
    padding: 0 28px 20px;
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== RANDEVU BUTTON ===== */
.btn-randevu {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 3px 12px rgba(107, 76, 154, 0.25);
}

.btn-randevu:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 76, 154, 0.35);
}
