* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root {
  --primary-color: #7C9A92;
  --secondary-color: #E8F1F0;
  --text-color: #4A4A4A;
  --accent-color: #9BBAC8;
  --background-light: #F5F7F7;
}

body {
  overflow-x: hidden;
  color: var(--text-color);
  background-color: var(--background-light);
  line-height: 1.6;
}

.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.video-container.hidden {
  opacity: 0;
  pointer-events: none;
}

.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

/* ===== HEADER / NAV (SABİTLENDİ) ===== */
header,
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: rgba(255, 255, 255, 0.95);
  padding: 0 2rem;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}

header nav,
.fixed-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  height: 64px;
}

.logo{
  display: flex;
  flex-direction: column;   /* mutlaka alt alta */
  align-items: flex-start;
  gap: 2px;                 /* iki satır arası boşluk */
  line-height: 1.1;
}

.logo-text{
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin: 0;
  padding: 0;
  display: block;
}

.logo-subtext{
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #666;
  margin: 0;
  padding: 0;
  display: block;
  text-transform: uppercase;
}

/* Masaüstü için */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero {
  min-height: 650px;
  height: calc(100vh - 48px);
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-bg-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('Image/library.jpg') center center/cover no-repeat;
  filter: blur(8px) brightness(0.5) grayscale(1);
  z-index: 0;
}

.hero-left {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 0 0 18vw;
  position: relative;
  z-index: 2;
}

.hero-right {
  position: relative;
  width: 400px;
  height: 600.14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-blur-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('Image/library.jpg') center center/cover no-repeat;
  filter: blur(8px) brightness(0.5) grayscale(1);
  z-index: 1;
  border-radius: 0 0 0 60px;
}

.hero-right img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 0 60px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.hero-title {
  color: #7E5B45;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}

.hero-name {
  color: #222;
  font-size: 2.8rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.hero-desc {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 2.2rem;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
}

.hero-btn {
  padding: 0.9rem 2.1rem;
  font-size: 1.05rem;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn.green {
  background: #2ecc40;
  color: #fff;
}

.hero-btn.green:hover {
  background: #27ae60;
  transform: translateY(-2px);
}

.hero-btn.black {
  background: #222;
  color: #fff;
}

.hero-btn.black:hover {
  background: #444;
  transform: translateY(-2px);
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
  border: 1px solid white;
}

.cta-button:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Fixed image section */
.fixed-image-section {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
}

.fixed-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content sections */
.scroll-content {
  position: relative;
  z-index: 1;
  width: 100%;
  background: white;
}

/* Online terapi section */
.online-therapy-section {
  background: white;
  min-height: 100vh;
  padding: 6rem 2rem;
  position: relative;
  z-index: 2;
}

#seanslar {
  position: relative;
  z-index: 1;
}

.therapy-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.therapy-text {
  flex: 1;
}

.therapy-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.therapy-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 1.5rem;
}

.therapy-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--text-color);
  margin: 2rem 0 1rem;
}

.therapy-text ul {
  list-style: none;
  margin-left: 1rem;
}

.therapy-text ul li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
  color: #666;
}

.therapy-text ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #333;
}

/* Online terapi fotoğrafı */
#online-terapi .therapy-image {
  width: 100%;
  position: relative;
}

#online-terapi .therapy-photo {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Seanslar bölümündeki fotoğraf */
#seanslar .therapy-image {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  display: none;
}

#seanslar.visible .therapy-image {
  display: block;
}

#seanslar .therapy-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Diğer bölümlerdeki fotoğraflar */
.online-therapy-section:not(#seanslar) .therapy-image {
  display: block;
}

.therapy-photo {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 2rem;
}

.image-placeholder p {
  margin-top: 1rem;
  font-size: 1rem;
}

/* Other sections */
.why-therapy-section,
.about-section,
.services-section,
.appointment-section {
  background: white;
  padding: 6rem 2rem;
  position: relative;
  z-index: 2;
}

.why-therapy-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.therapy-reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.reason-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  transition: all 0.3s;
}

.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.reason-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.reason-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.reason-card p {
  line-height: 1.6;
}

/* About section styles */
.about-section {
  background: white;
  padding: 6rem 2rem;
  position: relative;
  z-index: 2;
  margin-top: 0;
}

.about-section::before {
  content: '🌿';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 2rem;
  opacity: 0.2;
}

.about-section::after {
  content: '🍃';
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 2rem;
  opacity: 0.2;
}

.about-content {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.1rem;
}

.about-text ul {
  list-style: none;
  margin-left: 1rem;
}

.about-text ul li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.about-text ul li::before {
  content: '🌱';
  position: absolute;
  left: 0;
  top: 0;
}

.services-section {
  background: white;
  padding: 6rem 2rem;
  position: relative;
  z-index: 2;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Banner ile uyumlu hizmetler kartları renkleri */
.service-card {
  background: #FAFAFA;
  border-radius: 28px;
  box-shadow: 0 4px 24px rgba(124, 154, 146, 0.07);
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: center;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.service-card:hover {
  box-shadow: 0 12px 36px rgba(199, 107, 58, 0.13);
  transform: scale(1.04);
}

.service-card .service-icon-modern {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  background: #F8EDDE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem auto;
  font-size: 2rem;
  color: #7E5B45;
  box-shadow: 0 2px 8px rgba(124, 154, 146, 0.07);
}

.service-card .icon-watermark {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5.5rem;
  color: #93A5AA;
  opacity: 0.07;
  z-index: 1;
  pointer-events: none;
}

.service-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #7E5B45;
  margin-bottom: 1rem;
  z-index: 2;
  position: relative;
}

.service-card p {
  color: #666;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  min-height: 70px;
  z-index: 2;
  position: relative;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 2;
  position: relative;
}

.service-features li {
  padding: 8px 0;
  color: #7E5B45;
  position: relative;
  padding-left: 25px;
  font-size: 1rem;
}

.service-features li::before {
  content: '✓';
  color: #C76B3A;
  position: absolute;
  left: 0;
  font-size: 1.1rem;
}

.service-card .card-bottom-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: linear-gradient(90deg, #93A5AA 0%, #C76B3A 100%);
  border-radius: 0 0 28px 28px;
  z-index: 3;
}

.service-card .card-lotus {
  position: absolute;
  top: 22px;
  right: 22px;
  color: #C76B3A;
  font-size: 2.1rem;
  opacity: 0.18;
  pointer-events: none;
}

.service-card .service-icon-right {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--primary-color);
  font-size: 2.5rem;
  opacity: 0.85;
}

