/* ============================================
   COMPONENTS CSS
   Referans: Portfolio Minimal Tasarım
   ============================================ */

/* --- Hero Section (Ana Sayfa) --- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
}

/* Concentric circle decoration (reference style) */
.hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  pointer-events: none;
}

.hero-bg::before,
.hero-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(74, 58, 255, 0.06);
}

.hero-bg::before {
  width: min(700px, 120vw);
  height: min(700px, 120vw);
}

.hero-bg::after {
  width: min(500px, 90vw);
  height: min(500px, 90vw);
}

.hero-circle-1,
.hero-circle-2,
.hero-circle-3 {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(74, 58, 255, 0.05);
  z-index: 0;
  pointer-events: none;
}

.hero-circle-1 {
  width: min(900px, 150vw);
  height: min(900px, 150vw);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-circle-2 {
  width: min(1100px, 180vw);
  height: min(1100px, 180vw);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-circle-3 {
  width: min(1300px, 210vw);
  height: min(1300px, 210vw);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blob1, .blob2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.35;
}

.blob1 {
  width: 300px;
  height: 300px;
  background: rgba(74, 58, 255, 0.12);
  top: 10%;
  right: -50px;
  animation: blobFloat 10s ease-in-out infinite;
}

.blob2 {
  width: 200px;
  height: 200px;
  background: rgba(108, 95, 255, 0.10);
  bottom: 20%;
  left: -30px;
  animation: blobFloat 10s ease-in-out infinite 4s;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.2s;
}

.hero-tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: dotPulse 2s ease-in-out infinite;
}

.hero h1 {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.35s;
  line-height: 1.1;
  margin-bottom: 4px;
}

/* Hero Profile Photo with blue geometric accent */
.hero-photo {
  width: 260px;
  height: 260px;
  margin: 0 auto 32px;
  position: relative;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.15s;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  border: 4px solid white;
  box-shadow: var(--shadow-md);
}

/* Blue geometric accent behind photo */
.hero-photo::before {
  content: '';
  position: absolute;
  width: 110px;
  height: 110px;
  background: var(--primary);
  border-radius: 22px;
  top: -16px;
  right: -16px;
  z-index: 1;
  transform: rotate(15deg);
}

.hero-photo::after {
  content: '';
  position: absolute;
  width: 65px;
  height: 65px;
  background: var(--primary-light);
  border-radius: 16px;
  bottom: -10px;
  left: -10px;
  z-index: 1;
  transform: rotate(-10deg);
  opacity: 0.7;
}

.hero-desc {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
  margin-top: 20px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.60s;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.75s;
}

.hero-stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.90s;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--primary);
}

.stat-label {
  font-size: 11px;
  color: var(--soft);
  margin-top: 4px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.5s;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--border-light);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 50%;
  background: var(--primary);
  animation: scrollLine 2s ease-in-out infinite;
}

.scroll-text {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--soft);
}

/* --- About Strip --- */
.about-strip {
  background: var(--navy);
  border-radius: 24px;
  margin: 0 16px;
  padding: 48px 24px;
  position: relative;
  overflow: hidden;
  color: white;
}

.about-strip .deco-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(74, 58, 255, 0.12);
  top: -40px;
  right: -40px;
}

.about-strip .section-label {
  color: var(--primary-light);
}

.about-strip .section-label::before {
  background: var(--primary-light);
}

.about-strip h2 {
  color: white;
  font-size: clamp(24px, 5vw, 36px);
  margin-bottom: 16px;
}

.about-strip p {
  color: var(--soft);
  margin-bottom: 24px;
}

.about-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.about-tag {
  padding: 6px 14px;
  background: rgba(74, 58, 255, 0.15);
  border: 1px solid rgba(74, 58, 255, 0.25);
  border-radius: var(--radius-pill);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.about-strip .btn-secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
}

.about-strip .btn-secondary:hover {
  background: rgba(74, 58, 255, 0.2);
  border-color: var(--primary-light);
  color: white;
}

/* About Inner Layout */
.about-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(74, 58, 255, 0.3);
  flex-shrink: 0;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

/* --- VR Card (Ana Sayfa) --- */
.vr-card {
  background: var(--gradient-dark);
  border-radius: 24px;
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
  color: white;
}

