﻿/* ============================================================
   MUĞLA SITKI KOÇMAN ÜNİVERSİTESİ — KURUMSAL ANA SAYFA
   Renk: ITU kırmızısı (#B11116) + koyu lacivert
   Font: Source Serif 4 (başlık) + Source Sans 3 (gövde)
   Özellik: Şeffaf hero menüsü, paginated duyurular
============================================================ */
:root {
  --red: #002d72;
  --red-dk: #001a45;
  --red-md: #0046a8;
  --red-pl: #e1ecfa;
  --accent: #ffc4c4;
  --ink: #002d72;
  --slate: #4a4859;
  --stone: #f5f3f0;
  --line: #e5e0da;
  --white: #fefefe;
  --fd: "Poppins", sans-serif;
  --fb: "Open Sans", Arial, sans-serif;
  --ease: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --sh: 0 4px 24px rgba(0, 0, 0, 0.1);
  --sh-lg: 0 12px 48px rgba(0, 0, 0, 0.16);
  --r: 8px;
  --rl: 16px;
  --tb-h: 36px;
  /* topbar yüksekliği */
  --hh: 96px;
  /* header yüksekliği (başlangıçta daha büyük) */
}

/* ============================================================
   TEMA OVERRİDE'LARI — html[data-theme] ile geçiş
============================================================ */
/* Yeşil Tema (green.jpg tabanlı) */
html[data-theme="green-theme"] {
  --red: #1e5046;
  --red-dk: #143c3c;
  --red-md: #285a50;
  --red-pl: #e6f0ec;
  --accent: #befa82;
  --ink: #1e4646;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   SEARCH OVERLAY
============================================================ */
.srch-ov {
  position: fixed;
  inset: 0;
  background: rgba(28, 28, 46, 0.97);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 90px;
  opacity: 0;
  visibility: hidden;
  transition: var(--ease);
  overflow-y: auto;
  padding-bottom: 60px;
  transition: var(--ease);
}

.srch-ov.open {
  opacity: 1;
  visibility: visible;
}

.srch-close {
  position: absolute;
  top: 26px;
  right: 34px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 22px;
  cursor: pointer;
  transition: var(--ease);
}

.srch-close:hover {
  color: var(--red-md);
}

.srch-box {
  width: 100%;
  max-width: 700px;
  padding: 0 24px;
}

.srch-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.srch-form {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 10px;
  margin-bottom: 26px;
}

.srch-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--fd);
  font-size: 30px;
  color: var(--white);
  font-style: italic;
}

.srch-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.srch-submit {
  background: none;
  border: none;
  color: var(--red-md);
  font-size: 20px;
  cursor: pointer;
}

.srch-tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stab {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: var(--ease);
}

.stab.on,
.stab:hover {
  color: var(--white);
  border-color: var(--red);
}

.srch-results {
  width: 100%;
  max-width: 700px;
  padding: 0 24px;
}

.srpanel {
  display: none;
}

.srpanel.on {
  display: block;
}

.sr-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 12px;
  margin-top: 16px;
}

.sr-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: var(--ease);
  cursor: pointer;
}

.sr-item:hover {
  padding-left: 8px;
}

.sr-thumb {
  width: 46px;
  height: 46px;
  border-radius: var(--r);
  background: rgba(177, 17, 22, 0.3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--red-md);
  overflow: hidden;
}

.sr-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sr-body h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.sr-body p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.35);
}

.sr-tag {
  display: inline-block;
  background: var(--red-dk);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
  margin-left: auto;
  flex-shrink: 0;
}

.srch-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.srch-chip {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.45);
  padding: 4px 13px;
  border-radius: 100px;
  font-size: 12px;
  cursor: pointer;
  transition: var(--ease);
}

.srch-chip:hover {
  background: var(--red);
  color: var(--white);
}

/* ============================================================
   YEMEK LİSTESİ (FOOD MENU)
============================================================ */
.food-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(28, 28, 46, 0.6);
  backdrop-filter: blur(4px);
  z-index: 8490;
  opacity: 0;
  visibility: hidden;
  transition: var(--ease);
}

