/* Hakkımızda Hero (Canlı & Modern) */
.about-hero-section {
  min-height: 60vh;
  background: linear-gradient(120deg, #6366f1 0%, #f43f5e 100%);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero-shape {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 60% 40%, #f8fafc 0%, #e0e7ff 100%);
  border-radius: 40% 60% 60% 40%/60% 40% 60% 40%;
  filter: blur(10px);
  opacity: 0.7;
  animation: floatShape 5s ease-in-out infinite alternate;
}
@keyframes floatShape {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-18px) scale(1.08); }
}
.about-hero-title {
  letter-spacing: -2px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(80,0,80,0.10);
}
.about-hero-lead {
  color: #f3f4f6;
  font-size: 1.35rem;
  max-width: 600px;
  margin: auto;
  text-shadow: 0 1px 8px rgba(80,0,80,0.08);
}
.about-hero-btn {
  border-radius: 32px;
  font-weight: 600;
  font-size: 1.15rem;
  color: #6366f1;
}
.about-hero-info-box {
  font-size: 1rem;
  color: #6366f1;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(100,100,200,0.10);
  margin-bottom: -18px;
}
@media (max-width: 991px) {
  .about-hero-title { font-size: 2.2rem !important; }
}
@media (max-width: 767px) {
  .about-hero-title { font-size: 1.5rem !important; }
  .about-hero-lead { font-size: 1rem !important; }
  .about-hero-shape, .about-hero-info-box { display: none !important; }
}

/* Hakkımızda Section */
.about-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.about-main-lead {
  font-size: 1.15rem;
  color: #6b7280;
  margin-bottom: 1.2rem;
}
.about-main-img {
  width:100%;
  max-width:520px;
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px rgba(100,100,200,0.10);
}
.about-main-info-box {
  font-weight: 600;
  font-size: 1.1rem;
  color: #6366f1;
  box-shadow: 0 2px 12px rgba(100,100,200,0.10);
  border-radius: 1rem;
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
}

/* Değerlerimiz (Modern) */
.deger-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(100,100,200,0.10);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  z-index: 1;
}
.deger-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 32px rgba(100,100,200,0.18);
}
.deger-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: blur(2px) brightness(1.1);
  transition: opacity 0.3s;
}
.deger-card:hover .deger-card-bg {
  opacity: 0.28;
}
.deger-card-icon {
  position: relative;
  z-index: 2;
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1 0%, #f43f5e 100%);
  color: #fff;
  font-size: 2.2rem;
  box-shadow: 0 2px 12px rgba(100,100,200,0.10);
}
@media (max-width: 991px) {
  .deger-card { margin-bottom: 1.5rem; }
}
@media (max-width: 767px) {
  .deger-card { margin-bottom: 1.5rem; }
  .deger-card-icon { width: 56px; height: 56px; font-size: 1.5rem; }
}
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}


/* Misyon & Vizyon (Modern) */
.misyonvizyon-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(100,100,200,0.10);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  z-index: 1;
}
.misyonvizyon-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 32px rgba(100,100,200,0.18);
}
.misyonvizyon-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.16;
  filter: blur(2px) brightness(1.1);
  transition: opacity 0.3s;
}
.misyonvizyon-card:hover .misyonvizyon-card-bg {
  opacity: 0.26;
}
.misyonvizyon-card-icon {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1 0%, #f43f5e 100%);
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 2px 12px rgba(100,100,200,0.10);
}
@media (max-width: 991px) {
  .misyonvizyon-card { margin-bottom: 1.5rem; }
}
@media (max-width: 767px) {
  .misyonvizyon-card { margin-bottom: 1.5rem; }
  .misyonvizyon-card-icon { width: 48px; height: 48px; font-size: 1.3rem; }
}

/* Rota Kategorileri (Modern) */
.rota-kat-card {
  background: linear-gradient(120deg, #6366f1 0%, #f43f5e 100%);
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(100,100,200,0.10);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  z-index: 1;
  color: #fff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.rota-kat-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 32px rgba(100,100,200,0.18);
}
.rota-kat-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: blur(2px) brightness(1.1);
  transition: opacity 0.3s;
}
.rota-kat-card:hover .rota-kat-bg {
  opacity: 0.32;
}
.rota-kat-icon {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f43f5e 0%, #6366f1 100%);
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 2px 12px rgba(100,100,200,0.10);
}
@media (max-width: 991px) {
  .rota-kat-card { margin-bottom: 1.5rem; }
}
@media (max-width: 767px) {
  .rota-kat-card { margin-bottom: 1.5rem; min-height: 220px; }
  .rota-kat-icon { width: 48px; height: 48px; font-size: 1.3rem; }
}

