/* ===== RESET & VARIABLES ===== */
:root {
  --color-bg: #050505;
  --color-surface: #121212;
  --color-surface-hover: #1a1a1a;
  --color-primary: #ffde00;
  /* Vibrant Yellow */
  --color-primary-hover: #f2c700;
  --color-text-main: #ffffff;
  --color-text-muted: #a0a0a0;
  --color-border: rgba(255, 255, 255, 0.08);

  --font-head: "Outfit", sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text-main);
  font-family: var(--font-head);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  cursor: default;
}

::selection {
  background-color: var(--color-primary);
  color: var(--color-bg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== GLOBAL BACKGROUND EFFECTS ===== */
.global-bg-effects {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  background: var(--color-primary);
  opacity: 0.15;
  animation: floatBlob 20s ease-in-out infinite alternate;
  will-change: transform;
  transform: translateZ(0);
}

.blob-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -200px;
}

.blob-2 {
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -150px;
  animation-delay: -5s;
  animation-direction: alternate-reverse;
}

.blob-3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 60%;
  opacity: 0.1;
  animation-delay: -10s;
}

@keyframes floatBlob {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(80px, 80px) scale(1.1);
  }
}

/* ===== CUSTOM CURSOR ===== */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 222, 0, 0.05) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  border-radius: 50%;
  transform: translate(-50%, -50%) translateZ(0);
  /* Force GPU */
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  transition:
    width 0.3s,
    height 0.3s;
  will-change: transform, top, left;
}

/* ===== TYPOGRAPHY & UTILS ===== */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.1;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1rem;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg);
  border: 1px solid var(--color-primary);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-primary);
  box-shadow: 0 0 25px rgba(255, 222, 0, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text-main);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background-color: rgba(255, 222, 0, 0.05);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.7rem 0;
  background: rgba(5, 5, 5, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

/* Tablet adjustments */
@media (max-width: 1100px) {
  .nav-links {
    gap: 0.3rem;
  }

  .nav-links a {
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem;
  }

  .legacy-badge {
    display: none;
  }

  /* Compact nav on tablet */
  .nav-actions-mobile {
    gap: 0.35rem;
  }

  .nav-actions-mobile .lang-btn {
    padding: 3px 6px;
    font-size: 0.65rem;
  }

  .nav-actions-mobile .btn-primary,
  .nav-actions-mobile .btn-secondary {
    padding: 5px 8px;
    font-size: 0.7rem;
  }

  .nav-container {
    gap: 1rem;
  }
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-text-main);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.5px;
  justify-self: start;
}

.logo i {
  color: var(--color-primary);
}

.logo .dot {
  color: var(--color-primary);
}

.legacy-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 1rem;
  margin-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.legacy-years {
  font-size: 1.8rem;
  font-weight: 200;
  color: white;
  font-family: inherit;
  line-height: 1;
  opacity: 0.9;
}

.legacy-text {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 2px;
  line-height: 1.2;
  max-width: 50px;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  justify-self: center;
  align-items: center;
}

.nav-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  white-space: nowrap;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover {
  color: var(--color-primary);
}

.nav-links a:hover::after {
  width: 60%;
}

.nav-actions {
  display: flex;
  gap: 0.5rem;
  /* Reduced from 0.75rem */
  justify-self: end;
  align-items: center;
}

.nav-actions .btn-primary,
.nav-actions .btn-secondary {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: 8px;
  white-space: nowrap;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-text-main);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1001;
}

/* Hide mobile-only elements on desktop */
.mobile-only {
  display: none;
}