.vr-card .deco1,
.vr-card .deco2 {
  position: absolute;
  border-radius: 50%;
  background: rgba(74, 58, 255, 0.15);
}

.vr-card .deco1 {
  width: 150px;
  height: 150px;
  top: -40px;
  right: -30px;
}

.vr-card .deco2 {
  width: 100px;
  height: 100px;
  bottom: -20px;
  right: 40px;
}

.vr-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  color: white;
  margin-bottom: 16px;
}

.vr-card h3 {
  color: white;
  font-size: clamp(22px, 5vw, 32px);
  margin-bottom: 12px;
}

.vr-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.vr-card .btn-primary {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: none;
}

.vr-card .btn-primary:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* --- Service Cards --- */
.services-section {
  padding: var(--section-padding);
  max-width: 1080px;
  margin: 0 auto;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition);
  border-radius: 20px;
}

.service-card:active {
  transform: scale(0.98);
  box-shadow: var(--shadow-md);
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.service-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-pale);
  border-radius: 14px;
  font-size: 22px;
  transition: var(--transition-bounce);
  position: relative;
  z-index: 1;
}

.service-card:active .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.service-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.service-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.5;
}

.service-arrow {
  font-size: 20px;
  color: var(--primary);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.service-card:active .service-arrow {
  transform: translateX(4px);
}

/* --- Areas Section --- */
.areas-section {
  background: var(--cream);
  padding: var(--section-padding);
}

.areas-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 10px;
  padding: 4px 0 16px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.areas-scroll::-webkit-scrollbar {
  display: none;
}

.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  white-space: nowrap;
  scroll-snap-align: start;
  flex-shrink: 0;
  cursor: pointer;
  transition: var(--transition);
  touch-action: manipulation;
  text-decoration: none;
}

.area-pill:active,
.area-pill:hover {
  background: var(--primary-pale);
  border-color: var(--primary);
  color: var(--primary);
}

/* --- Testimonials --- */
.testimonials-section {
  padding: 80px 24px;
  background: var(--primary-pale);
  position: relative;
}

.testimonials-section .section-label,
.testimonials-section .section-title {
  text-align: center;
}

.testimonial-quote-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 24px;
}

.testimonials-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  padding: 4px 0 16px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.testimonials-scroll::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  width: 82vw;
  max-width: 360px;
  flex-shrink: 0;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 28px;
  scroll-snap-align: start;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  color: #F0A500;
  font-size: 14px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 18px;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
}

.testimonial-role {
  font-size: 12px;
  color: var(--soft);
}

/* --- Blog Cards (Ana Sayfa) --- */
.blog-section {
  padding: var(--section-padding);
  max-width: 1080px;
  margin: 0 auto;
}

.blog-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-card {
  display: flex;
  gap: 16px;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  padding: 16px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.blog-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary);
}

.blog-img {
  width: 90px;
  height: 90px;
  min-width: 90px;
  border-radius: 14px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-cat {
  font-size: 11px;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 4px;
}

.blog-card-date {
  font-size: 12px;
  color: var(--soft);
}

/* --- Contact CTA Section --- */
.contact-section {
  padding: 0 24px 72px;
}

.contact-card {
  background: var(--navy);
  border-radius: 28px;
  padding: 40px 28px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(74, 58, 255, 0.15);
  top: -100px;
  right: -100px;
}

.contact-card::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(108, 95, 255, 0.10);
  bottom: -80px;
  left: -60px;
}

.contact-card h2 {
  color: white;
  font-size: clamp(24px, 5vw, 36px);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.contact-card h2 em {
  color: var(--primary-light);
}

.contact-card > p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: white;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  touch-action: manipulation;
}

.contact-btn:hover {
  background: rgba(74, 58, 255, 0.3);
  border-color: var(--primary-light);
}

.contact-btn.whatsapp {
  background: rgba(37, 211, 102, 0.2);
  border-color: rgba(37, 211, 102, 0.35);
}

.contact-btn.whatsapp:hover {
  background: rgba(37, 211, 102, 0.3);
}

.contact-location {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
}

/* --- Hizmet Detay Kartlari --- */
.hizmet-detay {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  margin-bottom: 20px;
}

.hizmet-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.hizmet-icon-lg {
  width: 60px;
  height: 60px;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-pale);
  border-radius: 18px;
  font-size: 28px;
}

