/* =============================================
   Özel Psikoloji İzmit - Ana Stil Dosyası
   ============================================= */

:root {
    --sage-green: #77c056;
    --soft-terracotta: #D4A59A;
    --warm-cream: #F5F1E8;
    --deep-blue: #2B4876;
    --soft-blue: #A8BDD6;
    --warm-white: #FFFBF5;
    --charcoal: #3A3A3A;
    --dusty-rose: #D4A5A5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--charcoal);
    background: var(--warm-white);
    overflow-x: hidden;
    line-height: 1.7;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
}

.img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =============================================
   Header (Homepage - absolute)
   ============================================= */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
}

nav {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    opacity: 0;
    animation: fadeInDown 1s ease 0.2s forwards;
}

@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }

    from {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.logo-img {
    height: 120px;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    opacity: 0;
    animation: fadeInDown 1s ease forwards;
    transition: color 0.3s ease;
}

.nav-menu li:nth-child(1) a {
    animation-delay: 0.3s;
}

.nav-menu li:nth-child(2) a {
    animation-delay: 0.4s;
}

.nav-menu li:nth-child(3) a {
    animation-delay: 0.5s;
}

.nav-menu li:nth-child(4) a {
    animation-delay: 0.6s;
}

.nav-menu li:nth-child(5) a {
    animation-delay: 0.7s;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--sage-green);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover::before {
    width: 100%;
}

.header-cta {
    background: var(--sage-green);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(135, 168, 120, 0.3);
    opacity: 0;
    animation: fadeInDown 1s ease 0.8s forwards;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(135, 168, 120, 0.4);
    background: #6aaf4a;
}

/* Inner Page Header (fixed with frosted glass) */
.header-inner {
    position: fixed;
    background: rgba(255, 251, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 0;
}

.header-inner nav {
    padding: 1.5rem 4rem;
}

.header-inner .logo-img {
    height: 80px;
}

.header-inner .nav-menu a {
    opacity: 1;
    animation: none;
    color: var(--charcoal);
}

.header-inner .nav-menu a:hover {
    color: var(--sage-green);
}

.header-inner .header-cta {
    opacity: 1;
    animation: none;
}

.header-inner .logo-container {
    opacity: 1;
    animation: none;
}

/* Floating Card Link */
.floating-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.floating-card-link .floating-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.floating-card-link:hover .floating-card {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

/* =============================================
   Hero Section
   ============================================= */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    padding: 0 4rem;
    max-width: 1600px;
    margin: 0 auto;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(135, 168, 120, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    padding-top: 8rem;
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-block;
    background: var(--warm-cream);
    color: var(--sage-green);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 5.5rem;
    line-height: 1.05;
    color: var(--deep-blue);
    margin-bottom: 2rem;
    font-weight: 700;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
}

.hero-title .highlight {
    color: var(--sage-green);
    font-style: italic;
    position: relative;
}

.hero-description {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 600px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

.btn-primary {
    background: var(--sage-green);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(135, 168, 120, 0.25);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(135, 168, 120, 0.35);
}

.btn-text {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: gap 0.3s ease;
}

.btn-text:hover {
    gap: 1.2rem;
}

.btn-text::after {
    content: '→';
    font-size: 1.3rem;
}

/* =============================================
   Hero Visual
   ============================================= */
.hero-visual {
    position: relative;
    height: 700px;
    opacity: 0;
    animation: fadeInRight 1.2s ease 0.8s forwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.card-1 {
    top: 10%;
    right: 10%;
    width: 280px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.card-2 {
    bottom: 15%;
    left: 5%;
    width: 300px;
    background: var(--warm-cream);
    animation: float 7s ease-in-out infinite 1s;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--sage-green), var(--soft-terracotta));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.4rem;
    color: var(--deep-blue);
    margin-bottom: 0.8rem;
}

.card-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.stats-badge {
    position: absolute;
    top: 50%;
    right: 0;
    background: var(--sage-green);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    min-width: 180px;
    box-shadow: 0 15px 40px rgba(135, 168, 120, 0.3);
    animation: float 5s ease-in-out infinite 2s;
}

.stats-number {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stats-label {
    font-size: 0.9rem;
    opacity: 0.95;
    font-weight: 500;
}

/* =============================================
   Section Shared Styles
   ============================================= */
.section-intro {
    max-width: 700px;
    margin-bottom: 6rem;
}

.section-label {
    color: var(--sage-green);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 4rem;
    color: var(--deep-blue);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

/* =============================================
   Services Section (Homepage)
   ============================================= */
.services {
    padding: 10rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
    background: var(--warm-cream);
}

.services-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    position: relative;
}

.service-item {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--sage-green), var(--soft-terracotta));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s ease;
}

.service-item:hover::before {
    transform: scaleY(1);
}

.service-item:hover {
    transform: translateX(15px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.service-number {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    color: var(--warm-cream);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.service-name {
    font-size: 1.8rem;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.service-text {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--sage-green);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* =============================================
   Team Section (Homepage)
   ============================================= */
.team {
    padding: 10rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
    background: var(--warm-white);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 6rem;
}

.team-member {
    position: relative;
}

.member-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 2rem;
    height: 500px;
    background: linear-gradient(135deg, var(--soft-blue), var(--dusty-rose));
}

.member-info {
    padding: 0 1rem;
}

.member-name {
    font-size: 2.5rem;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.member-name a {
    text-decoration: none;
    color: var(--deep-blue);
    transition: color 0.3s ease;
}

.member-name a:hover {
    color: var(--sage-green);
}

.member-title {
    color: var(--sage-green);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.member-bio {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* =============================================
   Philosophy Section
   ============================================= */
.philosophy {
    padding: 10rem 4rem;
    background: var(--deep-blue);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.philosophy::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) scale(1.1);
        opacity: 0.8;
    }
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.philosophy-title {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.philosophy-text {
    font-size: 1.35rem;
    line-height: 1.9;
    opacity: 0.95;
    margin-bottom: 3rem;
}

.philosophy-btn {
    background: white;
    color: var(--deep-blue);
    padding: 1.3rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    display: inline-block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.philosophy-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

/* =============================================
   Contact Section (Homepage)
   ============================================= */
.contact {
    padding: 10rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
    background: var(--warm-white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    margin-top: 6rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--warm-cream);
    border-radius: 25px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
}

.info-card:hover {
    border-left-color: var(--sage-green);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-title {
    font-size: 1.3rem;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-detail {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: white;
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.08);
}

.form-title {
    font-size: 2.5rem;
    color: var(--deep-blue);
    margin-bottom: 2rem;
}

.form-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-field label {
    display: block;
    color: var(--charcoal);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid var(--warm-cream);
    border-radius: 15px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--warm-white);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--sage-green);
    background: white;
    box-shadow: 0 0 0 4px rgba(135, 168, 120, 0.1);
}

.form-field textarea {
    min-height: 180px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    background: var(--sage-green);
    color: white;
    padding: 1.4rem;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: 'Manrope', sans-serif;
}

.form-submit:hover {
    background: #6aaf4a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(135, 168, 120, 0.3);
}

/* =============================================
   Footer
   ============================================= */
footer {
    background: var(--charcoal);
    color: white;
    padding: 5rem 4rem 3rem;
}

.footer-main {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.footer-column-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 1rem;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: white;
    padding-left: 5px;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
}

.footer-social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: var(--sage-green);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* =============================================
   WhatsApp Float Button
   ============================================= */
.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none !important;
    line-height: 1;
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* =============================================
   Page Hero (Sub Pages - Light Style)
   ============================================= */
.page-hero {
    padding: 12rem 4rem 6rem;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--warm-white) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(119, 192, 86, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-label {
    color: var(--sage-green);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.page-title {
    font-size: 5rem;
    color: var(--deep-blue);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.page-description {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* =============================================
   Services Detail Page (Card Style)
   ============================================= */
.services-detail {
    padding: 8rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
}

.service-detail-card {
    background: white;
    border-radius: 30px;
    padding: 5rem;
    margin-bottom: 4rem;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--warm-cream);
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--sage-green), #6aaf4a);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    flex-shrink: 0;
}

.service-header-text h2 {
    font-size: 3rem;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.service-header-text p {
    font-size: 1.2rem;
    color: var(--sage-green);
    font-weight: 600;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.service-main {
    color: #666;
    line-height: 1.9;
    font-size: 1.1rem;
}

.service-main h3 {
    font-size: 2rem;
    color: var(--deep-blue);
    margin: 2rem 0 1.5rem;
}

.service-main ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-main ul li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.service-main ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sage-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-sidebar {
    background: var(--warm-cream);
    border-radius: 25px;
    padding: 3rem;
    height: fit-content;
    position: sticky;
    top: 150px;
}

.sidebar-title {
    font-size: 1.8rem;
    color: var(--deep-blue);
    margin-bottom: 2rem;
}

.sidebar-info {
    margin-bottom: 2rem;
}

.sidebar-label {
    font-size: 0.85rem;
    color: var(--sage-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.sidebar-value {
    font-size: 1.1rem;
    color: var(--charcoal);
    font-weight: 600;
}

.sidebar-cta {
    width: 100%;
    background: var(--sage-green);
    color: white;
    padding: 1.2rem;
    border-radius: 15px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
    text-decoration: none;
    display: block;
    text-align: center;
    font-family: 'Manrope', sans-serif;
}

.sidebar-cta:hover {
    background: #6aaf4a;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(119, 192, 86, 0.3);
    color: white;
}

/* =============================================
   Blog Page (Card Style)
   ============================================= */
.blog-section {
    padding: 8rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 3rem;
}

.blog-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

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

.blog-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--soft-blue), var(--dusty-rose));
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--sage-green);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: #999;
    font-size: 0.9rem;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-title {
    font-size: 1.8rem;
    color: var(--deep-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-title a {
    text-decoration: none;
    color: var(--deep-blue);
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--sage-green);
}

.blog-excerpt {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.blog-read-more {
    color: var(--sage-green);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.blog-read-more:hover {
    gap: 1rem;
}

/* Featured Post */
.featured-post {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 6rem;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.featured-image {
    height: 500px;
    background: linear-gradient(135deg, var(--sage-green), #6aaf4a);
    position: relative;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: white;
    color: var(--sage-green);
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-content {
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-category {
    color: var(--sage-green);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.featured-title {
    font-size: 3rem;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.featured-excerpt {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.featured-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    color: #999;
}

.featured-button {
    background: var(--sage-green);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    width: fit-content;
}

.featured-button:hover {
    background: #6aaf4a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(119, 192, 86, 0.3);
    color: white;
}

/* Newsletter */
.newsletter {
    padding: 6rem 4rem;
    background: var(--warm-cream);
    margin: 0;
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-size: 3rem;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
}

.newsletter-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input {
    flex-grow: 1;
    padding: 1.3rem 2rem;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Manrope', sans-serif;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--sage-green);
    box-shadow: 0 0 0 4px rgba(119, 192, 86, 0.1);
}

.newsletter-button {
    background: var(--sage-green);
    color: white;
    padding: 1.3rem 3rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
}

.newsletter-button:hover {
    background: #6aaf4a;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(119, 192, 86, 0.3);
}

/* Blog Detail */
.blog-detail {
    padding: 6rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.blog-detail-meta {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--warm-cream);
}

.blog-detail-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-detail-author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--soft-blue), var(--dusty-rose));
}

.blog-detail-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-author-name {
    font-weight: 600;
    color: var(--deep-blue);
}

.blog-detail-date {
    color: #999;
    font-size: 0.95rem;
}

.blog-detail-content {
    font-size: 1.1rem;
    line-height: 2;
    color: #444;
}

.blog-detail-content h2 {
    font-size: 2rem;
    color: var(--deep-blue);
    margin: 2.5rem 0 1.5rem;
}

.blog-detail-content h3 {
    font-size: 1.5rem;
    color: var(--deep-blue);
    margin: 2rem 0 1rem;
}

.blog-detail-content p {
    margin-bottom: 1.5rem;
}

.blog-detail-content blockquote {
    border-left: 4px solid var(--sage-green);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: var(--warm-cream);
    border-radius: 0 15px 15px 0;
    font-style: italic;
    color: var(--deep-blue);
}

.blog-detail-content ul,
.blog-detail-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-detail-content li {
    margin-bottom: 0.5rem;
}

.blog-detail-share {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--warm-cream);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-detail-share span {
    font-weight: 600;
    color: var(--deep-blue);
}

.blog-detail-share a {
    width: 40px;
    height: 40px;
    background: var(--warm-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-detail-share a:hover {
    background: var(--sage-green);
    color: white;
}

/* =============================================
   Contact Page (New Style)
   ============================================= */
.contact-section-page {
    padding: 8rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border-left: 4px solid var(--sage-green);
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--sage-green), #6aaf4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
}

.contact-label-text {
    font-size: 0.85rem;
    color: var(--sage-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.contact-value {
    font-size: 1.2rem;
    color: var(--charcoal);
    line-height: 1.7;
}

.contact-value a {
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: var(--sage-green);
}

.form-wrapper {
    background: white;
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.08);
}

/* Quick Contact */
.quick-contact {
    padding: 6rem 4rem;
    background: var(--warm-cream);
    text-align: center;
}

.quick-contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.quick-contact-title {
    font-size: 3rem;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
}

.quick-contact-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.quick-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-btn {
    background: var(--sage-green);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.quick-btn:hover {
    background: #6aaf4a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(119, 192, 86, 0.3);
    color: white;
}

.quick-btn i {
    font-size: 1.3rem;
}

.btn-secondary {
    background: var(--deep-blue);
}

.btn-secondary:hover {
    background: #1f3558;
    box-shadow: 0 8px 25px rgba(43, 72, 118, 0.3);
}

.map-section {
    padding: 0 4rem 8rem;
    max-width: 1600px;
    margin: 0 auto;
}

.map-wrapper {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.08);
    height: 500px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* =============================================
   About Page
   ============================================= */
.about-section {
    padding: 8rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 8rem;
}

.about-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    height: 500px;
    background: linear-gradient(135deg, var(--sage-green), #6aaf4a);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text h2 {
    font-size: 3rem;
    color: var(--deep-blue);
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 6rem;
}

.value-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--sage-green), #6aaf4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
    color: white;
}

.value-title {
    font-size: 1.8rem;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.value-text {
    color: #666;
    line-height: 1.7;
}

.team-section-about {
    padding: 8rem 4rem;
    background: var(--warm-cream);
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-tag {
    color: var(--sage-green);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* Senior psikologlar - 2 sütun (col-6 / col-6) */
.team-grid-senior {
    max-width: 1400px;
    margin: 0 auto 5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

/* Associate psikologlar - 4 sütun (col-3) */
.team-grid-associate {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

/* Küçük kart stili (associate) */
.team-card-sm .team-photo {
    height: 300px;
}

.team-card-sm .team-info-card {
    padding: 2rem;
}

.team-card-sm .team-card-name {
    font-size: 1.8rem;
}

.team-card-sm .team-role {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.team-card-sm .team-bio {
    font-size: 0.97rem;
}

/* Backward compat alias */
.team-grid-about {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}


.team-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

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

.team-photo {
    height: 450px;
    background: linear-gradient(135deg, var(--soft-blue), var(--dusty-rose));
    position: relative;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info-card {
    padding: 3rem;
}

.team-card-name {
    font-size: 2.5rem;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.team-card-name a {
    text-decoration: none;
    color: var(--deep-blue);
    transition: color 0.3s ease;
}

.team-card-name a:hover {
    color: var(--sage-green);
}

.team-role {
    color: var(--sage-green);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-bio {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* CTA Section */
.cta-section {
    padding: 8rem 4rem;
    background: var(--deep-blue);
    text-align: center;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: 4rem;
    color: white;
    margin-bottom: 2rem;
}

.cta-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-btn {
    background: var(--sage-green);
    color: white;
    padding: 1.3rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    display: inline-block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    color: white;
}

/* =============================================
   Team Detail Page
   ============================================= */
.team-detail {
    padding: 6rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
}

.team-detail-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 5rem;
    margin-bottom: 6rem;
}

.team-detail-photo {
    border-radius: 30px;
    overflow: hidden;
    height: 550px;
    background: linear-gradient(135deg, var(--soft-blue), var(--dusty-rose));
    position: sticky;
    top: 150px;
}

.team-detail-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-detail-info h2 {
    font-size: 3rem;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.team-detail-role {
    color: var(--sage-green);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.team-detail-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.team-detail-social a {
    width: 44px;
    height: 44px;
    background: var(--warm-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.team-detail-social a:hover {
    background: var(--sage-green);
    color: white;
    transform: translateY(-3px);
}

.team-detail-bio {
    margin-bottom: 3rem;
}

.team-detail-bio h3 {
    font-size: 1.8rem;
    color: var(--deep-blue);
    margin-bottom: 1.5rem;
}

.team-detail-bio p {
    color: #666;
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.team-detail-bio ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.team-detail-bio ul li {
    padding: 0.5rem 0;
    color: #666;
    font-size: 1.05rem;
    padding-left: 1.5rem;
    position: relative;
}

.team-detail-bio ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sage-green);
}

.team-articles {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid var(--warm-cream);
}

.team-articles h3 {
    font-size: 2rem;
    color: var(--deep-blue);
    margin-bottom: 2.5rem;
}

.team-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.article-card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--soft-blue), var(--sage-green));
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .article-card-image img {
    transform: scale(1.05);
}

.article-card-content {
    padding: 2rem;
}

.article-card-date {
    font-size: 0.85rem;
    color: var(--sage-green);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.article-card-title {
    font-size: 1.3rem;
    color: var(--deep-blue);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.article-card-title a {
    text-decoration: none;
    color: var(--deep-blue);
    transition: color 0.3s ease;
}

.article-card-title a:hover {
    color: var(--sage-green);
}

.article-card-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.article-card-link {
    color: var(--sage-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.article-card-link:hover {
    gap: 1rem;
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 1200px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 0 3rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-visual {
        height: 500px;
    }

    .services-layout {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .team-detail-layout {
        grid-template-columns: 1fr;
    }

    .team-detail-photo {
        height: 400px;
        position: relative;
    }

    .team-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-post {
        grid-template-columns: 1fr;
    }

    .featured-content {
        padding: 3rem;
    }

    .service-content {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid-about {
        grid-template-columns: 1fr;
    }

    .team-grid-senior {
        grid-template-columns: 1fr;
    }

    .team-grid-associate {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 2rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .philosophy-title {
        font-size: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 3rem;
    }

    .featured-title {
        font-size: 2rem;
    }

    .team-detail {
        padding: 4rem 2rem;
    }

    .team-detail-layout {
        gap: 3rem;
    }

    .team-articles-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-section {
        padding: 4rem 2rem;
    }

    .blog-detail {
        padding: 4rem 2rem;
    }

    .services-detail {
        padding: 4rem 2rem;
    }

    .service-detail-card {
        padding: 3rem 2rem;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
    }

    .contact-section-page {
        padding: 4rem 2rem;
    }

    .quick-buttons {
        flex-direction: column;
    }


    .newsletter-form {
        flex-direction: column;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .team-grid-associate {
        grid-template-columns: repeat(2, 1fr);
    }
}