/* Desktop navigation actions container */
.nav-actions-mobile {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/* Desktop language selector styles */
.nav-actions-mobile .language-selector {
  display: flex;
  gap: 0;
  align-items: center;
}

.nav-actions-mobile .lang-btn {
  padding: 4px 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-radius: 0;
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.nav-actions-mobile .lang-btn:first-child {
  border-radius: 4px 0 0 4px;
}

.nav-actions-mobile .lang-btn:last-child {
  border-radius: 0 4px 4px 0;
}

.nav-actions-mobile .lang-btn:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-actions-mobile .lang-btn.active {
  background: var(--color-primary);
  color: #000;
  border-color: var(--color-primary);
}

.nav-actions-mobile .lang-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text-main);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Compact desktop nav actions */
.nav-actions-mobile {
  gap: 0.4rem;
}

.nav-actions-mobile .nav-actions {
  gap: 0.2rem;
}

.nav-actions-mobile .btn-primary,
.nav-actions-mobile .btn-secondary {
  padding: 5px 8px;
  font-size: 0.7rem;
  border-radius: 4px;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}

.hero-model-bg {
  position: absolute;
  top: 50%;
  right: 0%;
  width: 60%;
  height: 100%;
  background-image: url("../images/kadin.jpg");
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
  will-change: opacity, transform;
  transform: translateY(-50%) translateZ(0);
  mask-image:
    linear-gradient(to left, black 20%, transparent 90%),
    linear-gradient(to bottom, black 20%, transparent 90%);
  -webkit-mask-image:
    linear-gradient(to left, black 20%, transparent 90%),
    linear-gradient(to bottom, black 20%, transparent 90%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  will-change: transform;
  transform: translateZ(0);
}

.shape-1 {
  display: none;
  /* Removed the top-right glow */
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  bottom: 100px;
  left: -50px;
  animation: float 15s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(50px) scale(1.1);
  }
}

.hero-content {
  text-align: left;
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-right: auto;
  margin-left: 5%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px #22c55e;
}

.hero-title {
  font-size: 4.5rem;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
}

.hero-logo {
  height: 50px;
  /* PC: Between subtitle (1.2rem) and title (4.5rem) */
  width: auto;
  margin-top: 15px;
  display: block;
  margin-left: 0;
  filter: drop-shadow(0 0 15px rgba(255, 188, 0, 0.2));
}

.text-highlight {
  color: var(--color-primary);
  position: relative;
  display: inline-block;
}

.text-highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: var(--color-primary);
  opacity: 0.2;
  transform: skewX(-15deg);
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 5rem 0;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 222, 0, 0.02),
    transparent
  );
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 3rem 2rem;
  border-radius: 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(255, 222, 0, 0.1),
    transparent 50%
  );
  opacity: 0;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 222, 0, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-icon {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 3.5rem;
  color: var(--color-text-main);
  display: inline-block;
}

.stat-unit {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-left: 0.2rem;
}

.stat-label {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 8rem 0;
  position: relative;
  z-index: 2;
}

.benefits-intro {
  max-width: 800px;
  margin: 0 auto 4rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 222, 0, 0.1);
  padding: 2.5rem;
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.benefit-row {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  text-align: left;
}

.benefit-row:last-child {
  margin-bottom: 0;
}

.benefit-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.benefit-row p {
  color: var(--color-text-main);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.example-row {
  background: rgba(255, 222, 0, 0.05);
  padding: 1.5rem;
  border-radius: 16px;
  border-left: 4px solid var(--color-primary);
}

.benefit-row-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 222, 0, 0.1);
  padding-top: 2rem;
}

.benefit-row.mini {
  margin-bottom: 0;
  align-items: center;
}

.benefit-row.mini p {
  font-weight: 700;
  color: var(--color-primary);
}

