/* Reset and Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #111111;
  background: #C9BFAB;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, 95%);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #111111;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #C9BFAB;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: #704214;
  color: white;
  border: none;
}

.btn-primary:hover {
  background: #5C4033;
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  background: #C9BFAB;
  padding: 80px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-copy h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 16px;
  color: #704214;
}

.hero-copy h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 24px;
  color: #704214;
}

.hero-copy p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 20px;
  color: #111111;
  text-align: justify;
}

.hero-visual {
  height: 600px;
  position: relative;
}

.hero-image {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Hakkımda Section */
.hakkimda-section {
  background: #FFFFFF;
  padding: 80px 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 60px;
  color: #111111;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #C9BFAB;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin: 40px 0;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: #C9BFAB;
  border-radius: 2px;
  z-index: 2;
}

.timeline-content {
  width: 45%;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  border: 1px solid rgba(231,111,0,.1);
}

.timeline-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #8B7A6F;
  margin: 0 0 12px;
}

.timeline-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #111111;
  margin: 0;
}

/* Çalışma Alanları Section */
.calisma-section {
  background: #C9BFAB;
  padding: 80px 0;
}

.numbered-list {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.numbered-list::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #C9BFAB;
}

.numbered-item {
  position: relative;
  margin: 40px 0;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: #A67D65;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  z-index: 2;
}

.content {
  margin-left: 80px;
  flex: 1;
}

.content h3 {
  font-size: 22px;
  font-weight: 600;
  color: #8B7A6F;
  margin: 0 0 16px;
}

.content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #A67D65;
  margin: 24px 0 12px;
}

.content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.content li {
  font-size: 16px;
  line-height: 1.6;
  color: #111111;
  margin: 8px 0;
  padding-left: 0;
  position: relative;
}

.content li::before {
  content: '•';
  color: #C9BFAB;
  font-weight: bold;
  position: absolute;
  left: -16px;
}

/* Terapi Nedir Section */
.terapi-section {
  background: #FFFFFF;
}

.banner-image {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #C9BFAB, #C9BFAB);
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.1) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

.banner-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(255,255,255,.05) 50%, transparent 70%),
    linear-gradient(-45deg, transparent 30%, rgba(255,255,255,.05) 50%, transparent 70%);
}

.terapi-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.terapi-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 600;
  color: #8B7A6F;
  margin: 0 0 40px;
}

.terapi-text {
  text-align: left;
  margin: 0 0 40px;
}

.terapi-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #111111;
  margin: 0 0 24px;
  text-align: justify;
}

.terapi-text p:last-child {
  margin-bottom: 0;
}

.signature {
  text-align: right;
  font-size: 16px;
  font-weight: 500;
  color: #111111;
  font-style: italic;
}

/* Hizmetler Section */
.hizmetler-section {
  background: #C9BFAB;
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #E0DCD4;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
}

.service-item-wide {
  grid-column: 1 / -1;
}

.service-number {
  width: 60px;
  height: 60px;
  background: #A67D65;
  border: 2px solid #A67D65;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.service-content {
  flex: 1;
}

.service-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: #8B7A6F;
  margin: 0 0 16px;
}

.service-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #444444;
  margin: 0;
  text-align: justify;
}

/* Sıkça Sorulan Sorular (SSS) bölümü için stil */
.sss-section {
  padding: 80px 0;
  background-color: #fff;
}

.sss-section .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  margin-bottom: 8px;
}

.accordion-button {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button-content {
  display: flex;
  align-items: center;
  gap: 24px;
}

.accordion-button .number {
  color: #8B7A6F;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  min-width: 40px;
}

.accordion-button .title {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-align: left;
}

.accordion-button .icon {
  font-size: 24px;
  color: #8B7A6F;
  transition: transform 0.3s ease;
}

.accordion-button:hover {
  background-color: rgba(231, 111, 0, 0.05);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 24px 0 88px;
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
  padding-bottom: 24px;
}

.accordion-item.active .icon {
  transform: rotate(45deg);
}

.accordion-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Terapi Planları Bölümü */
.planlar-section {
  padding: 80px 0;
  background: #fff;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.plan-item {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.plan-item:hover {
  transform: translateY(-4px);
}

.plan-header {
  margin-bottom: 24px;
}

.plan-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #F5F5DC;
  color: #fff;
  border-radius: 8px;
  text-align: center;
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 16px;
}

.plan-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #333;
  margin: 0 0 16px 0;
}

.plan-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #666;
  font-size: 14px;
}

.plan-content p {
  color: #444;
  line-height: 1.7;
  margin: 0;
}

