/* Faaliyet Alanları Sayfaları İçin Özel Stiller */
:root {
  --primary-navy: #0c2740;
  --elegant-gold: #c5a059;
  --soft-gold: #d4b87d;
  --navy-light: #1a3a5c;
}

.section-premium-bg {
  background-color: #f8f9fb;
  background-image: 
    radial-gradient(at 10% 10%, rgba(12, 39, 64, 0.15) 0px, transparent 40%),
    radial-gradient(at 90% 10%, rgba(197, 160, 89, 0.2) 0px, transparent 40%),
    radial-gradient(at 50% 50%, rgba(12, 39, 64, 0.08) 0px, transparent 50%),
    radial-gradient(at 10% 90%, rgba(197, 160, 89, 0.18) 0px, transparent 40%),
    radial-gradient(at 90% 90%, rgba(12, 39, 64, 0.15) 0px, transparent 40%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.section-premium-bg::before,
.section-premium-bg::after {
  display: none !important;
}

.section-premium-bg .container-fluid {
  position: relative;
  z-index: 2;
  background: none !important;
}

.bg-shape-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.22) 0%, transparent 70%);
  border-radius: 50%;
  animation: blob-float 20s infinite alternate ease-in-out;
  z-index: 0;
  filter: blur(80px);
}

.bg-shape-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(12, 39, 64, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: blob-float 25s infinite alternate-reverse ease-in-out;
  z-index: 0;
  filter: blur(100px);
}

@keyframes blob-float {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50% { transform: translate(100px, 50px) rotate(10deg) scale(1.1); }
  100% { transform: translate(-50px, 100px) rotate(-10deg) scale(0.9); }
}

.sidebar-link {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  color: #495057;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 12px;
  margin-bottom: 5px;
  font-weight: 500;
}

.sidebar-link i {
  margin-right: 12px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.sidebar-link:hover {
  background: rgba(197, 160, 89, 0.1);
  color: var(--primary-navy);
  transform: translateX(5px);
}

.sidebar-link.active {
  background: var(--primary-navy);
  color: white;
  box-shadow: 0 4px 15px rgba(12, 39, 64, 0.2);
}

.sidebar-link.active i {
  color: var(--elegant-gold);
}

.content-card {
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(12, 39, 64, 0.08);
  border: 1px solid rgba(0,0,0,0.03) !important;
}

.sidebar-card {
  background: #ffffff !important;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.02) !important;
}

.content-header {
  background: linear-gradient(rgba(12, 39, 64, 0.7), rgba(26, 58, 92, 0.7)),
    url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 60px 40px;
}

.badge-premium {
  background: rgba(197, 160, 89, 0.2);
  color: var(--soft-gold);
  border: 1px solid rgba(197, 160, 89, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.feature-box {
  padding: 30px;
  border-radius: 20px;
  background: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.feature-box:hover {
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

.process-list {
  position: relative;
}

.process-step {
  position: relative;
  padding-left: 50px;
  margin-bottom: 30px;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  background: var(--elegant-gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(197, 160, 89, 0.3);
}

.hover-gold:hover {
  color: var(--elegant-gold) !important;
}

.text-gold {
  color: var(--elegant-gold);
}

.text-navy {
  color: var(--primary-navy);
}

.bg-navy {
  background-color: var(--primary-navy);
}

.playfair {
  font-family: 'Playfair Display', serif;
}

.faaliyet-content p {
  text-align: justify;
}

.faaliyet-content h1,
.faaliyet-content h2,
.faaliyet-content h3,
.faaliyet-content h4,
.faaliyet-content h5,
.faaliyet-content h6 {
  text-align: left !important;
}

.content-header h1,
.content-header p,
.content-header .badge-premium {
  text-align: center !important;
}

@media (max-width: 991.98px) {
  .sidebar-card {
    margin-top: 2rem;
  }
}