.appointment-section {
  background: var(--secondary-color);
}

.appointment-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-color);
  font-size: 2rem;
}

.appointment-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

input,
select,
textarea {
  padding: 1rem;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(124, 154, 146, 0.1);
}

textarea {
  height: 120px;
  resize: vertical;
}

/* (Buton hem genel, hem contact kısmında geçiyor. Çakışmasın diye burada “genel” olarak bırakıyorum.) */
.submit-button {
  padding: 1rem;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s;
}

.submit-button:hover {
  background: #6A8A82;
  transform: translateY(-2px);
}

/* ===== FOOTER (mevcut) ===== */
footer {
  background: linear-gradient(120deg, #BFD8E6 0%, #D6EADF 40%, #FFF6E0 80%, #E6E6FA 100%);
  color: #333;
  padding: 80px 0 30px;
  position: relative;
  margin-top: 60px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding: 0 20px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #7E5B45;
  margin-bottom: 10px;
}

.footer-logo span {
  display: block;
  font-size: 1rem;
  opacity: 0.8;
  margin-top: 5px;
  color: #666;
}

.footer-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Footer contact kısmı */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #7E5B45;
  position: relative;
  padding-bottom: 10px;
}

.contact-info h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #C76B3A;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #666;
  font-size: 1rem;
}

.contact-info i {
  font-size: 1.1rem;
  color: #C76B3A;
  width: 20px;
}

.footer-links h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #7E5B45;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #C76B3A;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links ul li a:hover {
  color: #C76B3A;
  transform: translateX(5px);
}

.footer-links ul li a i {
  font-size: 0.8rem;
  color: #C76B3A;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  color: #7E5B45;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(124, 154, 146, 0.07);
}

.social-links a:hover {
  background: #C76B3A;
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 50px;
  border-top: 1px solid rgba(124, 154, 146, 0.1);
  color: #666;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .contact-info h3::after,
  .footer-links h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-info p {
    justify-content: center;
  }

  .footer-links ul li a {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* Mobil menü overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  transition: 0.3s;
}

.mobile-menu-overlay.active {
  display: block;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 0;
    right: 0;
    width: 80vw;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 16px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 40px 0 0 0;
    transition: 0.3s;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid #eee;
  }

  .nav-links a {
    display: block;
    padding: 18px 32px;
    font-size: 1.15rem;
    color: #222;
    font-weight: 600;
  }

  .menu-toggle {
    display: flex;
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 1001;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    border: none;
    cursor: pointer;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .about-expertise-cards {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .logo-subtext {
    font-size: 0.8rem;
  }
}

/* ===== Contact Page Styles ===== */
.contact-hero {
  text-align: center;
  padding: 120px 20px 60px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  color: white;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.contact-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ÖNEMLİ: Footer ile çakışmasın diye "contact-info" yerine bunu kullan */
.contact-info-card {
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  animation: infoItemFadeIn 1s cubic-bezier(.77, 0, .18, 1) both;
}

.info-item i {
  font-size: 24px;
  color: #4a90e2;
  margin-right: 20px;
  margin-top: 5px;
}

.info-item h3 {
  margin-bottom: 5px;
  color: #333;
}

.info-item p {
  color: #666;
  line-height: 1.6;
}

.contact-form {
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  margin-bottom: 30px;
  color: #333;
  font-family: 'Playfair Display', serif;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #4a90e2;
  outline: none;
}

/* Contact sayfasında buton rengi */
.contact-form .submit-button {
  background-color: #4a90e2;
}

.contact-form .submit-button:hover {
  background-color: #357abd;
}

.map-section {
  padding: 60px 20px;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
  font-family: 'Playfair Display', serif;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .info-item {
    margin-bottom: 20px;
  }
}

/* Hizmetlerimiz Banner Modern Tasarım ve Animasyon */
.services-hero {
  text-align: center;
  padding: 120px 20px 60px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  color: white;
}

.services-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

/* Blog Sayfası Stilleri */
.blog-hero {
  background: linear-gradient(120deg, #BFD8E6 0%, #D6EADF 40%, #FFF6E0 80%, #E6E6FA 100%);
  color: #7E5B45;
  text-align: center;
  padding: 120px 20px 60px;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 4px 24px rgba(124, 154, 146, 0.07);
  margin-bottom: 32px;
}

.blog-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #7E5B45;
  font-weight: 500;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.blog-hero p {
  font-size: 1.18rem;
  color: #666;
  font-weight: 400;
  margin-bottom: 0;
}

.blog-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.blog-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-post {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.blog-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  margin-bottom: 20px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-post:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 0 25px 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.blog-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--text-color);
  margin: 15px 0 0 0;
  line-height: 1.3;
}

.blog-meta {
  display: flex;
  gap: 15px;
  color: #666;
  font-size: 0.9rem;
  margin: 5px 0 0 0;
  justify-content: flex-start;
  align-items: center;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #f5f7fa;
  padding: 6px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.blog-meta span:hover {
  background: #e8f1f0;
  color: var(--primary-color);
}

.blog-meta i {
  font-size: 0.9rem;
  color: var(--primary-color);
}

.blog-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

.read-more {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  margin-top: 5px;
}

.read-more:hover {
  color: #5a7a72;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sidebar-widget h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--text-color);
}

.sidebar-widget ul {
  list-style: none;
  padding: 0;
}

.sidebar-widget ul li {
  margin-bottom: 10px;
}

.sidebar-widget ul li a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  padding: 8px 0;
}

.sidebar-widget ul li a:hover {
  color: var(--primary-color);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .blog-section {
    grid-template-columns: 1fr;
  }

  .services-hero h1,
  .blog-hero h1 {
    font-size: 2.5rem;
  }

  .blog-image {
    height: 200px;
  }

  .blog-content h2 {
    font-size: 1.5rem;
  }
}

/* Hakkımda Sayfası Stilleri */
.about-hero {
  text-align: center;
  padding: 120px 20px 60px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('psikolog.jpeg');
  background-size: cover;
  background-position: center;
  color: white;
  margin-bottom: 40px;
}

.about-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.about-hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.about-image {
  position: sticky;
  top: 100px;
}

.profile-photo {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--text-color);
  margin-bottom: 20px;
}

.about-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}

.about-details {
  margin-bottom: 30px;
}

.about-details h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 25px 0 15px;
}

