/* ============================================
   OKSITOSIN — ANA STİL DOSYASI
   Renk Paleti: Lacivert + Altın + Krem
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,300;0,6..72,400;0,6..72,500;0,6..72,600;0,6..72,700;1,6..72,400;1,6..72,600&display=swap');

/* ---- CSS CUSTOM PROPERTIES ---- */
:root {
  --primary: #0D1B2A;
  --primary-light: #162638;
  --primary-deep: #07101A;
  --gold: #C9A84C;
  --gold-light: #DFC17A;
  --gold-dark: #A68836;
  --cream: #F5F0E8;
  --cream-dark: #EDE7D9;
  --white: #FFFFFF;
  --text-dark: #1E2A35;
  --text-body: #445566;
  --text-muted: #8A9BB5;
  --border-color: rgba(201, 168, 76, 0.2);
  --shadow-sm: 0 4px 15px rgba(13, 27, 42, 0.08);
  --shadow-md: 0 10px 40px rgba(13, 27, 42, 0.14);
  --shadow-lg: 0 20px 60px rgba(13, 27, 42, 0.22);
  --transition-fast: all 0.2s ease;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  --glass-bg: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: 'Newsreader', sans-serif;
  color: var(--text-body);
  background-color: var(--white);
  overflow-x: hidden;
  line-height: 1.75;
  animation: pageIn 0.4s ease;
}
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Newsreader', serif;
  line-height: 1.2;
  color: var(--primary);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.35rem, 2.5vw, 2rem); font-weight: 500; }
h4 { font-size: 1.25rem; font-weight: 500; }
h5 { font-size: 1.05rem; font-weight: 500; }
p { color: var(--text-body); line-height: 1.85; }
a { color: var(--gold); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--gold-light); }
.lead { font-size: 1.12rem; color: #556677; line-height: 1.85; }
img { max-width: 100%; height: auto; }

/* ---- UTILITIES ---- */
.text-gold { color: var(--gold) !important; }
.text-primary-dark { color: var(--primary) !important; }
.bg-primary-dark { background-color: var(--primary) !important; }
.bg-cream { background-color: var(--cream) !important; }

.section-label {
  font-family: 'Newsreader', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

.gold-line {
  width: 55px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 0.85rem 0;
}
.gold-line.center { margin: 0.85rem auto; }

hr.gold-hr {
  border: none; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 3rem 0; opacity: 1;
}

.tag {
  display: inline-block;
  padding: 0.2rem 0.75rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.06em;
}

.rounded-custom { border-radius: var(--radius-lg) !important; }
.img-cover { width: 100%; height: 100%; object-fit: cover; }

/* ---- BUTTONS ---- */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary);
  font-family: 'Newsreader', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-sm);
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
  cursor: pointer;
  display: inline-block;
}
.btn-gold:hover {
  color: var(--primary);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.45);
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  font-family: 'Newsreader', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  padding: 0.73rem 2rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gold);
  transition: var(--transition);
  cursor: pointer;
  display: inline-block;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-white-outline {
  background: transparent;
  color: var(--white);
  font-family: 'Newsreader', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.73rem 2rem;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.4);
  transition: var(--transition);
  display: inline-block;
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

/* ---- PRELOADER ---- */
#preloader {
  position: fixed; inset: 0;
  background: var(--primary-deep);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo {
  font-family: 'Newsreader', serif;
  font-size: 2.2rem; font-weight: 600;
  color: var(--gold); letter-spacing: 0.25em;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}
.preloader-line {
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1rem auto 0;
  animation: preloaderLine 1.5s ease-in-out infinite;
}
@keyframes preloaderPulse {
  0%, 100% { opacity: 0.4; } 50% { opacity: 1; }
}
@keyframes preloaderLine {
  0% { width: 0; } 50% { width: 100px; } 100% { width: 0; }
}

/* ---- NAVBAR ---- */
#mainNav {
  background: transparent;
  padding: 1.2rem 0;
  transition: var(--transition);
  z-index: 1050; width: 100%;
}
#mainNav.scrolled {
  background: rgba(8, 16, 26, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.65rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.35);
}