@media (max-width: 768px) {
  /* Mobile navbar improvements */
  .nav-container {
    grid-template-columns: 1fr auto !important;
    grid-template-rows: auto auto;
    gap: 0.4rem 0.75rem !important;
    padding: 0.5rem 0.75rem !important;
  }

  .logo {
    grid-row: 1;
    grid-column: 1;
  }

  .mobile-menu-toggle {
    grid-row: 1;
    grid-column: 2;
  }

  .nav-actions-mobile {
    grid-row: 2;
    grid-column: 1 / -1;
    gap: 0.2rem;
    margin-top: 0.2rem;
  }

  .nav-actions-mobile .lang-btn {
    padding: 2px 4px;
    font-size: 0.5rem;
    min-width: 22px;
  }

  .nav-actions-mobile .btn-primary,
  .nav-actions-mobile .btn-secondary {
    padding: 3px 5px;
    font-size: 0.5rem;
  }

  .mobile-menu-toggle {
    width: 40px;
    height: 40px;
  }

  .nav-links {
    padding: 5rem 1rem 1rem;
    gap: 0.75rem;
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: 0.6rem 1rem;
  }

  .language-selector {
    padding: 0 0.5rem;
  }

  .language-selector .lang-btn {
    padding: 0.5rem 0.5rem;
    font-size: 0.75rem;
    min-width: 50px;
  }

  .mobile-menu-language-selector {
    padding: 0.75rem;
    max-width: 280px;
  }

  .mobile-menu-language-selector .lang-btn {
    padding: 0.5rem 0.4rem;
    font-size: 0.8rem;
    min-width: 45px;
  }

  .nav-links .btn-primary {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    max-width: 250px;
  }

  .benefit-row-group {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  /* Extra small phones */
  .nav-container {
    grid-template-columns: 1fr auto !important;
    grid-template-rows: auto auto;
    gap: 0.3rem 0.5rem !important;
    padding: 0.4rem 0.5rem !important;
  }

  .logo {
    grid-row: 1;
    grid-column: 1;
  }

  .logo svg {
    width: 70px;
  }

  .legacy-badge {
    display: none;
  }

  .mobile-menu-toggle {
    grid-row: 1;
    grid-column: 2;
    width: 32px;
    height: 32px;
  }

  .nav-actions-mobile {
    grid-row: 2;
    grid-column: 1 / -1;
    gap: 0.15rem;
    margin-top: 0.15rem;
  }

  .nav-actions-mobile .lang-btn {
    padding: 2px 3px;
    font-size: 0.45rem;
    min-width: 18px;
    letter-spacing: 0.2px;
  }

  .nav-actions-mobile .btn-primary,
  .nav-actions-mobile .btn-secondary {
    padding: 3px 4px;
    font-size: 0.45rem;
  }

  .logo svg {
    width: 80px;
    height: auto;
  }

  .legacy-badge {
    display: none;
  }

  .mobile-menu-toggle {
    width: 36px;
    height: 36px;
  }

  .nav-links {
    padding: 4.5rem 0.75rem 1rem;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 0.5rem 0.75rem;
  }

  .language-selector {
    padding: 0 0.25rem;
    gap: 0.35rem;
  }

  .language-selector .lang-btn {
    padding: 0.4rem 0.35rem;
    font-size: 0.7rem;
    min-width: 42px;
  }

  .mobile-menu-language-selector {
    padding: 0.6rem;
    max-width: 240px;
    gap: 0.35rem;
  }

  .mobile-menu-language-selector .lang-btn {
    padding: 0.45rem 0.3rem;
    font-size: 0.75rem;
    min-width: 40px;
  }

  .nav-links .btn-primary {
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
    max-width: 220px;
  }

  .benefit-row-group {
    grid-template-columns: 1fr;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service-card {
  padding: 3rem 2rem;
  background: rgba(15, 15, 15, 0.4);
  border: 1px solid rgba(255, 222, 0, 0.1);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  background: rgba(20, 20, 20, 0.6);
  border-color: rgba(255, 222, 0, 0.4);
  transform: translateY(-10px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(255, 222, 0, 0.05);
}

.service-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--color-text-main);
  line-height: 1.4;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 8rem 0;
  position: relative;
  z-index: 2;
  background: linear-gradient(to top, rgba(255, 222, 0, 0.02), transparent);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.video-container {
  width: 100%;
  aspect-ratio: 9/16;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-primary);
  color: var(--color-bg);
  padding: 2rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(255, 222, 0, 0.3);
  border: 4px solid var(--color-bg);
}

.exp-number {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.exp-text {
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-subtitle {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.about-text {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.about-list {
  list-style: none;
  margin-top: 2rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.about-list li i {
  color: var(--color-primary);
  font-size: 1.5rem;
}

/* Tabs Styling */
.about-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1rem;
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: var(--transition);
}

.tab-btn:hover {
  color: var(--color-text-main);
  background: rgba(255, 255, 255, 0.05);
}

.tab-btn.active {
  background: var(--color-primary);
  color: var(--color-bg);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 6rem 0;
  position: relative;
  z-index: 2;
}

.cta-container {
  padding: 3rem 4rem;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: row;
  gap: 3rem;
  align-items: stretch;
  justify-content: center;
  background: rgba(15, 15, 15, 0.4);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  max-width: 1500px;
  /* Expanded for full video visibility */
  margin: 0 auto;
}

.cta-manager-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 32px;
  padding: 2.5rem 2rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  flex: 1.2;
  /* Widened as requested */
  min-width: 450px;
}

/* Unused wrapper removed */

.cta-manager-wrapper h3 {
  font-size: 1.8rem;
  color: var(--color-text-main);
  text-align: center;
}

.leader-profiles {
  display: none;
  /* Deniz is now in the grid */
}

.leader-profiles .profile-circle,
.manager-profiles .profile-circle {
  width: 90px;
  height: 90px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid var(--color-border);
}

.leader-profiles .profile-handle {
  font-size: 1.1rem;
  margin-top: 0.8rem;
}

.leader-profiles .profile-circle:hover,
.manager-profiles .profile-circle:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  color: var(--color-primary);
  z-index: 2;
}

.handle-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.profile-link {
  text-decoration: none;
  display: block;
}

/* Removed Custom Scrollbar since we are wrapping now */
.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  flex-shrink: 0;
}

.profile-handle {
  font-size: 0.9rem;
  color: var(--color-text-main);
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: var(--transition);
}

.profile-card:hover .profile-handle {
  color: var(--color-primary);
}

.manager-profiles {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2rem 1.5rem;
  padding: 0;
  width: 100%;
  margin-top: 1rem;
  align-items: start;
}

.cta-container::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: var(--color-primary);
  filter: blur(100px);
  opacity: 0.2;
  z-index: 0;
}

.cta-text-wrapper {
  position: relative;
  z-index: 1;
  margin-top: -2rem;
  /* Move up slightly */
}

.cta-text-wrapper h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-text-wrapper p {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 90%;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.cta-profiles {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.profile-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-text-muted);
  overflow: hidden;
  position: relative;
}

.profile-circle:nth-child(2) {
  margin-left: -16px;
  z-index: 1;
}

.profile-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-video-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex: 1.8;
  /* Slightly reduced but still prominent */
  min-width: 0;
}

.cta-video-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  width: 100%;
  aspect-ratio: 16 / 9;
  /* Standard cinematic ratio */
}

