/* ============================================================
   HANTAŞ TEKSTİL — style.css  (paylaşılan tüm stiller)
   Bootstrap 5 + jQuery 3.7.1 projesi
   ============================================================ */

/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
  --black: #0d0d0d;
  --white: #ffffff;
  --cream: #f5f5f5;
  --warm: #a90f11;
  --warm-lt: #c94547;
  --gray: #656766;
  --border: rgba(13, 13, 13, 0.12);
  --ff-display: "Cormorant Garamond", Georgia, serif;
  --ff-body: "Raleway", sans-serif;
  --ff-italic: "IM Fell English", Georgia, serif;
  --trans: 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* =============================================
   RESET & BASE
   ============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--ff-body);
  background: var(--white);
  color: var(--black);
  font-size: 18px;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}
::selection {
  background: var(--warm);
  color: var(--white);
}
img {
  width: 100%;
  display: block;
}
.nav-logo,
.footer-logo {
  width: auto;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1,
h2,
h3,
h4 {
  font-family: var(--ff-display);
  font-weight: 300;
  line-height: 1.08;
}
.display-serif {
  font-family: var(--ff-display);
  font-weight: 300;
  letter-spacing: -0.01em;
}
.label {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm);
}
.italic-accent {
  font-family: var(--ff-italic);
  font-style: italic;
  font-weight: 400;
}

/* =============================================
   CUSTOM CURSOR
   ============================================= */
.custom-cursor {
  width: 10px;
  height: 10px;
  background: var(--warm);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s ease,
    height 0.3s ease,
    opacity 0.3s ease;
  z-index: 9999;
  mix-blend-mode: multiply;
}
.custom-cursor.hover {
  width: 40px;
  height: 40px;
  opacity: 0.4;
}

/* =============================================
   LOADER
   ============================================= */
#loader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}
#loader .brand-load {
  font-family: var(--ff-display);
  color: var(--white);
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}
#loader .loader-line {
  width: 0;
  height: 1px;
  background: var(--warm);
  animation: grow 1s 0.9s forwards;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes grow {
  to {
    width: 120px;
  }
}

/* =============================================
   NAVIGATION
   ============================================= */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  padding: 15px 0;
  transition:
    padding var(--trans),
    background var(--trans),
    box-shadow var(--trans);
}
#mainNav.scrolled {
  padding: 16px 0;
  background: rgba(248, 245, 240, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
/* İç sayfalarda nav baştan koyu */
#mainNav.nav-solid {
  padding: 16px 0;
  background: rgba(248, 245, 240, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.nav-logo {
  width: 200px;
  display: block;
  transition: filter var(--trans);
}

#mainNav.scrolled .nav-logo,
#mainNav.nav-solid .nav-logo {
  filter: none;
}

.nav-link-item {
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color var(--trans);
  position: relative;
}
.nav-link-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--warm);
  transition: width var(--trans);
}
.nav-link-item:hover::after,
.nav-link-item.active::after {
  width: 100%;
}
.nav-link-item:hover {
  color: var(--white);
}
#mainNav.scrolled .nav-link-item,
#mainNav.nav-solid .nav-link-item {
  color: var(--gray);
}
#mainNav.scrolled .nav-link-item:hover,
#mainNav.nav-solid .nav-link-item:hover {
  color: var(--black);
}

/* Hamburger */
.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--white);
  transition: all 0.4s ease;
}
#mainNav.scrolled .nav-toggle span,
#mainNav.nav-solid .nav-toggle span {
  background: var(--black);
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul {
  list-style: none;
  text-align: center;
}
.mobile-menu ul li {
  overflow: hidden;
  margin-bottom: 16px;
}
.mobile-menu ul li a {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
  display: block;
  transform: translateY(100%);
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    color var(--trans);
}
.mobile-menu.open ul li a {
  transform: translateY(0);
}
.mobile-menu ul li a:hover {
  color: var(--warm);
}

/* =============================================
   HERO SLIDER  (sadece ana sayfa)
   ============================================= */