.navbar-brand {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none;
}
.brand-logo {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.05rem;
  color: var(--primary); flex-shrink: 0;
  font-family: 'Newsreader', serif;
}
.brand-text {
  font-family: 'Newsreader', serif;
  font-size: 1.55rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.12em; line-height: 1;
  display: block;
}
.brand-sub {
  font-family: 'Newsreader', sans-serif;
  font-size: 0.52rem; font-weight: 500;
  letter-spacing: 0.18em; color: var(--gold);
  display: block; text-transform: uppercase; margin-top: 1px;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.82) !important;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 0.5rem 0.85rem !important;
  transition: var(--transition-fast);
  position: relative;
}
.navbar-nav .nav-link::after {
  content: ''; position: absolute;
  bottom: 4px; left: 0.85rem; right: 0.85rem;
  height: 2px; background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease; border-radius: 1px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-nav .nav-link.dropdown-toggle::after { display: none; }
.navbar-nav .nav-link.dropdown-toggle .dd-arrow {
  font-size: 0.6rem; margin-left: 3px; vertical-align: middle;
  transition: transform 0.3s;
}
.nav-item.dropdown.show .dd-arrow { transform: rotate(180deg); }

/* Mega Menu */
.mega-dropdown { position: static !important; }
.mega-dropdown .dropdown-menu {
  position: absolute !important;
  top: 100% !important; left: 0 !important;
  width: 100vw !important; right: 0 !important;
  border: none;
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: rgba(8, 16, 26, 0.98);
  backdrop-filter: blur(20px);
  padding: 1.75rem 0;
  box-shadow: 0 25px 70px rgba(0,0,0,0.5);
  margin-top: 0 !important;
  transform-origin: top center;
  animation: dropMenuIn 0.25s cubic-bezier(0.4,0,0.2,1);
}
@keyframes dropMenuIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mega-menu-title {
  font-family: 'Newsreader', sans-serif;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  padding: 0 1rem 0.6rem;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 0.6rem;
}
.mega-dropdown .dropdown-item {
  color: rgba(255,255,255,0.75) !important;
  font-size: 0.85rem; font-weight: 400;
  padding: 0.4rem 1rem;
  transition: var(--transition-fast);
  border-radius: 4px;
  margin: 0 0.3rem;
  background: transparent;
}
.mega-dropdown .dropdown-item:hover {
  background: rgba(201, 168, 76, 0.12) !important;
  color: var(--gold) !important;
  padding-left: 1.4rem;
}

/* Regular dropdown */
.reg-dropdown .dropdown-menu {
  background: rgba(8, 16, 26, 0.98);
  border: none;
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 0.75rem 0.5rem;
  box-shadow: 0 15px 50px rgba(0,0,0,0.4);
  animation: dropMenuIn 0.22s ease;
  min-width: 200px;
}
.reg-dropdown .dropdown-item {
  color: rgba(255,255,255,0.75) !important;
  font-size: 0.85rem; padding: 0.45rem 1rem;
  border-radius: 4px;
  transition: var(--transition-fast);
}
.reg-dropdown .dropdown-item:hover {
  background: rgba(201,168,76,0.12) !important;
  color: var(--gold) !important;
}

.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.4rem 0.6rem; border-radius: 6px;
}
.navbar-toggler-icon { filter: brightness(0) invert(1); }

/* Contact button in nav */
.nav-btn-contact {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary) !important;
  font-weight: 600; font-size: 0.78rem;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius-sm);
  letter-spacing: 0.06em;
  transition: var(--transition) !important;
  box-shadow: 0 3px 12px rgba(201,168,76,0.3);
}
.nav-btn-contact:hover {
  box-shadow: 0 6px 20px rgba(201,168,76,0.5);
  transform: translateY(-1px);
  color: var(--primary) !important;
}
.nav-btn-contact::after { display: none !important; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: linear-gradient(155deg, var(--primary-deep) 0%, var(--primary) 50%, #122035 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}

.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

/* Hero background photo */
.hero-image-bg {
  position: absolute;
  inset: 0;
  background-image: url('/img/hero.jpeg');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  z-index: 0;
  /* Desktop: sol metin alanı karanlık, sağda fotoğraf görünür */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 35%, black 58%, black 100%);
  mask-image: linear-gradient(to right, transparent 0%, transparent 35%, black 58%, black 100%);
  opacity: 0.8;
}

/* Alt kenara koyu geçiş */
.hero-image-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--primary-deep) 0%, transparent 35%);
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  font-family: 'Newsreader', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }

.hero h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 600; line-height: 1.08;
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--gold); }

