/* ==========================================================================
   LFC Uluslararası Akademisi Türkiye — Derin Dijital
   ========================================================================== */

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

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

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

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

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

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

/* ---------- Tokens ---------- */
:root {
  --font-family: "LFC Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "LFC Serif", Georgia, serif;
  --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%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
blockquote {
  font-family: var(--font-heading) !important;
}

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: var(--font-family);
  font-size: 15px;
  font-weight: 600;
  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):not(.btn-register)::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):not(.btn-register):hover::after,
.main-nav a:not(.btn-login):not(.btn-register):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.btn-register {
  background-color: var(--white);
  color: var(--lfc-red) !important;
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 6px 18px 6px 8px !important;
  margin-left: 12px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  transition: all 0.3s var(--ease-spring) !important;
  text-transform: uppercase;
  text-decoration: none;
}

.btn-register .icon-box {
  width: 28px;
  height: 28px;
  background-color: var(--lfc-red);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-spring), background-color 0.3s ease, color 0.3s ease;
}

.btn-register:hover,
.btn-register:focus-visible {
  background-color: var(--lfc-yellow);
  color: var(--black) !important;
  opacity: 1;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.btn-register:hover .icon-box,
.btn-register:focus-visible .icon-box {
  background-color: var(--black);
  color: var(--lfc-yellow);
  transform: rotate(15deg) scale(1.05);
}

.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: 14px;
  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: 15px;
  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: 15px;
  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: 16px;
  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: flex !important;
  flex-wrap: nowrap !important;
  gap: 24px !important;
  width: 100%;
}

.headlines-grid .news-card {
  flex: 0 0 calc((100% - 48px) / 3) !important;
  min-width: calc((100% - 48px) / 3) !important;
  max-width: calc((100% - 48px) / 3) !important;
  box-sizing: border-box !important;
  display: flex;
  flex-direction: column;
}

.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;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.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: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
}

.news-card-body .caption-line {
  margin-top: auto;
  transform: translateY(14px);
}

.headlines-grid {
  padding-bottom: 14px;
}

.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: 16px;
  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 0.35s var(--ease-spring);
}

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

.trophy-item:hover img {
  opacity: 1;
  transform: scale(1.08);
}

.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: 108px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
}



/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(175deg, #6a0d12 0%, #450a0c 40%, #1a0506 100%);
  color: var(--white);
  padding: 0 0 0;
  position: relative;
  overflow: hidden;
}

/* Subtle noise/texture overlay */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 0%, rgba(227, 24, 35, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(227, 24, 35, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Gradient accent bar at top */
.footer-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--lfc-red) 0%, var(--lfc-yellow) 50%, var(--lfc-red) 100%);
  background-size: 200% 100%;
  animation: footerAccentShimmer 6s ease-in-out infinite;
}

@keyframes footerAccentShimmer {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding: 56px 0 48px;
}

/* Brand column */
.footer-col-brand {
  padding-right: 24px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
  transition: transform var(--transition), filter var(--transition);
}

.footer-logo:hover {
  transform: scale(1.04);
  filter: brightness(1.1);
}

.footer-logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  max-width: 320px;
}

/* Footer social icons */
.site-footer .social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s var(--ease-out);
}

.site-footer .social-icon:hover {
  background: rgba(227, 24, 35, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(227, 24, 35, 0.35);
}

/* Column titles */
.footer-col-title {
  font-family: "LFC Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lfc-yellow);
  margin-bottom: 24px;
  padding-bottom: 12px;
  position: relative;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--lfc-yellow), transparent);
  transition: width 0.4s var(--ease-out);
}

.footer-col:hover .footer-col-title::after {
  width: 48px;
}

/* Column nav links */
.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-nav-col a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  padding: 7px 0;
  position: relative;
  transition: color 0.3s var(--ease-out), padding-left 0.3s var(--ease-out);
}

.footer-nav-col a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background: var(--lfc-yellow);
  transition: width 0.3s var(--ease-out);
}