.cta-video-container video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Seamless edge-to-edge */
  border-radius: 22px;
}

.mute-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: var(--color-primary);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: var(--transition);
  z-index: 10;
}

.mute-btn:hover {
  background: var(--color-primary);
  color: var(--color-bg);
}

/* ===== MAP SECTION (GLOBAL REACH) ===== */
.map-section {
  padding: 8rem 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  /* For shooting stars */
}

/* Stars Effect */
.stars-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 0;
  animation: twinkle var(--duration) infinite ease-in-out;
  animation-delay: var(--delay);
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  background: transparent;
  border: none;
}

.world-map-img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.5;
  /* Increased prominence */
  filter: invert(1) brightness(0.8) sepia(1) hue-rotate(1deg) saturate(3);
  /* Soft edges for the map */
  mask-image: radial-gradient(circle, black 50%, transparent 95%);
  -webkit-mask-image: radial-gradient(circle, black 50%, transparent 95%);
  position: relative;
  z-index: 2;
}

/* Animated Pins */
.map-pin {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: var(--color-primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 15px var(--color-primary),
    0 0 30px var(--color-primary);
  cursor: pointer;
  z-index: 5;
}

/* ===== PROGRAM SECTION ===== */
.program-section {
  padding: 8rem 0;
  background: linear-gradient(to bottom, #050505, #0a0a0a);
  position: relative;
}

.program-header {
  text-align: center;
  margin-bottom: 5rem;
}

.program-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 6rem;
}

.feature-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 222, 0, 0.1);
  padding: 3rem 2rem;
  border-radius: 24px;
  transition: var(--transition);
  text-align: center;
}

.feature-item:hover {
  background: rgba(255, 222, 0, 0.03);
  border-color: var(--color-primary);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-text-main);
}

.feature-item p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.subsection-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  color: var(--color-text-main);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 6rem;
  position: relative;
}

.step-card {
  position: relative;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.01);
  border-radius: 20px;
  border: 1px dashed rgba(255, 222, 0, 0.2);
  text-align: center;
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 1.5rem;
}

.step-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--color-text-main);
}

.step-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.program-cta {
  background: var(--color-primary);
  padding: 4rem;
  border-radius: 30px;
  text-align: center;
  color: black;
  margin-top: 4rem;
}

.program-cta h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 900;
}

.program-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.program-cta .btn-primary {
  background: black;
  color: var(--color-primary);
}