.about-details ul {
  list-style: none;
  padding: 0;
}

.about-details ul li {
  padding: 8px 0;
  color: #666;
  position: relative;
  padding-left: 25px;
}

.about-details ul li::before {
  content: '•';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.about-approach {
  background: var(--secondary-color);
  padding: 25px;
  border-radius: 10px;
  margin-top: 30px;
}

.about-approach h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.about-approach p {
  line-height: 1.8;
  color: #666;
}

@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
  }
  .about-image {
    position: relative;
    top: 0;
    margin-bottom: 30px;
  }
  .about-hero-content h1 {
    font-size: 2.5rem;
  }
  .about-content h2 {
    font-size: 1.8rem;
  }
}

/* İletişim Sayfası Modern Düzen */
.contact-main-container {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
  margin: 40px auto;
  max-width: 1100px;
  padding: 0 16px;
}

.contact-info-box,
.contact-form-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 32px 28px;
  flex: 1 1 350px;
  min-width: 320px;
}

.contact-info-box h2,
.contact-form-box h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: #222;
  font-weight: 600;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f5f7fa;
  border-radius: 10px;
  padding: 18px 16px;
  margin-bottom: 18px;
}

.info-item i {
  font-size: 1.7rem;
  color: #4a90e2;
  margin-top: 4px;
}

.info-item strong {
  font-size: 1.08rem;
  color: #222;
  font-weight: 500;
}

.contact-form-box form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
  padding: 12px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  background: #f8fafc;
  transition: border 0.2s;
}

.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
  border: 1.5px solid #4a90e2;
  outline: none;
}

.contact-form-box textarea {
  min-height: 80px;
  resize: vertical;
}

/* contact-form-box içindeki submit özel kalsın */
.contact-form-box .submit-button {
  background: #4a90e2;
}

.contact-form-box .submit-button:hover {
  background: #357abd;

}

@media (max-width: 900px) {
  .contact-main-container {
    flex-direction: column;
    gap: 24px;
    max-width: 600px;
  }
  .contact-info-box,
  .contact-form-box {
    min-width: unset;
    padding: 24px 12px;
  }
}

/* Hakkımda Modern Tasarım */
.about-profile-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8fafc;
  padding: 40px 0 0 0;
}

.about-profile-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 36px 32px;
  max-width: 900px;
  width: 100%;
  gap: 36px;
}

.about-profile-photo {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 4px solid #e8f1f0;
}

.about-profile-text {
  flex: 1;
}

.about-profile-text h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: #222;
  font-weight: 600;
}

.about-profile-text p {
  font-size: 1.08rem;
  color: #444;
  margin-bottom: 18px;
}

.about-profile-list {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 24px;
}

.about-profile-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: #4a90e2;
  background: #f5f7fa;
  border-radius: 8px;
  padding: 8px 14px;
}

.about-profile-list i {
  font-size: 1.2rem;
}

.about-expertise-section {
  background: #f8fafc;
  padding: 32px 0 0 0;
  text-align: center;
}

.about-expertise-section h3 {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 24px;
}

.about-expertise-cards {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.expertise-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  padding: 28px 24px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 1.08rem;
  color: #4a90e2;
  font-weight: 500;
  transition: transform 0.2s;
}

.expertise-card i {
  font-size: 2rem;
  margin-bottom: 6px;
}

.expertise-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
}

.about-approach-section {
  background: #fff;
  margin: 0 auto;
  max-width: 900px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  padding: 32px 28px;
  margin-top: 36px;
  margin-bottom: 48px;
}

.about-approach-section h3 {
  font-size: 1.2rem;
  color: #4a90e2;
  margin-bottom: 14px;
}

.about-approach-section p {
  color: #444;
  font-size: 1.08rem;
}

@media (max-width: 900px) {
  .about-profile-box {
    flex-direction: column;
    gap: 18px;
    padding: 24px 10px;
  }
  .about-expertise-cards {
    gap: 16px;
  }
  .about-approach-section {
    padding: 18px 8px;
  }
}

/* Modern Footer Tasarımı */
.modern-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  color: #fff;
  padding: 36px 24px 18px 24px;
  border-radius: 18px 18px 0 0;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
  color: #fff;
  opacity: 0.9;
}

.footer-right {
  display: flex;
  gap: 18px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #444;
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
}

.footer-social:hover {
  background: #4a90e2;
  color: #fff;
  transform: translateY(-3px) scale(1.08);
}

.footer-copyright {
  text-align: center;
  color: #888;
  font-size: 0.98rem;
  margin-top: 18px;
  margin-bottom: 8px;
}