.food-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.food-ov {
  position: fixed;
  inset: 0;
  z-index: 8500;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.food-right {
  width: 380px;
  height: 100%;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
  display: flex;
  flex-direction: column;
}

.food-ov.open .food-right {
  transform: translateX(0);
}

.food-hd {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.food-title {
  font-family: var(--fd);
  font-size: 24px;
  color: var(--ink);
  font-weight: 400;
}

.food-title span {
  font-weight: 700;
  color: var(--red);
}

.food-close {
  background: none;
  border: none;
  font-size: 22px;
  color: var(--slate);
  cursor: pointer;
  transition: var(--ease);
}

.food-close:hover {
  color: var(--red);
  transform: rotate(90deg);
}

.food-content {
  flex: 1;
  overflow-y: auto;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.food-item {
  padding: 18px 20px;
  background: var(--stone);
  border-radius: var(--r);
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--ease);
}

.food-item i {
  color: var(--red);
  font-size: 18px;
}

.food-item:hover {
  background: var(--accent);
  color: var(--ink);
  transform: translateX(4px);
}

.food-ft {
  padding: 24px 30px;
  border-top: 1px solid var(--line);
  background: var(--stone);
  text-align: center;
}

.food-link {
  color: var(--red);
  font-weight: 700;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--ease);
}

.food-link:hover {
  color: var(--red-dk);
  gap: 12px;
}

/* ============================================================
   HİZMETLER (QUICK MENU)
============================================================ */
.qm-ov {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50vw;
  z-index: 8500;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.qm-ov.open {
  transform: translateX(0);
  visibility: visible;
}

.qm-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 8499;
  opacity: 0;
  visibility: hidden;
  transition: var(--ease);
}

.qm-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.qm-left {
  background: var(--red-dk);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.qm-right {
  background: var(--stone);
  padding: 32px 36px;
  overflow-y: auto;
}

.qm-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.qm-title {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
}

.qm-title span {
  color: var(--accent);
  font-style: italic;
}

.qm-close {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: var(--ease);
}

.qm-close:hover {
  background: var(--red-md);
  border-color: var(--red-md);
  color: var(--white);
}

.qm-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.qm-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.85);
  padding: 11px 16px;
  border-radius: var(--r);
  font-size: 13.5px;
  font-weight: 400;
  transition: var(--ease);
  cursor: pointer;
}

.qm-link i {
  color: #ffaaaa;
  width: 16px;
  font-size: 14px;
  flex-shrink: 0;
}

.qm-link:hover {
  background: var(--red-md);
  border-color: var(--red-md);
  color: var(--white);
}

.qm-link:hover i {
  color: var(--white);
}

.qm-contact {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.qm-contact p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 3px;
}

.qm-contact strong {
  font-size: 15px;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}

.qm-socs {
  display: flex;
  gap: 7px;
}

.qm-soc {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  transition: var(--ease);
}

.qm-soc:hover {
  background: var(--red-md);
  color: var(--white);
}

.qm-right-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.qm-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 22px;
}

.qtab {
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 8px 18px;
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  cursor: pointer;
  transition: var(--ease);
}

.qtab.on,
.qtab:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.qtab-panel {
  display: none;
}

.qtab-panel.on {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.qcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--rl);
  padding: 16px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  transition: var(--ease);
  cursor: pointer;
}

.qcard:hover {
  border-color: var(--red);
  background: var(--red-pl);
  transform: translateY(-2px);
}

.qcard i {
  font-size: 22px;
  color: var(--red);
}

.qcard span {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

/* ============================================================
   MOBİL MENÜ
============================================================ */
.mob-bd {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1998;
  opacity: 0;
  visibility: hidden;
  transition: var(--ease);
}

.mob-bd.open {
  opacity: 1;
  visibility: visible;
}

.mob-panel {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(380px, 92vw);
  background: var(--white);
  z-index: 1999;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mob-panel.open {
  transform: translateX(0);
}

.mob-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}

.mob-logo {
  display: flex;
  align-items: center;
  gap: 11px;
}

.mob-emb {
  width: 38px;
  height: 38px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}

.mob-nm {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
}

.mob-cl {
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--r);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  cursor: pointer;
  transition: var(--ease);
}

.mob-cl:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.mob-it {
  border-bottom: 1px solid var(--line);
}

.mob-tog {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: none;
  border: none;
  font-family: var(--fb);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: var(--ease);
}

.mob-tog:hover,
.mob-it.open .mob-tog {
  color: var(--red);
  background: var(--red-pl);
}

.mob-tog i {
  font-size: 11px;
  transition: transform 0.22s ease;
  color: var(--slate);
}

.mob-it.open .mob-tog i {
  transform: rotate(180deg);
  color: var(--red);
}

.mob-sub {
  display: none;
  background: var(--stone);
  padding: 6px 0;
}

.mob-it.open .mob-sub {
  display: block;
}

.mob-sg {
  padding: 9px 20px 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
}

.mob-sub a {
  display: block;
  padding: 8px 20px 8px 30px;
  font-size: 13.5px;
  color: var(--slate);
  border-left: 2px solid transparent;
  margin-left: 20px;
  transition: var(--ease);
}

.mob-sub a:hover {
  color: var(--red);
  border-color: var(--red);
  background: rgba(177, 17, 22, 0.05);
}

.mob-simple {
  display: block;
  padding: 14px 20px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  transition: var(--ease);
  border-bottom: 1px solid var(--line);
}

.mob-simple:hover {
  color: var(--red);
  background: var(--red-pl);
}

.mob-ft {
  padding: 18px 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mob-lang {
  display: flex;
  gap: 4px;
}

.mob-lang a {
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--slate);
  border: 1px solid var(--line);
  transition: var(--ease);
}