.hizmet-header .section-label {
  margin-bottom: 4px;
}

.hizmet-header .section-title {
  margin-bottom: 0;
  font-size: clamp(22px, 5vw, 30px);
}

.hizmet-desc {
  color: var(--mid);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.hizmet-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.hizmet-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--charcoal);
}

.hizmet-feature::before {
  content: '\2713';
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-pale);
  color: var(--primary);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

/* --- Alan (Accordion) Cards --- */
.alan-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
}

.alan-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  transition: var(--transition);
  touch-action: manipulation;
}

.alan-header:hover {
  background: var(--primary-pale);
}

.alan-emoji {
  font-size: 24px;
  min-width: 32px;
  text-align: center;
}

.alan-title {
  flex: 1;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
}

.alan-toggle {
  font-size: 20px;
  color: var(--primary);
  transition: var(--transition);
  min-width: 24px;
  text-align: center;
}

.alan-card.open .alan-toggle {
  transform: rotate(45deg);
}

.alan-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
}

.alan-card.open .alan-body {
  max-height: 300px;
  padding: 0 20px 20px;
}

.alan-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--mid);
}

/* --- VR Page --- */
.vr-hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 24px 48px;
  background: var(--gradient-dark);
  color: white;
  position: relative;
}

.vr-hero h1 {
  color: white;
  margin-bottom: 16px;
}

.vr-hero p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
}

.vr-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.vr-benefit-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
}

.benefit-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.vr-benefit-card h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.vr-benefit-card p {
  font-size: 13px;
  line-height: 1.6;
}

.vr-conditions-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 10px;
  padding: 4px 0 16px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.vr-conditions-scroll::-webkit-scrollbar {
  display: none;
}

/* --- Blog Page --- */
.filter-scroll {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  padding: 4px 0 16px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.filter-scroll::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  padding: 8px 18px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  background: white;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
  touch-action: manipulation;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-item {
  display: flex;
  gap: 16px;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 16px;
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
}

.blog-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.blog-img-wrap {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 14px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  overflow: hidden;
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  flex: 1;
}

.blog-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 6px;
}

.blog-excerpt {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
}

.blog-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--soft);
}

/* --- Blog Article --- */
.blog-article {
  padding: 100px 24px 72px;
  max-width: 720px;
  margin: 0 auto;
}

.article-header {
  text-align: center;
  margin-bottom: 40px;
}

.article-emoji {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--gradient);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.article-cat {
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.article-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 7vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
}

.article-meta {
  font-size: 13px;
  color: var(--soft);
}

.article-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--mid);
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--charcoal);
  margin: 36px 0 16px;
}

.article-body h3 {
  font-size: 20px;
  color: var(--charcoal);
  margin: 28px 0 12px;
}

.article-body p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.85;
}

.article-body ul, .article-body ol {
  margin: 16px 0 20px 20px;
}

.article-body li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--mid);
  list-style: disc;
}

.article-body ol li {
  list-style: decimal;
}

.article-body blockquote {
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--soft);
}

.article-body strong {
  color: var(--charcoal);
  font-weight: 600;
}

.article-cta {
  background: var(--primary-pale);
  border: 1px solid rgba(74, 58, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  margin: 40px 0;
}

.article-cta p {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.related-posts {
  margin-top: 48px;
}

.related-posts h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 20px;
}

/* --- Profile (Hakkimda) --- */
.profile-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0 48px;
  background: var(--cream);
}

.profile-banner {
  width: 100%;
  max-height: 300px;
  overflow: hidden;
  margin-bottom: -60px;
}

.profile-banner img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}

.profile-img-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid white;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}

/* Page Hero Photo */
.page-hero-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  border: 3px solid var(--primary);
  box-shadow: var(--shadow-sm);
}

.page-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.profile-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-img-placeholder {
  font-size: 48px;
}

.profile-title {
  font-size: 14px;
  color: var(--soft);
  margin-top: 4px;
}

.profile-location {
  font-size: 13px;
  color: var(--soft);
  margin-top: 8px;
}

/* --- Values Grid --- */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.value-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.value-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.value-card h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 13px;
  line-height: 1.6;
}

/* --- Timeline --- */
.timeline {
  border-left: 2px solid var(--border-light);
  padding-left: 24px;
  margin-left: 12px;
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
}