.footer-nav-col a:hover {
  color: var(--white);
  padding-left: 14px;
}

.footer-nav-col a:hover::before {
  width: 8px;
}

/* Footer divider */
.footer-divider-wrap {
  position: relative;
}

.footer-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15) 20%, rgba(255, 255, 255, 0.15) 80%, transparent);
  margin: 0;
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 96px;
  flex-wrap: wrap;
}

.footer-bottom .footer-legal {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
  max-width: 520px;
}

.footer-bottom .footer-legal strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.footer-bottom-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-brand {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}

.footer-brand strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s var(--ease-out);
}

.footer-brand strong:hover {
  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:not(.btn-login):not(.btn-register) {
    font-size: 14px;
    padding: 12px 0;
    display: block;
  }

  .btn-login,
  .btn-register {
    margin-left: 0 !important;
    margin-top: 12px;
    width: 100%;
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-align: center;
  }

  .btn-login .globe-icon {
    flex-shrink: 0;
    margin-right: 4px;
  }

  .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 {
    gap: 20px !important;
  }

  .headlines-grid .news-card {
    flex: 0 0 calc((100% - 20px) / 2) !important;
    min-width: calc((100% - 20px) / 2) !important;
    max-width: calc((100% - 20px) / 2) !important;
  }

  .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-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-col-brand {
    grid-column: 1 / -1;
    padding-right: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-tagline {
    text-align: center;
  }

  .site-footer .social-links {
    justify-content: center;
  }

  .footer-col-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-col {
    text-align: center;
  }

  .footer-nav-col {
    align-items: center;
  }

  .footer-nav-col a:hover {
    padding-left: 0;
  }

  .footer-nav-col a::before {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 28px 0 36px;
  }

  .footer-bottom-right {
    text-align: center;
  }

  .footer-bottom .footer-legal {
    max-width: 100%;
  }

  /* 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: 16px;
  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-page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 24px 80px;
}

.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-branches-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.contact-branch-item {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 10px;
}

.contact-branch-map {
  height: 220px;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
}

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

.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;
  }

  .contact-branch-map {
    height: 260px;
  }
}

@media (max-width: 720px) {
  .contact-branches-list {
    grid-template-columns: 1fr;
  }
}

/* ---------- 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: 16px;
  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: 15px;
  line-height: 1.6;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.program-card-link {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 14px;
  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);
}

.program-preregister-link {
  margin-top: 12px;
  padding: 12px 20px;
  border: 1px solid var(--lfc-red);
  border-radius: 999px;
  text-transform: uppercase;
}

@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;
  }
}



/* Çerez Pop-up */
.cookie-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: var(--white);
  color: var(--black);
  padding: 20px;
  width: 490px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 1.5;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(20px);
  border-left: 5px solid var(--lfc-red);
}

.cookie-container.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-container a {
  color: var(--lfc-red);
  font-weight: bold;
  text-decoration: none;
}

.cookie-container a:hover {
  text-decoration: underline;
}

.cookie-btn-container {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  gap: 10px;
}

.cookie-btn {
  flex: 1;
  padding: 10px 0;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn-accept {
  background-color: var(--lfc-red);
  color: var(--white);
  border: 1px solid var(--lfc-red);
}

.btn-accept:hover {
  background-color: var(--lfc-red-deep);
  color: var(--white);
  border: 1px solid var(--lfc-red-deep);
}

.btn-reject {
  background-color: var(--gray-100);
  color: var(--black);
  border: 1px solid var(--gray-200);
}

.btn-reject:hover {
  background-color: var(--gray-200);
  color: var(--black);
  border: 1px solid var(--gray-400);
}

@media screen and (max-width: 767px) {
  .cookie-container {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
  }
}

/* Cookie Popup End */

/* ---------- Staff Detail Page Styling ---------- */
.staff-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 80px;
}

.staff-detail-hero {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 48px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.03);
}

.staff-detail-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.staff-detail-photo-frame {
  width: 100%;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #f0f3f8;
  border: 1px solid var(--gray-200);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.staff-detail-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.staff-detail-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
}