@media (max-width: 700px) {
  .modern-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 8px 12px 8px;
    gap: 16px;
  }
  .footer-right {
    gap: 10px;
  }
  .footer-social {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
}

.psikolojik-banner {
  background: linear-gradient(
    120deg,
    #F5FAFD 0%,
    #F4FBF8 45%,
    #FFFBF3 85%,
    #F7F6FC 100%
  );
}



.banner-icon {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem auto;
  font-size: 2.2rem;
  color: #7E5B45;
  box-shadow: 0 2px 8px rgba(124, 154, 146, 0.07);
}

.psikolojik-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #7E5B45;
  font-weight: 500;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.psikolojik-banner p {
  font-size: 1.18rem;
  color: #666;
  font-weight: 400;
  margin-bottom: 0;
}

/* Banner Animations */
.services-hero,
.blog-hero,
.contact-hero,
.about-hero {
  position: relative;
  overflow: hidden;
  animation: fadeInBanner 1.2s ease-out;
}

.services-hero > *,
.blog-hero > *,
.contact-hero > *,
.about-hero > * {
  position: relative;
  z-index: 2;
  animation: slideUp 1s ease-out;
}

.services-hero h1,
.blog-hero h1,
.contact-hero h1,
.about-hero h1 {
  animation: slideDown 1s ease-out;
}

.services-hero p,
.blog-hero p,
.contact-hero p,
.about-hero p {
  animation: slideUp 1s ease-out 0.3s backwards;
}

@keyframes fadeInBanner {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-video-section {
  display: flex;
  gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.about-video-box {
  flex: 1 1 500px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.video-frame {
  border: 4px solid #222;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 700px;
  aspect-ratio: 16/9;
  margin-left: 70px;
}

.video-frame video {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  background: #eee;
}

.about-info-box {
  flex: 1 1 350px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 32px 28px;
  min-width: 320px;
  margin-left: -180px;
}

@media (max-width: 900px) {
  .about-video-section {
    flex-direction: column;
    gap: 24px;
    max-width: 600px;
  }
  .about-info-box,
  .about-video-box {
    min-width: unset;
    padding: 24px 12px;
  }
  .about-video-element {
    max-width: 100%;
  }
}

.contact-form-box {
  animation: formFadeIn 1.2s cubic-bezier(.77, 0, .18, 1) both;
}

@keyframes formFadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.contact-info-box {
  animation: formFadeIn 1.2s cubic-bezier(.77, 0, .18, 1) both;
}

@keyframes infoItemFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Blog Detay Sayfası Stilleri */
.blog-detail {
  max-width: 800px;
  margin: 120px auto 40px;
  padding: 0 20px;
}

.blog-header {
  text-align: center;
  margin-bottom: 30px;
}

.blog-header h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 15px;
}

.blog-meta {
  color: #666;
  font-size: 0.9rem;
}

.blog-meta span {
  margin: 0 10px;
}

.blog-featured-image {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}

.blog-featured-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blog-content {
  line-height: 1.8;
  color: #444;
}

.blog-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--text-color);
  margin: 15px 0 0 0;
  line-height: 1.3;
}

.blog-content h3 {
  font-size: 1.4rem;
  color: #444;
  margin: 30px 0 15px;
}

.blog-content p {
  margin-bottom: 20px;
}

.blog-content ul,
.blog-content ol {
  margin: 20px 0;
  padding-left: 20px;
}

.blog-content li {
  margin-bottom: 10px;
}

.blog-navigation {
  margin-top: 50px;
  text-align: center;
}

.back-to-blog {
  display: inline-block;
  padding: 10px 20px;
  background-color: #4a90e2;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.back-to-blog:hover {
  background-color: #357abd;
}

.back-to-blog i {
  margin-right: 5px;
}

@media (max-width: 768px) {
  .blog-detail {
    margin-top: 100px;
  }

  .blog-header h1 {
    font-size: 2rem;
  }

  .blog-content h2 {
    font-size: 1.6rem;
  }

  .blog-content h3 {
    font-size: 1.2rem;
  }
}

.floating-label-group {
  position: relative;
  margin-bottom: 20px;
}

.floating-label-group input {
  width: 100%;
  padding: 16px 12px 12px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  background: #f8fafc;
  transition: border 0.2s;
}

.floating-label-group label {
  position: absolute;
  left: 14px;
  top: 16px;
  color: #888;
  font-size: 1rem;
  pointer-events: none;
  background: transparent;
  transition: all 0.25s cubic-bezier(.77, 0, .18, 1);
  padding: 0 4px;
}

.floating-label-group input:focus + label,
.floating-label-group input:not(:placeholder-shown):not(:focus):valid + label,
.floating-label-group input:not(:focus):not(:placeholder-shown) + label,
.floating-label-group input:valid + label {
  top: -10px;
  left: 10px;
  font-size: 0.85rem;
  color: #4a90e2;
  background: #f8fafc;
  padding: 0 6px;
}

.floating-label-group input:focus {
  border: 1.5px solid #4a90e2;
  outline: none;
}

.read-more-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #7C9A92;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background-color: #6a8a82;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 32px;
  right: 32px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  z-index: 9999;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  animation: whatsapp-blink 1.5s infinite alternate;
}

@keyframes whatsapp-blink {
  0% {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18), 0 0 0 0 #25D366;
    background-color: #25D366;
  }
  60% {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18), 0 0 16px 8px #25d36655;
    background-color: #25D366;
  }
  100% {
    box-shadow: 0 4px 16px rgba(0,  0, 0, 0.18), 0 0 0 0 #25D366;
    background-color: #25D366;
  }
}

.whatsapp-float:hover {
  background-color: #1ebe57;
  transform: scale(1.08) translateY(-3px);
  color: #fff;
}

@media (max-width: 600px) {
  .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    bottom: 18px;
    right: 18px;
  }
}