.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.72);
  line-height: 1.9; max-width: 530px; margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-num {
  font-family: 'Newsreader', serif;
  font-size: 2.5rem; font-weight: 700;
  color: var(--gold); line-height: 1; display: block;
}
.hero-stat-label {
  font-size: 0.72rem; font-weight: 500;
  color: rgba(255,255,255,0.55); margin-top: 0.3rem;
  letter-spacing: 0.04em;
}

.hero-text-reveal > * {
  opacity: 0; transform: translateY(40px);
  animation: slideUpReveal 0.8s cubic-bezier(0.4,0,0.2,1) forwards;
}
.hero-text-reveal > *:nth-child(1) { animation-delay: 0.15s; }
.hero-text-reveal > *:nth-child(2) { animation-delay: 0.3s; }
.hero-text-reveal > *:nth-child(3) { animation-delay: 0.5s; }
.hero-text-reveal > *:nth-child(4) { animation-delay: 0.7s; }
.hero-text-reveal > *:nth-child(5) { animation-delay: 0.9s; }
@keyframes slideUpReveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem; color: rgba(255,255,255,0.4);
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 45px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

.page-banner {
  padding: 7.5rem 0 4rem;
  background: linear-gradient(155deg, var(--primary-deep), var(--primary) 70%, #1a3050);
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.1) 0%, transparent 60%);
}
.page-banner::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-banner .container-xl { position: relative; z-index: 1; }
.page-banner h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); }
.page-banner .lead { color: rgba(255,255,255,0.7); max-width: 600px; }

.breadcrumb { background: none; padding: 0; margin: 0 0 1rem; }
.breadcrumb-item { font-size: 0.8rem; }
.breadcrumb-item a { color: var(--gold); opacity: 0.85; }
.breadcrumb-item a:hover { opacity: 1; }
.breadcrumb-item.active { color: rgba(255,255,255,0.55); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ---- SECTIONS ---- */
section { padding: 5rem 0; }

.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }

.section-dark {
  background: var(--primary);
  color: var(--white);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.72); }
.section-dark .lead { color: rgba(255,255,255,0.65); }

.section-cream { background: var(--cream); }
.section-cream-dark { background: var(--cream-dark); }

/* ---- CARDS ---- */
.card-custom {
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: var(--transition);
  overflow: hidden; height: 100%;
  box-shadow: var(--shadow-sm);
}
.card-custom:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-7px);
  border-color: rgba(201,168,76,0.4);
}
.card-custom .card-body { padding: 2rem; }
.card-custom .card-title {
  font-family: 'Newsreader', serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--primary); margin-bottom: 0.75rem;
}
.card-custom .card-text { font-size: 0.88rem; color: var(--text-body); line-height: 1.8; }

.card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
  transition: var(--transition);
}
.card-custom:hover .card-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
}
.card-custom:hover .card-icon i { color: var(--primary) !important; }

/* Hub Card */
.hub-card {
  display: block; height: 100%;
  padding: 2rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: var(--transition);
  color: inherit; text-decoration: none;
}
.hub-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  color: inherit;
}
.hub-card-num {
  font-family: 'Newsreader', serif;
  font-size: 3.5rem; font-weight: 700;
  color: rgba(201,168,76,0.18); line-height: 1;
  margin-bottom: 1rem;
}
.hub-card h5 {
  font-family: 'Newsreader', serif;
  font-size: 1.25rem; color: var(--primary); margin-bottom: 0.5rem;
}
.hub-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.75; margin: 0; }
.hub-card-arrow {
  margin-top: 1.5rem; color: var(--gold);
  font-size: 1rem; display: inline-block;
  transition: transform 0.3s ease;
}
.hub-card:hover .hub-card-arrow { transform: translateX(6px); }

/* Glass Card */
.card-glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px); padding: 2rem;
  transition: var(--transition);
}
.card-glass:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,168,76,0.4);
}

/* ---- STATS ---- */
.stat-box { text-align: center; padding: 2rem 1rem; }
.stat-num {
  font-family: 'Newsreader', serif;
  font-size: 3.8rem; font-weight: 700;
  color: var(--gold); line-height: 1; display: block;
}
.stat-label {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-top: 0.5rem;
}