/* Randevu Bölümü */
.randevu-section {
  padding: 80px 0;
  background: #C9BFAB;
}

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

.randevu-description {
  font-size: 18px;
  color: #333;
  margin-bottom: 32px;
}

.randevu-button {
  padding: 16px 32px;
  font-size: 18px;
  background: #704214;
  color: white;
  box-shadow: 0 4px 24px rgba(112,66,20,0.2);
}

.randevu-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(112,66,20,0.3);
}

/* İletişim Bölümü */
.iletisim-section {
  padding: 80px 0;
  background: #C9BFAB;
  text-align: center;
}

.iletisim-content {
  max-width: 600px;
  margin: 0 auto;
}

.iletisim-content p {
  font-size: 18px;
  color: #333;
  margin-bottom: 24px;
}

.phone-number {
  font-size: 24px;
  font-weight: 600;
  color: #8B7A6F;
  background: #FFFFFF;
  padding: 20px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: inline-block;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .calendar-container {
    border-radius: 8px;
  }
  
  .calendar-container iframe {
    height: 500px;
  }
}

@media (max-width: 480px) {
  .calendar-container iframe {
    height: 400px;
  }
}

@media (max-width: 1024px) {
  .container {
    width: 95%;
    padding: 0 16px;
  }
  
  .hero-inner {
    gap: 40px;
  }
  
  .hero-copy h1 {
    font-size: 42px;
  }
  
  .hero-copy h2 {
    font-size: 28px;
  }
  
  .plans-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
  }
  
  .main-nav ul {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-copy h1 {
    font-size: 36px;
  }
  
  .hero-copy h2 {
    font-size: 24px;
  }
  
  .plan-item {
    padding: 24px;
  }
  
  .plan-header h3 {
    font-size: 20px;
  }
  
  .hero-visual {
    height: 400px;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    flex-direction: row !important;
    padding-left: 60px;
  }
  
  .timeline-marker {
    left: 20px;
  }
  
  .timeline-content {
    width: 100%;
  }
  
  .numbered-list::before {
    left: 20px;
  }
  
  .number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .content {
    margin-left: 60px;
  }
  
  .content h3 {
    font-size: 20px;
  }
  
  .content li {
    font-size: 15px;
  }
  
  .banner-image {
    height: 200px;
  }
  
  .terapi-content {
    padding: 40px 16px;
  }
  
  .terapi-title {
    font-size: 36px;
  }
  
  .terapi-text p {
    font-size: 16px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .service-item-wide {
    grid-column: 1;
  }
  
  .service-content h3 {
    font-size: 24px;
  }
  
  .service-content p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .main-nav ul {
    gap: 16px;
  }
  
  .main-nav a {
    font-size: 14px;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 13px;
  }
  
  .hero-copy h1 {
    font-size: 32px;
  }
  
  .hero-copy h2 {
    font-size: 20px;
  }
  
  .hero-copy p {
    font-size: 15px;
  }
  
  .terapi-title {
    font-size: 28px;
  }
  
  .terapi-text p {
    font-size: 15px;
  }
  
  .banner-image {
    height: 150px;
  }
  
  .service-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .service-content h3 {
    font-size: 20px;
  }
  
  .service-content p {
    font-size: 14px;
  }

  .phone-number {
    font-size: 20px;
    padding: 16px 24px;
  }
}

/* Sıkça Sorulan Sorular (SSS) bölümü için stil */
.sss-section {
  padding: 80px 0;
  background-color: #fff;
}

.sss-section .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  margin-bottom: 8px;
}

.accordion-button {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button-content {
  display: flex;
  align-items: center;
  gap: 24px;
}

.accordion-button .number {
  color: #8B7A6F;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  min-width: 40px;
}

.accordion-button .title {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-align: left;
}

.accordion-button .icon {
  font-size: 24px;
  color: #8B7A6F;
  transition: transform 0.3s ease;
}

.accordion-button:hover {
  background-color: rgba(231, 111, 0, 0.05);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 24px 0 88px;
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
  padding-bottom: 24px;
}

.accordion-item.active .icon {
  transform: rotate(45deg);
}

.accordion-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .accordion-button {
    padding: 20px 16px;
  }
  
  .button-content {
    gap: 16px;
  }
  
  .accordion-button .number {
    font-size: 18px;
    color: #C9BFAB;
    min-width: 32px;
  }
  
  .accordion-content {
    padding: 0 16px 0 64px;
  }
}

@media (max-width: 480px) {
  .button-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
.accordion-content {
  padding: 0 16px 0 16px;
}