.staff-detail-main-col {
  display: flex;
  flex-direction: column;
}

.staff-detail-badge-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.staff-type-badge {
  background: var(--lfc-red);
  color: var(--white);
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
}

.staff-type-badge.management {
  background: var(--black);
}

.staff-exp-badge {
  background: var(--gray-100);
  color: var(--black);
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid var(--gray-200);
}

.staff-detail-name {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.2;
}

.staff-detail-role {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--lfc-red);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.staff-detail-bio-lead {
  background: #fdf5f5;
  border-left: 4px solid var(--lfc-red);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-700);
  margin-bottom: 28px;
}

.staff-detail-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.staff-quick-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.staff-quick-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #f4f5f8;
  color: var(--lfc-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.staff-quick-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-400);
  margin-bottom: 2px;
}

.staff-quick-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}

.staff-detail-body-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 40px;
}

.staff-detail-section {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.staff-sec-title {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 10px;
}

.staff-sec-title svg {
  color: var(--lfc-red);
}

.staff-bio-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-600);
}

.staff-bio-text p {
  margin-bottom: 16px;
}

.staff-bio-text p:last-child {
  margin-bottom: 0;
}

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

.staff-gallery-item {
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.staff-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.staff-sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.staff-sidebar-title {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 8px;
}

.staff-sidebar-title svg {
  color: var(--lfc-red);
}

.staff-list-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.staff-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}

.staff-check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--lfc-red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.staff-check-icon.secondary {
  background: var(--black);
}

.staff-age-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.staff-age-pill {
  background: var(--lfc-red);
  color: var(--white);
  font-family: "LFC Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}

.staff-club-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.staff-club-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.staff-club-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lfc-red);
  display: inline-block;
}

@media (max-width: 960px) {
  .staff-detail-hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px;
  }

  .staff-detail-photo-frame {
    height: 320px;
  }

  .staff-detail-body-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .staff-detail-quick-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Static Page Styling ---------- */
.static-page-wrapper {
  margin-bottom: 60px;
}

.static-page-image {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  margin-bottom: 32px;
}

.static-page-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--gray-600);
}

.static-page-card h1,
.static-page-card h2,
.static-page-card h3,
.static-page-card h4 {
  font-family: "LFC Sans", Arial, sans-serif;
  font-weight: 700;
  color: var(--black);
  margin-top: 24px;
  margin-bottom: 12px;
}

.static-page-card h1:first-child,
.static-page-card h2:first-child,
.static-page-card h3:first-child,
.static-page-card h4:first-child {
  margin-top: 0;
}

.static-page-card p {
  margin-bottom: 16px;
}

.static-page-card p:last-child {
  margin-bottom: 0;
}

.static-page-card ul,
.news-detail-body ul,
.staff-bio-text ul {
  list-style: disc !important;
  margin-bottom: 20px;
  padding-left: 24px;
}

.static-page-card ol,
.news-detail-body ol,
.staff-bio-text ol {
  list-style: decimal !important;
  margin-bottom: 20px;
  padding-left: 24px;
}

.static-page-card li,
.news-detail-body li,
.staff-bio-text li {
  display: list-item !important;
  list-style: inherit !important;
  margin-bottom: 8px;
  line-height: 1.7;
}

.static-page-card li::marker,
.news-detail-body li::marker,
.staff-bio-text li::marker {
  color: var(--lfc-red);
}

@media (max-width: 768px) {
  .static-page-card {
    padding: 24px;
  }
}

/* ---------- 404 Error Page Styling ---------- */
.error-404-container {
  padding: 80px 20px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.error-404-code {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 110px;
  font-weight: 800;
  color: var(--lfc-red);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.error-404-title {
  font-family: "LFC Sans", Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.error-404-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 32px;
}

.error-404-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--lfc-red);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition);
}

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


.footer-card-logo img {
  margin-top: 30px;
}