.mob-lang a.on,
.mob-lang a:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.mob-srch {
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 6px 14px;
  font-size: 13px;
  color: var(--slate);
  cursor: pointer;
  transition: var(--ease);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fb);
}

.mob-srch:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* ============================================================
   TOP BAR (Hero üzerinde — yarı şeffaf)
============================================================ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--tb-h);
  background: rgba(28, 28, 46, 0.72);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  font-size: 12px;
  transition: background 0.3s ease;
}

.topbar.scrolled {
  background: var(--red-dk);
  backdrop-filter: none;
}

.tb-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.tb-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.tb-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--ease);
}

.tb-links a:hover {
  color: var(--white);
}

.tb-r {
  display: flex;
  align-items: center;
  gap: 13px;
}

.tb-lang {
  display: flex;
  gap: 2px;
}

.tb-lang a {
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.14);
  transition: var(--ease);
}

.tb-lang a:hover {
  background: var(--red);
}

.tb-food {
  background: var(--white);
  border: none;
  color: var(--ink);
  font-size: 11px;
  font-family: var(--fb);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--ease);
  padding: 4px 12px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tb-food:hover {
  background: var(--accent);
  color: var(--ink);
}

/* ============================================================
   HEADER — Şeffaf hero üzerinde, scroll'da beyaz
============================================================ */
.site-hd {
  position: fixed;
  top: var(--tb-h);
  /* topbar altında */
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--hh);
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    height 0.35s ease;
}

.site-hd.scrolled {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: none;
  height: 68px;
}

/* Logo — şeffaf mod beyaz, scroll mod renkli */
.hd-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 28px;
  max-width: 1240px;
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

.logo-emb {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: var(--ease);
}

.logo-img-light {
  position: absolute;
  inset: 0;
  transition: opacity var(--ease);
  opacity: 1;
}

.logo-img-dark {
  position: absolute;
  inset: 0;
  transition: opacity var(--ease);
  opacity: 0;
}

.site-hd.scrolled .logo-img-light {
  opacity: 0;
}

.site-hd.scrolled .logo-img-dark {
  opacity: 1;
}

.site-hd.scrolled .logo-emb {
  width: 56px;
  height: 56px;
}

.logo-tx {
  display: flex;
  flex-direction: column;
}

.logo-nm {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  transition: var(--ease);
  text-transform: uppercase;
}

.logo-sb {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 600;
  transition: var(--ease);
}

.site-hd.scrolled .logo-nm {
  color: var(--ink);
}

.site-hd.scrolled .logo-sb {
  color: var(--red);
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  height: 100%;
}

.hd-r {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-hizmetler {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: var(--r);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--ease);
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--fb);
}

.btn-hizmetler:hover {
  background: var(--red);
  border-color: var(--red);
}

.site-hd.scrolled .btn-hizmetler {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.site-hd.scrolled .btn-hizmetler:hover {
  background: var(--red-md);
}

.hd-srch {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  padding: 6px 8px;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--ease);
}

.hd-srch:hover {
  color: var(--white);
}

.site-hd.scrolled .hd-srch {
  color: var(--ink);
}

.site-hd.scrolled .hd-srch:hover {
  color: var(--red);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease);
}

.site-hd.scrolled .hamburger span {
  background: var(--ink);
}

/* ============================================================
   MEGA MENU — Nav linkleri
============================================================ */
.nav-item {
  position: static;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-lnk {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  height: 100%;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  transition: var(--ease);
  white-space: nowrap;
  position: relative;
}

.site-hd.scrolled .nav-lnk {
  color: var(--ink);
}

.nav-lnk::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 3px;
  background: var(--red);
  transition: transform 0.22s ease;
  border-radius: 2px 2px 0 0;
}

.nav-lnk:hover {
  color: var(--white);
}

.site-hd.scrolled .nav-lnk:hover {
  color: var(--red);
}

.nav-lnk:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-lnk i {
  font-size: 9px;
  opacity: 0.6;
  transition: transform 0.2s ease;
}

.nav-item:hover .nav-lnk i {
  transform: rotate(180deg);
}

/* Mega wrap: tam genişlik, arka plan ve gölge burada */
.mega-wrap {
  position: fixed;
  top: calc(var(--tb-h) + var(--hh));
  left: 0;
  width: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--ease);
  pointer-events: none;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
  border-top: 3px solid var(--red);
}

.nav-item:hover .mega-wrap {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.site-hd.scrolled .mega-wrap {
  top: calc(var(--tb-h) + 68px);
}

/* mega-inner: içerik merkezleme + iç boşluk (köşelere yapışmaz) */
.mega-inner {
  padding: 30px 36px 28px;
  max-width: 1240px;
  margin: 0 auto;
}

.mega-grid {
  display: grid;
  gap: 0;
}

.g4 {
  grid-template-columns: repeat(3, 1fr) 255px;
}

.g3 {
  grid-template-columns: repeat(2, 1fr) 255px;
}

.mc {
  padding: 0 24px;
  border-right: 1px solid var(--line);
}

.mc:first-child {
  padding-left: 0;
}

/* sol kenar mega-inner'ın 36px'i karşılar */
.mc:last-child {
  border-right: none;
}

.mc-ttl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 11px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 7px;
}