.timeline-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  left: -31px;
  top: 4px;
}

.timeline-year {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 4px;
}

.timeline-item h3 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 4px;
}

.timeline-item p {
  font-size: 13px;
}

/* --- Contact Page --- */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 40px;
}

.info-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 20px;
  text-decoration: none;
  transition: var(--transition);
  display: block;
  text-align: center;
}

.info-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.info-card.whatsapp {
  border-color: rgba(37, 211, 102, 0.3);
}

.info-card.whatsapp .info-icon {
  background: rgba(37, 211, 102, 0.12);
}

.info-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.info-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--soft);
  margin-bottom: 4px;
}

.info-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
}

/* --- Form --- */
.form-section {
  padding: var(--section-padding);
}

.appointment-form {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--warm-white);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:not([type="checkbox"]):not([type="radio"]):focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74, 58, 255, 0.10);
  background: white;
}

.form-group input:not([type="checkbox"]):not([type="radio"]).error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e05c5c;
}

.field-error {
  display: none;
  font-size: 12px;
  color: #e05c5c;
  margin-top: 6px;
}

.field-error.show {
  display: block;
}

.seans-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.seans-option {
  flex: 1;
  min-width: 100px;
  cursor: pointer;
}

.seans-option input[type="radio"] {
  display: none;
}

.seans-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 10px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  transition: var(--transition);
  text-align: center;
}

.seans-option input:checked + span {
  border-color: var(--primary);
  background: var(--primary-pale);
  color: var(--primary);
}

.checkbox-group {
  margin-top: 8px;
}

.checkbox-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
}

/* Hide native checkbox, use custom design */
.checkbox-label input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 0;
  height: 0;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Custom checkbox box */