/* ---------- Fixed Quick Contact Actions ---------- */
.quick-action-bar {
  position: fixed;
  right: 17px;
  bottom: 17px;
  z-index: 9990;
  display: flex;
  align-items: stretch;
  gap: 7px;
  padding: 7px;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.18);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.quick-action {
  min-height: 39px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 14px;
  border: 1px solid #e2e3e5;
  border-radius: 10px;
  background: #ffffff;
  color: #111111 !important;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.quick-action:hover,
.quick-action:focus-visible {
  color: #111111 !important;
  border-color: #c9cbd0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.13);
}

.quick-action:focus-visible {
  outline: 3px solid rgba(227, 24, 35, 0.25);
  outline-offset: 2px;
}

.quick-action svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-action-register {
  border-color: var(--lfc-red, #e31823);
  background: var(--lfc-red, #e31823);
  color: #ffffff !important;
  box-shadow: 0 8px 20px rgba(227, 24, 35, 0.24);
}

.quick-action-register:hover,
.quick-action-register:focus-visible {
  border-color: var(--lfc-red-deep, #bb0611);
  background: var(--lfc-red-deep, #bb0611);
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(227, 24, 35, 0.32);
}

.quick-action-whatsapp {
  width: 39px;
  padding: 0;
  color: #0dbb3d !important;
}

.quick-action-whatsapp:hover,
.quick-action-whatsapp:focus-visible {
  color: #079b30 !important;
}

.quick-action-whatsapp img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .quick-action-bar {
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom, 0px));
    left: 10px;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.95fr) 43px;
    gap: 6px;
    padding: 7px;
    border-radius: 18px;
    background: rgba(255, 253, 251, 0.97);
    box-shadow: 0 12px 38px rgba(0, 0, 0, 0.22);
  }

  .quick-action {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    gap: 6px;
    padding: 0 9px;
    border-radius: 12px;
    font-size: 13px;
  }

  .quick-action svg {
    width: 19px;
    height: 19px;
  }

  .quick-action-register {
    box-shadow: 0 8px 18px rgba(227, 24, 35, 0.28);
  }

  .quick-action-whatsapp {
    width: 43px;
    padding: 0;
  }

  .quick-action-whatsapp img {
    width: 23px;
    height: 23px;
  }
}

@media (max-width: 370px) {
  .quick-action-bar {
    right: 6px;
    left: 6px;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.95fr) 39px;
    gap: 4px;
    padding: 5px;
  }

  .quick-action {
    min-height: 41px;
    gap: 4px;
    padding: 0 6px;
    font-size: 12px;
  }

  .quick-action-whatsapp {
    width: 39px;
  }
}

/* ==========================================================================
   LFC TRIAL TRAINING & SHARED APPLICATION FORM STYLES (White Theme)
   ========================================================================== */
.lfc-trial-wrapper {
  --trial-red: var(--lfc-red, #E31823);
  --trial-red-hover: var(--lfc-red-deep, #bb0611);
  --trial-dark: #111111;
  --trial-text-main: #1e293b;
  --trial-text-muted: #555555;
  --trial-bg-white: #ffffff;
  --trial-bg-light: #f8f9fa;
  --trial-bg-subtle: #f1f5f9;
  --trial-border: #e2e8f0;
  --trial-border-focus: rgba(227, 24, 35, 0.4);
  --trial-radius: 12px;
  --trial-radius-lg: 18px;
  --trial-transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);

  background-color: var(--trial-bg-white);
  color: var(--trial-text-main);
  overflow: hidden;
  font-family: inherit;
}

.lfc-trial-wrapper * {
  box-sizing: border-box;
}

.lfc-trial-section {
  padding: 90px 0;
  position: relative;
  border-bottom: 1px solid var(--trial-border);
  background-color: var(--trial-bg-white);
}

.lfc-trial-section.bg-alt {
  background-color: var(--trial-bg-light);
}

.lfc-trial-tag {
  color: var(--trial-red);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 14px;
  position: relative;
}

.lfc-trial-tag::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: var(--trial-red);
  margin-left: 10px;
  vertical-align: middle;
}