/* Popüler Rotalar (Modern) */
.pop-rota-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(100,100,200,0.10);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  z-index: 1;
  min-height: 260px;
  display: flex;
  flex-direction: row;
}
.pop-rota-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 32px rgba(100,100,200,0.18);
}
.pop-rota-img {
  min-width: 120px;
  width: 120px;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 1.5rem 0 0 1.5rem;
  transition: transform 0.4s;
}
.pop-rota-card:hover .pop-rota-img {
  transform: scale(1.08);
}
@media (max-width: 991px) {
  .pop-rota-card { flex-direction: column; min-height: 320px; }
  .pop-rota-img {
    width: 100%;
    min-width: 100%;
    height: 180px;
    border-radius: 1.5rem 1.5rem 0 0;
  }
}
@media (max-width: 767px) {
  .pop-rota-card { min-height: 220px; }
  .pop-rota-img { height: 140px; }
}

/* Hizmetler (Modern) */
.hizmet-card {
  background: linear-gradient(120deg, #6366f1 0%, #f43f5e 100%);
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(100,100,200,0.10);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  z-index: 1;
  color: #fff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hizmet-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 32px rgba(100,100,200,0.18);
}
.hizmet-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: blur(2px) brightness(1.1);
  transition: opacity 0.3s;
}
.hizmet-card:hover .hizmet-card-bg {
  opacity: 0.32;
}
.hizmet-card-icon {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f43f5e 0%, #6366f1 100%);
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 2px 12px rgba(100,100,200,0.10);
}
@media (max-width: 991px) {
  .hizmet-card { margin-bottom: 1.5rem; }
}
@media (max-width: 767px) {
  .hizmet-card { margin-bottom: 1.5rem; min-height: 220px; }
  .hizmet-card-icon { width: 48px; height: 48px; font-size: 1.3rem; }
}

/* Blog (Modern) */
.blog-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(100,100,200,0.10);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  z-index: 1;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.blog-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 32px rgba(100,100,200,0.18);
}
.blog-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.04;
  filter: blur(2px) brightness(1.1);
  transition: transform 0.4s, opacity 0.3s;
}
.blog-card:hover .blog-card-bg {
  opacity: 0.32;
  transform: scale(1.08);
}
@media (max-width: 991px) {
  .blog-card { margin-bottom: 1.5rem; }
}
@media (max-width: 767px) {
  .blog-card { min-height: 180px; }
}

/* İletişim (Modern & Uyumlu) */
.contact-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(100,100,200,0.10);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  z-index: 1;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.contact-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.text-gradient {
  background: linear-gradient(90deg,#6366f1 0%,#f43f5e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media (max-width: 991px) {
  .contact-card { margin-bottom: 1.5rem; }
}
@media (max-width: 767px) {
  .contact-card { min-height: 180px; padding: 1.5rem !important; }
  .contact-card-title { font-size: 1.2rem; }
}

/* Footer (Modern) */
.footer-modern {
  background: #181a23;
  color: #fff;
  border: none;
  position: relative;
}
.footer-gradient-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, #6366f1 0%, #f43f5e 100%);
  border-radius: 0 0 12px 12px;
  z-index: 2;
}
.footer-logo-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -1px;
  background: linear-gradient(90deg, #6366f1 0%, #f43f5e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.footer-social-icon {
  color:#fff;
}
.footer-social-icon:hover {
  transform: scale(1.13);
  background: linear-gradient(135deg, #f43f5e 0%, #6366f1 100%);
  color: #fff;
}
.footer-links {
  padding-left: 0;
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.7rem;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08rem;
  position: relative;
  transition: color 0.2s;
}
.footer-links a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #6366f1 0%, #f43f5e 100%);
  transition: width 0.2s;
  border-radius: 2px;
  margin-top: 2px;
}
.footer-links a:hover {
  color: #f43f5e;
}
.footer-links a:hover::after {
  width: 100%;
}
.footer-legal-link {
  color: #fff;
  opacity: 0.7;
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.2s, opacity 0.2s;
}
.footer-legal-link:hover {
  color: #f43f5e;
  opacity: 1;
}
@media (max-width: 991px) {
  .footer-logo-title { font-size: 1.5rem; }
  .footer-social-icon { width: 38px; height: 38px; font-size: 1.2rem; }
}
@media (max-width: 767px) {
  .footer-logo-title { font-size: 1.2rem; }
  .footer-social-icon { width: 32px; height: 32px; font-size: 1rem; }
  .footer-links a { font-size: 1rem; }
}