.mc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.mc ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 5px;
  font-size: 13.5px;
  color: var(--slate);
  transition: var(--ease);
}

.mc ul li a:hover {
  background: var(--red-pl);
  color: var(--red);
  padding-left: 16px;
}

.mc ul li a i {
  font-size: 11px;
  color: var(--red);
  opacity: 0.3;
  width: 12px;
}

.mc ul li a:hover i {
  opacity: 1;
}

.mc-promo {
  padding: 0 0 0 24px;
}

.promo-card {
  background: var(--red);
  border-radius: var(--rl);
  overflow: hidden;
}

.promo-img {
  height: 130px;
  background-size: cover;
  background-position: center;
}

.promo-body {
  padding: 16px;
}

.promo-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 5px;
}

.promo-title {
  font-family: var(--fd);
  font-size: 15px;
  font-style: italic;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 11px;
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 100px;
  transition: var(--ease);
}

.promo-btn:hover {
  background: var(--white);
  color: var(--red);
}

.sdrop {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 210px;
  box-shadow: var(--sh-lg);
  border-top: 3px solid var(--red);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--ease);
  z-index: 100;
}

.nav-item:hover .sdrop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sdrop a {
  display: block;
  padding: 10px 18px;
  font-size: 13.5px;
  color: var(--slate);
  border-bottom: 1px solid var(--stone);
  transition: var(--ease);
}

.sdrop a:last-child {
  border: none;
}

.sdrop a:hover {
  background: var(--red-pl);
  color: var(--red);
  padding-left: 24px;
}

/* ============================================================
   HERO — Header'ın altına gizlenmiş (fixed header üzerinden görüntülenecek)
============================================================ */
.hero {
  position: relative;
  height: calc(100vh - 37px);
  /* ticker yüksekliği çıkarıldı */
  min-height: 650px;
  overflow: hidden;
  /* margin-top: 0 — hero baştan başlar, header üzerinde yüzer */
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.hero-slide.on {
  opacity: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease;
}

.hero-slide.on .hero-bg {
  transform: scale(1);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    /* Üst menülerin (logo ve linkler) her arka planda okunabilmesi için yukarıdan aşağıya çok hafif bir koyuluk */
    linear-gradient(to bottom,
      rgba(28, 28, 46, 0.85) 0%,
      rgba(28, 28, 46, 0) 25%),
    /* Alt bölümdeki başlık ve butonlar için aşağıdan yukarıya degrade eklentisi */
    linear-gradient(to top, rgba(28, 28, 46, 0.95) 0%, rgba(28, 28, 46, 0) 50%),
    /* Yazıların okunabilirliğini bozmadan hero resmini daha çok göstermek için açılmış asıl sol-sağ degrademesi */
    linear-gradient(110deg,
      rgba(28, 28, 46, 0.55) 0%,
      rgba(28, 28, 46, 0.25) 42%,
      transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: calc(var(--tb-h) + var(--hh) + 40px);
}

.hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  height: 100%;
}

.hero-text {
  max-width: 620px;
  align-self: flex-end;
  padding-bottom: 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.hero-title {
  font-family: var(--fd);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.04;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
}

.hero-title strong {
  font-weight: 700;
  font-style: italic;
  color: var(--red-pl);
}

.hero-desc {
  font-family: var(--fb);
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 500px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.btn-pr {
  background: var(--red);
  color: var(--white);
  padding: 12px 26px;
  border-radius: var(--r);
  font-weight: 600;
  font-size: 14px;
  transition: var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--red);
}

.btn-pr:hover {
  background: var(--red-md);
  border-color: var(--red-md);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: #002d72;
  padding: 12px 26px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 14px;
  transition: var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-accent:hover {
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 11px 26px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--r);
  font-weight: 600;
  font-size: 14px;
  transition: var(--ease);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.hero-pills {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.hero-pills a {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 6px 17px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 500;
  transition: var(--ease);
}

.hero-pills a:hover {
  background: var(--red);
  border-color: var(--red);
}

/* Hero aside card */
.hero-aside {
  flex-shrink: 0;
  width: 268px;
  align-self: flex-end;
  padding-bottom: 80px;
}

.hero-card {
  background: rgba(28, 28, 46, 0.55);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--rl);
  padding: 20px;
  color: var(--white);
}

.hc-lbl {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hc-lbl::before {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--accent);
}

.hc-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

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

.hc-date {
  flex-shrink: 0;
  background: var(--accent);
  color: #002d72;
  width: 44px;
  height: 50px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.hc-date strong {
  font-size: 19px;
  line-height: 1;
  font-family: var(--fd);
}

.hc-date span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.hc-info h4 {
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 4px;
}

.hc-info p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Hero controls */
.hero-ctrl {
  position: absolute;
  bottom: 26px;
  right: 30px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 13px;
}

.hero-dots {
  display: flex;
  gap: 7px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: var(--ease);
  padding: 0;
}

.hero-dot.on {
  background: var(--red);
  width: 26px;
  border-radius: 4px;
}

.hero-arrows {
  display: flex;
  gap: 6px;
}

.hero-arr {
  width: 35px;
  height: 35px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--ease);
  font-size: 13px;
}

.hero-arr:hover {
  background: var(--red);
  border-color: var(--red);
}

/* ============================================================
   TICKER
============================================================ */
.ticker {
  background: var(--red-dk);
  height: 37px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ticker-lbl {
  flex-shrink: 0;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 18px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.ticker-wrap {
  flex: 1;
  overflow: hidden;
  height: 100%;
}

.ticker-track {
  display: flex;
  height: 100%;
  align-items: center;
  animation: tickerAnim 38s linear infinite;
  width: max-content;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes tickerAnim {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  padding: 0 38px;
  white-space: nowrap;
}

.ticker-item::before {
  content: "·";
  color: rgba(255, 255, 255, 0.3);
  font-size: 22px;
  line-height: 1;
}

.ticker-item a {
  color: inherit;
  transition: var(--ease);
}

.ticker-item a:hover {
  color: var(--white);
  text-decoration: underline;
}

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

.section-lt {
  background: var(--stone);
}

.section-dk {
  background: var(--ink);
}

.sec-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}

.sec-title {
  font-family: var(--fd);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.08;
  position: relative;
  padding-bottom: 14px;
}

.sec-title strong {
  font-weight: 700;
}

.sec-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

.sec-title-lt {
  color: var(--white);
}

.sec-more {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
  transition: var(--ease);
}

.sec-more:hover {
  gap: 10px;
  color: var(--red-md);
}

.sec-more-lt {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.5);
}

.sec-more-lt:hover {
  color: var(--white);
  border-color: var(--white);
}

/* ============================================================
   HABERLER — Editöryal Grid (Sol 2×2, Sağ büyük)
============================================================ */
.news-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  grid-template-rows: 296px 296px;
  gap: 14px;
}

/* Küçük kartlar */
.ne-small {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  cursor: pointer;
  display: block;
}

.ne-small-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.ne-small:hover .ne-small-bg {
  transform: scale(1.1);
}

.ne-small-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(28, 28, 46, 0.88) 0%,
      rgba(28, 28, 46, 0.4) 50%,
      transparent 100%);
}

.ne-small-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 18px 16px;
}

