/* ==========================================================================
   LFC Uluslararası Akademisi Türkiye — Anasayfa
   Pixel-matched to design.png
   ========================================================================== */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "LFC Sans";
  src: url("../assets/fonts/LFCSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "LFC Sans";
  src: url("../assets/fonts/LFCSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "LFC Serif";
  src: url("../assets/fonts/LFCSerif-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "LFC Serif";
  src: url("../assets/fonts/LFCSerif-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "LFC Serif Condensed";
  src: url("../assets/fonts/LFCSerifCondensed-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --lfc-red: #E31823;
  --lfc-red-deep: #bb0611;
  --lfc-red-footer: #911712;
  --lfc-red-dark: #400000;
  --lfc-green: #009982;
  --lfc-yellow: #FFD700;
  --lfc-cream: #ffffd9;
  --white: #ffffff;
  --black: #111111;
  --gray-100: #f3f3f3;
  --gray-200: #e8e8e8;
  --gray-400: #9a9a9a;
  --gray-600: #545454;
  --trophy-gray: #5e5e5e;
  --container: 1500px;
  --header-h: 104px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.35s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "LFC Sans", Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  position: relative;
}

.section-red {
  background: var(--lfc-red);
  color: var(--white);
}

.section-yellow {
  background: var(--lfc-yellow);
  color: var(--black);
}

.section-white {
  background: var(--white);
  color: var(--black);
}

.section-trophies {
  background: var(--gray-100);
  color: var(--black);
}

/* ---------- Sticky Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--lfc-red);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.logo {
  flex-shrink: 0;
  display: block;
  transition: transform var(--transition);
}

.logo:hover {
  transform: scale(1.03);
}

.logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px 16px;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.main-nav a {
  font-family: "LFC Sans", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  padding: 6px 2px;
  white-space: nowrap;
  position: relative;
  transition: opacity var(--transition), color var(--transition);
}

.main-nav a:not(.btn-login)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}

.main-nav a:not(.btn-login):hover::after,
.main-nav a:not(.btn-login):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav a:hover {
  opacity: 0.9;
}

.btn-login {
  border: 1.5px solid var(--white);
  padding: 8px 16px !important;
  margin-left: 6px;
  transition: background var(--transition), color var(--transition), transform 0.25s var(--ease-spring) !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-login:hover,
.btn-login:focus-visible {
  background: var(--white);
  color: var(--lfc-red);
  opacity: 1;
  transform: translateY(-1px);
}

/* ---------- Dropdown Submenu ---------- */
.main-nav .has-submenu {
  position: relative;
}

/* Caret Icon */
.main-nav .caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  transition: transform 0.3s var(--ease-out);
}

.main-nav .has-submenu:hover .caret {
  transform: rotate(180deg);
}

/* Submenu container (Desktop) */
.main-nav .submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(145, 23, 18, 0.98);
  /* Premium brand dark red */
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s;
  pointer-events: none;
  z-index: 1010;
}

/* Ensure hover is not lost between link and dropdown */
.main-nav .has-submenu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}

.main-nav .has-submenu:hover .submenu,
.main-nav .has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Submenu Links */
.main-nav .submenu a {
  font-family: "LFC Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 20px;
  display: block;
  text-align: left;
  white-space: nowrap;
  position: relative;
  transition: color 0.25s ease, background-color 0.25s ease;
}

/* Override the general underline effect for sub-items */
.main-nav .submenu a::after {
  display: none !important;
}

.main-nav .submenu a:hover,
.main-nav .submenu a:focus-visible {
  color: var(--lfc-yellow) !important;
  background-color: rgba(255, 255, 255, 0.06);
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 10;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  font-family: "LFC Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lfc-cream);
  background: var(--lfc-red-deep);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 28px;
  line-height: 1.2;
}

.badge-pill {
  background: var(--lfc-red-deep);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.badge-dark {
  background: var(--black);
  color: var(--white);
}

/* ---------- Section bars ---------- */
.section-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-bar .badge {
  margin-bottom: 0;
}

.section-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  transition: transform var(--transition), opacity var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.section-link:hover {
  opacity: 0.85;
  transform: translateX(3px);
}

.section-link.dark {
  color: var(--black);
}

/* ---------- Hero ---------- */
.hero {
  padding: 32px 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.hero-card-media {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 462 / 266;
  background: var(--lfc-red-deep);
}

.hero-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.hero-card:hover .hero-card-media img {
  transform: scale(1.06);
}

.media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.25) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.hero-card:hover .media-overlay,
.news-card:hover .media-overlay,
.video-card:hover .media-overlay {
  opacity: 1;
}

.hero-card-caption {
  margin-top: 18px;
}

.hero-card-caption p {
  font-size: 14px;
  line-height: 1.45;
  color: var(--white);
  max-width: 95%;
}

.hero-card-caption strong {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.caption-line {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
  margin-top: 14px;
  transform-origin: left;
  transition: transform var(--transition), background var(--transition);
}

.hero-card:hover .caption-line,
.news-card:hover .caption-line {
  transform: scaleX(1.02);
  background: rgba(255, 255, 255, 0.85);
}

.caption-line.dark {
  background: rgba(0, 0, 0, 0.15);
}

.video-card:hover .caption-line.dark {
  background: rgba(0, 0, 0, 0.35);
}

/* ---------- About ---------- */
.about {
  padding: 20px 0 72px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: start;
}

.about-media {
  overflow: hidden;
  margin-bottom: 22px;
  aspect-ratio: 731 / 410;
  background: #8a0a10;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.about-col:hover .about-media img {
  transform: scale(1.04);
}

.about-heading {
  font-family: "LFC Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 16px;
  color: var(--white);
}

.about-heading strong {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.about-body p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--white);
  margin-bottom: 16px;
}

.about-body p:last-child {
  margin-bottom: 0;
}

.signature-block {
  margin-top: 28px;
}

.signature {
  width: 160px;
  height: auto;
  margin-bottom: 8px;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.15));
}

