<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
   Psikolojik DanÄ±ÅŸmanlÄ±k Platformu - Ana CSS DosyasÄ±
   Bu dosya tÃ¼m sayfalar iÃ§in ortak stilleri iÃ§erir
*/

/* Ana DeÄŸiÅŸkenler */
:root {
  --primary-color: #2B214B;
  --secondary-color: #6957A7;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --border-color: #e0e0e0;
  --hover-color: #f3f0ff;
  --message-sender-bg: rgba(105, 87, 167, 0.1);
  --message-receiver-bg: #f1f1f1;
  --message-sender-color: var(--primary-color);
  --message-receiver-color: #333333;
  --chat-bg: #ffffff;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --chat-bg-img-url: url('../img/chat-bg.jpg');
  --psychologists-bg-img-url: url('../img/psychologists-bg.jpg');
  --pricing-bg-img-url: url('../img/pricing-bg.jpg');
  --about-bg-img-url: url('../img/about-bg.jpg');
  --contact-bg-img-url: url('../img/contact-bg.jpg');
  --profile-bg-img-url: url('../img/profile-bg.jpg');
  --account-bg-img-url: url('../img/profile-bg.jpg');
  --result-bg-img-url: url('../img/result-bg.jpg');
  --payment-bg-img-url: url('../img/payment-bg.jpg');
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* Global Stiller */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Buton Stilleri */
.btn-primary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-light {
  color: white;
  border-color: white;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
}

.btn-light {
  background-color: white;
  color: var(--primary-color);
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-light:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.btn-outline-primary {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
  font-weight: 600;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
}

/* Form Kontrolleri */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(105, 87, 167, 0.1);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-check-input:checked {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.form-text {
  font-size: 0.85rem;
  color: #666;
  margin-top: 5px;
}

.input-group {
  margin-bottom: 1.5rem;
}

.input-group-text {
  background-color: var(--light-color);
  border: 1px solid #ddd;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
}

/* Ortak BileÅŸen Stilleri */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.section-title h2:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
  transform: translateX(-50%);
}

.section-title p {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Navbar Stilleri */
.navbar {
  background-color: var(--primary-color);
  padding: 15px 0;
}

.navbar-brand img {
  height: 40px;
}

.navbar .nav-link {
  color: white;
  margin-left: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar .nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Sayfa BaÅŸlÄ±klarÄ± Genel Stili */
.page-header {
  color: white;
  text-align: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
  background-image: linear-gradient(rgba(43, 33, 75, 0.85), rgba(43, 33, 75, 0.85)), url('../img/header-bg.jpg');
}

.page-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Footer Stilleri */
footer {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0 30px;
}

.footer-logo {
  margin-bottom: 30px;
  max-width: 150px;
}

.footer-links h5 {
  color: white;
  margin-bottom: 20px;
  font-weight: 600;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--secondary-color);
}

.copyright {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Call to Action BÃ¶lÃ¼mÃ¼ */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-section p {
  max-width: 700px;
  font-size: 1.2rem;
  margin: 0 auto 30px;
}

.cta-section .btn-light {
  background-color: white;
  color: var(--primary-color);
  font-weight: 600;
  padding: 15px 40px;
  font-size: 1.1rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-5px);
}

/* Pagination */
.pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.pagination {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 5px;
}

.pagination li {
  display: inline-block;
}

.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--primary-color);
  border: 1px solid #ddd;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination a:hover {
  background-color: rgba(105, 87, 167, 0.1);
  border-color: var(--secondary-color);
}

.pagination li.active a {
  background-color: var(--secondary-color);
  color: white;
  border-color: var(--secondary-color);
}

.pagination li.disabled a {
  color: #ccc;
  cursor: not-allowed;
}

/* Durumlar ve Bildirimler */
.status-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 5px;
}

.status-online {
  background-color: var(--success-color);
}

.status-offline {
  background-color: #6c757d;
}

.status-busy {
  background-color: var(--danger-color);
}

.status-away {
  background-color: var(--warning-color);
}

.badge {
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-block;
}

.badge-success {
  background-color: rgba(40, 167, 69, 0.1);
  color: var(--success-color);
}

.badge-warning {
  background-color: rgba(255, 193, 7, 0.1);
  color: #e6a300;
}

.badge-danger {
  background-color: rgba(220, 53, 69, 0.1);
  color: var(--danger-color);
}

.badge-primary {
  background-color: rgba(105, 87, 167, 0.1);
  color: var(--secondary-color);
}

/* Scrollbar Ã–zelleÅŸtirme */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #c1b9de;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* Animasyonlar */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0% { background-position: 0% 0; }
  100% { background-position: -200% 0; }
}

/* Genel YardÄ±mcÄ± SÄ±nÄ±flar */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-success { color: var(--success-color) !important; }
.text-warning { color: var(--warning-color) !important; }
.text-danger { color: var(--danger-color) !important; }

.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-light { background-color: var(--light-color) !important; }
.bg-hover { background-color: var(--hover-color) !important; }

.shadow-sm { box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05) !important; }
.shadow { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important; }
.shadow-lg { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important; }

.rounded { border-radius: 5px !important; }
.rounded-lg { border-radius: 10px !important; }
.rounded-circle { border-radius: 50% !important; }