.ne-small-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffaaaa;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ne-small-cat::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.ne-small-title {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ne-small-date {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
}

/* Büyük öne çıkan kart */
.ne-featured {
  grid-column: 3;
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
  border-radius: var(--rl);
  cursor: pointer;
  display: block;
}

.ne-featured-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.ne-featured:hover .ne-featured-bg {
  transform: scale(1);
}

.ne-featured-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(28, 28, 46, 0.95) 0%,
      rgba(28, 28, 46, 0.6) 40%,
      rgba(28, 28, 46, 0.1) 100%);
}

.ne-featured-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
  background: var(--accent);
  color: var(--ink);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 2px;
}

.ne-featured-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 30px 26px;
}

.ne-featured-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffaaaa;
  margin-bottom: 10px;
}

.ne-featured-title {
  font-family: var(--fd);
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.ne-featured-exc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ne-featured-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ne-featured-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.ne-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--r);
  font-size: 12px;
  font-weight: 600;
  transition: var(--ease);
}

.ne-more-btn:hover {
  background: var(--red-md);
  transform: translateX(3px);
}

/* ============================================================
   DUYURULAR — Paginated (buton ile geçiş)
============================================================ */
.ann-section {
  background: var(--ink);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.ann-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 10% 50%,
      rgba(177, 17, 22, 0.18) 0%,
      transparent 60%),
    radial-gradient(ellipse 40% 60% at 90% 50%,
      rgba(177, 17, 22, 0.08) 0%,
      transparent 55%);
  pointer-events: none;
}

.ann-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

/* Viewport duyurular */
.ann-viewport {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.ann-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ann-page {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ann-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-left: 3px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--r);
  transition: var(--ease);
  cursor: pointer;
  box-shadow: var(--sh);
}

.ann-item.important {
  border-left-color: var(--red);
}

.ann-item:hover {
  background: var(--stone);
  transform: translateX(4px);
  box-shadow: var(--sh-lg);
}

.ann-item.important:hover {
  border-left-color: var(--red-md);
}

.ann-dt {
  flex-shrink: 0;
  text-align: center;
  width: 46px;
  background: var(--stone);
  border-radius: var(--r);
  padding: 7px 4px;
}