.animated-card:hover > div,
.animated-card:focus > div,
.animated-card:active > div {
  transform: scale(1.06) translateY(-6px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  z-index: 2;
}

/* ==== GARANTİ OVERRIDE (EN ALTA) ==== */

/* Header her sayfada tek tip */
header,
.fixed-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 64px !important;
  padding: 0 2rem !important;
  background: rgba(255, 255, 255, 0.95) !important;
  z-index: 10000 !important;
  display: flex !important;
  align-items: center !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
}

header nav,
.fixed-header nav {
  max-width: 1200px !important;
  margin: 0 auto !important;
  width: 100% !important;
  height: 64px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

/* Logo aynı kalsın */
.logo { line-height: 1.05 !important; }
.logo-text { font-size: 2rem !important; margin: 0 !important; }
.logo-subtext { margin: 0 !important; font-weight: 500 !important; letter-spacing: 0.25em !important; }

/* Sayfa içerikleri header altına düşmesin */
body {
  padding-top: 56px !important;
}


.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem 2rem;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}


}

/* === FORCE BUTTON COLORS (override all duplicates) === */
.hero-btn.green,
.submit-button,
.read-more-btn,
.back-to-blog,
.cta-button {
  background: #C76B3A !important; /* kirmiziya yakin turuncu-kirmizi */
  border-color: #C76B3A !important;
  color: #fff !important;
}

.hero-btn.green:hover,
.submit-button:hover,
.read-more-btn:hover,
.back-to-blog:hover,
.cta-button:hover {
  background: #a94f25 !important;
}

/* WhatsApp kalsin */
.whatsapp-float { 
  background-color: #25D366 !important;
}

/* === LOGO FINAL FIX (BIREBIR AYNI G R N M) === */