.signature-credit {
  font-size: 13px;
  color: var(--white);
}

/* ---------- Quote ---------- */
.quote {
  padding: 64px 0 72px;
}

.quote-inner {
  max-width: 980px;
  margin: 0;
  text-align: left;
}

.quote-label {
  font-family: "LFC Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--black);
}

.quote blockquote {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.28;
  color: var(--black);
  letter-spacing: -0.01em;
}

/* ---------- Headlines ---------- */
.headlines {
  padding: 48px 0 56px;
}

.headlines-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 8px;
}

.carousel-track-wrap {
  overflow: hidden;
}

.headlines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.news-card-media {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9.5;
  background: var(--lfc-red-deep);
}

.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.news-card:hover .news-card-media img {
  transform: scale(1.06);
}

.news-card-body {
  margin-top: 16px;
}

.news-tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.news-card h3 {
  font-family: "LFC Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
}

.news-card h3 a {
  transition: opacity var(--transition);
}

.news-card h3 a:hover {
  opacity: 0.85;
}

.carousel-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  transition: background var(--transition), color var(--transition), transform 0.25s var(--ease-spring);
  flex-shrink: 0;
}

.carousel-btn svg {
  width: 22px;
  height: 22px;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transform: scale(1.08);
}

.carousel-btn.dark {
  color: var(--gray-600);
}

.carousel-btn.dark:hover {
  background: var(--gray-100);
  color: var(--black);
}

.headlines-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 36px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  border: 1.5px solid var(--white);
  padding: 8px 14px;
  transition: background var(--transition), color var(--transition), transform 0.25s var(--ease-spring);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--lfc-red);
  transform: translateY(-2px);
}

/* ---------- Videos ---------- */
.videos {
  padding: 56px 0 64px;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 475px));
  gap: 36px;
  justify-content: start;
}

.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  padding: 0;
  background: #1a1a1a;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter var(--transition);
}

.video-card:hover .video-thumb img {
  transform: scale(1.05);
  filter: brightness(0.92);
}

/* Soft pulse ring over baked-in play icon on hover */
.play-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  border-radius: 50%;
  border: 2px solid transparent;
  z-index: 2;
  pointer-events: none;
  transition: transform 0.35s var(--ease-spring), border-color var(--transition), box-shadow var(--transition);
}