.program-cta .btn-primary:hover {
  background: #222;
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .program-features,
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ===== FOOTER ===== */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
  position: relative;
  z-index: 2;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--color-text-muted);
  font-size: 1.5rem;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--color-primary);
  transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .container {
    padding: 0 1rem;
    max-width: 100%;
    width: 100%;
  }

  html,
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .stats-grid,
  .services-grid,
  .about-container {
    grid-template-columns: 1fr;
  }

  .cta-container {
    display: flex !important;
    flex-direction: column !important;
    padding: 3rem 1.5rem;
    gap: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .navbar {
    padding: 0;
  }

  .nav-container {
    grid-template-columns: auto 1fr auto;
    position: relative;
  }

  .mobile-menu-toggle {
    display: flex;
    justify-self: end;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  .mobile-menu-toggle:hover {
    background: rgba(255, 222, 0, 0.2);
  }

  .mobile-menu-toggle i {
    font-size: 1.5rem;
  }

  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
    z-index: 1000;
    padding: 6rem 2rem 2rem;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    pointer-events: none;
    opacity: 0;
    overflow-y: auto;
  }

  .nav-links.active {
    transform: translateY(0);
    pointer-events: all;
    opacity: 1;
  }

  .nav-links a {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-text-main);
    text-align: center;
    width: 100%;
    padding: 0.75rem 0;
    display: block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .nav-links a:hover {
    color: var(--color-primary);
    background: rgba(255, 222, 0, 0.1);
    transform: scale(1.05);
  }

  /* Mobile menu close button */
  .mobile-menu-toggle.active {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1001;
  }

  .mobile-menu-toggle.active::before {
    content: "\00d7";
    font-size: 2.5rem;
    line-height: 1;
  }

  .mobile-menu-toggle.active i {
    display: none;
  }

  /* Mobile only elements */
  .mobile-only {
    display: block !important;
  }

  /* Hide language selector in nav-links menu since we show it on navbar */
  .nav-links .language-selector,
  .nav-links .mobile-menu-language-selector {
    display: none;
  }

  /* Hide CTA buttons in nav-links menu since we show them on navbar */
  .nav-links .btn-primary,
  .nav-links .btn-secondary {
    display: none;
  }

  /* Show nav actions below logo and menu button for mobile */
  .nav-container {
    grid-template-columns: 1fr auto !important;
    grid-template-rows: auto auto;
    gap: 0.5rem 1rem !important;
    padding: 0.6rem 1rem !important;
  }

  .logo {
    grid-row: 1;
    grid-column: 1;
  }

  .mobile-menu-toggle {
    grid-row: 1;
    grid-column: 2;
  }

  .nav-actions-mobile {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.25rem;
    grid-row: 2;
    grid-column: 1 / -1;
    position: static;
    transform: none;
    z-index: 1001;
    width: 100%;
    padding: 0;
    margin-top: 0.25rem;
  }

  .nav-actions-mobile .language-selector {
    display: flex;
    gap: 2px;
    padding: 0;
    width: auto;
  }

  .nav-actions-mobile .lang-btn {
    padding: 3px 5px;
    font-size: 0.55rem;
    min-width: 26px;
    border-radius: 3px;
    letter-spacing: 0.3px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-actions-mobile .lang-btn.active {
    background: var(--color-primary);
    color: #000;
    border-color: var(--color-primary);
  }

  .nav-actions-mobile .lang-btn:hover:not(.active) {
    background: rgba(255, 222, 0, 0.15);
    color: var(--color-text-main);
  }

  .nav-actions-mobile .nav-actions {
    display: flex !important;
    gap: 3px !important;
    flex-wrap: wrap;
  }

  .nav-actions-mobile .btn-primary,
  .nav-actions-mobile .btn-secondary {
    padding: 4px 6px;
    font-size: 0.55rem;
    border-radius: 3px;
    white-space: nowrap;
  }

  .language-selector {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    width: 100%;
    padding: 0 1rem;
  }

  .language-selector .lang-btn {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
    min-width: 60px;
    text-align: center;
  }

  .language-selector .lang-btn.active {
    background: var(--color-primary);
    color: #000;
    border-color: var(--color-primary);
  }

  .language-selector .lang-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(255, 222, 0, 0.15);
  }

  .nav-actions {
    display: flex !important;
    flex-direction: row !important;
    position: static !important;
    width: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 6px !important;
    justify-content: center;
    flex-grow: 1;
    z-index: 100;
  }

  /* Mobile menu language selector */
  .mobile-menu-language-selector {
    display: flex;
    gap: 0.5rem;
    margin-top: 01rem;
    padding: 1rem;
    background: rgba(53, 40, 40, 0.229);
    border-radius: 12px;
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .mobile-menu-language-selector .lang-btn {
    padding: 0.2rem 0.4rem;
    font-size: 0.85rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-main);
    border: 1px solid transparent;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 40px;
    text-align: center;
  }

  .mobile-menu-language-selector .lang-btn.active {
    background: var(--color-primary);
    color: #000;
    border-color: var(--color-primary);
  }

  .mobile-menu-language-selector .lang-btn:hover {
    background: rgba(255, 222, 0, 0.3);
  }

  /* Mobile CTA in menu */
  .nav-links .btn-primary {
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    width: 100%;
    max-width: 300px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--color-primary);
    color: #000;
    border: 2px solid var(--color-primary);
  }

  .nav-links .btn-primary:hover {
    background: transparent;
    color: var(--color-primary);
  }

  .nav-actions .btn-primary,
  .nav-actions .btn-secondary {
    padding: 6px 10px;
    font-size: 11px;
    white-space: nowrap;
    border-radius: 4px;
    min-width: 0;
    line-height: 1;
  }

  /* Remove specific menu-only logic for nav-actions */
  .nav-links.active ~ .nav-actions {
    display: none !important;
    /* Don't show twice */
  }

  /* Hero Center & Optimize */
  .hero {
    padding-top: 180px;
    /* Moved down from 100px */
    min-height: auto;
    padding-bottom: 5rem;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }

  .hero-title {
    font-size: 2.3rem;
    /* Better fit for most phones */
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 4rem;
    /* Increased to move buttons further down */
    color: #ffffff !important;
    /* Full white as requested */
    opacity: 0.9;
  }

  .text-white {
    color: #ffffff !important;
    font-weight: 500;
  }

  .hero-logo {
    height: 30px;
    /* Mobile: Between subtitle (1rem) and title (2.3rem) */
    width: auto;
    margin: 10px auto 0;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 188, 0, 0.3));
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 250px;
    /* Limit overall container width */
    margin: 0 auto;
    gap: 0.6rem;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 50px;
    min-height: auto;
  }

  .hero-model-bg {
    width: 100%;
    height: 100%;
    opacity: 0.8;
    /* Slightly more punch as we are fading more */
    background-image: url("../images/telefonversiyon.png");
    background-size: cover;
    background-position: center center;
    /* Smoother transparency mask */
    mask-image: linear-gradient(
      to bottom,
      black 0%,
      black 40%,
      transparent 95%
    );
    -webkit-mask-image: linear-gradient(
      to bottom,
      black 0%,
      black 40%,
      transparent 95%
    );
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    z-index: 0;
  }

  /* Padding Reductions */
  .services-section,
  .about-section,
  .stats-section {
    padding: 4rem 0;
  }

  .stat-card,
  .service-card {
    padding: 1.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    /* Dynamic 2-column on wider phones */
    gap: 1rem;
  }

  .service-icon {
    width: 60px;
    /* Reduced from 120px */
    height: 60px;
    margin-bottom: 1.2rem;
  }

  .service-card h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }

  .service-card p {
    font-size: 0.85rem;
  }

  .benefits-intro {
    padding: 1.2rem;
    margin-bottom: 2rem;
    border-radius: 16px;
    text-align: center;
  }

  .benefit-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
  }

  .benefit-icon {
    font-size: 1.5rem;
    margin-bottom: 0;
  }

  .benefit-row p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .example-row {
    padding: 1rem;
    margin-top: 0.5rem;
  }

  .benefit-row-group {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    gap: 0.8rem;
  }

  .benefit-row.mini {
    gap: 0.3rem;
  }

  .about-experience-badge {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 2rem;
    width: 100%;
    padding: 1.5rem;
  }

  .about-tabs {
    justify-content: center;
  }

  /* Manager Section Center & Shrink */
  .cta-manager-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    min-width: 0 !important;
  }

  .cta-video-wrapper {
    display: flex !important;
    width: 100% !important;
    flex: none !important;
  }

  .cta-video-container {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .manager-profiles {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
  }

  .manager-profiles .profile-circle {
    width: 80px;
    height: 80px;
  }

  .profile-handle {
    font-size: 0.95rem;
  }

  .tab-btn {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }

  .legacy-badge {
    display: none;
    /* Hide for cleaner mobile header */
  }

  .benefit-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .benefit-icon {
    margin-bottom: 0.5rem;
  }

  .map-container {
    padding: 0.5rem;
  }

  .map-pin {
    width: 6px;
    height: 6px;
  }
}