.ann-dt strong {
  display: block;
  font-size: 19px;
  font-weight: 700;
  font-family: var(--fd);
  color: var(--ink);
  line-height: 1;
}

.ann-dt span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--slate);
}

.ann-item.important .ann-dt {
  background: var(--red-pl);
}

.ann-item.important .ann-dt span {
  color: var(--red);
}

.ann-body {
  flex: 1;
  min-width: 0;
}

.ann-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
  margin-bottom: 5px;
}

.ann-ttl {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Pagination */
.ann-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  position: relative;
  z-index: 2;
}

.ann-pag-btn {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--ease);
  font-size: 14px;
}

.ann-pag-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.ann-pag-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.ann-pag-btn:disabled:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

.ann-pag-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ann-pag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: var(--ease);
  cursor: pointer;
  border: none;
}

.ann-pag-dot.on {
  background: var(--red);
  width: 22px;
  border-radius: 4px;
}

.ann-pag-info {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1px;
}

/* ============================================================
   ETKİNLİKLER (görsellerle)
============================================================ */
.scroll-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}

.scroll-row::-webkit-scrollbar {
  display: none;
}

.scrl-btns {
  display: flex;
  gap: 7px;
  margin-top: 16px;
  justify-content: flex-end;
}

.scrl-btn {
  width: 35px;
  height: 35px;
  border: 2px solid var(--line);
  background: transparent;
  color: var(--slate);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--ease);
  font-size: 13px;
}

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

.ev-card {
  /* 4 tam kart göstermek için: container(100%) - (3 adet boşluk(gap: 18px)) / 4 */
  flex: 0 0 calc((100% - (18px * 3)) / 4);
  height: 320px;
  border-radius: var(--rl);
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  scroll-snap-align: start;
  transition: var(--ease);
  cursor: pointer;
}

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

.ev-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
      rgba(28, 28, 46, 0.92) 0%,
      rgba(28, 28, 46, 0.35) 55%,
      transparent 100%);
}

.ev-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--red);
  color: var(--white);
  border-radius: var(--r);
  width: 46px;
  height: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.ev-badge strong {
  font-size: 20px;
  line-height: 1;
  font-family: var(--fd);
}

.ev-badge span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.ev-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 18px;
}

.ev-type {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffaaaa;
  margin-bottom: 5px;
}

.ev-body h4 {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 7px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ev-loc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 5px;
}

.ev-loc i {
  color: var(--red-md);
}

/* ============================================================
   ARAŞTIRMA SPOTLIGHT
============================================================ */
.res-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--rl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}

.res-img {
  position: relative;
  min-height: 400px;
  background-size: cover;
  background-position: center;
}

.res-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(28, 28, 46, 0.55) 0%,
      transparent 70%);
}

.res-body {
  background: var(--ink);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.res-ey {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.res-ey::before {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--accent);
}

.res-title {
  font-family: var(--fd);
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}

.res-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.78;
  margin-bottom: 22px;
}

.res-author {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 22px;
}

.res-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 16px;
  color: var(--white);
  flex-shrink: 0;
  overflow: hidden;
}

.res-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.res-ai strong {
  font-size: 13px;
  color: var(--white);
  display: block;
}

.res-ai span {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   SAYILAR
============================================================ */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fact {
  text-align: center;
  padding: 52px 20px;
  border-right: 1px solid var(--line);
  background: var(--stone);
}

.fact:last-child {
  border-right: none;
}

.fact-num {
  font-family: var(--fd);
  font-size: 56px;
  font-weight: 300;
  font-style: italic;
  color: var(--red);
  line-height: 1;
}

.fact-sfx {
  font-size: 26px;
  color: var(--ink);
  font-style: normal;
  font-weight: 700;
}

.fact-bar {
  width: 28px;
  height: 2px;
  background: var(--red);
  margin: 12px auto;
  opacity: 0.5;
}

.fact-lbl {
  font-size: 13px;
  color: var(--slate);
  font-weight: 500;
}

/* ============================================================
   BODRUM PROMO
============================================================ */
.promo-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.promo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.42);
}

.promo-pat {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px);
  background-size: 26px 26px;
}

.promo-con {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.promo-con .sec-title {
  color: var(--white);
}

.promo-desc {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin: 20px 0 26px;
}

/* ============================================================
   GALERİ
============================================================ */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 230px 230px;
  gap: 10px;
  border-radius: var(--rl);
  overflow: hidden;
}

.gi {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.gi:first-child {
  grid-row: span 2;
}

.gi::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 46, 0);
  transition: var(--ease);
}

.gi:hover::after {
  background: rgba(177, 17, 22, 0.25);
}

.gi-cap {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: var(--ease);
}

.gi:hover .gi-cap {
  opacity: 1;
}

.gi-cap span {
  background: rgba(28, 28, 46, 0.88);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 11px;
  border-radius: var(--r);
}