.video-card:hover .play-ring {
  transform: scale(1.2);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.08);
}

.video-card h3 {
  font-size: 16px;
  font-weight: 400;
  margin-top: 14px;
  color: var(--black);
}

/* ---------- Playing ---------- */
.playing {
  padding: 72px 0 80px;
}

.playing-inner {
  max-width: 860px;
  margin: 0 auto;
}

.playing h2 {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--black);
}

.playing-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--black);
  margin-bottom: 18px;
}

.playing-body p:last-child {
  margin-bottom: 0;
}

/* ---------- Trophies ---------- */
.trophies {
  padding: 56px 0 48px;
}

.trophies-list {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(28px, 4vw, 64px);
  flex-wrap: wrap;
}

.trophy-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.35s var(--ease-spring);
}

.trophy-item:hover {
  transform: translateY(-6px);
}

.trophy-item img {
  height: 166px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity var(--transition), transform var(--transition);
}

.trophy-item:first-child img {
  max-width: 160px;
  height: 166px;
}

.trophy-item:hover img {
  opacity: 1;
}

.trophy-count {
  font-family: "LFC Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
}

/* ---------- Partners ---------- */
.partners {
  padding: 40px 0 48px;
}

.partners-carousel {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 12px;
}

.partners-list {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 24px 40px;
  flex-wrap: nowrap;
  min-height: 100px;
}

.partners-list li {
  flex: 0 0 auto;
  display: none;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s var(--ease-spring), opacity var(--transition);
  opacity: 0.92;
}

/* Show five partner logos at a time (matches design) */
.partners-list li:nth-child(-n + 5) {
  display: flex;
}

.partners-list li:hover {
  transform: scale(1.08);
  opacity: 1;
}

.partners-list img {
  max-height: 68px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
}



/* ---------- Footer ---------- */
.site-footer {
  background: var(--lfc-red);
  color: var(--white);
  padding: 40px 0 48px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
}

.footer-nav a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.95;
  transition: opacity var(--transition);
}

.footer-nav a:hover {
  opacity: 0.7;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--white);
  transition: background var(--transition), transform 0.25s var(--ease-spring);
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  margin: 32px 0 36px;
}

.footer-bottom {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.footer-privacy-link {
  margin-bottom: 16px;
}

.footer-privacy-link a {
  font-size: 13px;
  color: var(--white);
  opacity: 0.9;
  transition: opacity var(--transition);
}

.footer-privacy-link a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.footer-legal {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.footer-brand {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
}

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  animation: fadeIn 0.25s ease;
}

.modal-dialog {
  position: relative;
  z-index: 1;
  background: #111;
  width: min(900px, 100%);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.3s var(--ease-out);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 32px;
  line-height: 1;
  padding: 4px 8px;
  transition: opacity var(--transition);
}

.modal-close:hover {
  opacity: 0.7;
}

.modal-placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  text-align: center;
  padding: 24px;
}