/* ===== NEWS SECTION ===== */
.news-section {
  padding: 8rem 0;
  position: relative;
  z-index: 2;
  background: linear-gradient(to top, rgba(255, 222, 0, 0.02), transparent);
  display: block !important;
  visibility: visible !important;
  min-height: 400px;
  overflow: hidden;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 222, 0, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.news-card:hover .news-img {
  transform: scale(1.05);
  /* Zoom image on hover */
}

.news-img-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-border);
  position: relative;
}

.news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 222, 0, 0.1)
  );
}

.news-content-wrapper {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
  color: inherit;
}

.news-date {
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 600;
}

.news-title {
  font-size: 1.25rem;
  color: var(--color-text-main);
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.news-excerpt {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  flex-grow: 1;
  /* Pushes the date/title up if descriptions are short */
}

.news-read-more {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
  opacity: 1;
  transition: var(--transition);
  cursor: pointer;
}

.news-card:hover .news-read-more {
  opacity: 1;
}

/* Contest Card Styles */
.contest-card {
  border: 2px solid var(--color-primary);
  background: linear-gradient(
    135deg,
    rgba(255, 222, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  grid-column: 1;
}

.contest-excerpt {
  max-height: none;
  overflow: visible;
  position: relative;
}

/* ===== NEWS SLIDER (Mobile) ===== */
.news-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    var(--transition),
    opacity 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.news-slider-arrow:hover {
  background: var(--color-primary);
  color: var(--color-bg);
}

.news-slider-prev {
  left: 10px;
}

.news-slider-next {
  right: 10px;
}

/* Hide arrows by default (desktop) */
.news-slider-arrow {
  display: none;
  opacity: 1;
}

/* Mobile slider container */
@media (max-width: 768px) {
  .news-slider-arrow {
    display: flex;
  }

  .news-section {
    padding: 4rem 0;
  }

  #news-container {
    position: relative;
  }

  .news-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 0 3rem 1rem 3rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .news-grid::-webkit-scrollbar {
    display: none;
  }

  .news-card {
    min-width: 85%;
    max-width: 85%;
    width: 85%;
    scroll-snap-align: center;
    flex-shrink: 0;
    height: auto;
    min-height: 500px;
    display: flex;
    flex-direction: column;
  }

  .news-img-wrapper {
    flex-shrink: 0;
    height: 180px;
  }

  .news-content-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .news-excerpt {
    flex-grow: 1;
  }

  /* Show indication that there are more cards - gradient overlays */
  .news-section::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    background: linear-gradient(to right, transparent, var(--color-bg));
    pointer-events: none;
    z-index: 5;
  }

  .news-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    background: linear-gradient(to left, transparent, var(--color-bg));
    pointer-events: none;
    z-index: 5;
  }
}

