/* ============================================================
   YPCD - Yüz Plastik Cerrahi Derneği
   Main Stylesheet
   Colors: #ffa72e (orange) | #213e69 (navy)
   ============================================================ */

:root {
  --primary: #ffa72e;
  --secondary: #213e69;
  --primary-dark: #e8941a;
  --secondary-dark: #182d4e;
  --white: #ffffff;
  --text: #333333;
  --text-light: #666666;
  --light-bg: #f8f9fa;
  --border: #e0e0e0;
  --shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.14);
  --transition: all 0.3s ease;
  --radius: 10px;
}

/* ============ RESET & BASE ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--secondary);
  font-weight: 600;
  line-height: 1.3;
}

img {
  max-width: 100%;
}

/* ============ TOP BAR ============ */
#top-bar {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#top-bar a {
  color: rgba(255, 255, 255, 0.75);
}

#top-bar a:hover {
  color: var(--primary);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lang-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.65);
  padding: 2px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.lang-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--secondary-dark);
}

.lang-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ============ HEADER / NAVBAR ============ */
#main-header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(33, 62, 105, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}

#main-header.scrolled {
  box-shadow: 0 4px 25px rgba(33, 62, 105, 0.18);
}

#main-header .navbar {
  padding: 10px 0;
}

/* Brand / Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.navbar-brand img {
  height: 58px;
  width: auto;
  transition: height 0.3s ease;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.3px;
}

.brand-subtitle {
  font-size: 0.68rem;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Nav links */
.navbar-nav .nav-link {
  color: var(--secondary) !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 6px 8px !important;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 80%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

/* Dropdown */
.navbar-nav .dropdown-menu {
  border: none;
  box-shadow: 0 8px 30px rgba(33, 62, 105, 0.15);
  border-radius: var(--radius);
  padding: 8px 0;
  min-width: 230px;
  margin-top: 8px !important;
  border-top: 3px solid var(--primary);
}

.navbar-nav .dropdown-item {
  color: var(--secondary);
  font-size: 0.83rem;
  font-weight: 500;
  padding: 9px 20px;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item.active {
  background: rgba(255, 167, 46, 0.08);
  color: var(--primary);
  border-left-color: var(--primary);
  padding-left: 25px;
}

.navbar-toggler {
  border-color: rgba(33, 62, 105, 0.3);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(255, 167, 46, 0.2);
}

/* ============ BUTTONS ============ */
.btn-orange {
  background: var(--primary);
  color: var(--secondary-dark);
  border: 2px solid var(--primary);
  padding: 11px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
  display: inline-block;
  text-align: center;
}

.btn-orange:hover {
  background: transparent;
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--secondary);
  color: var(--white);
  border: 2px solid var(--secondary);
  padding: 11px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
  display: inline-block;
  text-align: center;
}

.btn-navy:hover {
  background: transparent;
  color: var(--secondary);
  transform: translateY(-2px);
}

.btn-outline-orange {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.45);
  padding: 11px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
  display: inline-block;
}

.btn-outline-orange:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============ HERO SECTION ============ */
#hero {
  background: linear-gradient(135deg, #1a2d52 0%, var(--secondary) 45%, #2a4f8a 100%);
  color: var(--white);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

/* Decorative circles */
#hero::before {
  content: '';
  position: absolute;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(255, 167, 46, 0.12) 0%, transparent 65%);
  right: -120px;
  top: -120px;
  border-radius: 50%;
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 167, 46, 0.08) 0%, transparent 65%);
  left: -80px;
  bottom: -80px;
  border-radius: 50%;
  pointer-events: none;
}

/* Animated pattern overlay */
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255, 167, 46, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 167, 46, 0.15);
  color: var(--primary);
  border: 1px solid rgba(255, 167, 46, 0.35);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
}

.hero-title .highlight {
  color: var(--primary);
  display: block;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Stats bar */
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 2;
}

.hero-stat {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
}

/* Hero illustration / decorative right side */
.hero-visual {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-visual-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.hero-visual-icon {
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.15);
  margin-bottom: 20px;
}

.hero-visual-card h3 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.hero-visual-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0;
}

/* ============ SECTION COMMONS ============ */
section {
  padding: 75px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 55px;
}

