/* --- GENEL AYARLAR & DEĞİŞKENLER --- */
:root {
    --primary-color: #2E8B57; 
    --secondary-color: #3cb371; 
    --dark-color: #333333;      
    --light-color: #f9f9f9;     
    --white: #ffffff;
    --text-color: #555555;
    --header-height: 90px;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Open Sans', sans-serif; }
html { scroll-behavior: smooth; }
body { line-height: 1.6; color: var(--text-color); background-color: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* HEADER */
header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: fixed; top: 0; width: 100%; z-index: 1000; height: var(--header-height); transition: box-shadow 0.3s ease; }
.header-container { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.logo { display: flex; align-items: center; height: 100%; padding: 5px 0; }
.logo img { max-height: 75px; width: auto; transition: transform 0.3s ease; }
.logo img:hover { transform: scale(1.05); }
header nav ul { display: flex; align-items: center; }
header nav ul li { margin-left: 25px; }
header nav ul li a { font-weight: 600; color: var(--dark-color); font-size: 1rem; }
header nav ul li a:hover { color: var(--primary-color); }
.btn-randevu { background: var(--primary-color); color: var(--white) !important; padding: 12px 25px; border-radius: 5px; }
.btn-randevu:hover { background: #246b43; }
.hamburger { display: none; cursor: pointer; font-size: 1.8rem; color: var(--dark-color); }

/* HERO */
.hero { height: 100vh; background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero-bg.jpg') no-repeat center center/cover; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); margin-top: calc(var(--header-height) * -1); padding-top: var(--header-height); }
.hero-content h1 { font-family: 'Poppins', sans-serif; font-size: 3rem; margin-bottom: 20px; line-height: 1.2; }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; color: #f4f4f4; }
.btn-primary { display: inline-block; background: var(--primary-color); color: var(--white); padding: 12px 30px; border-radius: 5px; font-size: 1rem; margin-right: 10px; }
.btn-primary:hover { background: #246b43; transform: translateY(-2px); }
.btn-secondary { display: inline-block; background: transparent; border: 2px solid var(--white); color: var(--white); padding: 12px 30px; border-radius: 5px; font-size: 1rem; }
.btn-secondary:hover { background: var(--white); color: var(--dark-color); }

/* GENEL */
.section-padding { padding: 80px 0; }
.bg-light { background-color: var(--light-color); }
.text-center { text-align: center; }
.section-title { font-family: 'Poppins', sans-serif; font-size: 2.2rem; color: var(--dark-color); margin-bottom: 10px; }
.section-subtitle { margin-bottom: 50px; font-size: 1.1rem; color: #777; }

/* HAKKIMDA */
.about-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.about-image { flex: 1; position: relative; }
.about-image img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); border: 5px solid var(--white); object-fit: cover; }
.about-text { flex: 1.2; }
.counselor-name { font-size: 1.5rem; color: var(--primary-color); margin-bottom: 20px; font-weight: 600; }
.about-text p { margin-bottom: 15px; color: #555; line-height: 1.7; text-align: justify; }

/* HİZMETLER */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.service-card { background: var(--white); padding: 40px 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer; border-bottom: 3px solid transparent; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-bottom: 3px solid var(--primary-color); }
.service-card .icon { font-size: 3rem; color: var(--primary-color); margin-bottom: 20px; }
.service-card h3 { margin-bottom: 15px; font-size: 1.3rem; color: var(--dark-color); }
.service-card p { font-size: 0.95rem; color: #666; }

/* SEANS SÜRECİ */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.process-card { background: var(--white); padding: 30px; border-radius: 8px; border-left: 5px solid var(--primary-color); box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.process-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.process-card .p-icon { font-size: 2rem; color: var(--primary-color); margin-bottom: 15px; }
.process-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--dark-color); }
.process-card p { font-size: 0.95rem; color: #666; }

/* NASIL ÇALIŞIYORUM */
.approach-intro { max-width: 800px; margin: 0 auto 50px auto; font-size: 1.1rem; color: #555; line-height: 1.8; }
.approach-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-bottom: 50px; }
.approach-card { text-align: center; }
.icon-circle { width: 80px; height: 80px; background: var(--white); border-radius: 50%; margin: 0 auto 20px auto; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--primary-color); box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: 0.3s; }
.approach-card:hover .icon-circle { background: var(--primary-color); color: var(--white); }
.approach-card h3 { margin-bottom: 15px; font-size: 1.3rem; }
.approach-goal { background: var(--white); padding: 30px; border-radius: 10px; border-top: 5px solid var(--primary-color); text-align: center; max-width: 800px; margin: 0 auto; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.goal-icon { font-size: 2rem; color: var(--primary-color); margin-bottom: 15px; }

/* ONLINE TERAPİ */
.online-intro { max-width: 800px; margin: 0 auto 40px auto; font-size: 1.1rem; color: #555; }
.online-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 20px; max-width: 900px; margin: 0 auto 50px auto; }
.online-item { display: flex; align-items: center; background: var(--light-color); padding: 20px; border-radius: 8px; border: 1px solid #eee; transition: 0.3s; }
.online-item:hover { background: var(--white); box-shadow: 0 5px 15px rgba(0,0,0,0.1); border-color: var(--primary-color); }
.check-icon { font-size: 1.5rem; color: var(--primary-color); margin-right: 15px; flex-shrink: 0; }
.online-note { background: #e8f5e9; padding: 30px; border-radius: 8px; max-width: 900px; margin: 0 auto; border-left: 5px solid var(--primary-color); }

/* --- YENİ BÖLÜM: İLETİŞİM --- */
.contact-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.contact-item p {
    color: #555;
    font-size: 1.05rem;
}

.contact-item small {
    color: #888;
    font-size: 0.9rem;
}

.contact-map {
    flex: 1.5; /* Harita biraz daha geniş */
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* FOOTER & WHATSAPP */
footer { background: var(--dark-color); color: var(--white); padding: 20px 0; margin-top: auto; }
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background-color: #25d366; color: white; border-radius: 50%; text-align: center; font-size: 35px; line-height: 60px; z-index: 2000; box-shadow: 2px 2px 10px rgba(0,0,0,0.3); animation: bounce 2s infinite; }
.whatsapp-float:hover { background-color: #128c7e; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 40% {transform: translateY(-10px);} 60% {transform: translateY(-5px);} }

/* ANIMATION & MOBILE */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
    .about-wrapper { flex-direction: column; text-align: center; }
    .about-text p { text-align: center; }
    .about-image { max-width: 80%; margin-bottom: 30px; }
    .contact-wrapper { flex-direction: column; }
    .contact-map { width: 100%; height: 300px; }
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    .hero-content h1 { font-size: 2rem; }
    header nav ul { position: fixed; left: -100%; top: var(--header-height); flex-direction: column; background-color: var(--white); width: 100%; height: calc(100vh - var(--header-height)); text-align: center; transition: 0.3s; box-shadow: 0 10px 10px rgba(0,0,0,0.1); justify-content: center; gap: 20px; }
    header nav ul.active { left: 0; }
    header nav ul li { margin: 15px 0; }
}