/* ---- QUOTE BLOCK ---- */
.quote-block {
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem; margin: 2rem 0;
  background: rgba(201,168,76,0.05);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.quote-block blockquote {
  font-family: 'Newsreader', serif;
  font-size: 1.35rem; font-style: italic;
  color: var(--primary); margin: 0; line-height: 1.65;
}
.quote-block cite {
  font-size: 0.8rem; color: var(--text-muted);
  display: block; margin-top: 0.75rem;
  font-style: normal; font-weight: 500;
}

/* ---- CONTENT + SIDEBAR ---- */
.content-with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; }

.sidebar-card {
  padding: 1.75rem; background: var(--cream);
  border-radius: var(--radius-lg); margin-bottom: 1.5rem;
  border: 1px solid rgba(201,168,76,0.12);
}
.sidebar-heading {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; display: block;
}
.sidebar-links a {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0; color: var(--text-dark);
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition-fast);
}
.sidebar-links a:hover { color: var(--gold); padding-left: 0.5rem; }
.sidebar-links a:last-child { border-bottom: none; }
.sidebar-links i { color: var(--gold); font-size: 0.7rem; }

/* ---- EVENTS ---- */
.event-card {
  display: flex; gap: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: var(--transition);
  margin-bottom: 1rem;
}
.event-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.45);
  transform: translateX(4px);
}
.event-date {
  text-align: center; flex-shrink: 0; width: 62px;
  background: var(--primary);
  border-radius: var(--radius-sm); padding: 0.8rem 0.5rem;
}
.event-date-day {
  font-family: 'Newsreader', serif;
  font-size: 1.9rem; font-weight: 700;
  color: var(--gold); line-height: 1; display: block;
}
.event-date-month {
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.event-info h6 {
  font-family: 'Newsreader', serif;
  font-size: 1.1rem; color: var(--primary); margin-bottom: 0.35rem; font-weight: 600;
}
.event-meta { font-size: 0.78rem; color: var(--text-muted); }
.event-meta i { margin-right: 3px; }

/* ---- PUBLICATIONS ---- */
.pub-item {
  display: flex; gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-fast);
}
.pub-item:last-child { border-bottom: none; }
.pub-item:hover { padding-left: 0.5rem; }
.pub-badge {
  flex-shrink: 0; align-self: flex-start;
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--gold);
  border-radius: 4px;
  font-size: 0.62rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase;
  margin-top: 0.3rem; white-space: nowrap;
}
.pub-title {
  font-family: 'Newsreader', serif;
  font-size: 1.05rem; color: var(--primary);
  margin-bottom: 0.35rem; font-weight: 600;
}
.pub-meta { font-size: 0.78rem; color: var(--text-muted); }

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold) 60%, var(--gold-light));
  padding: 5rem 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(13,27,42,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,27,42,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-section .container-xl { position: relative; z-index: 1; }
.cta-section h2 { color: var(--primary); margin-bottom: 1rem; }
.cta-section p { color: rgba(13,27,42,0.75); font-size: 1.05rem; margin-bottom: 2rem; }

/* ---- CONTACT ---- */
.contact-info-item {
  display: flex; gap: 1rem; padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-color);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem;
}
.contact-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.2rem; }
.contact-value { font-size: 0.95rem; color: var(--text-dark); font-weight: 500; }

.form-group-custom { margin-bottom: 1.25rem; }
.form-label-custom {
  display: block; margin-bottom: 0.4rem;
  font-size: 0.78rem; font-weight: 600;
  color: var(--primary); letter-spacing: 0.04em;
}
.form-control-custom {
  width: 100%; padding: 0.8rem 1rem;
  border: 1px solid rgba(13,27,42,0.14);
  border-radius: var(--radius-sm);
  font-size: 0.9rem; font-family: 'Newsreader', sans-serif;
  color: var(--text-dark); background: var(--white);
  transition: var(--transition-fast);
  appearance: none;
}
.form-control-custom:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
textarea.form-control-custom { resize: vertical; min-height: 130px; }

/* ---- FOOTER ---- */
footer {
  background: var(--primary-deep);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 0;
}
.footer-brand { margin-bottom: 1rem; }
.footer-desc {
  font-size: 0.875rem; line-height: 1.85;
  color: rgba(255,255,255,0.5); max-width: 270px;
}
.footer-heading {
  font-family: 'Newsreader', sans-serif;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a {
  color: rgba(255,255,255,0.55); font-size: 0.855rem;
  transition: var(--transition-fast);
}
.footer-links a:hover { color: var(--gold); padding-left: 5px; }

.social-links { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); font-size: 0.85rem;
  transition: var(--transition-fast); text-decoration: none;
}
.social-link:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,168,76,0.1);
}