/* Responsive Stilller */
@media (max-width: 1200px) {
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .section {
    padding: 60px 0;
  }
  
  .page-header {
    padding: 60px 0;
  }
  
  .page-header h1 {
    font-size: 2.2rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
  
  .cta-section .btn-light {
    padding: 12px 30px;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .page-header p {
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: 8px 20px;
  }
  
  .footer-section {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 1.8rem;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 40px 0;
  }
}
















/* Ana Sayfa Ã–zgÃ¼n Stilleri */

/* Hero Section */
.hero {
  background: linear-gradient(rgba(43, 33, 75, 0.85), rgba(43, 33, 75, 0.85)), url('../img/hero-bg.jpg') no-repeat center center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  color: white;
  max-width: 700px;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Features Section */
.features {
  padding: 80px 0;
}

.feature-box {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  background-color: white;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  border-radius: 50%;
  background-color: rgba(105, 87, 167, 0.1);
  color: var(--secondary-color);
  font-size: 2rem;
}

.feature-box h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}







/* Ã–zelleÅŸtirilmiÅŸ Psikologlar BÃ¶lÃ¼mÃ¼ Stilleri */

/* Ana BÃ¶lÃ¼m */
.psychologists__index {
  padding: 90px 0;
  background-color: #f8f9fa;
  position: relative;
}

.container__index {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* BaÅŸlÄ±k Stili */
.section-title__index {
  text-align: center;
  margin-bottom: 50px;
}

.title__index {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2B214B;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.title__index::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #6957A7, #8A4FFF);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.description__index {
  max-width: 700px;
  margin: 0 auto;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Carousel Ã–zelleÅŸtirme */
.psychologist-carousel__index {
  margin: 0 -10px;
  padding: 10px 0;
}

/* Psikolog KartlarÄ± */
.psychologist-card__index {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  margin: 10px;
  height: calc(100% - 20px); /* margins for 10px top and bottom */
  display: flex;
  flex-direction: column;
}

.psychologist-card__index:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 25px rgba(105, 87, 167, 0.12);
}

.psychologist-img__index {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.psychologist-info__index {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.psychologist-name__index {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2B214B;
  margin-bottom: 5px;
}

.specialty__index {
  color: #6957A7;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 15px;
  display: inline-block;
}

/* YÄ±ldÄ±z Derecelendirme */
.rating__index {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.star__index {
  color: #FFD700;
  font-size: 1rem;
  margin-right: 2px;
}

.reviews__index {
  margin-left: 8px;
  color: #777;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Psikolog AÃ§Ä±klamasÄ± */
.bio__index {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1; /* Buton ile kartÄ±n altÄ± arasÄ±nda esnek boÅŸluk bÄ±rakÄ±r */
}

/* Profil Butonu */
.profile-btn__index {
  display: inline-block;
  background: linear-gradient(135deg, #6957A7, #8A4FFF);
  color: white;
  padding: 12px 10px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(105, 87, 167, 0.2);
  width: 100%;
}

.profile-btn__index:hover {
  background: linear-gradient(135deg, #8A4FFF, #6957A7);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(105, 87, 167, 0.3);
  color: white;
  text-decoration: none;
}

/* TÃ¼m PsikologlarÄ± GÃ¶rÃ¼ntÃ¼le Butonu */
.btn-wrapper__index {
  text-align: center;
  margin-top: 40px;
}

.all-btn__index {
  display: inline-block;
  background-color: #2B214B;
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(43, 33, 75, 0.2);
}

.all-btn__index:hover {
  background-color: #6957A7;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(43, 33, 75, 0.3);
  color: white;
  text-decoration: none;
}

/* Owl Nav Ã–zelleÅŸtirme */
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50% !important;
  background: white !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
  color: #2B214B !important;
  font-size: 1.8rem !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
  background: linear-gradient(135deg, #6957A7, #8A4FFF) !important;
  color: white !important;
}

.owl-nav button.owl-prev {
  left: -22px;
}

.owl-nav button.owl-next {
  right: -22px;
}

.owl-dots {
  text-align: center;
  margin-top: 30px;
}

.owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #dddddd;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s ease;
}

.owl-dots .owl-dot.active span {
  background-color: #6957A7;
  width: 25px;
  border-radius: 10px;
}

/* Responsive DÃ¼zenlemeler */
@media (max-width: 1199.98px) {
  .container__index {
    max-width: 960px;
  }
  
  .title__index {
    font-size: 2.3rem;
  }
}

@media (max-width: 991.98px) {
  .container__index {
    max-width: 720px;
  }
  
  .psychologists__index {
    padding: 70px 0;
  }
  
  .title__index {
    font-size: 2rem;
  }
  
  .description__index {
    font-size: 1rem;
  }
  
  .psychologist-img__index {
    height: 220px;
  }
}

@media (max-width: 767.98px) {
  .container__index {
    max-width: 540px;
  }
  
  .psychologists__index {
    padding: 50px 0;
  }
  
  .title__index {
    font-size: 1.8rem;
  }
  
  .psychologist-img__index {
    height: 200px;
  }
  
  .psychologist-info__index {
    padding: 20px;
  }
  
  .psychologist-name__index {
    font-size: 1.3rem;
  }
  
  .owl-nav button.owl-prev,
  .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem !important;
  }
}

@media (max-width: 575.98px) {
  .psychologists__index {
    padding: 40px 0;
  }
  
  .title__index {
    font-size: 1.6rem;
  }
  
  .psychologist-img__index {
    height: 180px;
  }
  
  .psychologist-info__index {
    padding: 15px;
  }
  
  .psychologist-name__index {
    font-size: 1.2rem;
  }
  
  .specialty__index {
    font-size: 0.9rem;
  }
  
  .owl-nav button.owl-prev,
  .owl-nav button.owl-next {
    width: 35px;
    height: 35px;
    font-size: 1.3rem !important;
  }
  
  .owl-nav button.owl-prev {
    left: -17px;
  }
  
  .owl-nav button.owl-next {
    right: -17px;
  }
  
  .profile-btn__index {
    padding: 10px;
    font-size: 0.95rem;
  }
  
  .all-btn__index {
    padding: 12px 24px;
    font-size: 1rem;
  }
}





/* How it Works Section */
.how-it-works {
  padding: 80px 0;
}

.step-card {
  text-align: center;
  padding: 30px;
  height: 100%;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.step-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.testimonial-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin: 15px 10px;
  position: relative;
}

.testimonial-card:before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 2rem;
  color: rgba(105, 87, 167, 0.1);
}

.testimonial-text {
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px !important;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
}

.testimonial-author-info h4 {
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--primary-color);
}

.testimonial-author-info span {
  color: #777;
}

/* Auth Section Styles */
.auth-container {
  max-width: 900px;
  width: 100%;
  margin: 50px auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  background-color: white;
}

.auth-row {
  display: flex;
  min-height: 600px;
}

.auth-image {
  flex: 1;
  background-color: var(--primary-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 2rem;
}

.auth-image img {
  max-width: 200px;
  margin-bottom: 2rem;
}

.auth-content {
  flex: 1;
  padding: 3rem;
}

.auth-tabs {
  display: flex;
  margin-bottom: 2rem;
}

.auth-tab {
  flex: 1;
  text-align: center;
  padding: 1rem;
  cursor: pointer;
  font-weight: 600;
  color: #888;
  border-bottom: 2px solid #eee;
  transition: all 0.3s ease;
}

.auth-tab.active {
  color: var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
}

.social-login {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.social-login a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 0.5rem;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-login a.facebook {
  background-color: #3b5998;
}

.social-login a.google {
  background-color: #db4437;
}

.social-login a.apple {
  background-color: #000;
}

.auth-footer {
  text-align: center;
  margin-top: 2rem;
  color: #888;
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero {
    height: auto;
    padding: 100px 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .feature-box, .step-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .auth-row {
    flex-direction: column;
  }
  
  .auth-image {
    display: none;
  }
  
  .auth-content {
    padding: 2rem;
  }
}




















   /* Chat Header */
   .chat-header {
    background: linear-gradient(rgba(43, 33, 75, 0.85), rgba(43, 33, 75, 0.85)), 
                var(--chat-bg-img-url) no-repeat center center/cover;
    padding: 60px 0;
    color: white;
    text-align: center;
}

/* Chat Main */
.chat-main {
    padding: 50px 0;
    background-color: #f9f9ff;
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* Chat Container */
.chat-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 650px;
    width: 100%;
    display: flex;
}

/* Chat Sidebar */
.chat-sidebar {
    width: 100%;
    height: 100%;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    background-color: white;
}

.chat-sidebar-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.chat-sidebar-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.chat-search {
    position: relative;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.chat-search input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.chat-search input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(105, 87, 167, 0.1);
}

.chat-search-btn {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--secondary-color);
    cursor: pointer;
}

.chat-contacts {
    flex: 1;
    overflow-y: auto;
    height: calc(100% - 130px);
    -webkit-overflow-scrolling: touch;
}

.chat-contact {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-contact:hover {
    background-color: var(--hover-color);
}

.chat-contact.active {
    background-color: var(--hover-color);
    border-left: 3px solid var(--secondary-color);
}

.chat-contact-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
    object-fit: cover;
}

.chat-contact-info {
    flex: 1;
    min-width: 0;
}

.chat-contact-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-contact-time {
    font-size: 0.75rem;
    color: #666;
    white-space: nowrap;
}

.chat-contact-message {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 170px;
}

.chat-contact-status {
    display: flex;
    align-items: center;
}

.chat-contact-status .badge {
    background-color: var(--secondary-color);
    font-size: 0.7rem;
    font-weight: 500;
    padding: 3px 6px;
    border-radius: 10px;
    margin-left: 10px;
}

/* Status Indicators */
.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.status-online {
    background-color: #4CAF50;
}

.status-offline {
    background-color: #9E9E9E;
}

.status-busy {
    background-color: #F44336;
}

.status-away {
    background-color: #FF9800;
}

/* Chat Content */
.chat-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
}

.chat-content-header {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    flex-shrink: 0;
}

.chat-person-info {
    display: flex;
    align-items: center;
}

.chat-person-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.chat-person-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.chat-person-status {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.chat-actions button {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #666;
    margin-left: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-actions button:hover {
    color: var(--secondary-color);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background-color: var(--chat-bg);
    -webkit-overflow-scrolling: touch;
}

.chat-day {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.chat-day span {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #666;
}

.message {
    display: flex;
    margin-bottom: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.message.received {
    justify-content: flex-start;
}

.message.sent {
    justify-content: flex-end;
}

.message-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    align-self: flex-end;
    flex-shrink: 0;
    object-fit: cover;
}

.message.sent .message-avatar {
    display: none;
}

.message-content {
    max-width: 60%;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.95rem;
    position: relative;
    word-wrap: break-word;
}

.message.received .message-content {
    background-color: var(--message-receiver-bg);
    color: var(--message-receiver-color);
    border-bottom-left-radius: 0;
}

.message.sent .message-content {
    background-color: var(--message-sender-bg);
    color: var(--message-sender-color);
    border-bottom-right-radius: 0;
}

.message-time {
    display: block;
    font-size: 0.7rem;
    color: #777;
    text-align: right;
    margin-top: 5px;
}

.message-status {
    display: inline-block;
    margin-left: 5px;
}

.message-status i {
    font-size: 0.7rem;
    color: #777;
}

.message-status .read {
    color: #4682B4;
}

.chat-input {
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    background-color: white;
    flex-shrink: 0;
}

.chat-input-actions {
    display: flex;
    margin-right: 15px;
}

.chat-input-actions button {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.chat-input-actions button:hover {
    color: var(--secondary-color);
}

.chat-input-field {
    flex: 1;
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 30px;
    padding: 5px 15px;
}

.chat-input-field input {
    flex: 1;
    border: none;
    background: none;
    padding: 10px 0;
    outline: none;
    font-size: 0.95rem;
}

.chat-send-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-send-btn:hover {
    background-color: var(--primary-color);
}

/* Chat Empty State */
.chat-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
    text-align: center;
    color: #666;
}

.chat-empty-state i {
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.chat-empty-state h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.chat-empty-state p {
    max-width: 80%;
    margin-bottom: 20px;
}

/* Mobile Adaptations */
@media (max-width: 992px) {
    .chat-sidebar-col {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 1050;
        width: 280px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .chat-sidebar-col.active {
        transform: translateX(0);
    }
    
    .chat-sidebar {
        height: 100%;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .chat-sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 1040;
        display: none;
    }
    
    .chat-sidebar-overlay.active {
        display: block;
    }
    
    .toggle-sidebar-btn {
        display: block !important;
    }
}

@media (min-width: 993px) {
    .toggle-sidebar-btn {
        display: none !important;
    }
    
    .chat-sidebar-overlay {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .chat-container {
        height: 600px;
    }
    
    .message-content {
        max-width: 80%;
    }
    
    .chat-content-header {
        padding: 10px 15px;
    }
    
    .chat-person-avatar {
        width: 40px;
        height: 40px;
    }
    
    .chat-messages {
        padding: 15px;
    }
    
    .chat-input {
        padding: 10px 15px;
    }
    
    .chat-input-actions {
        margin-right: 10px;
    }
    
    .chat-input-actions button {
        font-size: 1.1rem;
        margin-right: 5px;
    }
    
    .chat-send-btn {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 576px) {
    .chat-container {
        height: calc(100vh - 150px);
        border-radius: 0;
    }
    
    .chat-main {
        padding: 0;
        margin: 20px 0px;
    }
    
    .message-content {
        max-width: 90%;
    }
    
    .chat-header {
        padding: 30px 0;
    }
}



















/* HakkÄ±mÄ±zda SayfasÄ± Ã–zgÃ¼n Stilleri */

/* HakkÄ±mÄ±zda BaÅŸlÄ±k */
.about-header {
  background: linear-gradient(rgba(43, 33, 75, 0.85), rgba(43, 33, 75, 0.85)), var(--about-bg-img-url) no-repeat center center/cover;;
  padding: 60px 0;
  color: white;
  text-align: center;
}

/* Ana BÃ¶lÃ¼m Stilleri */
.about-intro {
  background-color: white;
}

.about-mission {
  background-color: #f9f9ff;
}

.about-team {
  background-color: white;
}

.about-values {
  background-color: #f9f9ff;
}


.about-testimonials {
  background-color: white;
}


/* HakkÄ±mÄ±zda GiriÅŸ BÃ¶lÃ¼mÃ¼ */
.about-intro-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-intro-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-intro-content p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-intro-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-features {
  margin-top: 30px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.about-feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: rgba(105, 87, 167, 0.1);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.3rem;
  margin-right: 15px;
}

.about-feature-text h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.about-feature-text p {
  color: #666;
  margin-bottom: 0;
}

/* Misyon &amp; Vizyon BÃ¶lÃ¼mÃ¼ */
.mission-card, .vision-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-icon, .vision-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background-color: rgba(105, 87, 167, 0.1);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2rem;
}

.mission-card h3, .vision-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.mission-card p, .vision-card p {
  color: #666;
  margin-bottom: 0;
  line-height: 1.7;
}

/* Ekip Ãœyeleri */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-member-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.team-member:hover .team-member-image img {
  transform: scale(1.05);
}

.team-member-info {
  padding: 20px;
  text-align: center;
}

.team-member-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.team-member-info span {
  display: block;
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 15px;
}

.team-member-info p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(105, 87, 167, 0.1);
  color: var(--secondary-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.team-social a:hover {
  background-color: var(--secondary-color);
  color: white;
}

/* DeÄŸerlerimiz */
.values-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.value-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(105, 87, 167, 0.1);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.value-card p {
  color: #666;
  margin-bottom: 0;
  line-height: 1.7;
}

/* MÃ¼ÅŸteri YorumlarÄ± */
.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-item {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin: 10px;
  text-align: center;
}

.testimonial-quote {
  font-size: 1.1rem;
  color: #555;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
  position: relative;
}

.testimonial-quote::before,
.testimonial-quote::after {
  content: '"';
  font-size: 3rem;
  color: rgba(105, 87, 167, 0.2);
  position: absolute;
  line-height: 1;
}

.testimonial-quote::before {
  top: -15px;
  left: -10px;
}

.testimonial-quote::after {
  bottom: -40px;
  right: -10px;
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid rgba(105, 87, 167, 0.1);
}

.testimonial-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.testimonial-title {
  color: #666;
  font-size: 0.9rem;
}

/* Slick Slider Ã–zelleÅŸtirme */
.slick-prev, .slick-next {
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  z-index: 1;
}

.slick-prev:before, .slick-next:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 20px;
  opacity: 1;
}

.slick-prev:before {
  content: "\f104";
}

.slick-next:before {
  content: "\f105";
}

.slick-prev {
  left: -50px;
}

.slick-next {
  right: -50px;
}

.slick-dots li button:before {
  font-size: 12px;
  color: var(--secondary-color);
  opacity: 0.3;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
}

/* Call to Action BÃ¶lÃ¼mÃ¼ */
.about-cta {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  padding: 80px 0;
  color: white;
  text-align: center;
}

.about-cta h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-cta p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.about-cta .btn-primary {
  background-color: white;
  color: var(--primary-color);
  border: none;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.about-cta .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 992px) {
  .about-intro-image {
    margin-bottom: 30px;
  }
  
  .mission-card, .vision-card {
    margin-bottom: 30px;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  
  .slick-prev {
    left: -30px;
  }
  
  .slick-next {
    right: -30px;
  }
}

@media (max-width: 768px) {
  .about-intro-content h3 {
    font-size: 1.5rem;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .values-container {
    grid-template-columns: 1fr;
  }
  
  .slick-prev, .slick-next {
    display: none !important;
  }
  
  .about-cta h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .about-header h1 {
    font-size: 1.8rem;
  }
}


/* HakkÄ±mÄ±zda SayfasÄ± - DanÄ±ÅŸan YorumlarÄ± BÃ¶lÃ¼mÃ¼ Stilleri */

/* Ana BÃ¶lÃ¼m */
.section__hakkimizda {
  padding: 80px 0;
}

.testimonials-section__hakkimizda {
  background-color: white;
  position: relative;
}

.container__hakkimizda {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* BaÅŸlÄ±k Stili */
.section-title__hakkimizda {
  text-align: center;
  margin-bottom: 50px;
}

.title__hakkimizda {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2B214B;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
}

.title__hakkimizda::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #6957A7, #8A4FFF);
}

.description__hakkimizda {
  max-width: 700px;
  margin: 0 auto;
  color: #666;
  font-size: 1.1rem;
}

/* Testimonial Slider */
.testimonial-slider__hakkimizda {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

/* Slick Carousel iÃ§in stil */
.testimonial-slider__hakkimizda .slick-list {
  overflow: hidden;
}

.testimonial-slider__hakkimizda .slick-slide {
  opacity: 0.5;
  transform: scale(0.85);
  transition: all 0.5s ease;
}

.testimonial-slider__hakkimizda .slick-active {
  opacity: 1;
  transform: scale(1);
}

.testimonial-slider__hakkimizda .slick-current {
  opacity: 1;
  transform: scale(1);
}

/* Testimonial KartlarÄ± */
.testimonial-item__hakkimizda {
  background-color: white;
  border-radius: 16px;
  padding: 35px 30px;
  margin: 15px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-item__hakkimizda:hover {
  transform: translateY(-5px);
}

/* AlÄ±ntÄ± Ä°Ã§eriÄŸi */
.testimonial-quote__hakkimizda {
  font-size: 1.1rem;
  color: #555;
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.8;
  position: relative;
}

.testimonial-quote__hakkimizda::before,
.testimonial-quote__hakkimizda::after {
  content: '"';
  font-size: 4rem;
  font-family: Georgia, serif;
  color: rgba(105, 87, 167, 0.2);
  position: absolute;
  line-height: 1;
}

.testimonial-quote__hakkimizda::before {
  top: -15px;
  left: -10px;
}

.testimonial-quote__hakkimizda::after {
  bottom: -40px;
  right: -10px;
}

/* DanÄ±ÅŸan Bilgileri */
.testimonial-author__hakkimizda {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.testimonial-avatar__hakkimizda {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid rgba(105, 87, 167, 0.1);
  box-shadow: 0 5px 15px rgba(105, 87, 167, 0.15);
  transition: all 0.3s ease;
}

.testimonial-item__hakkimizda:hover .testimonial-avatar__hakkimizda {
  border-color: rgba(105, 87, 167, 0.25);
  transform: scale(1.05);
}

.testimonial-name__hakkimizda {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2B214B;
  margin-bottom: 5px;
}

.testimonial-title__hakkimizda {
  color: #6957A7;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Slick Navigation */
.testimonial-slider__hakkimizda .slick-prev,
.testimonial-slider__hakkimizda .slick-next {
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition: all 0.3s ease;
}

.testimonial-slider__hakkimizda .slick-prev:before,
.testimonial-slider__hakkimizda .slick-next:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 20px;
  color: #6957A7;
  opacity: 1;
}

.testimonial-slider__hakkimizda .slick-prev:before {
  content: "\f104";
}

.testimonial-slider__hakkimizda .slick-next:before {
  content: "\f105";
}

.testimonial-slider__hakkimizda .slick-prev:hover,
.testimonial-slider__hakkimizda .slick-next:hover {
  background-color: #6957A7;
}

.testimonial-slider__hakkimizda .slick-prev:hover:before,
.testimonial-slider__hakkimizda .slick-next:hover:before {
  color: white;
}

.testimonial-slider__hakkimizda .slick-prev {
  left: -60px;
}

.testimonial-slider__hakkimizda .slick-next {
  right: -60px;
}

/* Dots Navigation */
.testimonial-slider__hakkimizda .slick-dots {
  bottom: -40px;
}

.testimonial-slider__hakkimizda .slick-dots li button:before {
  font-size: 12px;
  color: #c1b9de;
  opacity: 0.5;
}

.testimonial-slider__hakkimizda .slick-dots li.slick-active button:before {
  color: #6957A7;
  opacity: 1;
}

/* Responsive TasarÄ±m */
@media (max-width: 991.98px) {
  .section__hakkimizda {
    padding: 60px 0;
  }
  
  .title__hakkimizda {
    font-size: 2.2rem;
  }
  
  .testimonial-slider__hakkimizda .slick-prev {
    left: -30px;
  }
  
  .testimonial-slider__hakkimizda .slick-next {
    right: -30px;
  }
}

@media (max-width: 767.98px) {
  .section__hakkimizda {
    padding: 50px 0;
  }
  
  .title__hakkimizda {
    font-size: 2rem;
  }
  
  .description__hakkimizda {
    font-size: 1rem;
  }
  
  .testimonial-item__hakkimizda {
    padding: 25px 20px;
  }
  
  .testimonial-quote__hakkimizda {
    font-size: 1rem;
  }
  
  .testimonial-slider__hakkimizda .slick-prev,
  .testimonial-slider__hakkimizda .slick-next {
    display: none !important;
  }
}

@media (max-width: 575.98px) {
  .section__hakkimizda {
    padding: 40px 0;
  }
  
  .title__hakkimizda {
    font-size: 1.8rem;
  }
  
  .testimonial-quote__hakkimizda::before,
  .testimonial-quote__hakkimizda::after {
    font-size: 3rem;
  }
  
  .testimonial-avatar__hakkimizda {
    width: 70px;
    height: 70px;
  }
  
  .testimonial-name__hakkimizda {
    font-size: 1.1rem;
  }
}



















/* Psikologlar SayfasÄ± Ã–zgÃ¼n Stilleri */

/* Psikologlar Header */
.psychologists-header {
  background: linear-gradient(rgba(43, 33, 75, 0.85), rgba(43, 33, 75, 0.85)), var(--psychologists-bg-img-url) no-repeat center center/cover;
  color: white;
  padding: 60px 0;
  text-align: center;
}

/* Filtreleme BÃ¶lÃ¼mÃ¼ Stilleri */
.filter-section {
  background-color: white;
  padding: 40px 0 30px;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-header {
  text-align: center;
  margin-bottom: 25px;
}

.filter-title {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.filter-subtitle {
  color: #666;
  font-size: 1rem;
  margin-bottom: 0;
}

.filter-panels {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Birincil Filtre Paneli - Arama ve HÄ±zlÄ± Filtreler */
.filter-panel-primary {
  width: 100%;
}

.search-container {
  width: 100%;
}

.search-input-group {
  position: relative;
  width: 100%;
}

.search-input-group input {
  width: 100%;
  height: 55px;
  padding: 0 55px 0 20px;
  border: 2px solid #eee;
  border-radius: 30px;
  color: var(--dark-color);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.search-input-group input:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 5px 15px rgba(105, 87, 167, 0.1);
}

.search-input-group button {
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: var(--secondary-color);
  border: none;
  color: white;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-input-group button:hover {
  background-color: var(--primary-color);
}

.search-quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
  padding: 0 10px;
}

.quick-filter {
  display: inline-block;
  padding: 8px 15px;
  background-color: #f5f5f5;
  color: var(--dark-color);
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quick-filter:hover {
  background-color: rgba(105, 87, 167, 0.1);
  color: var(--secondary-color);
}

.quick-filter.active {
  background-color: var(--secondary-color);
  color: white;
}

/* Ä°kincil Filtre Paneli - DetaylÄ± Filtreler */
.filter-panel-secondary {
  width: 100%;
}

.filter-accordion {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.filter-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #f9f9ff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-accordion-header span {
  font-weight: 600;
  color: var(--primary-color);
}

.filter-accordion-header i {
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.filter-accordion-body {
  padding: 20px;
  border-top: 1px solid #eee;
  display: none;
}

.filter-accordion-body.show {
  display: block;
}

/* Filtre Grup Stilleri */
.filter-group {
  margin-bottom: 15px;
}

.filter-label {
  display: block;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.filter-select {
  width: 100%;
  height: 45px;
  padding: 0 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  color: var(--dark-color);
  appearance: none;
  background: #fff url('data:image/svg+xml;utf8,&lt;svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"&gt;&lt;path fill="%236957A7" d="M6 8.825L1.175 4 2.05 3.125 6 7.075 9.95 3.125 10.825 4z"/&gt;&lt;/svg&gt;') no-repeat calc(100% - 15px) center;
  background-size: 12px;
  cursor: pointer;
  transition: border-color 0.3s;
}

.filter-select:focus {
  outline: none;
  border-color: var(--secondary-color);
}

/* Filtre Onay KutularÄ± */
.filter-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.form-check-label {
  cursor: pointer;
  font-size: 0.9rem;
}

/* Filtre ButonlarÄ± */
.filter-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* Aktif Filtreler */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  background-color: rgba(105, 87, 167, 0.1);
  color: var(--secondary-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-tag:hover {
  background-color: rgba(105, 87, 167, 0.2);
}

.filter-tag i {
  margin-left: 6px;
  font-size: 0.8rem;
}

/* Psikologlar Listesi */
.psychologists-list {
  padding: 60px 0;
  background-color: #f9f9ff;
}

.psychologist-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 30px;
}

.psychologist-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s;
}

.psychologist-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.psychologist-top {
  position: relative;
}

.psychologist-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.rating-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: white;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.rating-badge i {
  color: #FFD700;
  margin-right: 5px;
}

.specialty-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--secondary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 500;
}

.psychologist-body {
  padding: 25px;
}

.psychologist-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.psychologist-title {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 15px;
  display: block;
}

.psychologist-description {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.psychologist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.psychologist-tag {
  background-color: rgba(105, 87, 167, 0.1);
  color: var(--secondary-color);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.psychologist-actions {
  display: flex;
  gap: 10px;
}

.btn-view-profile {
  flex: 1;
  padding: 10px;
  text-align: center;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-view-profile:hover {
  background-color: var(--primary-color);
}

.btn-quick-chat {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(105, 87, 167, 0.1);
  color: var(--secondary-color);
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-quick-chat:hover {
  background-color: var(--secondary-color);
  color: white;
}

/* No Results */
.no-results {
  text-align: center;
  padding: 50px 0;
}

.no-results i {
  font-size: 4rem;
  color: var(--secondary-color);
  opacity: 0.3;
  margin-bottom: 20px;
}

.no-results h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.no-results p {
  color: #666;
  max-width: 500px;
  margin: 0 auto 20px;
}

/* Skeleton Loading Animation */
.skeleton-loader {
  animation: pulse 1.5s infinite;
  background: linear-gradient(90deg, #f0f0f0 25%, #f8f8f8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
}

.skeleton-image {
  width: 100%;
  height: 220px;
  border-radius: 10px 10px 0 0;
}

.skeleton-title {
  width: 70%;
  height: 24px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.skeleton-subtitle {
  width: 50%;
  height: 16px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.skeleton-text {
  width: 100%;
  height: 14px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.skeleton-tag {
  width: 60px;
  height: 24px;
  border-radius: 20px;
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 20px;
}

.skeleton-button {
  width: 100%;
  height: 45px;
  border-radius: 5px;
}

/* Responsive */
@media (max-width: 992px) {
  .filter-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .filter-group {
    width: 100%;
    margin-right: 0;
  }
  
  .filter-select {
    width: 100%;
  }
  
  .filter-search {
    width: 100%;
  }
  
  .filter-checkbox-group {
    flex-direction: column;
    gap: 8px;
  }
  
  .form-check-inline {
    margin-right: 0;
  }
  
  .psychologist-cards {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .psychologists-header {
    padding: 60px 0;
  }
  
  .psychologists-header h1 {
    font-size: 2rem;
  }
  
  .psychologists-header p {
    font-size: 1rem;
  }
  
  .psychologist-cards {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .search-input-group input {
    height: 50px;
    font-size: 1rem;
  }
  
  .search-input-group button {
    height: 40px;
    width: 40px;
  }
  
  .filter-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .filter-actions button {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .psychologist-cards {
    grid-template-columns: 1fr;
  }
}


























/* Psikolog Profil SayfasÄ± Ã–zgÃ¼n Stilleri */

/* Psikolog Profil Header */

.rating__container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}

.rating__stars-outer {
  position: relative;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ccc;
  line-height: 1;
}

.rating__stars-outer::before {
  content: '\f005\f005\f005\f005\f005'; /* 5 boÅŸ yÄ±ldÄ±z */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.rating__stars-inner {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
  color: #f5b301;
  width: 0;
}

.rating__stars-inner::before {
  content: '\f005\f005\f005\f005\f005'; /* 5 dolu yÄ±ldÄ±z */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.rating__text {
  font-size: 1.5rem;
  color: #ffffff;
}


.profile-header {
  background: linear-gradient(rgba(43, 33, 75, 0.85), rgba(43, 33, 75, 0.85)), var(--profile-bg-img-url) no-repeat center center/cover;
  padding: 80px 0;
  color: white;
}

.profile-header .profile-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.profile-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.profile-header .specialty {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-bottom: 20px;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 5px 15px;
  border-radius: 30px;
  font-weight: 600;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.profile-actions .btn {
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 30px;
  display: flex;
  align-items: center;
}

.profile-actions .btn i {
  margin-right: 8px;
}

/* Profile Nav Tabs */
.profile-nav {
  background-color: white;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.profile-nav .nav-link {
  color: var(--dark-color);
  font-weight: 600;
  padding: 15px 20px;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.profile-nav .nav-link:hover {
  color: var(--secondary-color);
}

.profile-nav .nav-link.active {
  color: var(--secondary-color);
  border-bottom-color: var(--secondary-color);
}

/* Profile Content */
.profile-content {
  padding: 50px 0;
  background-color: #f9f9ff;
  min-height: 500px;
}

.profile-section {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 30px;
}

.profile-section h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

/* About Section */
.profile-about p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.profile-about .profile-tags {
  margin-top: 30px;
}

.profile-tag {
  display: inline-block;
  background-color: rgba(105, 87, 167, 0.1);
  color: var(--secondary-color);
  padding: 5px 15px;
  border-radius: 20px;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Education &amp; Experience */
.timeline {
  position: relative;
  padding: 0;
  list-style: none;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background-color: rgba(105, 87, 167, 0.2);
}

.timeline-item {
  position: relative;
  padding-left: 50px;
  margin-bottom: 30px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 11px;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  z-index: 1;
}

.timeline-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.timeline-content p {
  color: #777;
  margin-bottom: 5px;
}

.timeline-content .timeline-date {
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 0.9rem;
}

/* Specialties Section */
.specialty-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.specialty-item:last-child {
  margin-bottom: 0;
}

.specialty-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(105, 87, 167, 0.1);
  color: var(--secondary-color);
  font-size: 1.5rem;
  border-radius: 10px;
  margin-right: 20px;
  flex-shrink: 0;
}

.specialty-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.specialty-content p {
  color: #666;
  margin-bottom: 0;
}

/* Certificates Section */
.certificates-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.certificate-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.certificate-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.certificate-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.certificate-item .certificate-title {
  padding: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  background-color: #f8f9fa;
}

/* Availability Calendar */
.calendar-container {
  max-width: 100%;
  overflow-x: auto;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
}

.calendar-nav button {
  background-color: transparent;
  border: none;
  color: var(--secondary-color);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calendar-nav button:hover {
  color: var(--primary-color);
}

.calendar-grid {
  width: 100%;
  border-collapse: collapse;
}

.calendar-grid th {
  text-align: center;
  padding: 10px;
  background-color: rgba(105, 87, 167, 0.1);
  color: var(--primary-color);
  font-weight: 600;
}

.calendar-grid td {
  text-align: center;
  padding: 12px;
  border: 1px solid #eee;
  vertical-align: top;
  height: 100px;
}

.calendar-grid .date {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
}

.calendar-grid .available-time {
  display: block;
  background-color: rgba(105, 87, 167, 0.1);
  color: var(--secondary-color);
  margin: 5px 0;
  padding: 5px;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calendar-grid .available-time:hover {
  background-color: var(--secondary-color);
  color: white;
}

.calendar-grid .unavailable {
  color: #ccc;
}

.calendar-grid .today {
  background-color: rgba(105, 87, 167, 0.05);
}

/* Reviews Section */
.review-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.review-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.review-author h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.review-author .review-date {
  font-size: 0.9rem;
  color: #888;
}

.review-rating {
  margin-left: auto;
}

.review-rating i {
  color: #FFD700;
  margin-right: 2px;
}

.review-content p {
  line-height: 1.7;
  color: #555;
  margin-bottom: 0;
}

/* Appointment Modal */
.appointment-modal .modal-content {
  border-radius: 15px;
  overflow: hidden;
}

.appointment-modal .modal-header {
  background-color: var(--primary-color);
  color: white;
  border-bottom: none;
}

.appointment-modal .modal-title {
  font-weight: 600;
}

.appointment-modal .form-label {
  font-weight: 500;
  color: var(--primary-color);
}

.appointment-modal .btn-primary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  padding: 10px 25px;
  font-weight: 600;
}

.appointment-modal .btn-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.time-slot {
  display: inline-block;
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.time-slot:hover {
  background-color: rgba(105, 87, 167, 0.1);
  border-color: var(--secondary-color);
}

.time-slot.selected {
  background-color: var(--secondary-color);
  color: white;
  border-color: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .profile-header {
    text-align: center;
  }
  
  .calendar-grid td {
    height: 80px;
  }
}

@media (max-width: 767px) {
  .profile-header .profile-img {
    width: 150px;
    height: 150px;
  }
  
  .profile-header h1 {
    font-size: 2rem;
  }
  
  .profile-nav .nav-link {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
  
  .calendar-grid td {
    height: 60px;
    padding: 8px;
  }
  
  .calendar-grid .date {
    font-size: 0.9rem;
    margin-bottom: 5px;
  }
  
  .calendar-grid .available-time {
    font-size: 0.8rem;
    padding: 3px;
  }
}

@media (max-width: 575px) {
  .profile-header .profile-img {
    width: 120px;
    height: 120px;
  }
  
  .profile-section {
    padding: 20px;
  }
  
  .profile-section h2 {
    font-size: 1.5rem;
  }
  
  .certificates-gallery {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}















/* HesabÄ±m SayfasÄ± Ã–zgÃ¼n Stilleri */

/* HesabÄ±m SayfasÄ± Header */
.account-header {
  background: linear-gradient(rgba(43, 33, 75, 0.85), rgba(43, 33, 75, 0.85)), var(--account-bg-img-url) no-repeat center center/cover;
  padding: 60px 0;
  color: white;
  text-align: center;
}

/* HesabÄ±m Ana BÃ¶lÃ¼m */
.account-main {
  padding: 50px 0;
  background-color: #f9f9ff;
  min-height: calc(100vh - 300px);
}

/* KullanÄ±cÄ± Bilgileri ve MenÃ¼ */
.user-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  height: 100%;
  margin-bottom: 30px;
}

.user-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  object-fit: cover;
  border: 5px solid rgba(105, 87, 167, 0.1);
}

.user-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.user-email {
  color: #666;
  margin-bottom: 15px;
}

.user-credit {
  background-color: rgba(105, 87, 167, 0.1);
  color: var(--secondary-color);
  padding: 10px 15px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

.user-credit span {
  font-size: 1.2rem;
}

.btn-buy-credit {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 5px;
  padding: 8px 20px;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-buy-credit:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Hesap Navigasyon */
.account-nav {
  margin-top: 30px;
}

.account-nav-item {
  display: block;
  padding: 15px;
  color: var(--dark-color);
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s;
  margin-bottom: 5px;
  text-align: left;
  font-weight: 500;
}

.account-nav-item i {
  margin-right: 10px;
  color: var(--secondary-color);
  width: 20px;
  text-align: center;
}

.account-nav-item:hover {
  background-color: var(--hover-color);
  color: var(--primary-color);
}

.account-nav-item.active {
  background-color: var(--secondary-color);
  color: white;
}

.account-nav-item.active i {
  color: white;
}

/* Ä°Ã§erik */
.account-content {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
  height: 100%;
}

.account-content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 30px;
}

.account-content-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0;
}

/* GeÃ§miÅŸ Randevular */
.appointment-table {
  width: 100%;
  border-collapse: collapse;
}

.appointment-table th {
  background-color: rgba(105, 87, 167, 0.1);
  color: var(--primary-color);
  font-weight: 600;
  padding: 12px 15px;
  text-align: left;
}

.appointment-table td {
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
  vertical-align: middle;
}

.appointment-table tr:last-child td {
  border-bottom: none;
}

.appointment-status {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.status-pending {
  background-color: rgba(255, 193, 7, 0.2);
  color: #e6a300;
}

.status-completed {
  background-color: rgba(40, 167, 69, 0.2);
  color: #28a745;
}

.status-canceled {
  background-color: rgba(220, 53, 69, 0.2);
  color: #dc3545;
}

/* Psikolog AvatarÄ± ve Ä°smi */
.psychologist-info {
  display: flex;
  align-items: center;
}

.psychologist-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.psychologist-name {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0;
}


/* Ã–deme GeÃ§miÅŸi */


/* Modern Ã–deme GeÃ§miÅŸi Stilleri - Ã‡akÄ±ÅŸmayÄ± Ã–nlemek Ä°Ã§in __pay son eki eklenmiÅŸtir */

/* BaÅŸlÄ±k ve Buton Konteyneri */
.content-header__pay {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 25px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(105, 87, 167, 0.1);
}

.content-title__pay {
  font-size: 1.7rem;
  font-weight: 700;
  color: #2B214B;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}

.content-title__pay::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: rgba(105, 87, 167, 0.15);
  margin-right: 12px;
  border-radius: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236957A7'%3E%3Cpath d='M3 3h18a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zm17 8H4v8h16v-8zm0-2V5H4v4h16zm-6 6h4v2h-4v-2z'/%3E%3C/svg%3E");
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
}

.btn-container__pay {
  display: flex;
  align-items: center;
}

.btn-primary__pay {
  background: linear-gradient(135deg, #6957A7, #8A4FFF);
  color: white;
  border: none;
  padding: 10px 22px;
  font-weight: 600;
  border-radius: 30px;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(105, 87, 167, 0.25);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.btn-primary__pay:before {
  content: '+';
  display: inline-block;
  margin-right: 8px;
  font-size: 1.1rem;
  font-weight: 700;
}

.btn-primary__pay:hover {
  background: linear-gradient(135deg, #8A4FFF, #6957A7);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(105, 87, 167, 0.35);
  color: white;
  text-decoration: none;
}

/* Ã–deme KartlarÄ± */
.payment-card__pay {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  padding: 22px 25px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(105, 87, 167, 0.05);
  position: relative;
  overflow: hidden;
}

.payment-card__pay:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(105, 87, 167, 0.1);
  border-color: rgba(105, 87, 167, 0.1);
}

.payment-card__pay::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(to bottom, #6957A7, #8A4FFF);
  border-radius: 2px 0 0 2px;
}

.payment-header__pay {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.payment-date__pay {
  color: #666;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.payment-date__pay i {
  color: #6957A7;
  margin-right: 7px;
  font-size: 1rem;
}

.payment-amount__pay {
  font-weight: 700;
  color: #2B214B;
  font-size: 1.35rem;
  background: linear-gradient(135deg, #6957A7, #8A4FFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.payment-details__pay {
  color: #666;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.payment-details__pay p {
  margin-bottom: 0;
}

.payment-id__pay {
  background-color: rgba(105, 87, 167, 0.08);
  color: #6957A7;
  padding: 7px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Sayfalama */
.pagination-container__pay {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pagination__pay {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 8px;
  box-shadow: 0 3px 12px rgba(105, 87, 167, 0.1);
  border-radius: 30px;
  padding: 5px;
  background-color: white;
  margin: 0;
}

.pagination-item__pay {
  display: inline-block;
}

.pagination-item__pay a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #2B214B;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 50%;
  font-weight: 500;
}

.pagination-item__pay a:hover {
  background-color: rgba(105, 87, 167, 0.1);
  color: #6957A7;
}

.pagination-item__pay.active__pay a {
  background: linear-gradient(135deg, #6957A7, #8A4FFF);
  color: white;
  box-shadow: 0 3px 10px rgba(105, 87, 167, 0.25);
}

.pagination-item__pay.disabled__pay a {
  color: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

/* BoÅŸ Durum (Ã–deme yoksa) */
.empty-state__pay {
  text-align: center;
  padding: 60px 0;
  background-color: rgba(105, 87, 167, 0.02);
  border-radius: 16px;
  margin: 40px 0;
}

.empty-state__pay i {
  font-size: 3.5rem;
  color: rgba(105, 87, 167, 0.2);
  margin-bottom: 20px;
}

.empty-state__pay h3 {
  font-size: 1.5rem;
  color: #2B214B;
  margin-bottom: 15px;
  font-weight: 600;
}

.empty-state__pay p {
  color: #666;
  max-width: 400px;
  margin: 0 auto 25px;
  font-size: 1.05rem;
}

/* Responsive DÃ¼zenlemeler */
@media (max-width: 768px) {
  .content-header__pay {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .btn-container__pay {
    width: 100%;
  }
  
  .btn-primary__pay {
    width: 100%;
    justify-content: center;
  }
  
  .payment-card__pay {
    padding: 18px 20px;
  }
  
  .payment-header__pay {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .pagination__pay {
    gap: 5px;
    padding: 3px;
  }
  
  .pagination-item__pay a {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 576px) {
  .payment-card__pay::before {
    width: 3px;
  }
  
  .pagination-item__pay a {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
}


/* Sekmeler */
.account-tabs {
  display: flex;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

.account-tab {
  padding: 15px 25px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}

.account-tab.active {
  color: var(--secondary-color);
}

.account-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--secondary-color);
}

.account-tab-content {
  display: none;
}

.account-tab-content.active {
  display: block;
}

/* Profil Bilgileri */
.profile-section {
  margin-bottom: 40px;
}

.profile-section-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.avatar-upload {
  text-align: center;
  margin-bottom: 30px;
}

.current-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid rgba(105, 87, 167, 0.1);
  margin-bottom: 15px;
}

.avatar-upload-btn {
  display: inline-block;
  position: relative;
}

.avatar-upload-btn input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
  .user-card {
    margin-bottom: 30px;
  }
  
  .account-content {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .account-tabs {
    flex-wrap: wrap;
  }
  
  .account-tab {
    flex: 1 0 50%;
    text-align: center;
  }
  
  .appointment-table thead {
    display: none;
  }
  
  .appointment-table, 
  .appointment-table tbody, 
  .appointment-table tr, 
  .appointment-table td {
    display: block;
    width: 100%;
  }
  
  .appointment-table tr {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
  }
  
  .appointment-table td {
    position: relative;
    padding-left: 40%;
    text-align: right;
    border-bottom: 1px solid var(--border-color);
  }
  
  .appointment-table td:before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    top: 15px;
    font-weight: 600;
    color: var(--primary-color);
  }
}

@media (max-width: 576px) {
  .account-content-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .btn-container {
    margin-top: 15px;
  }
  
  .account-tab {
    flex: 1 0 100%;
  }
}













/* Ã–deme SayfasÄ± Ã–zgÃ¼n Stilleri */

/* Payment Header */
.payment-header {
  background: linear-gradient(rgba(43, 33, 75, 0.85), rgba(43, 33, 75, 0.85)), var(--payment-bg-img-url) no-repeat center center/cover;
  padding: 60px 0;
  color: white;
  text-align: center;
}

/* Payment Main */
.payment-main {
  padding: 60px 0;
  background-color: #f9f9ff;
  min-height: calc(100vh - 300px);
}

/* Payment Container */
.payment-container {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 30px;
}

/* Payment Packages */
.payment-packages {
  margin-bottom: 40px;
}

.package-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: center;
}

.package-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
  text-align: center;
}

.package-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.package-card {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.package-card.selected {
  border-color: var(--secondary-color);
  background-color: var(--hover-color);
}

.package-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.package-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.package-price span {
  font-size: 1rem;
  color: #666;
}

.package-sessions {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}

.package-features {
  margin-bottom: 20px;
}

.package-feature {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  color: #666;
  font-size: 0.9rem;
}

.package-feature i {
  color: var(--secondary-color);
  margin-right: 8px;
  font-size: 0.8rem;
}

.package-badge {
  display: inline-block;
  padding: 5px 10px;
  background-color: rgba(105, 87, 167, 0.1);
  color: var(--secondary-color);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 15px;
}

.badge-popular {
  background-color: rgba(255, 193, 7, 0.1);
  color: #e6a300;
}

.badge-best {
  background-color: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

/* Payment Form */
.payment-form-container {
  padding: 30px;
}

.payment-form-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.payment-summary {
  background-color: var(--hover-color);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
}

.summary-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #666;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-weight: 600;
  color: var(--primary-color);
}

.form-section {
  margin-bottom: 30px;
}

.form-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.card-row {
  display: flex;
  gap: 15px;
}

.card-icon {
  font-size: 1.8rem;
  margin-right: 5px;
  color: #666;
}

.card-icon.visa {
  color: #1A1F71;
}

.card-icon.mastercard {
  color: #EB001B;
}

.card-icon.amex {
  color: #006FCF;
}

.card-number-input {
  position: relative;
}

.card-type {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #666;
}

/* Payment Methods */
.payment-methods {
  display: flex;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.payment-method {
  padding: 15px 25px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.payment-method.active {
  color: var(--secondary-color);
}

.payment-method.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--secondary-color);
}

.payment-method-content {
  display: none;
}

.payment-method-content.active {
  display: block;
}

.secure-payment-info {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  color: #666;
  font-size: 0.9rem;
}

.secure-payment-info i {
  color: var(--success-color);
  margin-right: 5px;
}

.terms-agreement {
  margin: 30px 0;
}

.btn-payment {
  background-color: var(--secondary-color);
  color: white;
  font-weight: 600;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 1.1rem;
}

.btn-payment:hover {
  background-color: var(--primary-color);
}

.payment-icons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.payment-icons img {
  height: 25px;
  margin: 0 5px;
}

/* Payment Result */
.result-main {
  padding: 60px 0;
  background-color: #f9f9ff;
  min-height: calc(100vh - 300px);
}

.result-container {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 30px;
  padding: 50px 30px;
  text-align: center;
}

.result-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 3rem;
}

.result-icon-success {
  background-color: rgba(40, 167, 69, 0.1);
  color: var(--success-color);
}

.result-icon-error {
  background-color: rgba(220, 53, 69, 0.1);
  color: var(--danger-color);
}

.result-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.result-title.success {
  color: var(--success-color);
}

.result-title.error {
  color: var(--danger-color);
}

.result-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.result-details {
  background-color: var(--hover-color);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 1rem;
}

.detail-item:last-child {
  margin-bottom: 0;
}

.detail-label {
  font-weight: 600;
  color: var(--primary-color);
}

.detail-value {
  color: #666;
}

.result-actions {
  margin-top: 30px;
}

.btn-result {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin: 0 10px;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}

.btn-outline:hover {
  background-color: var(--secondary-color);
  color: white;
}

/* Customer Support */
.customer-support {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.support-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.support-description {
  color: #666;
  margin-bottom: 20px;
}

.support-contact {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.support-item {
  display: flex;
  align-items: center;
  color: var(--primary-color);
}

.support-item i {
  width: 40px;
  height: 40px;
  background-color: rgba(105, 87, 167, 0.1);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
}

/* Payment Responsive */
@media (max-width: 992px) {
  .card-row {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 768px) {
  .payment-methods {
    flex-wrap: wrap;
  }
  
  .payment-method {
    flex: 1 0 50%;
    text-align: center;
  }
  
  .package-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .package-card {
    width: 100%;
    max-width: 100%;
  }
  
  .result-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn-result {
    margin: 0;
    width: 100%;
    max-width: 250px;
  }
  
  .support-contact {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .payment-main, 
  .result-main {
    padding: 30px 0;
  }
  
  .payment-form-container {
    padding: 20px;
  }
  
  .payment-summary {
    padding: 15px;
  }
  
  .payment-method {
    flex: 1 0 100%;
  }
}











/* Ã–deme BaÅŸarÄ±lÄ±/BaÅŸarÄ±sÄ±z SayfalarÄ± Ã–zgÃ¼n Stilleri */

/* Result Header */
.result-header {
  background: linear-gradient(rgba(43, 33, 75, 0.85), rgba(43, 33, 75, 0.85)), var(--result-bg-img-url) no-repeat center center/cover;
  padding: 60px 0;
  color: white;
  text-align: center;
}

.result-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.result-header p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Result Main */
.result-main {
  padding: 60px 0;
  background-color: #f9f9ff;
  min-height: calc(100vh - 300px);
}

/* Result Container */
.result-container {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 30px;
  padding: 50px 30px;
  text-align: center;
}

/* Result Status Icon */
.result-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 3rem;
}

.result-icon-success {
  background-color: rgba(40, 167, 69, 0.1);
  color: var(--success-color);
}

.result-icon-error {
  background-color: rgba(220, 53, 69, 0.1);
  color: var(--danger-color);
}

/* Result Title */
.result-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.result-title.success {
  color: var(--success-color);
}

.result-title.error {
  color: var(--danger-color);
}

/* Result Description */
.result-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Result Details */
.result-details {
  background-color: var(--hover-color);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 1rem;
}

.detail-item:last-child {
  margin-bottom: 0;
}

.detail-label {
  font-weight: 600;
  color: var(--primary-color);
}

.detail-value {
  color: #666;
}

/* Result Actions */
.result-actions {
  margin-top: 30px;
}

.btn-result {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin: 0 10px;
}

.btn-primary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
}

.btn-outline:hover {
  background-color: var(--secondary-color);
  color: white;
}

/* Transaction Details */
.transaction-details {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.transaction-id {
  font-family: monospace;
  font-size: 1rem;
  padding: 5px 10px;
  background-color: #f8f9fa;
  border-radius: 4px;
}

.transaction-time {
  color: #777;
  margin-top: 5px;
  font-size: 0.9rem;
}

/* Customer Support */
.customer-support {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.support-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.support-description {
  color: #666;
  margin-bottom: 20px;
}

.support-contact {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.support-item {
  display: flex;
  align-items: center;
  color: var(--primary-color);
}

.support-item i {
  width: 40px;
  height: 40px;
  background-color: rgba(105, 87, 167, 0.1);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
}

/* Print Style */
.print-receipt {
  margin-top: 20px;
  display: inline-block;
  font-weight: 500;
  color: var(--secondary-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.print-receipt i {
  margin-right: 5px;
}

.print-receipt:hover {
  color: var(--primary-color);
}

@media print {
  .print-section {
    display: block !important;
  }
  
  .no-print {
    display: none !important;
  }
  
  body {
    background-color: white;
  }
  
  .result-container {
    box-shadow: none;
    padding: 0;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .result-header h1 {
    font-size: 2rem;
  }
  
  .result-header p {
    font-size: 1rem;
  }
  
  .result-title {
    font-size: 1.8rem;
  }
  
  .result-description {
    font-size: 1rem;
  }
  
  .result-details {
    padding: 20px;
  }
  
  .result-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn-result {
    margin: 0;
    width: 100%;
    max-width: 250px;
  }
  
  .support-contact {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .result-main {
    padding: 30px 0;
  }
  
  .result-container {
    padding: 30px 20px;
  }
  
  .result-icon {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .detail-item {
    flex-direction: column;
    text-align: left;
    margin-bottom: 20px;
  }
  
  .detail-value {
    margin-top: 5px;
  }
}






















/* Ä°letiÅŸim SayfasÄ± Ã–zgÃ¼n Stilleri */

/* Ä°letiÅŸim BaÅŸlÄ±k */
.contact-header {
  background: linear-gradient(rgba(43, 33, 75, 0.85), rgba(43, 33, 75, 0.85)), var(--contact-bg-img-url) no-repeat center center/cover;;
  padding: 60px 0;
  color: white;
  text-align: center;
}

/* Ä°letiÅŸim Ana BÃ¶lÃ¼m */
.contact-main {
  padding: 70px 0;
  background-color: #f9f9ff;
}

/* Ä°letiÅŸim Bilgileri BÃ¶lÃ¼mÃ¼ */
.contact-info {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
  height: 100%;
}

.contact-info h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(105, 87, 167, 0.1);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-info-content h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-info-content p {
  color: #666;
  margin-bottom: 5px;
  line-height: 1.6;
}

.contact-info-content a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info-content a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.contact-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(105, 87, 167, 0.1);
  color: var(--secondary-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.contact-social a:hover {
  background-color: var(--secondary-color);
  color: white;
}

/* Ä°letiÅŸim Formu */
.contact-form {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
  height: 100%;
}

.contact-form h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.btn-submit {
  background-color: var(--secondary-color);
  color: white;
  font-weight: 600;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: var(--primary-color);
}

/* Form Feedback */
.form-feedback {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  display: none;
}

.form-feedback-success {
  background-color: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.2);
  color: #28a745;
}

.form-feedback-error {
  background-color: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.2);
  color: #dc3545;
}

/* Harita BÃ¶lÃ¼mÃ¼ */
.contact-map {
  padding: 0;
  height: 400px;
  margin-top: 50px;
  position: relative;
}

.map-container {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  pointer-events: none;
  border-radius: 10px;
}

/* Contact Responsive */
@media (max-width: 992px) {
  .contact-form, .contact-info {
    margin-bottom: 30px;
  }
  
  .contact-map {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .contact-map {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .contact-main {
    padding: 40px 0;
  }
  
  .contact-info, .contact-form {
    padding: 20px;
  }
  
  .contact-map {
    height: 250px;
  }
}








/* Fiyatlar SayfasÄ± Ã–zgÃ¼n Stilleri */

/* Pricing Header Styles */
.pricing-header {
  background: linear-gradient(rgba(43, 33, 75, 0.85), rgba(43, 33, 75, 0.85)), var(--pricing-bg-img-url) no-repeat center center/cover;
  padding: 60px 0;
  color: white;
  text-align: center;
}

.pricing-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing-header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Pricing Section Styles */
.pricing-section {
  padding: 80px 0;
  background-color: #f9f9ff;
}

/* Pricing Tabs */
.pricing-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.pricing-tab {
  background-color: #f8f9fa;
  border: none;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.pricing-tab:first-child {
  border-radius: 30px 0 0 30px;
}

.pricing-tab:last-child {
  border-radius: 0 30px 30px 0;
}

.pricing-tab.active {
  background-color: var(--secondary-color);
  color: white;
  border-color: var(--secondary-color);
}

/* Pricing Cards */
.pricing-cards {
  margin-bottom: 50px;
}

.pricing-card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
  transform: scale(1.05);
  z-index: 1;
  box-shadow: 0 10px 40px rgba(105, 87, 167, 0.2);
  border: 2px solid var(--secondary-color);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-card .popular-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background-color: var(--secondary-color);
  color: white;
  padding: 5px 30px;
  font-size: 0.9rem;
  font-weight: 600;
  transform: rotate(45deg);
  width: 150px;
}

.pricing-card .icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(105, 87, 167, 0.1);
  color: var(--secondary-color);
  font-size: 2rem;
  border-radius: 50%;
  margin: 0 auto 25px;
}

.pricing-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: #888;
}

.pricing-card .features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.pricing-card .features li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.pricing-card .features li:last-child {
  border-bottom: none;
}

.pricing-card .features i {
  color: var(--secondary-color);
  margin-right: 5px;
}

.pricing-card .btn-primary,
.pricing-card .btn-outline-primary {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 30px;
  width: 100%;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: white;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  font-weight: 600;
  padding: 20px 25px;
  color: var(--primary-color);
  background-color: white;
}

.accordion-button:not(.collapsed) {
  color: var(--secondary-color);
  background-color: white;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: #eee;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236957A7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 20px 25px;
  color: #666;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: #f8f9fa;
}

/* CTA Section */
.pricing-cta {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  padding: 80px 0;
  color: white;
  text-align: center;
}

.pricing-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing-cta p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.pricing-cta .btn-light {
  background-color: white;
  color: var(--primary-color);
  font-weight: 600;
  padding: 15px 40px;
  font-size: 1.1rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.pricing-cta .btn-light:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-5px);
}

/* Payment Success/Failure Pages */
.payment-message {
  padding: 80px 0;
  text-align: center;
}

.payment-message .icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 30px;
  font-size: 3rem;
}

.payment-success .icon {
  background-color: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

.payment-failure .icon {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.payment-message h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.payment-message p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #666;
}

.payment-success h2 {
  color: #28a745;
}

.payment-failure h2 {
  color: #dc3545;
}

.payment-details {
  background-color: #f9f9ff;
  padding: 25px;
  border-radius: 10px;
  max-width: 500px;
  margin: 0 auto 30px;
  text-align: left;
}

.payment-details .detail-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.payment-details .detail-item:last-child {
  border-bottom: none;
}

.payment-details .detail-label {
  font-weight: 600;
  color: #666;
}

.payment-details .detail-value {
  color: var(--primary-color);
  font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .pricing-header h1 {
    font-size: 2.5rem;
  }
  
  .pricing-card.popular {
    transform: scale(1);
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-10px);
  }
  
  .pricing-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .pricing-tab {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .pricing-header h1 {
    font-size: 2rem;
  }
  
  .pricing-header p {
    font-size: 1rem;
  }
}


.rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
}

.rating input {
  display: none;
}

.star-container {
  position: relative;
  text-align: center;
  margin: 0 5px;
}

.rating label {
  cursor: pointer;
  font-size: 40px;
  color: #ddd;
  display: block;
}

.star-number {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  font-weight: bold;
  color: #333;
  pointer-events: none;
}

/* Hover ve focus durum renkleri */
.rating .star-container:hover label,
.rating .star-container:hover ~ .star-container label,
.rating input:checked ~ .star-container label {
  color: #ffcc00;
}

.result {
  text-align: center;
  margin-top: 20px;
  font-size: 18px;
  height: 24px;
}</pre></body></html>