.lfc-trial-title {
  font-size: 2.45rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 18px;
  color: var(--trial-dark);
  letter-spacing: -0.5px;
}

.lfc-trial-title span {
  color: var(--trial-red);
  position: relative;
}

.lfc-trial-desc {
  color: var(--trial-text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 45px;
}

.lfc-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: var(--trial-red);
  color: #ffffff !important;
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: var(--trial-radius);
  border: none;
  cursor: pointer;
  transition: var(--trial-transition);
  box-shadow: 0 10px 25px rgba(227, 24, 35, 0.28);
  position: relative;
  overflow: hidden;
}

.lfc-btn-primary:hover {
  background-color: var(--trial-red-hover);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(227, 24, 35, 0.38);
  color: #ffffff !important;
}

.lfc-btn-primary:active {
  transform: translateY(-1px);
}

.lfc-hero-trial {
  position: relative;
  padding: 110px 0 95px 0;
  text-align: center;
  background: radial-gradient(circle at 50% 18%, rgba(227, 24, 35, 0.08) 0%, rgba(255, 255, 255, 0) 70%),
    linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  border-bottom: 1px solid var(--trial-border);
}

.lfc-hero-trial .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(227, 24, 35, 0.08);
  border: 1px solid rgba(227, 24, 35, 0.28);
  color: var(--trial-red);
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(227, 24, 35, 0.08);
}

.lfc-hero-trial h1 {
  font-size: 3.4rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--trial-dark);
  letter-spacing: -1px;
}

.lfc-hero-trial h1 span {
  color: var(--trial-red);
  display: inline-block;
}

.lfc-hero-trial p {
  font-size: 1.22rem;
  color: var(--trial-text-muted);
  max-width: 820px;
  margin: 0 auto 35px auto;
  line-height: 1.7;
}

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

.lfc-exp-card {
  background: #ffffff;
  border: 1px solid var(--trial-border);
  border-radius: var(--trial-radius-lg);
  padding: 40px 32px;
  transition: var(--trial-transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.lfc-exp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: var(--trial-red);
  transition: var(--trial-transition);
}

.lfc-exp-card:hover {
  transform: translateY(-7px);
  border-color: rgba(227, 24, 35, 0.4);
  box-shadow: 0 16px 35px rgba(227, 24, 35, 0.12);
}

.lfc-exp-card:hover::before {
  width: 100%;
}

.lfc-card-number {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--trial-red);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.lfc-exp-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--trial-dark);
  line-height: 1.3;
}

.lfc-exp-card p {
  color: var(--trial-text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
}

.lfc-facility-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.lfc-facility-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lfc-facility-list li {
  position: relative;
  padding-left: 45px;
  margin-bottom: 28px;
}

.lfc-facility-list li:last-child {
  margin-bottom: 0;
}

.lfc-facility-icon {
  position: absolute;
  left: 0;
  top: 2px;
  width: 30px;
  height: 30px;
  background-color: var(--trial-red);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(227, 24, 35, 0.25);
}

.lfc-facility-list h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--trial-dark);
}

.lfc-facility-list p {
  color: var(--trial-text-muted);
  font-size: 0.98rem;
  margin: 0;
  line-height: 1.6;
}

.lfc-facility-box {
  background: #ffffff;
  border: 1.5px solid rgba(227, 24, 35, 0.3);
  border-radius: var(--trial-radius-lg);
  padding: 45px 35px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.lfc-facility-box-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--trial-red);
  margin-bottom: 16px;
}