#hero {
  height: 100svh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 13, 13, 0.82) 0%,
    rgba(13, 13, 13, 0.35) 50%,
    rgba(13, 13, 13, 0.15) 100%
  );
  z-index: 1;
}
.hero-slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(80px, 12vh, 140px);
  padding-left: clamp(20px, 5vw, 80px);
  padding-right: clamp(20px, 5vw, 80px);
}

/* Slide 1 ilk yükleme animasyonları */
#hero .hero-slide:first-child.active .slide-label {
  animation: fadeUp 0.7s 2.1s forwards;
}
#hero .hero-slide:first-child.active .hero-title .line:nth-child(1) span {
  animation: lineUp 1s 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
#hero .hero-slide:first-child.active .hero-title .line:nth-child(2) span {
  animation: lineUp 1s 2.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
#hero .hero-slide:first-child.active .hero-title .line:nth-child(3) span {
  animation: lineUp 1s 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
#hero .hero-slide:first-child.active .slide-sub {
  animation: fadeUp 0.8s 3s forwards;
}
#hero .hero-slide:first-child.active .slide-cta {
  animation: fadeUp 0.8s 3.2s forwards;
}

.slide-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 24px;
  opacity: 0;
}
.hero-slide:not(:first-child).active .slide-label {
  animation: fadeUp 0.6s 0.3s forwards;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 9vw, 9rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line span {
  display: block;
  transform: translateY(105%);
  opacity: 0;
}
.hero-slide:not(:first-child).active .hero-title .line:nth-child(1) span {
  animation: lineUp 0.9s 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-slide:not(:first-child).active .hero-title .line:nth-child(2) span {
  animation: lineUp 0.9s 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-slide:not(:first-child).active .hero-title .line:nth-child(3) span {
  animation: lineUp 0.9s 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes lineUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.slide-sub {
  margin-top: 32px;
  font-size: 17px;
  font-weight: 300;
  color: rgba(248, 245, 240, 0.8);
  letter-spacing: 0.05em;
  max-width: 440px;
  opacity: 0;
}
.hero-slide:not(:first-child).active .slide-sub {
  animation: fadeUp 0.7s 0.85s forwards;
}
.slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(248, 245, 240, 0.3);
  padding-bottom: 6px;
  opacity: 0;
  transition:
    border-color var(--trans),
    color var(--trans);
}
.slide-cta:hover {
  border-color: var(--warm);
  color: var(--warm);
}
.slide-cta i {
  font-size: 14px;
  transition: transform var(--trans);
}
.slide-cta:hover i {
  transform: translateX(5px);
}
.hero-slide:not(:first-child).active .slide-cta {
  animation: fadeUp 0.7s 1.05s forwards;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  background: rgba(248, 245, 240, 0.07);
  border: 1px solid rgba(248, 245, 240, 0.18);
  color: var(--white);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition:
    background var(--trans),
    border-color var(--trans);
}
.slider-arrow:hover {
  background: var(--warm);
  border-color: var(--warm);
}
.slider-arrow i {
  font-size: 18px;
}
.slider-prev {
  left: clamp(16px, 3vw, 40px);
}
.slider-next {
  right: clamp(16px, 3vw, 40px);
}
.slider-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}
.slider-dot {
  width: 28px;
  height: 2px;
  background: rgba(248, 245, 240, 0.3);
  cursor: pointer;
  transition:
    background var(--trans),
    width var(--trans);
  position: relative;
  overflow: hidden;
}
.slider-dot.active {
  background: rgba(248, 245, 240, 0.2);
  width: 52px;
}
.slider-dot.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--warm);
  animation: dotProgress var(--slide-duration, 6000ms) linear forwards;
}
@keyframes dotProgress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.slider-counter {
  position: absolute;
  right: clamp(16px, 3vw, 44px);
  bottom: 36px;
  z-index: 10;
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 300;
  color: rgba(248, 245, 240, 0.45);
  letter-spacing: 0.12em;
}
.slider-counter .current {
  color: var(--white);
  font-size: 1.1rem;
}
.hero-scroll {
  position: absolute;
  left: clamp(16px, 3vw, 44px);
  bottom: 36px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 0.8s 3.4s forwards;
}
.hero-scroll span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 245, 240, 0.5);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--warm), transparent);
  animation: scrollPulse 2s 4s infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