.section-tag {
  display: inline-block;
  background: rgba(255, 167, 46, 0.1);
  color: var(--primary);
  border: 1px solid rgba(255, 167, 46, 0.3);
  padding: 4px 16px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.1rem;
  color: var(--secondary);
  margin-bottom: 14px;
}

.section-divider {
  width: 55px;
  height: 3px;
  background: var(--primary);
  margin: 0 auto 16px;
  border-radius: 2px;
}

.section-desc {
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ============ ABOUT SECTION ============ */
#about {
  background: var(--light-bg);
}

.about-img-wrapper {
  position: relative;
}

.about-img-placeholder {
  background: linear-gradient(135deg, var(--secondary) 0%, #2d5494 100%);
  border-radius: 16px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.2);
  font-size: 6rem;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: var(--secondary-dark);
  border-radius: 12px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(255, 167, 46, 0.35);
}

.about-badge strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}

.about-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.about-feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 167, 46, 0.1);
  border: 2px solid rgba(255, 167, 46, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon i {
  color: var(--primary);
  font-size: 1.4rem;
}

.about-feature-text h4 {
  font-size: 1.02rem;
  margin-bottom: 5px;
  color: var(--secondary);
}

.about-feature-text p {
  font-size: 0.87rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* ============ NEWS SECTION ============ */
#haberler {
  background: var(--white);
}

.news-card {
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  overflow: hidden;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.news-card-img {
  height: 195px;
  background: linear-gradient(135deg, var(--secondary) 0%, #2a4f8a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.news-card-img i {
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.12);
}

.news-card-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: var(--secondary-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
}

.news-card-body {
  padding: 22px;
}

.news-card-date {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.news-card-title {
  font-size: 1.02rem;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-card-text {
  font-size: 0.87rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.65;
}

.read-more {
  color: var(--primary);
  font-size: 0.83rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.read-more i {
  transition: transform 0.2s ease;
}

.read-more:hover {
  color: var(--secondary);
}

.read-more:hover i {
  transform: translateX(4px);
}

/* ============ MEETINGS SECTION ============ */
#toplanti {
  background: var(--light-bg);
}

.meeting-card {
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  padding: 18px 20px;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.meeting-card:hover {
  transform: translateX(6px);
  border-left-color: var(--secondary);
  box-shadow: var(--shadow-hover);
}

.meeting-date-block {
  background: rgba(33, 62, 105, 0.07);
  border-radius: 8px;
  padding: 10px 14px;
  text-align: center;
  min-width: 58px;
  flex-shrink: 0;
}

.meeting-date-day {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}

.meeting-date-month {
  font-size: 0.7rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.meeting-info {
  flex: 1;
}

.meeting-type-badge {
  display: inline-block;
  font-size: 0.67rem;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.badge-ulusal { background: rgba(33, 62, 105, 0.1); color: var(--secondary); }
.badge-uluslararasi { background: rgba(255, 167, 46, 0.15); color: #b87800; }
.badge-bolgesel { background: rgba(40, 167, 69, 0.1); color: #1e7e34; }

.meeting-title {
  font-size: 0.95rem;
  color: var(--secondary);
  font-weight: 700;
  margin: 0 0 4px;
}

.meeting-location {
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============ NEXT EVENT SPOTLIGHT ============ */
.next-event-card {
  background: linear-gradient(135deg, var(--secondary) 0%, #2a4f8a 100%);
  border-radius: 20px;
  padding: 40px 44px;
  display: flex;
  align-items: center;
  gap: 32px;
  box-shadow: var(--shadow-hover);
  position: relative;
  overflow: hidden;
}

.next-event-card::before {
  content: '';
  position: absolute;
  top: -70px;
  right: -70px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 167, 46, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.next-event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 20px 24px;
  min-width: 148px;
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 1;
}

.next-event-date-range {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
  white-space: nowrap;
}

.next-event-year {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.next-event-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.next-event-body {
  flex: 1;
  min-width: 240px;
  position: relative;
  z-index: 1;
}

.next-event-badge {
  display: inline-block;
  background: rgba(255, 167, 46, 0.15);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.next-event-title {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.35;
}

.next-event-location {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.next-event-location i { color: var(--primary); }

.next-event-cta {
  background: var(--primary);
  color: var(--secondary-dark);
  font-weight: 700;
  font-size: 0.87rem;
  padding: 13px 26px;
  border-radius: 8px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  text-decoration: none;
}

.next-event-cta:hover {
  background: #fff;
  color: var(--secondary);
  transform: translateX(3px);
}

@media (max-width: 767px) {
  .next-event-card {
    flex-direction: column;
    align-items: stretch;
    padding: 32px 26px;
    text-align: center;
  }
  .next-event-date { align-self: center; }
  .next-event-divider { display: none; }
  .next-event-location { justify-content: center; }
  .next-event-cta { justify-content: center; }
}

/* ============ WORKING GROUPS ============ */
#calisma-gruplari {
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}

#calisma-gruplari::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255, 167, 46, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

#calisma-gruplari .section-title {
  color: var(--white);
}

#calisma-gruplari .section-desc {
  color: rgba(255, 255, 255, 0.65);
}

.group-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  cursor: default;
}

.group-card:hover {
  background: rgba(255, 167, 46, 0.14);
  border-color: rgba(255, 167, 46, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.group-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 167, 46, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: var(--transition);
}

.group-card:hover .group-card-icon {
  background: rgba(255, 167, 46, 0.25);
}

.group-card-icon i {
  font-size: 1.6rem;
  color: var(--primary);
}

.group-card h5 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.87rem;
  margin: 0;
  line-height: 1.4;
  font-weight: 600;
}

/* ============ QUICK LINKS ============ */
#baglantilar-home {
  background: var(--white);
}

.link-logo-box {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.link-logo-box:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(255, 167, 46, 0.15);
}

.link-logo-box i {
  font-size: 2.5rem;
  color: var(--secondary);
  opacity: 0.5;
  transition: var(--transition);
}

.link-logo-box:hover i {
  color: var(--primary);
  opacity: 1;
}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  background: linear-gradient(135deg, #1a2d52 0%, var(--secondary) 60%, #2a4a82 100%);
  padding: 52px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -50px;
  top: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 167, 46, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero h1 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 700;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
}

.breadcrumb-item a:hover {
  color: var(--primary);
}

.breadcrumb-item.active {
  color: var(--primary);
  font-size: 0.85rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.35);
  content: "›";
  font-size: 1.1rem;
  line-height: 1;
  vertical-align: -1px;
}

/* ============ INNER PAGE CONTENT ============ */
.inner-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px 40px;
  box-shadow: var(--shadow);
}

.inner-content h2 {
  color: var(--secondary);
  font-size: 1.65rem;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--primary);
  display: inline-block;
}

.inner-content h3 {
  color: var(--secondary);
  font-size: 1.2rem;
  margin: 28px 0 12px;
}

.inner-content p {
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 16px;
}

.inner-content ul,
.inner-content ol {
  color: var(--text-light);
  line-height: 1.85;
  padding-left: 22px;
  margin-bottom: 16px;
}

.inner-content ul li,
.inner-content ol li {
  margin-bottom: 6px;
}

/* ============ SIDEBAR ============ */
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.sidebar-widget-title {
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-widget-title i {
  color: var(--primary);
}

.sidebar-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-link-list li {
  border-bottom: 1px solid var(--border);
}

.sidebar-link-list li:last-child {
  border-bottom: none;
}

.sidebar-link-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 0.87rem;
  padding: 9px 0;
  transition: var(--transition);
}

.sidebar-link-list a i {
  color: var(--primary);
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.sidebar-link-list a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.sidebar-link-list a:hover i {
  transform: translateX(3px);
}

.sidebar-meeting-item {
  border-left: 3px solid var(--primary);
  padding: 10px 12px;
  margin-bottom: 10px;
  background: var(--light-bg);
  border-radius: 0 6px 6px 0;
}

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

.sidebar-meeting-date {
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
}

.sidebar-meeting-name {
  font-size: 0.85rem;
  color: var(--secondary);
  font-weight: 600;
  margin: 3px 0 2px;
}

.sidebar-meeting-loc {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ============ TABLES ============ */
.table-ypcd thead th {
  background: var(--secondary);
  color: var(--white);
  font-size: 0.83rem;
  font-weight: 600;
  border: none;
  padding: 12px 16px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.table-ypcd tbody td {
  font-size: 0.87rem;
  vertical-align: middle;
  border-color: var(--border);
  padding: 11px 16px;
  color: var(--text);
}

.table-ypcd tbody tr:hover {
  background: rgba(255, 167, 46, 0.04);
}

/* ============ FORMS ============ */
.form-control,
.form-select {
  border-color: var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 167, 46, 0.15);
}

.form-label {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 5px;
}

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

.form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(255, 167, 46, 0.15);
}

/* ============ MEMBER CARDS ============ */
.member-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.member-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.member-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary) 0%, #2d5494 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 2rem;
}

.member-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  display: block;
  margin: 0 auto 14px;
  border: 3px solid var(--primary);
}

.member-name {
  font-size: 1rem;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 4px;
}

.member-title {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.member-info {
  font-size: 0.83rem;
  color: var(--text-light);
}

/* ============ CONTACT PAGE ============ */
.contact-info-card {
  background: var(--secondary);
  border-radius: var(--radius);
  padding: 35px;
  color: rgba(255, 255, 255, 0.85);
  height: 100%;
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 28px;
}

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

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 167, 46, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  color: var(--primary);
  font-size: 1.1rem;
}

.contact-info-text strong {
  display: block;
  color: var(--white);
  font-size: 0.85rem;
  margin-bottom: 3px;
}

.contact-info-text span {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ============ E-DERGİ ============ */
.journal-card {
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.journal-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.journal-cover {
  height: 240px;
  background: linear-gradient(135deg, var(--secondary) 0%, #2d5494 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
}

.journal-cover i {
  font-size: 4rem;
  margin-bottom: 10px;
  opacity: 0.5;
}

.journal-cover .journal-year {
  font-size: 0.8rem;
  background: var(--primary);
  color: var(--secondary-dark);
  padding: 3px 12px;
  border-radius: 4px;
  font-weight: 700;
}

.journal-body {
  padding: 18px;
}

.journal-body h5 {
  font-size: 0.95rem;
  color: var(--secondary);
  margin-bottom: 5px;
}

.journal-body small {
  color: var(--text-light);
  font-size: 0.8rem;
}

/* ============ LOGIN FORM ============ */
.login-card {
  background: var(--white);
  border-radius: 16px;
  padding: 44px 48px;
  box-shadow: 0 10px 40px rgba(33, 62, 105, 0.12);
  max-width: 460px;
  margin: 0 auto;
}

.login-card .login-logo {
  text-align: center;
  margin-bottom: 28px;
}

.login-card .login-logo img {
  height: 65px;
}

.login-divider {
  height: 1px;
  background: var(--border);
  margin: 22px 0;
  position: relative;
  text-align: center;
}

/* ============ FOOTER ============ */
#main-footer {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 65px;
}

.footer-brand {
  margin-bottom: 22px;
}

.footer-brand img {
  height: 62px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}

.footer-heading {
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.87rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--primary);
  font-size: 1rem;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}

.social-icons {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--secondary-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.22);
  padding: 16px 0;
  margin-top: 50px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.45);
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--primary);
}

/* ============ FADE-IN (devre dışı — içerik her zaman görünür) ============ */
.fade-in,
.fade-in.visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.fade-in-delay-1,
.fade-in-delay-2,
.fade-in-delay-3 { transition-delay: 0s; }

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--light-bg); }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1199px) {
  .navbar-nav .nav-link {
    font-size: 0.73rem;
    padding: 6px 5px !important;
  }
}

@media (max-width: 991px) {
  .hero-title { font-size: 2.2rem; }

  .navbar-collapse {
    background: var(--white);
    padding: 16px;
    border-top: 3px solid var(--primary);
    margin-top: 10px;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  .navbar-nav .nav-link::after { display: none; }
  .navbar-nav .dropdown-menu { box-shadow: none; background: var(--light-bg); margin-top: 4px !important; }

  .hero-stats {
    gap: 0;
  }

  .hero-stat {
    padding: 0 12px;
  }

  .about-badge { bottom: -10px; right: 10px; }
}

@media (max-width: 767px) {
  #hero {
    padding: 65px 0 60px;
    min-height: auto;
  }

  .hero-title { font-size: 1.75rem; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 10px 0; }
  .hero-stat:nth-child(2n) { border-right: none; }

  section { padding: 52px 0; }

  .inner-content { padding: 22px 20px; }

  .brand-text { display: none; }

  .login-card { padding: 28px 22px; }
}
