<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700&display=swap" rel="stylesheet"/>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet"/>
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script>AOS.init({ duration: 1000 });</script>

/* ====================================
   GENEL TEMEL STİLLER (Body, Başlıklar)
==================================== */
body {
  margin: 0;
  padding: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1f2937;
  background-color: #f9f9f9;
}

body::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: url('/wp-content/themes/Rupsikoloji/assets/img/logo.png') no-repeat center center / contain;
  opacity: 0.08;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

h1, h2, h3 {
  margin: 0 0 24px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.3;
  text-align: center;
}

h1 {
  font-size: clamp(36px, 5vw, 60px);
  color: #d97706;
}

h2 {
  font-size: clamp(28px, 4vw, 36px);
}

h3 {
  font-size: clamp(22px, 3vw, 28px);
}

p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  color: #4a3a2c;
}

.highlight {
  color: #d97706;
  font-weight: 600;
}
/* =====================
   HERO ANA BÖLÜM STİLLERİ
===================== */
.hero {
  background: none;
  padding: 40px 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 30px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
}

.hero-text {
  max-width: 90%;
}

.hero-text h1,
.hero-text p {
  max-width: 100%;
}

.hero-btn{
  font-size:16px;
  padding:14px 32px;
  background:linear-gradient(90deg,#d97706,#f59e0b);
  color:#fff;
  border-radius:30px;
  font-weight:600;
  text-decoration:none;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
  transition:all .3s ease;
  display:block; 
  width:max-content;      
  margin:24px auto 0;     
}

.hero-btn:hover{
  background:linear-gradient(90deg,#b45309,#d97706);
  transform:scale(1.03);
}

.hero-btn:hover {
  background: linear-gradient(90deg, #b45309, #d97706);
  transform: scale(1.03);
}

.hero-img img {
  max-height: 400px;
  width: auto;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* ==============================
   HERO RESPONSIVE (Mobil Ekranlar)
============================== */
@media (max-width: 992px) {
  .hero {
    padding: 60px 20px !important;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px 20px;
    flex-direction: column;
    align-items: center;
  }

  .hero-text {
    padding: 30px;
    margin-bottom: 20px;
  }

  .hero-text h1 {
    font-size: 30px;
    text-align: center;
  }

  .hero-text p {
    font-size: 15px;
    margin-bottom: 24px;
    text-align: center;
  }

  .hero-img {
    margin-top: 30px;
  }

  .hero-img img {
    max-width: 80%;
    margin-top: 20px;
  }

  .hero-btn {
    font-size: 16px;
    padding: 12px 24px;
    width: 100%;
    max-width: 320px;
    display: inline-block;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.4;
  }

  .hero p {
    font-size: 16px;
    margin: 20px 0;
  }
}
/* =============================
   HAKKIMIZDA BÖLÜMÜ (about-card)
============================= */
.about-card{
  border-radius:32px;
  padding:80px 60px;
  box-shadow:0 16px 48px rgba(0,0,0,.09);
  max-width:1350px;
  margin:10px auto;
  text-align:center;
  position:relative;
}

.about-card h2{
  font-size:38px;
  color:#d97706;
  margin-bottom:12px;
  position:relative;
  display:inline-block;
}

.about-card h2::after{
  content:"";
  display:block;
  width:60px;
  height:3px;
  background:#d97706;
  margin:12px auto 0;
  border-radius:2px;
}

.about-card p{
  font-size:19px;
  color:#4a3a2c;
  line-height:1.8;
  margin-top:30px;
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
  text-align:justify;      
  text-align-last:center;  
}
/* =============================
   MİSYON & VİZYON (mission-vision)
============================= */
.mission-vision{
  padding:60px 0;
  margin:10px 0;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:40px;
  text-align:center; 
}

.mv-box{
  background:#fff;
  padding:40px;
  border-radius:20px;
  box-shadow:0 8px 24px rgba(0,0,0,.05);
  transition:transform .3s;
}

.mv-box:hover{transform:translateY(-8px)}
.mv-box p{
  text-align:justify;     
  text-align-last:center;  
}


/* =============================
   KURUMSAL DEĞERLER (values)
============================= */
.kurumsal-degerler{
  margin-top:10px!important;
  padding-top:0!important;
}
.kurumsal-degerler h2{margin-top:0!important}

.values{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:30px;
  margin:0;
}

.value-card{
  background:#fff;
  border-radius:20px;
  padding:30px;
  text-align:center;                /* başlık ve ikon ortada */
  box-shadow:0 10px 24px rgba(0,0,0,.04);
  transition:.3s;
}
.value-card:hover{
  background:#f2edff;
  transform:scale(1.03);
}

.value-card i{
  font-size:36px;
  color:#d97706;
  margin-bottom:15px;
}

.value-card p{
  text-align:justify;      
  text-align-last:center;  
}

/* =============================
   MARQUEE STİLİ (Genel)
============================= */
.uzman-ekibimiz {
  margin-top: 10px !important; 
  padding-top: 0 !important;    
}

.uzman-ekibimiz h2 {
  margin-top: 0 !important;     
}

/* =============================
   MARQUEE STİLİ (Genel Yapı)
============================= */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  width: fit-content;
  gap: 20px;
  animation: scroll-left 90s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =============================
   MARQUEE KARTLARI (Uzmanlar)
============================= */
.team-member {
  flex: 0 0 260px;
  background: #fff;
  border-radius: 16px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  scroll-snap-align: start;
}

.team-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}
/* =============================
   KULLANICI YORUMLARI (Testimonial)
============================= */
.kullanici-yorumlari {
  margin-top: 10px !important;
  padding-top: 0 !important;
}

.kullanici-yorumlari h2 {
  margin-top: 0 !important;
}

.kullanici-yorumlari .marquee-wrapper {
  overflow: hidden;
  position: relative;
}

.kullanici-yorumlari .marquee-track {
  display: flex;
  width: fit-content;
  gap: 20px;
  animation: scroll-left 90s linear infinite;
}

.kullanici-yorumlari .testimonial {
  flex: 0 0 300px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  scroll-snap-align: start;
}

.kullanici-yorumlari .testimonial h4 {
  margin-top: 10px;
  font-size: 16px;
  color: #666;
}
/* =============================
   CTA (EYLEM ÇAĞRISI ALANI)
============================= */
.cta-bolumu {
  margin-top: 10px !important;   /* Önceki blokla arası 10px */
  padding-top: 0 !important;
}

.cta-bolumu h2 {
  margin-top: 0 !important;
}

.cta {
  background: linear-gradient(to right, #d97706, #d97706);
  color: white;
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
}

/* Buton stili hero ile aynı (ancak .cta-btn olarak kullanılıyor) */
.cta-btn {
  display: inline-block;
  font-size: 16px;
  padding: 14px 32px;
  background: linear-gradient(90deg, #d97706, #f59e0b);
  color: white;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  margin-top: 20px;
}

.cta-btn:hover {
  background: linear-gradient(90deg, #b45309, #d97706);
  transform: scale(1.03);
}

/* =====================================
   GENEL MOBİL CİHAZ STİLLERİ (768px altı)
===================================== */
@media (max-width: 768px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 28px;
  }

  p {
    font-size: 16px;
  }

  /* Hero özel mobil düzenler */
  .hero {
    padding: 60px 20px !important;
  }

  .hero h1 {
    font-size: 36px !important;
  }

  .hero p {
    font-size: 16px !important;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .hero-text {
    padding: 30px;
    margin-bottom: 20px;
  }

  .hero-text h1,
  .hero-text p {
    text-align: center;
  }

  .hero-img {
    margin-top: 30px;
  }

  .hero-img img {
    max-width: 80%;
    margin-top: 20px;
  }

  .hero-btn {
    font-size: 16px;
    padding: 12px 24px;
    width: 100%;
    max-width: 320px;
    display: inline-block;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.4;
  }

  .hero p {
    font-size: 16px;
    margin: 20px 0;
  }
}