/* Adjust arrow positions for smaller mobile */
@media (max-width: 480px) {
  .news-grid {
    padding: 0 2.5rem 1rem 2.5rem;
  }

  .news-card {
    min-width: 80%;
    max-width: 80%;
    width: 80%;
  }

  .news-slider-arrow {
    width: 36px;
    height: 36px;
  }

  .news-slider-prev {
    left: 5px;
  }

  .news-slider-next {
    right: 5px;
  }
}

.contest-excerpt .news-read-more {
  position: relative;
  margin-top: auto;
  background: none;
  padding-top: 0;
  text-align: left;
}

.contest-card .news-img-wrapper {
  aspect-ratio: 6 / 6;
}

.contest-card .news-content-wrapper {
  padding: 1rem;
}

.contest-card .news-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Empty placeholder cards */
.news-placeholder {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 200px;
}

.news-placeholder-inner {
  padding: 2rem;
  text-align: center;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.contest-card .news-title {
  color: var(--color-primary);
}

/* Sub Affiliate Card Styles */
.sub-affiliate-card {
  border: 2px solid #e63946;
  background: linear-gradient(
    135deg,
    rgba(230, 57, 70, 0.05) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  grid-column: 2;
}

.sub-affiliate-card .news-img-wrapper {
  aspect-ratio: 6 / 6;
}

.sub-affiliate-card .news-content-wrapper {
  padding: 1rem;
}

.sub-affiliate-card .news-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #e63946;
}

.sub-affiliate-excerpt {
  max-height: 280px;
  overflow-y: auto;
}

.sub-affiliate-tiers li {
  padding: 0.3rem 0;
  font-size: 0.85rem;
  line-height: 1.4;
}

.sub-affiliate-excerpt .news-read-more {
  display: block;
  text-align: left;
  margin-top: auto;
  color: var(--color-primary);
  font-weight: bold;
  opacity: 1;
}

.contest-prizes {
  list-style: none;
  padding-left: 0;
  margin: 0.5rem 0;
}

.contest-prizes li {
  padding: 0.25rem 0;
  font-size: 0.95rem;
}

.contest-rules {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0.5rem 0;
}

.contest-rules li {
  padding: 0.25rem 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.contest-cta {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1rem;
  margin-top: 1rem;
  text-align: center;
}

/* Skeleton Loading Animation */
.news-skeleton {
  animation: pulse 1.5s infinite ease-in-out;
}

.skeleton-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.1);
}