/* ---------- Scroll animations ---------- */
/* Only animate when JS has marked the document ready for reveal */
html.js-reveal [data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

html.js-reveal [data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-card[data-animate]:nth-child(2) {
  transition-delay: 0.08s;
}

.hero-card[data-animate]:nth-child(3) {
  transition-delay: 0.16s;
}

.about-col[data-animate]:nth-child(2) {
  transition-delay: 0.1s;
}

.news-card[data-animate]:nth-child(2) {
  transition-delay: 0.08s;
}

.news-card[data-animate]:nth-child(3) {
  transition-delay: 0.16s;
}

.video-card[data-animate]:nth-child(2) {
  transition-delay: 0.1s;
}

.trophy-item[data-animate]:nth-child(2) {
  transition-delay: 0.05s;
}

.trophy-item[data-animate]:nth-child(3) {
  transition-delay: 0.1s;
}

.trophy-item[data-animate]:nth-child(4) {
  transition-delay: 0.15s;
}

.trophy-item[data-animate]:nth-child(5) {
  transition-delay: 0.2s;
}

.trophy-item[data-animate]:nth-child(6) {
  transition-delay: 0.25s;
}

.trophy-item[data-animate]:nth-child(7) {
  transition-delay: 0.3s;
}

/* ---------- Keyframes ---------- */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  :root {
    --header-h: auto;
  }

  .site-header {
    height: auto;
    min-height: 80px;
    padding: 12px 0;
  }

  .logo img {
    height: 56px;
  }

  .main-nav a {
    font-size: 11px;
  }

  .main-nav ul {
    gap: 4px 12px;
  }

  .hero-grid,
  .headlines-grid {
    gap: 24px;
  }

  .about-grid {
    gap: 28px;
  }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 86vw);
    height: 100vh;
    background: var(--lfc-red);
    padding: 100px 28px 40px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .main-nav a {
    font-size: 14px;
    padding: 12px 0;
    display: block;
  }

  .btn-login {
    margin-left: 0 !important;
    margin-top: 12px;
    width: 100%;
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

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

  .headlines-carousel {
    grid-template-columns: 32px 1fr 32px;
  }

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

  .videos-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .quote blockquote {
    font-size: 24px;
  }

  .partners-list {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px 0;
    gap: 40px;
  }

  .partners-list li {
    scroll-snap-align: center;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Mobile Submenu Accordion */
  .main-nav .has-submenu {
    width: 100%;
  }

  .main-nav .has-submenu::after {
    display: none;
    /* remove desktop hover gap spacer */
  }

  .main-nav .submenu {
    position: relative;
    top: 0;
    left: 0;
    transform: none !important;
    background: rgba(0, 0, 0, 0.15);
    border: none;
    box-shadow: none;
    width: 100%;
    min-width: 100%;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.35s var(--ease-out), opacity 0.3s ease;
    pointer-events: none;
    border-radius: 0;
  }

  .main-nav .submenu.is-expanded {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
    padding: 6px 0;
    pointer-events: auto;
  }

  .main-nav .submenu a {
    padding: 12px 24px !important;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
  }

  .main-nav .submenu a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--lfc-yellow) !important;
  }

  .main-nav .caret {
    margin-left: 8px;
    border-top-width: 5px;
    border-right-width: 5px;
    border-left-width: 5px;
    transition: transform 0.3s var(--ease-out);
  }

  .main-nav .has-submenu.is-open .caret {
    transform: rotate(180deg);
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 28px 0 40px;
  }

  .quote,
  .playing {
    padding: 48px 0 56px;
  }

  .trophies-list {
    gap: 20px 28px;
  }

  .trophy-item img {
    height: 64px;
  }

  .trophy-item:first-child img {
    height: 72px;
  }

  .badge {
    font-size: 10px;
    padding: 7px 12px;
  }

  .headlines-actions {
    justify-content: flex-start;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html.js-reveal [data-animate] {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Hakkımızda Page Styling ---------- */
.page-banner {
  background: var(--lfc-red);
  color: var(--white);
  padding: 30px 0;
  text-align: left;
  border-bottom: 4px solid var(--lfc-yellow);
}

.page-banner-title {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
}

.about-page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.about-main-title {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 36px;
  border-bottom: 2px solid var(--gray-200);
  padding-bottom: 12px;
}

.about-content-section {
  margin-bottom: 48px;
}

.about-content-section h3 {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--lfc-red);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.about-content-section p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.about-aim-box {
  background: var(--gray-100);
  border-left: 4px solid var(--lfc-yellow);
  padding: 20px 24px;
  margin-bottom: 20px;
  border-radius: 0 6px 6px 0;
}

.about-aim-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.5;
  margin: 0 !important;
}

/* Values Grid/List */
.about-values-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.about-value-item {
  background: var(--white);
  border-left: 4px solid var(--lfc-red);
  padding: 16px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border-radius: 0 6px 6px 0;
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-value-item:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.about-value-title {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.about-value-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0 !important;
}

/* ---------- İletişim Page Styling ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  margin-top: 40px;
  align-items: start;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 40px;
}

.contact-form-card h3 {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus {
  border-color: var(--lfc-red);
  box-shadow: 0 0 0 4px rgba(227, 24, 35, 0.08);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 28px;
  background: var(--lfc-red);
  color: var(--white);
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color var(--transition), transform var(--transition);
}

.btn-submit:hover,
.btn-submit:focus-visible {
  background-color: var(--lfc-red-deep);
  transform: translateY(-1px);
}

.contact-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 30px;
}

.contact-info-card h3 {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(227, 24, 35, 0.06);
  color: var(--lfc-red);
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-info-text p {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0 !important;
}

.contact-map-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  height: 320px;
}

.contact-map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Responsive overrides */
@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .contact-form-card,
  .contact-info-card {
    padding: 24px;
  }
}

/* ---------- Ekibimiz Page Styling ---------- */
.staff-section {
  margin-bottom: 56px;
}

.staff-category-badge {
  background: var(--black);
  color: var(--white);
  border-radius: 99px;
  padding: 6px 18px;
  font-family: "LFC Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-block;
  margin-bottom: 24px;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.staff-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
  padding: 32px;
  height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform var(--transition), box-shadow var(--transition);
}

.staff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.staff-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #ffffff 65%, #f4f4f4 65%);
  z-index: 0;
  pointer-events: none;
}

.staff-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.staff-info-top {
  display: flex;
  flex-direction: column;
}

.staff-number {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.staff-name {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.staff-role {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.staff-photo-wrapper {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  background: #eef1f6;
  border: 2px solid var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.staff-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-placeholder-svg {
  width: 44px;
  height: 44px;
  color: var(--gray-400);
}

.staff-profile-link {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition), transform var(--transition);
  align-self: flex-start;
  margin-top: auto;
}

.staff-profile-link:hover {
  color: var(--lfc-red);
  transform: translateX(2px);
}

@media (max-width: 960px) {
  .staff-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .staff-card {
    padding: 24px;
    height: 210px;
  }
  
  .staff-photo-wrapper {
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 600px) {
  .staff-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Programlar Page Styling ---------- */
.program-intro-heading {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.program-intro-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 36px;
}

.program-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  min-height: 220px;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border-color: var(--lfc-red);
}

.program-card-title {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.program-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.program-card-link {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--lfc-red);
  text-transform: lowercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition), transform var(--transition);
  align-self: flex-start;
  margin-top: auto;
}

.program-card-link:hover {
  color: var(--lfc-red-deep);
  transform: translateX(2px);
}

@media (max-width: 960px) {
  .program-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .program-card {
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .program-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Program Detay Page Styling ---------- */
.detail-hero {
  background: var(--lfc-red);
  color: var(--white);
  padding: 60px 0;
  overflow: hidden;
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.detail-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.detail-hero-badge {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 99px;
  padding: 6px 14px;
  font-family: "LFC Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.detail-hero-title {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.detail-hero-desc {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 30px;
}

.btn-register-white {
  background: var(--white);
  color: var(--lfc-red);
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: 99px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition), background-color var(--transition), color var(--transition);
}

.btn-register-white:hover {
  transform: translateY(-2px);
  background-color: var(--lfc-yellow);
  color: var(--black);
}

.detail-hero-media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.detail-hero-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Zigzag Features Section */
.detail-section-title-wrap {
  text-align: center;
  margin-bottom: 50px;
}

.detail-section-title {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.detail-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--lfc-red);
}

.detail-section-title span {
  color: var(--lfc-red);
}

.detail-zigzag-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 40px;
}

.detail-zigzag-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.detail-zigzag-row:nth-child(even) {
  grid-template-columns: 1.2fr 1fr;
}

.detail-zigzag-row:nth-child(even) .detail-zigzag-media {
  order: -1;
}

.detail-feature-card {
  background: var(--lfc-red);
  color: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.detail-feature-card h4 {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.detail-feature-card p {
  font-size: 14.5px;
  line-height: 1.65;
  opacity: 0.95;
  margin: 0 !important;
}

.detail-zigzag-media {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.detail-zigzag-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Included Section */
.detail-included-section {
  background: var(--lfc-red);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.detail-included-section .detail-section-title {
  color: var(--white);
}

.detail-included-section .detail-section-title::after {
  background: var(--lfc-yellow);
}

.detail-included-desc {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 15.5px;
  line-height: 1.6;
  opacity: 0.9;
}

.detail-included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.detail-included-card {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform var(--transition), background-color var(--transition);
}

.detail-included-card:hover {
  transform: translateY(-4px);
  background: rgba(0, 0, 0, 0.3);
}

.detail-included-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--lfc-red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-included-card h4 {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.detail-included-card p {
  font-size: 13px;
  opacity: 0.8;
  line-height: 1.5;
  margin: 0 !important;
}

/* Schedule Section */
.detail-schedule-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.detail-schedule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--lfc-red);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 8px;
  gap: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.detail-schedule-city {
  background: var(--black);
  color: var(--white);
  font-family: "LFC Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  min-width: 110px;
  text-align: center;
}

.detail-schedule-date {
  font-family: "LFC Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
}

.detail-schedule-loc {
  font-size: 14px;
  opacity: 0.9;
  flex-grow: 1;
}

.detail-schedule-price {
  font-family: "LFC Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--lfc-yellow);
}

.btn-register-row {
  background: var(--white);
  color: var(--lfc-red);
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background-color var(--transition), color var(--transition);
}

.btn-register-row:hover {
  background-color: var(--lfc-yellow);
  color: var(--black);
}

/* How does it work section */
.detail-steps-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}

.detail-step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.detail-step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--lfc-red);
  color: var(--white);
  font-family: "LFC Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.detail-step-text h4 {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}

.detail-step-text p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0 !important;
}

/* Detail Responsive */
@media (max-width: 960px) {
  .detail-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .detail-hero-content {
    align-items: center;
    text-align: center;
  }
  
  .detail-zigzag-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .detail-zigzag-row:nth-child(even) {
    grid-template-columns: 1fr;
  }
  
  .detail-zigzag-row:nth-child(even) .detail-zigzag-media {
    order: 0;
  }
  
  .detail-feature-card {
    padding: 24px;
  }
  
  .detail-included-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .detail-schedule-row {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 20px;
  }
  
  .detail-schedule-loc {
    flex-grow: 0;
  }
}

@media (max-width: 600px) {
  .detail-included-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Haberler Page Styling ---------- */
.news-header-section {
  text-align: center;
  padding: 50px 0 20px;
}

.news-main-title {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.news-main-desc {
  max-width: 800px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600);
}

.news-layout-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 48px;
  margin-top: 40px;
}

.news-articles-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.news-article-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform var(--transition), box-shadow var(--transition);
}

.news-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.news-card-media {
  height: 380px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card-content {
  padding: 32px;
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--gray-500);
}

.news-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.news-meta-item svg {
  color: var(--gray-400);
}

.news-card-title {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.3;
  transition: color var(--transition);
}

.news-card-title:hover {
  color: var(--lfc-red);
}

.news-card-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.btn-read-more-news {
  background: #f4f5f8;
  color: var(--black);
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 10px 24px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  transition: background-color var(--transition), color var(--transition), transform var(--transition);
}

.btn-read-more-news:hover {
  background-color: var(--lfc-red);
  color: var(--white);
  transform: translateY(-1px);
}

/* Sidebar Widgets */
.news-sidebar-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px;
}

.search-widget {
  position: relative;
}

.search-input-wrap {
  position: relative;
  width: 100%;
}

.search-input-wrap input {
  width: 100%;
  padding: 12px 40px 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 14px;
  background: #f8f9fa;
  transition: border-color var(--transition), background-color var(--transition);
}

.search-input-wrap input:focus {
  outline: none;
  border-color: var(--lfc-red);
  background: var(--white);
}

.search-icon-btn {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.widget-title {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

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

.category-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.category-item-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: #f8f9fa;
  border-radius: 6px;
  font-size: 13.5px;
  color: var(--gray-700);
  font-weight: 500;
  transition: background-color var(--transition), color var(--transition);
}

.category-item-link:hover {
  background-color: var(--lfc-red);
  color: var(--white);
}

.category-count {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  opacity: 0.8;
}

.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.recent-post-item {
  display: flex;
  gap: 16px;
  align-items: center;
}

.recent-post-thumb {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--gray-200);
}

.recent-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recent-post-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.recent-post-cat-badge {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--lfc-red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(227, 27, 35, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  align-self: flex-start;
}

.recent-post-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.35;
  transition: color var(--transition);
}

.recent-post-title:hover {
  color: var(--lfc-red);
}

.recent-post-date {
  font-size: 11px;
  color: var(--gray-400);
}

/* Responsive News */
@media (max-width: 960px) {
  .news-layout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .news-card-media {
    height: 280px;
  }
}

@media (max-width: 600px) {
  .news-card-content {
    padding: 24px;
  }
  
  .news-card-title {
    font-size: 20px;
  }
  
  .news-card-media {
    height: 200px;
  }
}

/* ---------- Haber Detay Page Styling ---------- */
.breadcrumb {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 12.5px;
  color: var(--gray-500);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--gray-600);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--lfc-red);
}

.breadcrumb-separator {
  color: var(--gray-400);
  font-size: 10px;
}

.news-detail-title {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 24px;
}

.news-detail-main-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 32px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
  display: block;
}