/* ============================================================
   PARTNERS
============================================================ */
.partners-sec {
  padding: 50px 0;
  border-top: 1px solid var(--line);
}

.p-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--slate);
  text-align: center;
  margin-bottom: 26px;
}

.p-row {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.p-chip {
  opacity: 0.38;
  filter: grayscale(1);
  transition: var(--ease);
  background: var(--line);
  border-radius: var(--r);
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 800;
  color: var(--slate);
  letter-spacing: 1px;
}

.p-chip:hover {
  opacity: 1;
  filter: grayscale(0);
  background: var(--red-pl);
  color: var(--red);
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.62);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.1fr;
  gap: 44px;
  padding-bottom: 48px;
}

.f-emb {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.f-name {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.f-tag {
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.f-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 20px;
}

.f-socs {
  display: flex;
  gap: 8px;
}

.f-soc {
  width: 33px;
  height: 33px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  transition: var(--ease);
}

.f-soc:hover {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}

.f-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.f-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.f-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--ease);
  display: flex;
  align-items: center;
  gap: 6px;
}

.f-links a::before {
  content: "›";
  color: var(--accent);
  font-size: 15px;
}

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

.f-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.f-contact li {
  font-size: 12.5px;
  display: flex;
  gap: 9px;
}

.f-contact i {
  color: var(--accent);
  width: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

.fw-800 {
  font-weight: 800 !important;
}

.f-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.f-bottom a {
  color: rgba(255, 255, 255, 0.35);
  transition: var(--ease);
}

.f-bottom a:hover {
  color: var(--red-md);
}

/* SCROLL TO TOP */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 42px;
  height: 42px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(177, 17, 22, 0.4);
  transition: var(--ease);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  font-size: 14px;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--red-md);
  transform: translateY(-2px);
}

/* FADE IN */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .news-editorial {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px 560px;
  }

  .ne-featured {
    grid-column: 1/3;
    grid-row: 3;
    min-height: 320px;
  }

  .ann-page {
    grid-template-columns: 1fr;
  }

  .res-grid {
    grid-template-columns: 1fr;
  }

  .res-img {
    min-height: 240px;
  }

  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .fact:nth-child(even) {
    border-right: none;
  }

  .fact:nth-child(1),
  .fact:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }

  .gi:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .qm-ov {
    width: 100vw;
    grid-template-columns: 1fr;
  }

  .qm-right {
    display: none;
  }

  .ev-card {
    flex: 0 0 calc((100% - 18px) / 2);
  }
}

@media (max-width: 900px) {
  .site-logo {
    gap: 8px;
  }

  .logo-emb,
  .site-hd.scrolled .logo-emb {
    width: 48px;
    height: 48px;
  }

  .logo-nm {
    font-size: 15px;
  }

  .logo-sb {
    font-size: 15px;
    letter-spacing: 1px;
  }

  .btn-hizmetler {
    padding: 6px 10px;
    font-size: 11px;
    gap: 5px;
  }

  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-aside {
    display: none;
  }
}

@media (max-width: 600px) {
  .hd-in {
    padding: 0 12px;
  }

  .hd-r {
    gap: 6px;
  }

  .site-logo {
    gap: 8px;
  }

  .logo-emb,
  .site-hd.scrolled .logo-emb {
    width: 38px;
    height: 38px;
  }

  .logo-nm {
    font-size: 15px;
    white-space: nowrap;
  }

  .logo-sb {
    font-size: 15px;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }

  .btn-hizmetler {
    padding: 8px;
    font-size: 0;
    gap: 0;
  }

  .btn-hizmetler i {
    font-size: 15px;
  }

  .hd-srch {
    padding: 6px;
  }

  .hero {
    height: 100vh;
    min-height: 520px;
  }

  .ev-card {
    flex: 0 0 100%;
  }

  .topbar {
    display: none;
  }

  .site-hd {
    top: 0;
  }

  .promo-banner {
    height: auto;
    padding: 60px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
  }

  .gi:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ============================================================
   TEMA SEÇİCİ — Floating palette switcher
============================================================ */
.theme-sw {
  position: fixed;
  right: 24px;
  bottom: 104px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.theme-sw-toggle {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--sh);
  transition: var(--ease);
  color: var(--slate);
  font-size: 17px;
}

.theme-sw-toggle:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.theme-sw-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--rl);
  padding: 18px 20px;
  box-shadow: var(--sh-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.96);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s;
  min-width: 180px;
}

.theme-sw-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.theme-sw-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 14px;
}

.theme-opts {
  display: flex;
  gap: 14px;
}

.theme-opt-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.theme-opt {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid transparent;
  transition: var(--ease);
  position: relative;
  display: block;
  cursor: pointer;
}

.theme-opt:hover {
  transform: scale(1.1);
}

.theme-opt.active {
  box-shadow:
    0 0 0 2px var(--white),
    0 0 0 4px var(--ink);
}

.theme-opt-lbl {
  font-size: 10px;
  font-weight: 600;
  color: var(--slate);
  white-space: nowrap;
}