/* =============================================
   HERO BAĞLANTI BUTONU
   ============================================= */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(248, 245, 240, 0.3);
  padding-bottom: 6px;
  transition:
    border-color var(--trans),
    color var(--trans);
}
.hero-cta:hover {
  border-color: var(--warm);
  color: var(--warm);
}
.hero-cta i {
  font-size: 14px;
  transition: transform var(--trans);
}
.hero-cta:hover i {
  transform: translateX(5px);
}

/* =============================================
   PAGE HERO  (iç sayfalar için banner)
   ============================================= */
.page-hero {
  padding-top: 160px;
  padding-bottom: 80px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  transform: scale(1.05);
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
    135deg,
    rgba(13, 13, 13, 0.3) 0%,
    rgba(13, 13, 13, 0.1) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero-content .label {
  margin-bottom: 20px;
}
.page-hero-content h1 {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.01em;
}
.page-hero-content p {
  margin-top: 20px;
  font-size: 17px;
  font-weight: 300;
  color: rgba(248, 245, 240, 0.55);
  max-width: 520px;
  line-height: 1.8;
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb-wrap {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.hn-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.hn-breadcrumb li {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hn-breadcrumb li::after {
  content: "/";
  color: var(--warm-lt);
  font-weight: 300;
}
.hn-breadcrumb li:last-child::after {
  display: none;
}
.hn-breadcrumb li:last-child {
  color: var(--warm);
}
.hn-breadcrumb a {
  color: var(--gray);
  text-decoration: none;
  transition: color var(--trans);
}
.hn-breadcrumb a:hover {
  color: var(--warm);
}

/* =============================================
   SECTIONS — GENERAL
   ============================================= */
section {
  overflow: hidden;
}
.section-pad {
  padding: clamp(80px, 12vw, 160px) 0;
}
.section-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}
.section-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* =============================================
   MARQUEE TICKER
   ============================================= */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  background: var(--cream);
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-track:hover {
  animation-play-state: paused;
}
.ticker-item {
  flex-shrink: 0;
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--gray);
  padding: 0 40px;
}
.ticker-item .dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--warm);
  border-radius: 50%;
  margin: 0 20px;
  vertical-align: middle;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* =============================================
   ABOUT / INTRO
   ============================================= */
.about-big-text {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5.5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--black);
}
.about-big-text .warm {
  color: var(--warm);
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: saturate(0.85);
}
.about-img-tag {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--black);
  color: var(--white);
  padding: 24px 28px;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  min-width: 180px;
}
.about-img-tag strong {
  display: block;
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
  color: var(--warm);
}
.about-text p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.9;
  color: #4a4b4a;
  margin-bottom: 20px;
}

/* =============================================
   TIMELINE  (hakkımızda sayfası)
   ============================================= */
.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding-bottom: 48px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-dot {
  position: absolute;
  left: -36px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--warm);
  transition: background var(--trans);
}
.timeline-item:hover .timeline-dot {
  background: var(--warm);
}
.timeline-year {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--warm);
  line-height: 1;
  margin-bottom: 6px;
}
.timeline-item h4 {
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.timeline-item p {
  font-size: 17px;
  font-weight: 300;
  color: #4a4b4a;
  line-height: 1.8;
}

/* =============================================
   TEAM CARDS (hakkımızda)
   ============================================= */
.team-card {
  text-align: center;
}
.team-card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.team-card-img img {
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: saturate(0.7) grayscale(0.2);
  transition:
    filter var(--trans),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.team-card:hover .team-card-img img {
  filter: saturate(1) grayscale(0);
  transform: scale(1.04);
}
.team-card h4 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 4px;
}
.team-card .role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm);
}
.team-card p {
  font-size: 17px;
  font-weight: 300;
  color: #4a4b4a;
  line-height: 1.7;
  margin-top: 10px;
}

/* =============================================
   VALUE CARDS (hakkımızda)
   ============================================= */