.lfc-facility-box p {
  color: var(--trial-text-muted);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.lfc-age-badge {
  display: inline-block;
  padding: 9px 20px;
  background: rgba(227, 24, 35, 0.08);
  border: 1.5px solid var(--trial-red);
  color: var(--trial-red);
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
}

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

.lfc-step-item {
  background: #ffffff;
  border: 1px solid var(--trial-border);
  border-radius: var(--trial-radius-lg);
  padding: 38px 24px;
  text-align: center;
  transition: var(--trial-transition);
  position: relative;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.lfc-step-item:hover {
  transform: translateY(-6px);
  border-color: rgba(227, 24, 35, 0.4);
  box-shadow: 0 14px 30px rgba(227, 24, 35, 0.12);
}

.lfc-step-badge {
  width: 50px;
  height: 50px;
  background-color: var(--trial-red);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.3rem;
  margin: 0 auto 22px auto;
  box-shadow: 0 6px 18px rgba(227, 24, 35, 0.3);
}

.lfc-step-item h4 {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--trial-dark);
}

.lfc-step-item p {
  color: var(--trial-text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.lfc-form-section {
  padding: 95px 0 120px 0;
  background: radial-gradient(circle at 50% 10%, rgba(227, 24, 35, 0.05) 0%, rgba(248, 249, 250, 0) 70%),
    #f8f9fa;
  border-bottom: 1px solid var(--trial-border);
}

.lfc-form-card {
  max-width: 860px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--trial-border);
  border-radius: var(--trial-radius-lg);
  padding: 55px 48px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  position: relative;
}

.lfc-form-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--trial-red) 50%, transparent 100%);
}

.lfc-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.lfc-form-group {
  display: flex;
  flex-direction: column;
}

.lfc-form-group.full-width {
  grid-column: span 2;
}

.lfc-form-group label {
  font-size: 0.94rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lfc-form-group label span.req {
  color: var(--trial-red);
}

.lfc-form-control {
  width: 100%;
  padding: 14px 18px;
  background-color: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--trial-radius);
  color: #0f172a;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--trial-transition);
}

.lfc-form-control:focus {
  outline: none;
  border-color: var(--trial-red);
  box-shadow: 0 0 0 3px rgba(227, 24, 35, 0.16);
  background-color: #ffffff;
}

.lfc-form-control::placeholder {
  color: #94a3b8;
}

select.lfc-form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E31823' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  cursor: pointer;
}

select.lfc-form-control option {
  background-color: #ffffff;
  color: #0f172a;
}

.lfc-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.55;
}

.lfc-checkbox-group input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--trial-red);
  cursor: pointer;
  flex-shrink: 0;
}

.lfc-form-alert {
  padding: 16px 20px;
  border-radius: var(--trial-radius);
  font-size: 0.96rem;
  font-weight: 600;
  margin-top: 20px;
  display: none;
}

.lfc-form-alert.success {
  background: #ecfdf5;
  border: 1.5px solid #10b981;
  color: #047857;
}

.lfc-form-alert.error {
  background: #fef2f2;
  border: 1.5px solid #ef4444;
  color: #b91c1c;
}

.btn-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 0.8s linear infinite;
}

/* ==========================================================================
   LFC ABOUT PAGE EXTENSIONS (Team & Trial Form)
   ========================================================================== */
.about-team-section {
  padding: 85px 0 95px 0;
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.about-team-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 45px;
}