.news-detail-body {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--gray-700);
}

.news-detail-body h3 {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin: 36px 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.news-detail-body p {
  margin-bottom: 20px;
}

.news-detail-contact-block {
  background: #f8f9fa;
  border-left: 4px solid var(--lfc-red);
  padding: 24px;
  border-radius: 4px;
  margin: 32px 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--gray-700);
}

.news-detail-contact-block p {
  margin-bottom: 8px !important;
}

.news-detail-contact-block p:last-child {
  margin-bottom: 0 !important;
}

.news-detail-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0;
}

.news-detail-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.news-detail-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--gray-200);
  padding-top: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.news-tags-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.news-tags-wrap span {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
}

.news-tag {
  background: #f4f5f8;
  color: var(--gray-700);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background-color var(--transition), color var(--transition);
}

.news-tag:hover {
  background-color: var(--lfc-red);
  color: var(--white);
}

.news-share-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-share-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: border-color var(--transition), color var(--transition), background-color var(--transition);
}

.news-share-btn:hover {
  border-color: var(--lfc-red);
  color: var(--lfc-red);
  background: rgba(227, 27, 35, 0.04);
}

@media (max-width: 600px) {
  .news-detail-gallery {
    grid-template-columns: 1fr;
  }
  
  .news-detail-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Galeri & Galeri Detay Page Styling ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.gallery-card {
  position: relative;
  height: 290px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  display: block;
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.gallery-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

.gallery-card:hover .gallery-card-img {
  transform: scale(1.05);
}

.gallery-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  z-index: 1;
  transition: background var(--transition);
}

.gallery-card:hover .gallery-card-overlay {
  background: linear-gradient(to top, rgba(227, 27, 35, 0.9) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

.gallery-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.65);
  color: var(--white);
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
}

.gallery-card-content {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  color: var(--white);
}

.gallery-card-title {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.gallery-card-count {
  font-size: 12.5px;
  opacity: 0.85;
  font-weight: 500;
}

/* Gallery Detail Page */
.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.photo-gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 190px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.photo-gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.photo-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-gallery-section {
  margin-top: 56px;
}

.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 32px;
}

.video-gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: var(--black);
  position: relative;
}

.video-aspect-ratio {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 ratio */
}

.video-aspect-ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 960px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .photo-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .video-gallery-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .photo-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- Lightbox Styling ---------- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.lightbox.is-active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 85%;
  max-height: 85%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox.is-active .lightbox-content img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 38px;
  cursor: pointer;
  z-index: 10001;
  transition: color var(--transition);
}

.lightbox-close:hover {
  color: var(--lfc-red);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: var(--white);
  font-size: 32px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition), color var(--transition);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: var(--lfc-red);
  color: var(--white);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

@media (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
}