.value-card {
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  height: 100%;
  transition:
    border-color var(--trans),
    transform var(--trans),
    box-shadow var(--trans);
}
.value-card:hover {
  border-color: var(--warm);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(13, 13, 13, 0.07);
}
.value-card .icon {
  font-size: 2rem;
  color: var(--warm);
  margin-bottom: 20px;
}
.value-card h4 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.value-card p {
  font-size: 17px;
  font-weight: 300;
  color: #4a4b4a;
  line-height: 1.8;
}

/* =============================================
   CAROUSEL (referanslar / galeri)
   ============================================= */
.hn-carousel-wrap {
  position: relative;
  overflow: hidden;
  user-select: none;
}
.hn-carousel-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.hn-carousel-track.dragging {
  transition: none;
  cursor: grabbing;
}
.hn-carousel-slide {
  flex-shrink: 0;
  padding: 0 12px;
}

/* Logo carousel */
.logo-carousel .hn-carousel-slide {
  width: calc(100% / 5);
}
.logo-item {
  background: var(--white);
  /* border: 1px solid var(--border); */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  height: 125px;
  /* filter: grayscale(1) opacity(0.5); */
  transition: filter var(--trans);
}
.logo-item:hover {
  filter: grayscale(0) opacity(1);
}
.logo-item span {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--black);
  white-space: nowrap;
}

/* Gallery carousel */
.gallery-carousel .hn-carousel-slide {
  width: calc(100% / 3);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: saturate(0.75);
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 13, 13, 0.7) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity var(--trans);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}
.gallery-item-overlay span {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.06em;
}

/* Testimonial carousel */
.testimonial-carousel .hn-carousel-slide {
  width: 100%;
}
.testimonial-item {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 48px 40px;
  position: relative;
}
.testimonial-item::before {
  content: '"';
  font-family: var(--ff-display);
  font-size: 6rem;
  font-weight: 300;
  color: var(--warm);
  line-height: 0.6;
  position: absolute;
  top: 32px;
  left: 32px;
  opacity: 0.4;
}
.testimonial-item p {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 28px;
  padding-top: 32px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(0.3);
}
.testimonial-author-info h5 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 2px;
}
.testimonial-author-info span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm);
}

/* Carousel Nav Buttons */
.carousel-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  justify-content: flex-end;
}
.carousel-btn {
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--black);
  transition:
    background var(--trans),
    border-color var(--trans),
    color var(--trans);
}
.carousel-btn:hover {
  background: var(--warm);
  border-color: var(--warm);
  color: var(--white);
}
.carousel-btn i {
  font-size: 18px;
}
.carousel-counter {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray);
  letter-spacing: 0.1em;
  padding: 0 8px;
}
.carousel-counter .cur {
  color: var(--black);
}

/* Carousel dots */
.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  border: none;
  padding: 0;
  transition:
    background var(--trans),
    transform var(--trans);
}
.carousel-dot.active {
  background: var(--warm);
  transform: scale(1.4);
}

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(13, 13, 13, 0.95);
  align-items: center;
  justify-content: center;
}
#lightbox.open {
  display: flex;
}
#lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  object-fit: contain;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}
#lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--trans);
}
#lightbox-close:hover {
  opacity: 1;
}
#lightbox-prev,
#lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(248, 245, 240, 0.08);
  border: 1px solid rgba(248, 245, 240, 0.15);
  color: var(--white);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: background var(--trans);
}
#lightbox-prev:hover,
#lightbox-next:hover {
  background: var(--warm);
  border-color: var(--warm);
}
#lightbox-prev {
  left: 24px;
}
#lightbox-next {
  right: 24px;
}
#lightbox-caption {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 245, 240, 0.4);
}

/* =============================================
   STATS STRIP
   ============================================= */
.stats-section {
  background: var(--black);
  padding: clamp(60px, 8vw, 100px) 0;
}
.stat-item {
  text-align: center;
  padding: 20px;
}
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.stat-number span {
  color: var(--warm);
}
.stat-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 10px;
}
.stat-divider {
  width: 1px;
  background: rgba(248, 245, 240, 0.1);
  align-self: stretch;
}