/* Açık arka plan üzerinde (iletişim sayfası gibi) */
.social-link--dark {
  border-color: rgba(13,27,42,0.25) !important;
  color: var(--primary) !important;
  background: rgba(13,27,42,0.05);
}
.social-link--dark:hover {
  border-color: var(--gold) !important;
  color: var(--gold-dark) !important;
  background: rgba(201,168,76,0.1);
}

.footer-divider {
  border: none; height: 1px;
  background: rgba(255,255,255,0.06); margin: 3.5rem 0 0;
}
.footer-bottom {
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); font-size: 0.78rem; }
.footer-bottom a:hover { color: var(--gold); }

/* ---- BACK TO TOP ---- */
#backToTop {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 46px; height: 46px;
  background: var(--gold); color: var(--primary);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; z-index: 999;
  opacity: 0; transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(201,168,76,0.45);
}
#backToTop.visible { opacity: 1; transform: translateY(0); }
#backToTop:hover { transform: translateY(-4px); filter: brightness(1.1); }

/* ---- SCROLL ANIMATIONS ---- */
.aos {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.aos.in { opacity: 1; transform: translateY(0); }
.aos.delay-1 { transition-delay: 0.1s; }
.aos.delay-2 { transition-delay: 0.2s; }
.aos.delay-3 { transition-delay: 0.3s; }
.aos.delay-4 { transition-delay: 0.4s; }
.aos.delay-5 { transition-delay: 0.5s; }

/* Fade from left */
.aos-left {
  opacity: 0; transform: translateX(-28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.aos-left.in { opacity: 1; transform: translateX(0); }

/* Fade from right */
.aos-right {
  opacity: 0; transform: translateX(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.aos-right.in { opacity: 1; transform: translateX(0); }

/* Scale in */
.aos-scale {
  opacity: 0; transform: scale(0.93);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.aos-scale.in { opacity: 1; transform: scale(1); }

/* ---- FEATURE LIST ---- */
.feature-item {
  display: flex; gap: 1rem; margin-bottom: 1.75rem;
}
.feature-icon {
  flex-shrink: 0; width: 48px; height: 48px;
  background: rgba(201,168,76,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.2rem;
}
.feature-item h6 {
  font-family: 'Newsreader', serif;
  font-size: 1.05rem; color: var(--primary); margin-bottom: 0.3rem;
}
.feature-item p { font-size: 0.875rem; margin: 0; }

/* ---- IMAGE DECORATION ---- */
.img-decorated {
  position: relative;
}
.img-decorated::before {
  content: ''; position: absolute;
  top: -15px; left: -15px; right: 15px; bottom: 15px;
  border: 2px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg); z-index: 0;
}
.img-decorated img {
  position: relative; z-index: 1;
  border-radius: var(--radius-lg);
  width: 100%;
}

/* ---- PILL TABS ---- */
.pill-tabs {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem;
}
.pill-tab {
  padding: 0.45rem 1.25rem;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  font-size: 0.8rem; font-weight: 500;
  color: var(--text-muted); cursor: pointer;
  transition: var(--transition-fast);
  background: var(--white);
}
.pill-tab.active, .pill-tab:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1199px) {
  /* orb-container kaldırıldı */
}
@media (max-width: 991px) {
  .hero h1 { font-size: clamp(2.2rem, 7vw, 3.5rem); }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .navbar-collapse { background: rgba(8,16,26,0.97); padding: 1rem; border-radius: 0 0 var(--radius-md) var(--radius-md); margin-top: 0.5rem; }
}
@media (max-width: 767px) {
  section { padding: 3.5rem 0; }
  .hero { padding: 4.5rem 0 3rem; min-height: 100svh; }
  .page-banner { padding: 6.5rem 0 3rem; }
  .hero-stats { gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .hero-actions { flex-direction: column; width: fit-content; }

  /* Mobilde: mask kaldır, fotoğraf tam arka plan, kişinin gövdesi+yüzü görünür */
  .hero-image-bg {
    -webkit-mask-image: none;
    mask-image: none;
    background-position: 70% center;
    opacity: 0.35;
  }

  /* Mobilde metin okunabilirliği için güçlü koyu overlay */
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(7,16,26,0.82) 0%,
      rgba(13,27,42,0.70) 50%,
      rgba(7,16,26,0.55) 100%
    );
    z-index: 1;
  }
}