.logo {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.logo-text,
.logo-subtext {
  display: block !important;          /* KRITIK */
  font-family: 'Playfair Display', serif !important;
  color: #7C9A92 !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.1 !important;        /* KRITIK */
  letter-spacing: 1px !important;
}

/*  ST SATIR */
.logo-text {
  font-size: 2rem !important;
  font-weight: 600 !important;
}

/* ALT SATIR */
.logo-subtext {
  font-size: 1rem !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 3px !important;
}

.service-icon-modern i,
.expertise-card i,
.fa-brain {
  color: #4A6FA5
;
}

/* Ana b l m basligi */
.why-therapy-section h2 {
  color: #4F6F73;
}

/* Kart basliklari */
.reason-card h3 {
  color: #4F6F73;
}

/* A iklama metinleri */
.reason-card p {
  color: #666;
}

/* Ikonlar */
.reason-card i {
  color: #7C9A92;
}

/* === NEDEN TERAPI B L M  RENK ZORLAMA === */

/* B l m ana basligi */
section h2 {
  color: #4F6F73 !important;
}

/* Kart basliklari */
section h3 {
  color: #4F6F73 !important;
}

/* Kart a iklamalari */
section p {
  color: #666666 !important;
}

/* Kahverengi tonu tamamen iptal */
h1, h2, h3, h4, h5, h6 {
  color: #2F3A3A !important;
}

/* HERO  st baslik rengini degistir */
.hero-title {
  color: #4F6F73 !important;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

/* === FOOTER FINAL CLEAN DESIGN === */

footer {
  background: linear-gradient(135deg, #F4F8F7 0%, #E8F1F0 40%, #F7FAFA 100%);
}

.footer-logo,
footer h3 {
  color: #2F3A3A;
}

footer p {
  color: #5F6F73;
}

.footer-links a {
  color: #4F6F73;
}

.footer-links a:hover {
  color: #2F3A3A;
}

footer i {
  color: #4F6F73;
}

.contact-info h3::after,
.footer-links h3::after {
  background: #7C9A92;
}

.social-links a {
  background: #ffffff;
  color: #4F6F73;
}

.social-links a:hover {
  background: #7C9A92;
  color: #ffffff;
}

/* === FOOTER ICON STYLES (TEK MERKEZ) === */

/* Iletisim ikonlari */
.contact-info i {
  color: #4F6F73;
  font-size: 1.1rem;
  margin-right: 10px;
}

/* Hizli erisim ok ikonlari */
.footer-links i {
  color: #7C9A92;
  font-size: 0.85rem;
  margin-right: 8px;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover efekti */
.footer-links a:hover i {
  color: #2F3A3A;
  transform: translateX(3px);
}


/* FOOTER - Hizli Erisim ikonlarini ZORLA degistir */
.footer-links ul li a i.fas {
  color: #4F6F73 !important;
  font-size: 0.85rem;
  margin-right: 8px;
  transition: transform 0.25s ease, color 0.25s ease;
}

/* Hover efekti */
.footer-links ul li a:hover i.fas {
  color: #2F3A3A !important;
  transform: translateX(4px);
}

/* Footer sosyal ikonlar */
.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4F6F73; /* ana ikon rengi */
  font-size: 1.15rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
}

/* Hover efekti */
.social-links a:hover {
  background: #4F6F73;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

/* Footer i indeki .contact-info, contact sayfasi stillerinden etkilenmesin */
footer .contact-info{
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

footer .contact-info p{
  margin: 0 0 12px 0;
}

/* Footer grid d zg n dursun */
footer .footer-content{
  align-items: start;
}

/* Footer sosyal ikonlar yerinden oynamasin */
footer .social-links{
  margin-top: 16px;
}
/* Sagda tasma (kayma) fix */
html, body {
  width: 100%;
  overflow-x: hidden;
}

/* Footer grid tasmasini engelle */
footer {
  width: 100%;
  overflow-x: hidden;
}

footer .footer-content {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;

  /*  nemli: grid item'lar tasmasin */
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
}

footer .footer-brand,
footer .contact-info,
footer .footer-links {
  min-width: 0;
}

footer .footer-description,
footer .contact-info p,
footer .footer-links a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Footer hizalama + d zg n satir kirma */
footer .footer-content{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Iletisim satirlari: ikon + yazi d zg n hizalansin */
footer .contact-info p{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}

/* Ikon genisligi sabit olsun, kayma olmasin */
footer .contact-info i{
  width: 22px;
  min-width: 22px;
  text-align: center;
  margin-top: 2px;
}

/* Mail gibi uzun metinler d zg n kirilsin */
footer .contact-info,
footer .contact-info p{
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Hizli erisim oklari + yazi hizasi */
footer .footer-links a{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
footer .footer-links i{
  width: 16px;
  text-align: center;
}

/* Footer mail satiri */
footer .contact-info p:nth-of-type(2){
  font-size: 0.95rem;        /* biraz k   lt */
  line-height: 1.4;          /* satiri sikilastir */
  max-width: 260px;          /* genisligi sinirla */

}

footer .contact-info a{
  color: inherit;
  text-decoration: none;
}
footer .contact-info a:hover{
  color: #4a7c77;
}

/* =========================================================
   ? CLEAN OVERRIDE PACK (EN ALTA YAPISTIR)
   - Palet tek
   - Kahverengi iptal
   - Footer + sosyal ikonlar d zg n
   - Asiri genel section h2/h3/p kurallarini etkisizlestirir
   ========================================================= */

/* 0) DEBUG KALDIR */
body { outline: none !important; }

/* 1) TEK PALET */
:root{
  --primary-color: #4F6F73;     /* ana vurgu (kahverengi yerine) */
  --secondary-color: #E8F1F0;
  --text-color: #2F3A3A;        /* ana metin */
  --muted: #5F6F73;             /* ikincil metin */
  --accent-color: #7C9A92;      /* ikinci vurgu */
  --background-light: #F5F7F7;

  --line: rgba(31,41,55,.12);
  --card: #ffffff;
}

/* 2) GENEL TIPOGRAFI (section h2/h3/p gibi  her seyi  boyayan kurallari t rp le) */
body{
  color: var(--text-color) !important;
  background: var(--background-light) !important;
}

p{ color: var(--muted); }

/* Basliklar tek renk + tutarli */
h1,h2,h3,h4,h5,h6{
  color: var(--text-color) !important;
}

/* Hero  st baslik */
.hero-title{
  color: var(--primary-color) !important;
}

/* 3) REASON CARD (Neden terapi kartlari) netlestir */
.why-therapy-section h2{
  color: var(--primary-color) !important;
}

.reason-card i{
  color: var(--accent-color) !important;
}
.reason-card h3{
  color: var(--primary-color) !important;
}
.reason-card p{
  color: var(--muted) !important;
}

/* 4) SERVICE CARD kahverengileri kes (senin kartlar kahverengiye d n yordu) */
.service-card .service-icon-modern{
  background: rgba(124,154,146,.12) !important;
  color: var(--primary-color) !important;
}
.service-card h2{
  color: var(--primary-color) !important;
}
.service-features li{
  color: var(--muted) !important;
}
.service-features li::before{
  color: var(--accent-color) !important;
}
.service-card .card-bottom-bar{
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%) !important;
}

/* 5) FOOTER   TEK TASARIM,  AKISMA YOK */
footer{
  background: linear-gradient(135deg, #F4F8F7 0%, #E8F1F0 45%, #F7FAFA 100%) !important;
  color: var(--text-color) !important;
  overflow-x: hidden !important;
}

footer .footer-content{
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;

  display: grid !important;
  grid-template-columns: minmax(0,2fr) minmax(0,1fr) minmax(0,1fr) !important;
  gap: 50px !important;
  align-items: start !important;
}

/* Footer sol baslik */
footer .footer-logo{
  color: var(--text-color) !important;
}
footer .footer-logo span{
  color: var(--muted) !important;
}
footer .footer-description{
  color: var(--muted) !important;
  line-height: 1.7 !important;
  overflow-wrap: anywhere !important;
}

/* Footer  Iletisim / Hizli Erisim  basliklari */
footer .contact-info h3,
footer .footer-links h3{
  color: var(--text-color) !important;
}
footer .contact-info h3::after,
footer .footer-links h3::after{
  background: var(--accent-color) !important;
}

/* Footer iletisim satirlari */
footer .contact-info{
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  min-width: 0 !important;
}
footer .contact-info p{
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  line-height: 1.6 !important;
  margin: 0 0 12px 0 !important;
  color: var(--muted) !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
}
footer .contact-info i{
  width: 22px !important;
  min-width: 22px !important;
  text-align: center !important;
  margin-top: 2px !important;
  color: var(--primary-color) !important;
}

/* Mail satirini toparla (k   k, kirilabilir) */
footer .contact-info p:nth-of-type(2){
  font-size: .95rem !important;
  line-height: 1.4 !important;
  max-width: 260px !important;
}

/* Footer linkler */
footer .footer-links{
  min-width: 0 !important;
}
footer .footer-links ul{
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
footer .footer-links a{
  color: var(--muted) !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
  transition: .2s ease !important;
}
footer .footer-links a:hover{
  color: var(--primary-color) !important;
  transform: translateX(3px) !important;
}
footer .footer-links a i{
  width: 16px !important;
  text-align: center !important;
  color: var(--accent-color) !important;
}
footer .footer-links a:hover i{
  color: var(--primary-color) !important;
}

/* 6) SOSYAL IKONLAR    garip  g r n m  d zelt (tam ortali, ayni boy) */
footer .social-links{
  display: flex !important;
  gap: 12px !important;
  margin-top: 16px !important;
}
footer .social-links a{
  width: 44px !important;
  height: 44px !important;
  border-radius: 999px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #fff !important;
  border: 1px solid var(--line) !important;
  box-shadow: 0 8px 22px rgba(31,41,55,.08) !important;
  text-decoration: none !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease !important;
}
footer .social-links a i{
  font-size: 1.1rem !important;
  line-height: 1 !important;
  color: var(--primary-color) !important;
}
footer .social-links a:hover{
  background: rgba(79,111,115,.10) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 28px rgba(31,41,55,.12) !important;
}

/* 7) Footer alt */
footer .footer-bottom{
  border-top: 1px solid var(--line) !important;
  color: var(--muted) !important;
}

/* 8) Responsive footer */
@media (max-width: 900px){
  footer .footer-content{
    grid-template-columns: 1fr !important;
    gap: 34px !important;
    text-align: left !important;
  }
}

/* 9) Yatay tasmayi kesin bitir */
html, body{
  max-width: 100% !important;
  overflow-x: hidden !important;
}

.psikolojik-banner {
  background: linear-gradient(
    135deg,
    #F4F8F7 0%,
    #E8F1F0 100%
  );
  padding: 80px 20px 60px;   /* yukaridan asagi kisaldi */
  text-align: center;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 6px 24px rgba(124, 154, 146, 0.08);
  margin-bottom: 48px;
}

.banner-icon {
  width: 54px;
  height: 54px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.5rem;
  color: #7C9A92;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.psikolojik-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #2F3A3A;
  font-weight: 600;
  margin-bottom: 12px;
}

.psikolojik-banner p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #5F6F73;
  line-height: 1.7;
}

.psikolojik-banner::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #7C9A92;
  margin: 24px auto 0;
  border-radius: 2px;
}

header,
.fixed-header {
  height: 56px !important;
  padding: 0 1.5rem !important;
}

header nav,
.fixed-header nav {
  height: 56px !important;
}

/* === IMAGE MODAL / LIGHTBOX === */
.image-modal {
  display: none;
  position: fixed;
  z-index: 100000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}

.image-modal-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  animation: zoomIn 0.25s ease;
}

.image-modal-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* Tiklanabilirlik hissi */
img.clickable-image {
  cursor: zoom-in;
}

/* Neden Terapi Almalisiniz? ikonlarini maviye sabitle */
.why-therapy-section .reason-card i,
.therapy-reasons .reason-card i,
.reason-card i {
  color: #4A6FA5 !important;
}

.why-therapy-section i.fas,
.why-therapy-section i.far,
.why-therapy-section i.fab {
  color: #4A6FA5 !important;
}

.blog-card {
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
  margin-bottom:40px;
}

.blog-card img {
  width:100%;
  height:260px;
  object-fit:cover;
}

.blog-content {
  padding:20px;
}

.blog-content h2 {
  margin:10px 0;
}

.blog-category {
  font-size:14px;
  color:#4a7c8c;
}


.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  margin-bottom: 40px;
}

.blog-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.blog-content {
  padding: 24px;
}

.blog-content h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.blog-content p {
  color: #555;
  line-height: 1.6;
  min-height: 72px;
}

.single-post {
  max-width: 820px;
  margin: 60px auto;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
}

.single-post-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 30px;
}

.single-post-meta {
  display: flex;
  gap: 20px;
  color: #888;
  font-size: .9rem;
  margin-bottom: 10px;
}

.single-post h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.single-post-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
}

.back-link {
  display: inline-block;
  margin-top: 40px;
  color: #3a7bd5;
  text-decoration: none;
  font-weight: 500;
}

.blog-card { display:flex; flex-direction:column; }
.blog-card .blog-body { flex:1; display:flex; flex-direction:column; }
.blog-card .read-more { margin-top:auto; }
.blog-img { width:100%; height:220px; object-fit:cover; display:block; }

/* BLOG GRID */
.blog-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:24px;
  align-items:stretch;
}

@media (max-width: 900px){
  .blog-grid{ grid-template-columns: 1fr; }
}

/* BLOG CARD */
.blog-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  display:flex;
  flex-direction:column;
  min-height: 100%;
}

.blog-media{
  width:100%;
  aspect-ratio: 16 / 6;   /* görsel alanı sabit */
  background:#f1f3f5;
  overflow:hidden;
}

.blog-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.blog-body{
  padding:18px 20px 20px;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1;
}

.blog-meta{
  font-size:13px;
  color:#6b7280;
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

.blog-title{
  margin:0;
  font-size:22px;
  line-height:1.2;
}

.blog-excerpt{
  margin:0;
  color:#334155;
  line-height:1.6;
  flex:1;               /* içerik uzasa da buton altta kalır */
}

.blog-actions{
  margin-top:6px;
}

.blog-actions a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:600;
  text-decoration:none;
}

.content-wrapper { padding-top: 90px; } /* fixed header varsa */

.blog-section{
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 16px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}

.blog-container{ display: grid; gap: 22px; }

.blog-post{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.10);
  display:grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
}