/* =============================================
   PROCESS / QUALITY
   ============================================= */
.process-step {
  display: flex;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  transition:
    background var(--trans),
    padding var(--trans),
    margin var(--trans);
}
.process-step:first-child {
  border-top: 1px solid var(--border);
}
.process-step:hover {
  background: var(--cream);
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 -20px;
}
.process-num {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  min-width: 70px;
  transition: color var(--trans);
}
.process-step:hover .process-num {
  color: var(--warm);
}
.process-content h4 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.process-content p {
  font-size: 17px;
  font-weight: 300;
  color: #4a4b4a;
  line-height: 1.8;
}
.process-img {
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: saturate(0.7);
}

/* =============================================
   QUOTE
   ============================================= */
.quote-section {
  background: var(--black);
  padding: clamp(80px, 12vw, 140px) 0;
  text-align: center;
}
.quote-mark {
  font-family: var(--ff-display);
  font-size: 8rem;
  color: var(--warm);
  line-height: 0.5;
  margin-bottom: 16px;
  opacity: 0.5;
}
.quote-text {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: 0.01em;
  max-width: 860px;
  margin: 0 auto;
}
.quote-text .italic-accent {
  color: var(--warm-lt);
}
.quote-author {
  margin-top: 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray);
}

/* =============================================
   CONTACT
   ============================================= */
.contact-big {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
}
.form-ctrl {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--black);
  padding: 14px 0;
  width: 100%;
  outline: none;
  transition: border-color var(--trans);
}
.form-ctrl:focus {
  border-color: var(--warm);
}
.form-ctrl::placeholder {
  color: rgba(13, 13, 13, 0.35);
  letter-spacing: 0.05em;
}
.form-label-sm {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm);
  display: block;
  margin-bottom: 4px;
}
textarea.form-ctrl {
  resize: none;
  height: 100px;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 18px 40px;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background var(--trans),
    color var(--trans);
  text-decoration: none;
}
.btn-submit:hover {
  background: var(--warm);
  color: var(--white);
}
.btn-submit i {
  font-size: 14px;
  transition: transform var(--trans);
}
.btn-submit:hover i {
  transform: translateX(4px);
}
.contact-info p {
  font-size: 16px;
  font-weight: 300;
  color: var(--gray);
  line-height: 2.2;
}
.contact-info a {
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--trans);
}
.contact-info a:hover {
  border-color: var(--warm);
}

/* =============================================
   COLLECTION CARDS
   ============================================= */