.skeleton-text {
  height: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-bottom: 0.5rem;
  width: 100%;
}

.skeleton-title {
  height: 1.5rem;
  width: 80%;
  margin-bottom: 1rem;
}

.skeleton-date {
  height: 0.85rem;
  width: 30%;
  margin-bottom: 1rem;
}

@keyframes pulse {
  0% {
    opacity: 0.6;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    opacity: 0.6;
  }
}

/* ===== APPLY SECTION ===== */
.apply-section {
  padding: 8rem 0;
  position: relative;
  z-index: 2;
  background: linear-gradient(to bottom, transparent, rgba(255, 222, 0, 0.02));
}

.apply-header {
  text-align: center;
  margin-bottom: 3rem;
}

.apply-form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.form-group input,
.form-group textarea {
  background: rgba(15, 15, 15, 0.6);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1rem;
  color: var(--color-text-main);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(255, 222, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.btn-submit {
  margin-top: 1rem;
  width: 100%;
  padding: 1.2rem;
  font-size: 1.1rem;
  gap: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-status {
  margin-top: 1rem;
  text-align: center;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 1rem;
  border-radius: 12px;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  border-top-color: var(--color-bg);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .apply-form-container {
    padding: 1.5rem;
  }
}

/* ===== NEWS MODAL ===== */
.news-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  scrollbar-color: var(--color-primary) var(--color-bg);
}

.news-modal.active {
  display: flex;
}

.news-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.news-modal-content {
  position: relative;
  background: var(--color-bg);
  max-width: 800px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 222, 0, 0.2);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.news-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--color-text-main);
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.news-modal-close:hover {
  background: var(--color-primary);
  color: var(--color-bg);
}

.news-modal-body {
  color: var(--color-text-main);
}

.news-modal-image img {
  width: 100%;
  max-height: 300px;
  object-fit: fill;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.news-modal-date {
  color: var(--color-primary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.news-modal-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-text-main);
  line-height: 1.3;
}

.news-modal-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

.news-modal-text img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
}

.news-modal-text p {
  margin-bottom: 1rem;
}

.news-modal-loading,
.news-modal-error {
  text-align: center;
  padding: 3rem;
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

.news-modal-error {
  color: #ef4444;
}

/* Contest content in modal */
.news-modal-text ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.news-modal-text ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.news-modal-text ul li::before {
  content: "•";
  color: var(--color-primary);
  position: absolute;
  left: 0;
}

.news-modal-text .contest-cta {
  background: linear-gradient(
    135deg,
    rgba(255, 222, 0, 0.1),
    rgba(255, 222, 0, 0.2)
  );
  border: 1px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  margin-top: 1.5rem;
  color: var(--color-primary);
}

/* Make news cards cursor pointer */
.news-card {
  cursor: pointer;
}

@media (max-width: 768px) {
  .news-modal-content {
    padding: 1.5rem;
    width: 95%;
    max-height: 90vh;
  }

  .news-modal-title {
    font-size: 1.4rem;
  }
}
