/* =========================================
   MARJIN CLUB - Main Stylesheet
   ========================================= */

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

:root {
  /* === Logo renk paleti: Neon pembe + lacivert === */
  --gold: #e040fb;          /* neon magenta/pembe (ana vurgu) */
  --gold-light: #f06fff;    /* açık pembe hover */
  --gold-dark: #b820d4;     /* koyu magenta */
  --accent2: #a78bfa;       /* lila / lavanta (ikincil) */
  --black: #04080f;         /* çok koyu lacivert */
  --dark: #080f1e;          /* koyu lacivert */
  --dark-2: #0d1628;        /* orta lacivert */
  --dark-3: #152040;        /* biraz daha açık lacivert */
  --white: #ffffff;
  --gray: #7a88aa;
  --gray-light: #c0cce0;
  --font-main: 'Montserrat', sans-serif;
  --font-display: 'Playfair Display', serif;
  --transition: 0.35s ease;
  --radius: 4px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

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

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

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

.gold {
  color: var(--gold);
}

/* --- BUTTONS --- */
.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 32px;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.full-width {
  width: 100%;
  text-align: center;
}

/* --- SECTION COMMON --- */
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--gray);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

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

/* =========================================
   HEADER
   ========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.header.scrolled {
  background: rgba(5, 5, 5, 0.97);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 1;
}

/* Resim logo */
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.05);
  transition: opacity var(--transition);
}

.logo-img:hover {
  opacity: 0.85;
}

/* Footer logo img */
.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

/* NAV */
.nav {
  display: flex;
  gap: 36px;
  margin-left: auto;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

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

.header-btn {
  font-size: 0.7rem;
  padding: 11px 24px;
  flex-shrink: 0;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}

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

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-bottom: 60px;
}

/* =========================================
   HERO SLIDESHOW
   ========================================= */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 24s infinite;
  will-change: transform, opacity;
}

/* Her slide için farklı resim ve farklı Ken Burns yönü */
.slide-1 {
  background-image: url('images/hero.jpg');
  animation-delay: 0s;
  animation-name: heroFade, kenBurns1;
}
.slide-2 {
  background-image: url('images/stage.jpg');
  animation-delay: 6s;
  animation-name: heroFade, kenBurns2;
}
.slide-3 {
  background-image: url('images/dance.jpg');
  animation-delay: 12s;
  animation-name: heroFade, kenBurns3;
}
.slide-4 {
  background-image: url('images/vip.jpg');
  animation-delay: 18s;
  animation-name: heroFade, kenBurns4;
}

/* Crossfade: 4 slide x 6 sn = 24 sn toplam */
@keyframes heroFade {
  0%   { opacity: 0; }
  4%   { opacity: 1; }
  25%  { opacity: 1; }
  29%  { opacity: 0; }
  100% { opacity: 0; }
}

/* Ken Burns - sağdan sola, hafif zoom */
@keyframes kenBurns1 {
  0%   { transform: scale(1.08) translate(1%, 0.5%); }
  100% { transform: scale(1.0)  translate(-1%, -0.5%); }
}
@keyframes kenBurns2 {
  0%   { transform: scale(1.0)  translate(-1.5%, 0); }
  100% { transform: scale(1.1)  translate(0.5%, -1%); }
}
@keyframes kenBurns3 {
  0%   { transform: scale(1.05) translate(0, 1%); }
  100% { transform: scale(1.12) translate(-1%, -1%); }
}
@keyframes kenBurns4 {
  0%   { transform: scale(1.1)  translate(1%, -0.5%); }
  100% { transform: scale(1.02) translate(-0.5%, 0.5%); }
}

/* Ken Burns süresini 24 sn yap, fade ile aynı döngü */
.hero-slide {
  animation-duration: 24s, 24s;
  animation-timing-function: ease-in-out, linear;
  animation-iteration-count: infinite, infinite;
  animation-fill-mode: both, both;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(5,5,5,0.5) 0%,
    rgba(5,5,5,0.65) 50%,
    rgba(5,5,5,0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  padding: 0 32px;
  padding-top: 100px;
  text-align: center;
}

/* Hero tüm içërik wrap */
.hero-main-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
}