.collection-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.collection-card img {
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: saturate(0.8);
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s ease;
}
.collection-card:hover img {
  transform: scale(1.06);
  filter: saturate(1);
}
.collection-card-body {
  padding: 22px 0 0;
}
.collection-card-body .label {
  margin-bottom: 6px;
}
.collection-card-body h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  margin-bottom: 8px;
}
.collection-card-body p {
  font-size: 17px;
  font-weight: 300;
  color: #4a4b4a;
  line-height: 1.7;
}
.collection-hero {
  position: relative;
  overflow: hidden;
}
.collection-hero img {
  aspect-ratio: 16/10;
  object-fit: cover;
  filter: saturate(0.8);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.collection-hero:hover img {
  transform: scale(1.04);
}
.collection-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 13, 13, 0.7) 0%,
    transparent 60%
  );
  display: flex;
  align-items: flex-end;
  padding: 40px;
}
.collection-hero-overlay h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--black);
  padding: 60px 0 30px;
}
.footer-brand {
  margin-bottom: 8px;
}
.footer-logo {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.footer-tagline {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li + li {
  margin-top: 10px;
}
.footer-links a {
  font-size: 16px;
  font-weight: 300;
  color: rgba(248, 245, 240, 0.45);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color var(--trans);
}
.footer-links a:hover {
  color: var(--warm);
}
.footer-head {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 20px;
}
.footer-bottom {
  border-top: 1px solid rgba(248, 245, 240, 0.07);
  margin-top: 50px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(248, 245, 240, 0.25);
  letter-spacing: 0.06em;
}
.social-links {
  display: flex;
  gap: 18px;
}
.social-links a {
  color: rgba(248, 245, 240, 0.3);
  font-size: 18px;
  text-decoration: none;
  transition:
    color var(--trans),
    transform var(--trans);
}
.social-links a:hover {
  color: var(--warm);
  transform: translateY(-2px);
}

/* =============================================
   METİN YARDIMCI SINIFLARI
   ============================================= */
.body-lead {
  font-size: 17px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.9;
}
.body-sm {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.8;
}
.footer-text {
  font-size: 14px;
  color: rgba(248, 245, 240, 0.3);
  line-height: 1.8;
}
.text-dark-caption {
  font-size: 14px;
  font-weight: 300;
  color: rgba(248, 245, 240, 0.6);
  line-height: 1.7;
}
.dir-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 4px;
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.15s;
}
.reveal-delay-2 {
  transition-delay: 0.3s;
}
.reveal-delay-3 {
  transition-delay: 0.45s;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
  .about-img-tag {
    right: 0;
    bottom: -20px;
  }
  .hero-scroll {
    display: none;
  }
  .logo-carousel .hn-carousel-slide {
    width: calc(100% / 3);
  }
  .gallery-carousel .hn-carousel-slide {
    width: calc(100% / 2);
  }
}
@media (max-width: 767px) {
  .about-img-tag {
    position: static;
    margin-top: 0;
  }
  .stat-divider {
    display: none;
  }
  .logo-carousel .hn-carousel-slide {
    width: calc(100% / 2);
  }
  .gallery-carousel .hn-carousel-slide {
    width: 90%;
  }
}
@media (min-width: 992px) {
  .nav-toggle {
    display: none !important;
  }
  .desktop-nav {
    display: flex !important;
  }
}
@media (max-width: 991px) {
  .desktop-nav {
    display: none !important;
  }
}

/* Aşağıdan yukarı: beyaz → siyah */
.gradient-bottom-to-top {
  background: linear-gradient(to top, #ffffff, #000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800 !important;
  text-shadow: 2px 1px 1px rgba(0, 0, 0, 0.3);
}

#mainNav {
  background-color: #BFC6C4;
}

.nav-dropdown {                          
  position: absolute;
  top: calc(30.5px - 1px);
  left: 50%;
  width: 200px;
  transform: translateX(-50%) translateY(10px);
  width: 200px;
  background: #ffffff;
  border: 1px solid #e0dcd8;
  border-top: 2px solid #9b1c2e;
  box-shadow:
    0 8px 32px rgba(0,0,0,.08),
    0 2px 8px  rgba(0,0,0,.04);
  list-style: none;
  padding: 8px 0;
  border-radius: 0 0 4px 4px;

  /* Görünürlük & animasyon */
  opacity: 0;
  pointer-events: none;
  transition:
    opacity   .25s cubic-bezier(.25,.46,.45,.94),
    transform .25s cubic-bezier(.25,.46,.45,.94);
}

li.nav-link-item {
  position: relative;
}

li.nav-link-item:hover > .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 11px 24px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  color: #2a2a2a;
  border-left: 2px solid transparent;
  transition:
    color        .2s cubic-bezier(.25,.46,.45,.94),
    background   .2s cubic-bezier(.25,.46,.45,.94),
    border-color .2s cubic-bezier(.25,.46,.45,.94),
    padding-left .2s cubic-bezier(.25,.46,.45,.94);
}

.dropdown-item:hover {
  color: #9b1c2e;
  background: #faf8f7;
  border-left-color: #9b1c2e;
  padding-left: 30px;
}

.background-image-1{
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('/hantas/assets/images/background/hantas-bg-1.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.background-image-2{
  background-image:     
    url('/hantas/assets/images/background/hantas-bg-2.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.background-image-2 .stat-label, .background-image-2 .stat-count{
  color: #fff !important;
}

.custom-hn-slide{
  width: calc(100% / 2) !important;
}

.custom-slide-icon{
  width: 109%;
  min-width: 180px;
}

.loader-logo{
  max-width: 300px;
}

.reference-img{
  object-fit: contain !important;
}