.blog-image{ background:#f2f2f2; }
.blog-image img{
  width:100%;
  height:100%;
  max-height: 220px;
  object-fit: cover;
  display:block;
}

.blog-content{ padding: 18px 18px 16px 18px; display:flex; flex-direction:column; }
.blog-meta{ display:flex; gap:14px; color:#666; font-size:.95rem; margin-bottom:8px; flex-wrap:wrap; }
.blog-content h2{ margin: 6px 0 8px; font-size: 1.25rem; line-height:1.25; }
.blog-content p{ margin:0 0 12px; color:#444; line-height:1.55; }

.read-more{ color:#007bff; font-weight:600; text-decoration:none; margin-top:auto; }
.read-more:hover{ color:#0056b3; }

.blog-sidebar .sidebar-widget{
  background:#fff;
  border-radius:14px;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  padding: 16px;
  margin-bottom: 16px;
}
.blog-sidebar ul{ margin: 10px 0 0; padding-left: 18px; }
.blog-sidebar a{ color:#222; text-decoration:none; }
.blog-sidebar a:hover{ color:#007bff; }

@media (max-width: 980px){
  .blog-section{ grid-template-columns: 1fr; }
  .blog-post{ grid-template-columns: 1fr; }
  .blog-image img{ max-height: 260px; }
}

/* BLOG PAGE (kart + sidebar) */
.blog-section{
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 16px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}

.blog-container{
  display: grid;
  gap: 22px;
}

.blog-post{
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.10);
  display: grid;
  grid-template-columns: 320px 1fr;
}

.blog-image{
  background: #f2f2f2;
}

.blog-image img{
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: cover;
  display: block;
}

.blog-content{
  padding: 18px 18px 16px 18px;
  display: flex;
  flex-direction: column;
}

.blog-meta{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.blog-content h2{
  margin: 6px 0 8px;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #222;
}

.blog-content p{
  margin: 0 0 12px;
  color: #444;
  line-height: 1.55;
}

.read-more{
  margin-top: auto;
  color: #007bff;
  font-weight: 600;
  text-decoration: none;
}

.read-more:hover{ color:#0056b3; }

/* Sidebar */
.blog-sidebar .sidebar-widget{
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  padding: 16px;
  margin-bottom: 16px;
}

.blog-sidebar ul{
  margin: 10px 0 0;
  padding-left: 18px;
}

.blog-sidebar a{
  color: #222;
  text-decoration: none;
}

.blog-sidebar a:hover{ color:#007bff; }

/* Responsive */
@media (max-width: 980px){
  .blog-section{ grid-template-columns: 1fr; }
  .blog-post{ grid-template-columns: 1fr; }
  .blog-image img{ max-height: 260px; }
}

/* ============================
   BLOG LIST (KILIT OVERRIDE)
   Sadece blog.php listeyi hedefler
   ============================ */

/* blog.php sayfasında body'ye class ekleyebilirsen: body class="page-blog" */
.page-blog .blog-section{
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.page-blog .blog-container{
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-blog .blog-post{
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
}

.page-blog .blog-image{
  width: 100%;
  height: 250px;
  overflow: hidden;
  margin: 0;              /* eski margin-bottom çakışmasın */
}

.page-blog .blog-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.page-blog .blog-post:hover .blog-image img{
  transform: scale(1.05);
}

.page-blog .blog-content{
  padding: 0 25px 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-blog .blog-meta{
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  color: #666;
  font-size: 0.9rem;
  margin: 5px 0 0 0;
  align-items: center;
}

.page-blog .blog-meta span{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f5f7fa;
  padding: 6px 12px;
  border-radius: 20px;
}

.page-blog .blog-content h2{
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--text-color);
  margin: 10px 0 0 0;
  line-height: 1.25;
}

.page-blog .blog-content p{
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

.page-blog .read-more{
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  margin-top: 5px;
}

.page-blog .read-more:hover{
  color: #5a7a72;
}

/* Sidebar */
.page-blog .blog-sidebar{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-blog .sidebar-widget{
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* responsive */
@media (max-width: 768px){
  .page-blog .blog-section{ grid-template-columns: 1fr; }
  .page-blog .blog-image{ height: 200px; }
  .page-blog .blog-content h2{ font-size: 1.5rem; }
}

.blog-card.single {
  max-width: 900px;
  margin: 0 auto;
}

/* HEADER LOGO – GLOBAL FIX */
header.fixed-header nav .logo{
  display: flex;
  flex-direction: column;   /* alt alta */
  align-items: flex-start;
  line-height: 1.1;
  gap: 2px;
}

header.fixed-header nav .logo-text{
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin: 0;
  padding: 0;
  display: block;
  white-space: nowrap;
}

header.fixed-header nav .logo-subtext{
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #666;
  margin: 0;
  padding: 0;
  display: block;
  text-transform: uppercase;
}

header.fixed-header nav .logo-text,
header.fixed-header nav .logo-subtext{
  all: unset;
  display: block;
}


/* LOGO – kesin sabitleme (tüm sayfalarda aynı) */
header .logo{
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-start !important;
  gap:2px !important;
  line-height:1.1 !important;
}

header .logo .logo-text{
  font-family:'Playfair Display', serif !important;
  font-size:22px !important;
  font-weight:700 !important;
  color:#222 !important;
  margin:0 !important;
  padding:0 !important;
  display:block !important;
}

header .logo .logo-subtext{
  font-family:'Poppins', sans-serif !important;
  font-size:13px !important;
  font-weight:600 !important;
  letter-spacing:3px !important;   /* burası farkı yaratan yer */
  text-transform:uppercase !important;
  color:#666 !important;
  margin:0 !important;
  padding:0 !important;
  display:block !important;
}

/* Hakkımda/Banner arkaplanını kesin değiştiren kural */
section.services-hero.psikolojik-banner{
  background: linear-gradient(
    120deg,
    #EEF4F2 0%,
    #F2EFE6 45%,
    #FFF1E6 90%
  );
}

section.services-hero.psikolojik-banner{
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.03);
}


/* Banner üst/alt fazlalıkları temizle */
section.services-hero.psikolojik-banner{
  margin: 0 !important;           /* dış boşlukları sıfırla */
  border-radius: 0 0 32px 32px;    /* senin form kalsın */
  padding: 64px 20px 48px 20px !important; /* daha dengeli */
}

/* Header fixed ise, içerik üstten çok boşluk bırakmasın */
main.content-wrapper{
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Bazı temalarda section’lara global margin/padding gelir; onu kır */
main.content-wrapper > section:first-child{
  margin-top: 0 !important;
}

/* Body veya ana wrapper default margin bırakıyorsa sıfırla */
html, body{
  margin: 0;
  padding: 0;
}