.custom-check {
  width: 26px;
  min-width: 26px;
  height: 26px;
  border: 2px solid var(--border-light);
  border-radius: 6px;
  background: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-top: 1px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Blue filled state with white tick */
.checkbox-label input[type="checkbox"]:checked + .custom-check {
  background: var(--primary);
  border-color: var(--primary);
}

/* The tick mark (hidden by default) */
.custom-check svg {
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.15s ease;
}

.checkbox-label input[type="checkbox"]:checked + .custom-check svg {
  opacity: 1;
  transform: scale(1);
}

.link {
  color: var(--primary);
  text-decoration: underline;
}

.optional {
  font-weight: 300;
  color: var(--soft);
  font-size: 12px;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  border-radius: var(--radius-md);
  justify-content: center;
  margin-top: 8px;
}

.form-success {
  background: var(--primary-pale);
  border: 1px solid rgba(74, 58, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  margin-top: 24px;
}

.success-icon { font-size: 40px; margin-bottom: 12px; }

.form-success h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-error-msg {
  background: #fff0f0;
  border: 1px solid rgba(224, 92, 92, 0.3);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  margin-top: 16px;
}

/* --- Kitap (Book) Section --- */
.book-section {
  padding: 0 24px 16px;
}

.book-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.book-cover {
  width: 160px;
  height: 240px;
  border-radius: 12px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-card h3 {
  font-size: clamp(20px, 4vw, 26px);
  margin-bottom: 8px;
}

.book-card .book-subtitle {
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ============================================
   DESKTOP RESPONSIVE - COMPONENTS (768px+)
   ============================================ */
@media (min-width: 768px) {

  /* Hero - wider */
  .hero {
    padding: 120px 48px 80px;
  }

  .hero-content {
    max-width: 720px;
  }

  .hero-photo {
    width: 300px;
    height: 300px;
  }

  .hero-photo::before {
    width: 130px;
    height: 130px;
  }

  .hero-photo::after {
    width: 75px;
    height: 75px;
  }

  .hero-stats {
    gap: 56px;
  }

  .stat-number {
    font-size: 40px;
  }

  /* About strip */
  .about-strip {
    margin: 0 48px;
    padding: 64px 48px;
  }

  .about-inner {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .about-photo {
    width: 160px;
    height: 160px;
  }

  /* VR Card */
  .vr-card {
    padding: 56px 48px;
  }

  /* Services grid - 2 columns */
  .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .service-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }

  .service-arrow {
    display: none;
  }

  /* Areas - grid instead of scroll */
  .areas-scroll {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    overflow: visible;
    padding: 0 48px;
  }

  /* Testimonials - grid */
  .testimonials-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    overflow: visible;
    padding: 0;
  }

  .testimonial-card {
    min-width: unset;
    max-width: unset;
    width: auto;
  }

  .testimonials-section {
    padding: 100px 48px;
  }

  /* Blog cards - 3 columns */
  .blog-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .blog-card {
    min-width: unset;
    flex-direction: column;
  }

  .blog-img {
    width: 100%;
    min-width: unset;
    height: 120px;
    border-radius: 14px;
  }

  /* Contact section */
  .contact-card {
    padding: 56px 48px;
  }

  .contact-options {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    flex-direction: row;
  }

  /* Hizmet detay */
  .hizmet-detay {
    padding: 40px;
  }

  .hizmet-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  /* Blog article */
  .blog-article {
    max-width: 800px;
    padding: 120px 48px 72px;
  }

  .article-body {
    font-size: 17px;
    line-height: 1.9;
  }

  .article-body p {
    font-size: 17px;
  }

  /* Blog list */
  .blog-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .blog-item {
    flex-direction: column;
  }

  .blog-img-wrap {
    width: 100%;
    min-width: unset;
    height: 140px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }

  /* Profile hero */
  .profile-img-wrap {
    width: 160px;
    height: 160px;
  }

  /* Values grid */
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  /* Contact info grid */
  .contact-info-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  /* VR Benefits */
  .vr-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Breadcrumb & author box */
  .breadcrumb {
    max-width: 800px;
  }

  .author-box {
    max-width: 800px;
  }

  .article-cta {
    padding: 48px;
  }

  /* Book section */
  .book-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    text-align: left;
    padding: 40px;
  }

  .book-cover {
    margin-bottom: 0;
    min-width: 140px;
  }
}

/* ============================================
   LARGE DESKTOP - COMPONENTS (1024px+)
   ============================================ */
@media (min-width: 1024px) {

  .hero-content {
    max-width: 800px;
  }

  .hero-photo {
    width: 340px;
    height: 340px;
  }

  .hero-photo::before {
    width: 140px;
    height: 140px;
    top: -20px;
    right: -20px;
  }

  .hero-photo::after {
    width: 80px;
    height: 80px;
  }

  .about-strip {
    margin: 0 auto;
    max-width: 960px;
    padding: 72px 64px;
    border-radius: 32px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
  }

  .blog-cards {
    max-width: 960px;
    margin: 0 auto;
  }

  .testimonials-scroll {
    max-width: 960px;
    margin: 0 auto;
  }

  .areas-scroll {
    max-width: 960px;
    margin: 0 auto;
    padding: 0;
  }

  .blog-list {
    grid-template-columns: repeat(3, 1fr);
    max-width: 960px;
    margin: 0 auto;
  }

  .blog-article {
    max-width: 860px;
  }

  .breadcrumb, .author-box {
    max-width: 860px;
  }

  .contact-card {
    max-width: 960px;
    margin: 0 auto;
    border-radius: 32px;
  }

  .vr-card {
    max-width: 960px;
    margin: 0 auto;
    border-radius: 32px;
  }

  .book-card {
    max-width: 720px;
    margin: 0 auto;
  }

  .hizmet-detay {
    padding: 48px;
  }

  .hizmet-features {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .values-grid {
    max-width: 960px;
    margin: 0 auto;
  }
}

/* --- Back Link --- */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--primary);
  padding: 12px 0;
  transition: var(--transition);
}

.back-link:hover {
  gap: 12px;
}

/* Breadcrumb */
.breadcrumb {
  padding: 80px 24px 12px;
  max-width: 720px;
  margin: 0 auto;
  font-size: 0.85rem;
  color: var(--soft);
}
.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .bc-sep { margin: 0 6px; color: #bbb; }
.breadcrumb span[aria-current] { color: var(--charcoal); }

/* Author Box */
.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.author-box {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.author-box .author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.author-box .author-info strong {
  font-size: 1rem;
  color: var(--charcoal);
}
.author-box .author-info span {
  font-size: 0.85rem;
  color: var(--soft);
}
.author-box p {
  font-size: 0.9rem;
  color: var(--mid);
  margin: 0;
  width: 100%;
}