.about-team-tag {
  color: var(--lfc-red, #E31823);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 10px;
}

.about-team-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: #111111;
  margin: 0;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.about-team-title span {
  color: var(--lfc-red, #E31823);
}

.about-team-desc {
  color: #64748b;
  font-size: 1.05rem;
  max-width: 650px;
  margin: 10px 0 0 0;
  line-height: 1.65;
}

.about-team-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #111111;
  text-decoration: none;
  padding: 10px 20px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.about-team-link:hover {
  color: var(--lfc-red, #E31823);
  border-color: var(--lfc-red, #E31823);
  background: rgba(227, 24, 35, 0.04);
}

.about-form-section {
  padding: 95px 0 110px 0;
  background: radial-gradient(circle at 50% 10%, rgba(227, 24, 35, 0.05) 0%, rgba(248, 249, 250, 0) 70%),
    #f8f9fa;
}

.about-form-card {
  max-width: 860px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 50px 45px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  position: relative;
}

.about-form-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--lfc-red, #E31823) 50%, transparent 100%);
}

.about-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.about-form-group {
  display: flex;
  flex-direction: column;
}

.about-form-group.full-width {
  grid-column: span 2;
}

.about-form-group label {
  font-size: 0.94rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.about-form-group label span.req {
  color: var(--lfc-red, #E31823);
}

.about-form-control {
  width: 100%;
  padding: 14px 18px;
  background-color: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  color: #0f172a;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.about-form-control:focus {
  outline: none;
  border-color: var(--lfc-red, #E31823);
  box-shadow: 0 0 0 3px rgba(227, 24, 35, 0.16);
}

.about-form-control::placeholder {
  color: #94a3b8;
}

select.about-form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E31823' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  cursor: pointer;
}

.about-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.55;
}

.about-checkbox-group input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--lfc-red, #E31823);
  cursor: pointer;
  flex-shrink: 0;
}

.about-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: var(--lfc-red, #E31823);
  color: #ffffff !important;
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(227, 24, 35, 0.28);
  width: 100%;
}

.about-btn-primary:hover {
  background-color: var(--lfc-red-deep, #bb0611);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(227, 24, 35, 0.38);
}

.about-form-alert {
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 0.96rem;
  font-weight: 600;
  margin-top: 20px;
  display: none;
}

.about-form-alert.success {
  background: #ecfdf5;
  border: 1.5px solid #10b981;
  color: #047857;
}

.about-form-alert.error {
  background: #fef2f2;
  border: 1.5px solid #ef4444;
  color: #b91c1c;
}

.about-btn-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 0.8s linear infinite;
}

/* ==========================================================================
   LFC PROGRAM DETAILS FORM EXTENSIONS
   ========================================================================== */
.program-form-section {
  padding: 85px 0 100px 0;
  background: radial-gradient(circle at 50% 10%, rgba(227, 24, 35, 0.05) 0%, rgba(248, 249, 250, 0) 70%),
    #f8f9fa;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.program-form-card {
  max-width: 860px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 50px 45px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  position: relative;
}

.program-form-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--lfc-red, #E31823) 50%, transparent 100%);
}

.program-form-tag {
  color: var(--lfc-red, #E31823);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 10px;
}

.program-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.program-form-group {
  display: flex;
  flex-direction: column;
}

.program-form-group.full-width {
  grid-column: span 2;
}

.program-form-group label {
  font-size: 0.94rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.program-form-group label span.req {
  color: var(--lfc-red, #E31823);
}

.program-form-control {
  width: 100%;
  padding: 14px 18px;
  background-color: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  color: #0f172a;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.program-form-control:focus {
  outline: none;
  border-color: var(--lfc-red, #E31823);
  box-shadow: 0 0 0 3px rgba(227, 24, 35, 0.16);
}

.program-form-control::placeholder {
  color: #94a3b8;
}

select.program-form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E31823' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  cursor: pointer;
}

.program-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.55;
}

.program-checkbox-group input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--lfc-red, #E31823);
  cursor: pointer;
  flex-shrink: 0;
}

.program-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: var(--lfc-red, #E31823);
  color: #ffffff !important;
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(227, 24, 35, 0.28);
  width: 100%;
}

.program-btn-primary:hover {
  background-color: var(--lfc-red-deep, #bb0611);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(227, 24, 35, 0.38);
}

.program-form-alert {
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 0.96rem;
  font-weight: 600;
  margin-top: 20px;
  display: none;
}

.program-form-alert.success {
  background: #ecfdf5;
  border: 1.5px solid #10b981;
  color: #047857;
}

.program-form-alert.error {
  background: #fef2f2;
  border: 1.5px solid #ef4444;
  color: #b91c1c;
}

.program-btn-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 0.8s linear infinite;
}

/* ==========================================================================
   LFC FAQ ACCORDION STYLES
   ========================================================================== */
.lfc-faq-page {
  background-color: #ffffff;
  color: #111111;
  padding-bottom: 90px;
}

.lfc-faq-banner {
  position: relative;
  padding: 85px 0 65px 0;
  text-align: center;
  background: radial-gradient(circle at 50% 20%, rgba(227, 24, 35, 0.08) 0%, rgba(255, 255, 255, 0) 70%),
    linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 60px;
}

.lfc-faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(227, 24, 35, 0.08);
  border: 1px solid rgba(227, 24, 35, 0.25);
  color: var(--lfc-red, #E31823);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.lfc-faq-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #111111;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.lfc-faq-title span {
  color: var(--lfc-red, #E31823);
}

.lfc-faq-desc {
  color: #555555;
  font-size: 1.12rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.lfc-faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.lfc-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lfc-faq-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.lfc-faq-item:hover {
  border-color: rgba(227, 24, 35, 0.35);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.lfc-faq-item.active {
  border-color: var(--lfc-red, #E31823);
  box-shadow: 0 8px 25px rgba(227, 24, 35, 0.08);
}

.lfc-faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.08rem;
  font-weight: 700;
  color: #111111;
  transition: color 0.2s ease;
}

.lfc-faq-question:hover {
  color: var(--lfc-red, #E31823);
}

.lfc-faq-item.active .lfc-faq-question {
  color: var(--lfc-red, #E31823);
}

.lfc-faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.lfc-faq-item.active .lfc-faq-icon {
  background: var(--lfc-red, #E31823);
  color: #ffffff;
  transform: rotate(180deg);
}

.lfc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 28px;
  color: #555555;
  font-size: 1rem;
  line-height: 1.7;
}

.lfc-faq-item.active .lfc-faq-answer {
  padding: 0 28px 24px 28px;
  max-height: 600px;
}

.lfc-faq-cta {
  margin-top: 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #f1f5f9 100%);
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}

.lfc-faq-cta h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111111;
  margin-bottom: 10px;
}

.lfc-faq-cta p {
  color: #64748b;
  font-size: 1rem;
  margin-bottom: 24px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.lfc-faq-cta .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lfc-red, #E31823);
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(227, 24, 35, 0.25);
  transition: all 0.3s ease;
}

.lfc-faq-cta .btn-cta:hover {
  background: var(--lfc-red-deep, #bb0611);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(227, 24, 35, 0.35);
  color: #ffffff;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .lfc-hero-trial h1 {
    font-size: 2.6rem;
  }

  .lfc-grid-3 {
    grid-template-columns: 1fr;
  }

  .lfc-facility-grid {
    grid-template-columns: 1fr;
  }

  .lfc-process-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .lfc-hero-trial {
    padding: 80px 0 65px 0;
  }

  .lfc-hero-trial h1 {
    font-size: 2.15rem;
  }

  .lfc-trial-title {
    font-size: 1.85rem;
  }

  .lfc-form-grid {
    grid-template-columns: 1fr;
  }

  .lfc-form-group.full-width {
    grid-column: span 1;
  }

  .lfc-form-card {
    padding: 32px 22px;
  }

  .lfc-process-steps {
    grid-template-columns: 1fr;
  }

  .about-team-title {
    font-size: 1.85rem;
  }

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

  .about-form-group.full-width {
    grid-column: span 1;
  }

  .about-form-card {
    padding: 32px 22px;
  }

  .program-form-grid {
    grid-template-columns: 1fr;
  }

  .program-form-group.full-width {
    grid-column: span 1;
  }

  .program-form-card {
    padding: 32px 22px;
  }

  .lfc-faq-title {
    font-size: 2.1rem;
  }

  .lfc-faq-question {
    font-size: 0.98rem;
    padding: 20px;
  }

  .lfc-faq-answer {
    padding: 0 20px;
    font-size: 0.94rem;
  }

  .lfc-faq-item.active .lfc-faq-answer {
    padding: 0 20px 20px 20px;
  }

  .lfc-faq-cta {
    padding: 30px 20px;
  }
}