/* ============================================================
   INNER PAGES (Subpages)
============================================================ */

.inner-hero {
  position: relative;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  padding-top: 140px;
  color: var(--white);
}

.breadcrumbs {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumbs a {
  color: var(--white);
  transition: var(--ease);
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.breadcrumbs i {
  font-size: 10px;
}

.inner-title {
  font-family: var(--fd);
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 20px;
  text-wrap: balance;
}

.inner-subtitle {
  font-size: 20px;
  font-weight: 300;
  max-width: 700px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.inner-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
}

.inner-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-layout {
  padding: 80px 0;
}

.page-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.page-grid.has-left-sidebar {
  grid-template-columns: 1fr 2.5fr;
}

.page-featured-img {
  width: 100%;
  border-radius: var(--rl);
  margin-bottom: 40px;
  box-shadow: var(--sh);
}

.page-body {
  font-size: 18px;
  line-height: 1.8;
  color: var(--slate);
}

.page-body p {
  margin-bottom: 24px;
}

.page-body .lead {
  font-size: 22px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-body h2,
.page-body h3 {
  font-family: var(--fd);
  color: var(--ink);
  margin-top: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-body blockquote {
  font-family: var(--fd);
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  color: var(--red);
  padding: 40px;
  background: var(--stone);
  border-left: 4px solid var(--red);
  margin: 40px 0;
  border-radius: 0 var(--rl) var(--rl) 0;
}

.page-body ul,
.page-body ol {
  margin-bottom: 24px;
  padding-left: 20px;
}

.page-body li {
  margin-bottom: 10px;
}

.page-share {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--ink);
  font-weight: 600;
}

.page-share a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  transition: var(--ease);
}

.page-share a:hover {
  background: var(--red);
  color: var(--white);
}

.page-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sidebar-widget {
  background: var(--stone);
  padding: 30px;
  border-radius: var(--rl);
}

.widget-title {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: var(--ink);
  border-bottom: 2px solid var(--line);
  padding-bottom: 12px;
}

.widget-list-simple {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.widget-post {
  display: block;
  transition: var(--ease);
}

.wp-date {
  font-size: 11px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 6px;
}

.wp-ttl {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  transition: var(--ease);
}

.widget-post:hover .wp-ttl {
  color: var(--red);
}

.widget-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.widget-list a {
  display: flex;
  justify-content: space-between;
  color: var(--slate);
  font-weight: 500;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
  transition: var(--ease);
}

.widget-list a:hover {
  color: var(--red);
}

.sidebar-nav {
  margin-bottom: 40px;
}

.sidebar-nav-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--ink);
}

.snav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.snav-list a {
  display: block;
  padding: 14px 20px;
  color: var(--slate);
  font-weight: 600;
  border-left: 3px solid transparent;
  background: var(--stone);
  margin-bottom: 8px;
  border-radius: 0 var(--r) var(--r) 0;
  transition: var(--ease);
}

.snav-list a:hover,
.snav-list a.active {
  background: var(--white);
  color: var(--red);
  border-color: var(--red);
  box-shadow: var(--sh);
}

.contact-box {
  background: var(--ink);
  color: var(--white);
  padding: 30px;
  border-radius: var(--rl);
}

.cb-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--accent);
}

.cb-item {
  display: flex;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.cb-item i {
  color: var(--red-md);
  margin-top: 4px;
}

.faculty-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.faculty-card {
  background: var(--white);
  border-radius: var(--rl);
  padding: 40px 30px;
  box-shadow: var(--sh);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid transparent;
}

.faculty-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: var(--red);
}

.fc-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: var(--stone);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: var(--ease);
}

.faculty-card:hover .fc-icon {
  background: var(--red);
  color: var(--white);
}

.fc-title {
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.fc-desc {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.6;
}

/* ============================================================
   DEV PAGES NAV (PROTOTYPE)
============================================================ */
.dev-pages-nav {
  position: fixed;
  left: 20px;
  bottom: 50px;
  z-index: 9999;
}

.dev-pages-toggle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  border: none;
  font-size: 20px;
  cursor: pointer;
  box-shadow: var(--sh-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
}

.dev-pages-toggle:hover {
  transform: scale(1.05);
  background: var(--red);
}

.dev-pages-panel {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 250px;
  background: var(--white);
  border-radius: var(--rl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transition: var(--ease);
  transform-origin: bottom left;
  border: 1px solid var(--line);
}

.dev-pages-nav.active .dev-pages-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dev-pages-title {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.dev-pages-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
}

.dev-pages-list::-webkit-scrollbar {
  width: 4px;
}

.dev-pages-list::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 4px;
}

.dev-pages-list a {
  font-size: 13px;
  color: var(--slate);
  padding: 6px 10px;
  border-radius: 4px;
  transition: var(--ease);
}

.dev-pages-list a:hover {
  background: var(--stone);
  color: var(--red);
}