/* Hero compact: küçük başlık modu */
.hero-compact {
  padding-top: 0 !important;
  max-width: 620px !important;
  padding: 0 32px;
}

.hero-compact .hero-title {
  font-size: clamp(2.6rem, 6vw, 4.8rem) !important;
  margin-bottom: 28px;
}

/* === HERO CAROUSEL BÖLÜMÜ === */
.hero-carousel-section {
  width: 100%;
  max-width: 1200px;
  padding: 0 60px;
  margin-top: 50px;
}

.hero-carousel-wrap {
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.hero-carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.hero-carousel-track::-webkit-scrollbar {
  display: none;
}

/* === JOB CARD === */
.job-card {
  background: linear-gradient(160deg, rgba(15, 25, 48, 0.92) 0%, rgba(8, 15, 30, 0.95) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(224, 64, 251, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  width: 100%; 
  flex: 0 0 100%; /* Sürgülü kısımda taşmayı engelle */
  max-width: 100%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: row;        /* horizontal split */
  align-items: stretch;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  min-height: 420px; 
  height: auto; /* İçeriğe göre otomatik uza */
  box-sizing: border-box;
}

.job-card:hover {
  transform: translateY(-8px);
  border-color: rgba(224, 64, 251, 0.55);
  box-shadow: 0 24px 70px rgba(224, 64, 251, 0.2);
}

.job-card-img {
  position: relative;
  flex: 0 0 45%; 
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.job-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.6s ease;
  filter: brightness(0.85);
}

.job-card:hover .job-card-img img {
  transform: scale(1.08);
  filter: brightness(0.65);
}

.job-card-img h3 {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 0px;
  color: var(--white);
  margin: 0;
  z-index: 3;
  text-shadow: 0 4px 15px rgba(0,0,0,0.9), 0 2px 5px rgba(0,0,0,0.5);
  line-height: 1.2;
}

/* Alt gradient üstüne yazı */
.job-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, rgba(8, 15, 30, 0.98) 0%, rgba(8, 15, 30, 0.5) 50%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.job-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #25d366;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 2;
}

.job-card-salary-overlay {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 900;
  padding: 10px 20px;
  z-index: 4;
  text-align: center;
  text-shadow: 0 4px 10px rgba(0,0,0,0.9), 0 2px 5px rgba(0,0,0,0.8);
  white-space: nowrap;
}

.job-card-body {
  flex: 1;
  min-width: 0; /* Flexbox text overflow hatasını %100 çözer */
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
}

/* Etiketler (Konaklama, Maaş vs) */
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.card-tags span {
  background: rgba(224, 64, 251, 0.08);
  border: 1px solid rgba(224, 64, 251, 0.3);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 4px;
}

.job-card-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(224, 64, 251, 0.15);
  line-height: 1;
  margin-bottom: 8px;
}

.job-card-body p {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 24px;
  width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}


/* WhatsApp başvur butonu */
.card-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #25d366, #128c4a);
  color: #fff;
  border: none;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  margin-top: 16px;
  transition: all 0.35s ease;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.card-apply::after {
  content: '>';
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  transition: transform 0.3s;
}

.card-apply:hover {
  background: linear-gradient(135deg, #1ebe5c, #0d7a3e);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
}

.card-apply:hover::after {
  transform: translateX(5px);
}

/* Hero ortalama modu */
.hero-centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-centered .hero-sub::before {
  display: none;
}

.hero-centered .hero-btns {
  justify-content: center;
}

/* Hero avantajlar bandı */
.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  justify-content: center;
}

.hero-benefits span {
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 2px;
  text-transform: uppercase;
}

/* Hero telefon linki */
.hero-phone {
  margin-top: 18px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.hero-phone a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.hero-phone a:hover {
  color: var(--gold);
}

/* WhatsApp buton varyantı */
.btn-wa {
  background: linear-gradient(135deg, #25d366, #128c4a);
  color: #fff;
}

.hero-sub {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-sub::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  text-align: center;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin: 0 auto 40px;
  max-width: 520px;
  line-height: 1.8;
  text-align: center;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
  0% { opacity: 1; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* =========================================
   STATS BAR
   ========================================= */
.stats-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding: 40px 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 12px 60px;
  flex: 1;
  min-width: 140px;
}

.stat-item p {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(201, 168, 76, 0.25);
  flex-shrink: 0;
}

/* Yeni ikonlu stat item */
.stat-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
  font-weight: 600;
}

/* =========================================
   ABOUT
   ========================================= */
.about {
  padding: 120px 0;
  background: var(--dark);
}

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

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

.about-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter var(--transition);
}

.about-img:hover {
  filter: grayscale(0%);
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  z-index: 0;
}

.about-img {
  position: relative;
  z-index: 1;
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  z-index: 2;
  background: var(--gold);
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.badge-text {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.3;
}

.about-content {
  padding-right: 20px;
}

.about-text {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-list {
  list-style: none;
  margin: 28px 0 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-list li {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gray-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-icon {
  color: var(--gold);
  font-size: 0.7rem;
}

/* =========================================
   SERVICES
   ========================================= */
.services {
  padding: 120px 0;
  background: var(--black);
  position: relative;
}

.services::before {
  content: 'MARJIN';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 20vw;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* =========================================
   CAROUSEL / SERVICES
   ========================================= */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.services-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
  flex: 1;
}

.services-grid::-webkit-scrollbar {
  display: none;
}

.service-card {
  background: var(--dark-2);
  padding: 40px 32px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid transparent;
  min-width: 300px;
  max-width: 320px;
  flex-shrink: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.service-card:hover {
  background: var(--dark-3);
  border-color: rgba(201, 168, 76, 0.15);
  transform: translateY(-4px);
}

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

.service-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.1);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition);
}

.service-card:hover .service-num {
  color: rgba(201, 168, 76, 0.25);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}

/* Card etiketleri */
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
}

.card-tags span {
  background: rgba(224, 64, 251, 0.1);
  border: 1px solid rgba(224, 64, 251, 0.25);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 0.5px;
}

/* Başvur linki */
.card-apply {
  display: inline-block;
  margin-top: 20px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color var(--transition), letter-spacing var(--transition);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
}

.card-apply:hover {
  color: var(--gold-light);
  letter-spacing: 2px;
}

/* Carousel butonları */
.carousel-btn {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(224, 64, 251, 0.15);
  border: 1px solid rgba(224, 64, 251, 0.4);
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border-radius: 50%;
  backdrop-filter: blur(8px);
  align-self: center;
}

.carousel-btn:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(224, 64, 251, 0.4);
}

.carousel-btn:disabled {
  opacity: 0.2;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Carousel dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

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

.carousel-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
  position: relative;
  padding: 100px 0;
  background-image: url('images/stage.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.8);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-content p {
  color: var(--gray-light);
  font-size: 1rem;
  margin-bottom: 36px;
}

/* =========================================
   GALLERY
   ========================================= */
.gallery {
  padding: 120px 0;
  background: var(--dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 8px;
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  transition: transform 0.5s ease;
  filter: brightness(0.85);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.7);
}

.gallery-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgba(5,5,5,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-hover {
  opacity: 1;
}

.gallery-hover span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* =========================================
   CONTACT
   ========================================= */
.contact {
  padding: 120px 0;
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-card {
  background: var(--dark-2);
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.contact-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-3px);
}

.contact-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.contact-card h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-card a,
.contact-card p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.5;
}

.contact-card a:hover {
  color: var(--gold);
}

/* FORM */
.contact-form-wrap {
  background: var(--dark-2);
  padding: 48px;
  border: 1px solid rgba(255,255,255,0.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.9rem;
  padding: 16px 20px;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--dark-2);
  color: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

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

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding-top: 64px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.8;
  margin-top: 20px;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

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

.footer-links ul a {
  font-size: 0.88rem;
  color: var(--gray);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links ul a::before {
  content: '—';
  color: var(--gold);
  font-size: 0.7rem;
}

.footer-links ul a:hover {
  color: var(--gold);
}

.footer-contact p,
.footer-contact a {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 12px;
  display: block;
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray);
  transition: var(--transition);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 1px;
}

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse 2.5s ease infinite;
  white-space: nowrap;
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.wa-float-text {
  font-size: 0.85rem;
  font-weight: 700;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.65);
  animation: none;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 6px 40px rgba(37, 211, 102, 0.8); }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .job-card {
    min-width: calc(100%);
  }

  .hero-carousel-section {
    padding: 0 50px;
  }

  .service-card {
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5,5,5,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }

  .nav.open {
    display: flex;
  }

  .nav-link {
    font-size: 1.1rem;
    letter-spacing: 3px;
  }

  .header-btn {
    display: none;
  }

  .hamburger {
    display: flex;
    z-index: 1000;
    position: relative;
  }

  .hero-content {
    padding: 0 24px;
    padding-top: 50px;
  }

  .hero-carousel-section {
    padding: 0; /* Tele göre tam genişlik */
    margin-top: 32px;
  }

  .hero-carousel-wrap {
    gap: 0; /* Kartlar arası sıfır boşluk (biri bitip diğeri başlar) */
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .job-card {
    min-width: calc(100%);
    display: block; /* Flex sütun yerine tamamen blok düzeni; yükseklik hatasını %100 çözer */
    height: max-content !important; 
    border-radius: 0; /* Tam boyut için köşeleri düzelt */
    border-left: none; /* Yan çizgileri kaldır */
    border-right: none;
  }

  .job-card-img {
    display: block;
    width: 100%;
    height: 300px;
  }

  .job-card-body {
    display: block;
    width: 100%;
    padding: 20px 20px 30px;
  }
  
  .job-card-body p {
    font-size: 0.88rem;
    margin-bottom: 16px;
  }
  
  .job-card-img h3 {
    font-size: 1.6rem;
  }

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

  .gallery-large,
  .gallery-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

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

  .contact-form-wrap {
    padding: 32px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .service-card {
    min-width: 260px;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .btn-gold,
  .btn-outline {
    text-align: center;
    width: 100%;
    clip-path: none;
  }

  .wa-main-cta {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .hero-benefits {
    justify-content: center;
  }
}

/* =========================================
   WHATSAPP MAIN CTA BANNER
   ========================================= */
.wa-main-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #0d1f16 0%, #142e1e 100%);
  border: 1px solid #25d366;
  border-left: 5px solid #25d366;
  padding: 28px 36px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.wa-main-icon {
  font-size: 3rem;
  flex-shrink: 0;
  animation: waPulse 2.5s ease infinite;
}

@keyframes waPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

.wa-main-text {
  flex: 1;
  min-width: 200px;
}

.wa-main-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #25d366;
  margin-bottom: 6px;
}

.wa-main-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 6px;
}

.wa-main-sub {
  font-size: 0.85rem;
  color: var(--gray-light);
  line-height: 1.5;
}

.btn-wa-big {
  display: inline-block;
  background: #25d366;
  color: #fff;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 36px;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn-wa-big:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

/* WhatsApp öncelikli contact kartı */
.contact-card-wa {
  background: linear-gradient(135deg, #0d1f16 0%, #142e1e 100%) !important;
  border-color: rgba(37, 211, 102, 0.35) !important;
  grid-column: span 2;
}

.contact-card-wa h4 {
  color: #25d366 !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-card-wa a {
  color: var(--white) !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
}

.contact-card-wa a:hover {
  color: #25d366 !important;
}

.badge-primary {
  display: inline-block;
  background: #25d366;
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
  vertical-align: middle;
}

/* Form WhatsApp notu */
.form-wa-note {
  background: rgba(37, 211, 102, 0.08);
  border-left: 3px solid #25d366;
  color: var(--gray-light);
  font-size: 0.82rem;
  padding: 12px 16px;
  margin-bottom: 24px;
  line-height: 1.5;
}
