/* ==========================================================================
   Mikron Kimya 2026 Modern Light Theme CSS (modern-rev.css)
   Marka Rengi: #ec6f17 (Endüstriyel Turuncu / Amber)
   Hover Rengi: #cf5600
   Koyu Metin / Overlay Rengi: #161616 (Nötr Gri Siyah)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --brand-yellow: #ec6f17;
  --brand-yellow-hover: #cf5600;
  --brand-yellow-light: rgba(236, 111, 23, 0.12);
  --brand-dark: #161616;
  --brand-text-dark: #161616;
  --brand-text-muted: #64748b;
  --brand-bg-light: #ffffff;
  --brand-bg-subtle: #f8fafc;
  --brand-border-light: #e2e8f0;
  --font-main: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  font-family: var(--font-main) !important;
  color: var(--brand-text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: var(--brand-yellow);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--brand-yellow-hover);
}

/* --------------------------------------------------------------------------
   0. Modern Pageloader System
   -------------------------------------------------------------------------- */
#pageloader.modern-pageloader {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: #ffffff !important;
  z-index: 9999999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

#pageloader.modern-pageloader.is-loaded {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.pageloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.pageloader-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  animation: pageloaderPulse 1.8s ease-in-out infinite;
}

.pageloader-spinner {
  width: 44px;
  height: 44px;
  border: 3.5px solid rgba(236, 111, 23, 0.15);
  border-top-color: var(--brand-yellow);
  border-radius: 50%;
  animation: pageloaderSpin 0.8s linear infinite;
}

@keyframes pageloaderSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pageloaderPulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* --------------------------------------------------------------------------
   1. Modern Fixed Header (Smooth Transparent -> Solid Color Transition)
   -------------------------------------------------------------------------- */
header.modern-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: background-color 0.35s ease, border-color 0.35s ease;
}

/* Scrolled State */
body.is-scrolled header.modern-header {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--brand-border-light) !important;
}

.modern-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

/* Dynamic Logo Switching */
.modern-brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.modern-brand .logo-white {
  display: block;
}

.modern-brand .logo-dark {
  display: none;
}

body.is-scrolled .modern-brand .logo-white {
  display: none;
}

body.is-scrolled .modern-brand .logo-dark {
  display: block;
}

.modern-nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 12px;
}

.modern-nav-item {
  position: relative;
}

/* Isolated Header Link Styling (White on Hero, #161616 on Scroll) */
header.modern-header .modern-nav-link {
  position: relative;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 14.5px;
  padding: 8px 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s ease;
  background: transparent !important;
}

header.modern-header .modern-nav-link i {
  color: inherit !important;
}

/* Clean Flat Modern Underline Indicator */
header.modern-header .modern-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--brand-yellow) !important;
  border-radius: 0;
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: none !important;
}

header.modern-header .modern-nav-link:hover::after,
header.modern-header .modern-nav-item.active .modern-nav-link::after {
  width: 24px;
}

body.is-scrolled header.modern-header .modern-nav-link {
  color: #161616 !important;
}

header.modern-header .modern-nav-link:hover,
header.modern-header .modern-nav-item.active .modern-nav-link,
body.is-scrolled header.modern-header .modern-nav-link:hover,
body.is-scrolled header.modern-header .modern-nav-item.active .modern-nav-link {
  color: var(--brand-yellow) !important;
  background: transparent !important;
}

/* Modern Clean Dropdown Menu */
.modern-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  background: #ffffff;
  border: 1px solid var(--brand-border-light);
  border-radius: 6px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 1100;
  list-style: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.modern-nav-item:hover .modern-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.modern-dropdown li {
  position: relative;
}

.modern-dropdown li a {
  position: relative;
  display: block;
  padding: 11px 22px;
  color: #161616;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent !important;
}

/* Dropdown Item Modern Accent Line Indicator on Hover */
.modern-dropdown li a::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  width: 0;
  height: 2px;
  background-color: var(--brand-yellow);
  transform: translateY(-50%);
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modern-dropdown li a:hover::before {
  width: 12px;
}

.modern-dropdown li a:hover {
  color: var(--brand-yellow);
  background: transparent !important;
  padding-left: 34px;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   2. Ultra-Modern Drag & Swipe Hybrid Hero Slider (Video + Photo)
   -------------------------------------------------------------------------- */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  background: #161616;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.hero-slider-section:active {
  cursor: grabbing;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1), visibility 1s ease;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.hero-slide.slide-next {
  transform: translateX(40px) scale(1.03);
}

.hero-slide.slide-prev {
  transform: translateX(-40px) scale(1.03);
}

/* Slide Media (z-index: 1) */
.hero-media-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* YouTube Hero Background Video Styling (100% Full-Cover Responsive) */
.hero-youtube-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.hero-youtube-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 Aspect Ratio */
  min-height: 100vh;
  min-width: 177.77vh; /* 16:9 Aspect Ratio */
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
}

.hero-image-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 10s ease-out;
  pointer-events: none;
}

.hero-slide.active .hero-image-bg {
  transform: scale(1.08);
}

/* Neutral Grey-Black #161616 Text Backdrop Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(22, 22, 22, 0.85) 0%,
    rgba(22, 22, 22, 0.60) 50%,
    rgba(22, 22, 22, 0.25) 85%,
    rgba(22, 22, 22, 0.10) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Hero Content Container (z-index: 3 -> ABOVE overlay!) */
.hero-content-container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 40px;
}

.hero-caption {
  max-width: 780px;
  color: #ffffff;
}

.hero-slide .hero-title,
.hero-slide .hero-subtitle,
.hero-slide .hero-btn-group {
  opacity: 0;
  transform: translateY(35px);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.active .hero-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

.hero-slide.active .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.hero-slide.active .hero-btn-group {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  color: #ffffff;
  margin-bottom: 22px;
  text-shadow: none;
}

.hero-title span {
  color: var(--brand-yellow);
}

.hero-subtitle {
  font-size: 19px;
  line-height: 1.6;
  color: #f1f5f9;
  margin-bottom: 38px;
  font-weight: 400;
  max-width: 660px;
  text-shadow: none;
}

.hero-btn-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Primary Brand Button with #ec6f17 and #cf5600 hover */
.btn-brand-primary {
  background: var(--brand-yellow);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none !important;
  box-shadow: none !important;
}

.btn-brand-primary i {
  color: #ffffff !important;
}

.btn-brand-primary:hover {
  background: var(--brand-yellow-hover);
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: none !important;
}

.btn-brand-outline {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  box-shadow: none !important;
}

/* Explicit Hero Slider Button Isolation */
.hero-slider-section .btn-brand-outline,
.hero-btn-group .btn-brand-outline {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

.hero-slider-section .btn-brand-outline:hover,
.hero-btn-group .btn-brand-outline:hover {
  color: #161616 !important;
  background: #ffffff !important;
  border-color: #ffffff !important;
}

.btn-brand-outline:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #161616;
  transform: translateY(-3px);
  box-shadow: none !important;
}

/* Slide Controls & Indicators */
.hero-controls {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-indicators {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
  box-shadow: none !important;
}

.hero-dot.active {
  background: var(--brand-yellow);
  width: 65px;
}

.hero-arrows {
  display: flex;
  gap: 8px;
}

/* Fully Circle / Round Arrow Buttons */
.hero-arrow-btn,
.hero-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(4px);
  box-shadow: none !important;
}

.hero-arrow-btn i,
.hero-nav-btn i {
  font-size: 18px;
}

.hero-arrow-btn:hover,
.hero-nav-btn:hover {
  background: var(--brand-yellow);
  color: #ffffff;
  border-color: var(--brand-yellow);
  transform: scale(1.08);
}

/* Drag indicator badge */
.hero-drag-hint {
  position: absolute;
  bottom: 45px;
  left: 60px;
  z-index: 10;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
}

.hero-drag-hint i {
  color: var(--brand-yellow);
}

/* --------------------------------------------------------------------------
   3. Phase 2: Modern Features / Corporate Highlights Section
   -------------------------------------------------------------------------- */
.modern-features-section {
  position: relative;
  z-index: 10;
  background-color: #ffffff;
  padding: 80px 0;
  border-bottom: 1px solid var(--brand-border-light);
}

.modern-feature-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--brand-border-light);
  border-radius: 6px;
  padding: 36px 28px;
  height: 100%;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: none !important;
}

.modern-feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-yellow);
}

/* Top Accent Hover Line */
.feature-card-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modern-feature-card:hover .feature-card-line {
  transform: scaleX(1);
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  background: var(--brand-yellow-light);
  color: var(--brand-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 22px;
  transition: all 0.3s ease;
}

.modern-feature-card:hover .feature-icon-wrapper {
  background: var(--brand-yellow);
  color: #ffffff;
  transform: scale(1.05);
}

.feature-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #161616;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.feature-card-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--brand-text-muted);
  margin: 0;
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   4. Phase 3: Modern Bilgi Portalı (Knowledge Portal Carousel)
   -------------------------------------------------------------------------- */
.modern-portal-section {
  background-color: var(--brand-bg-subtle);
  padding: 90px 0;
  border-bottom: 1px solid var(--brand-border-light);
}

.modern-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 55px auto;
}

/* Dealer Map Partner Logo Header Badge */
.dealer-map-partner-badge {
  display: inline-block;
  margin-bottom: 18px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.dealer-map-partner-badge:hover {
  opacity: 0.92;
  transform: scale(1.03);
}

.dealer-map-partner-logo {
  max-height: 65px;
  width: auto;
  object-fit: contain;
  display: inline-block;
}

.modern-section-subtitle {
  color: var(--brand-yellow);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.modern-section-title {
  font-size: 34px;
  font-weight: 800;
  color: #161616;
  letter-spacing: -0.5px;
  margin: 0;
}

/* Carousel Track & Slides (Prevent Native Ghost Dragging) */
.portal-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 10px 0 20px 0;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.portal-carousel-wrapper:active {
  cursor: grabbing;
}

.portal-carousel-wrapper img,
.portal-carousel-wrapper a {
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.portal-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.portal-carousel-slide {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

/* Equal Height Cards & Line Clamp / Ellipsis (...) */
.modern-portal-card {
  background: #ffffff;
  border: 1px solid var(--brand-border-light);
  border-radius: 6px;
  overflow: hidden;
  height: 480px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: none !important;
  cursor: pointer;
}

.modern-portal-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-yellow);
}

.portal-card-thumb {
  position: relative;
  width: 100%;
  height: 200px;
  flex-shrink: 0;
  overflow: hidden;
  background: #161616;
}

.portal-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.modern-portal-card:hover .portal-card-thumb img {
  transform: scale(1.06);
}

.portal-card-body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portal-card-tag {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--brand-yellow);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

/* Title Line Clamp (Max 2 lines, equal height 48px) */
.portal-card-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
  height: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.portal-card-title a {
  color: #161616;
  text-decoration: none;
  transition: color 0.2s ease;
}

.modern-portal-card:hover .portal-card-title a {
  color: var(--brand-yellow);
}

/* Description Line Clamp (Max 3 lines, equal height 68px) */
.portal-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--brand-text-muted);
  margin-bottom: 20px;
  height: 68px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 400;
}

.portal-card-link {
  color: var(--brand-yellow);
  font-weight: 700;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap 0.25s ease, color 0.25s ease;
}

.modern-portal-card:hover .portal-card-link {
  color: var(--brand-yellow-hover);
  gap: 10px;
  text-decoration: none;
}

/* Carousel Controls & Dots */
.portal-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 35px;
}

.portal-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--brand-border-light);
  color: #161616;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: none !important;
}

.portal-nav-btn:hover {
  background: var(--brand-yellow);
  color: #ffffff;
  border-color: var(--brand-yellow);
  transform: scale(1.08);
}

.portal-carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.portal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.portal-dot.active {
  background: var(--brand-yellow);
  width: 28px;
  border-radius: 6px;
}

/* --------------------------------------------------------------------------
   5. Phase 4: Modern Full-Width Photo Gallery Carousel (No Loop)
   -------------------------------------------------------------------------- */
.modern-gallery-section {
  background-color: #ffffff;
  padding: 90px 0;
  border-bottom: none;
  overflow: hidden;
}

.gallery-carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0 20px 0;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.gallery-carousel-wrapper:active {
  cursor: grabbing;
}

.gallery-carousel-wrapper img,
.gallery-carousel-wrapper a {
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.gallery-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-carousel-slide {
  flex: 0 0 25%;
  max-width: 25%;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}

.modern-gallery-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--brand-border-light);
  background: #161616;
  height: 360px;
  cursor: pointer;
  box-shadow: none !important;
}

.gallery-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

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

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(22, 22, 22, 0.05) 0%,
    rgba(22, 22, 22, 0.85) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  z-index: 2;
  text-decoration: none !important;
}

.modern-gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--brand-yellow);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  transform: translateY(18px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modern-gallery-card:hover .gallery-card-icon {
  transform: translateY(0);
}

.gallery-card-title {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  transform: translateY(18px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
}

.modern-gallery-card:hover .gallery-card-title {
  transform: translateY(0);
}

/* Gallery Carousel Controls */
.gallery-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.gallery-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--brand-border-light);
  color: #161616;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: none !important;
}

.gallery-nav-btn:hover {
  background: var(--brand-yellow);
  color: #ffffff;
  border-color: var(--brand-yellow);
  transform: scale(1.08);
}

.gallery-carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.gallery-dot.active {
  background: var(--brand-yellow);
  width: 28px;
  border-radius: 6px;
}

/* --------------------------------------------------------------------------
   6. Phase 5: Modern Clean Light CTA Section (Borderless)
   -------------------------------------------------------------------------- */
.modern-cta-clean {
  background-color: var(--brand-bg-subtle);
  padding: 65px 0;
  border: none !important;
  box-shadow: none !important;
}

.cta-clean-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-clean-text {
  max-width: 650px;
}

.cta-clean-label {
  color: var(--brand-yellow);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
  display: block;
}

.cta-clean-heading {
  color: #161616;
  font-size: 30px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.5px;
}

.cta-clean-action {
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   7. Global Floating Fixed Scroll-To-Top Button (Shows on scroll down)
   -------------------------------------------------------------------------- */
.modern-floating-scroll-top {
  position: fixed;
  bottom: 35px;
  right: 35px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-yellow);
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none !important;
  border: none !important;
  box-shadow: none !important;
}

.modern-floating-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modern-floating-scroll-top:hover {
  background: var(--brand-yellow-hover);
  transform: translateY(-4px);
  color: #ffffff !important;
}

/* --------------------------------------------------------------------------
   8. Phase 5: Modern Light Corporate Footer Styling (#161616 Headings)
   -------------------------------------------------------------------------- */
#footer.modern-footer {
  background-color: #ffffff !important;
  color: #475569 !important;
  font-size: 14px;
  border-top: 1px solid #e2e8f0 !important;
  box-shadow: none !important;
}

#footer.modern-footer .footer-primary-row {
  padding: 80px 0 60px 0;
  background-color: #ffffff !important;
}

#footer.modern-footer .footer-primary-row .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#footer .footer-widget,
#footer.modern-footer .footer-widget {
  margin-bottom: 30px;
  background: transparent !important;
  padding: 0 20px !important;
}

#footer.modern-footer .footer-logo-link {
  display: block;
  max-width: 220px;
  margin-bottom: 24px;
}

#footer.modern-footer .footer-logo-img {
  max-width: 100% !important;
  max-height: 48px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
}

/* Footer Centered Partner Logo */
.footer-partner-widget {
  width: 100%;
  text-align: center;
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid #e2e8f0;
}

.footer-partner-link {
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-partner-link:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.footer-partner-img {
  max-height: 65px;
  width: auto;
  object-fit: contain;
  display: inline-block;
}

#footer.modern-footer .footer-about-text {
  color: #475569 !important;
  line-height: 1.65;
  font-size: 14px;
  margin-bottom: 22px;
  font-weight: 400;
}

#footer.modern-footer .footer-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

#footer.modern-footer .footer-social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  color: #161616 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none !important;
  transition: all 0.15s ease-out !important;
  box-shadow: none !important;
}

#footer.modern-footer .footer-social-links a svg {
  width: 18px;
  height: 18px;
  fill: #161616;
  transition: fill 0.15s ease-out !important;
}

#footer.modern-footer .footer-social-links a:hover {
  background: var(--brand-yellow) !important;
  color: #ffffff !important;
  border-color: var(--brand-yellow) !important;
  transform: translateY(-3px);
}

#footer.modern-footer .footer-social-links a:hover svg {
  fill: #ffffff !important;
}

#footer.modern-footer .footer-widget-title {
  color: #161616 !important;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

#footer.modern-footer .footer-widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--brand-yellow) !important;
}

#footer.modern-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer.modern-footer .footer-links li {
  margin-bottom: 12px;
}

#footer.modern-footer .footer-links li a {
  color: #475569 !important;
  text-decoration: none !important;
  transition: color 0.15s ease-out, padding-left 0.15s ease-out !important;
  display: inline-block;
  white-space: nowrap;
}

#footer.modern-footer .footer-links li a:hover {
  color: var(--brand-yellow) !important;
  padding-left: 4px;
}

#footer.modern-footer .footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer.modern-footer .footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  line-height: 1.5;
}

#footer.modern-footer .footer-contact-info li i {
  color: var(--brand-yellow) !important;
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

#footer.modern-footer .footer-contact-info li span,
#footer.modern-footer .footer-contact-info li a {
  color: #475569 !important;
  text-decoration: none !important;
  transition: color 0.15s ease-out !important;
}

#footer.modern-footer .footer-contact-info li a:hover {
  color: var(--brand-yellow) !important;
}

#footer.modern-footer .footer-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer.modern-footer .footer-hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e2e8f0 !important;
  font-size: 13.5px;
}

#footer.modern-footer .footer-hours-list li:last-child {
  border-bottom: none !important;
}

#footer.modern-footer .footer-hours-list .day {
  color: #475569 !important;
}

#footer.modern-footer .footer-hours-list .time {
  color: #161616 !important;
  font-weight: 700;
}

#footer.modern-footer .footer-hours-list .time.closed {
  color: #ef4444 !important;
}

/* Copyright Sub-Footer Bar */
#footer.modern-footer .footer-copyright-bar {
  background: #f8fafc !important;
  padding: 22px 0;
  border-top: 1px solid #e2e8f0 !important;
}

#footer.modern-footer .copyright-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

#footer.modern-footer .copyright-text {
  margin: 0 auto;
  font-size: 13px;
  color: #64748b !important;
  text-align: center !important;
}

#footer.modern-footer .copyright-text a {
  color: var(--brand-yellow) !important;
  text-decoration: none !important;
  transition: color 0.15s ease-out !important;
  font-weight: 700;
}

#footer.modern-footer .copyright-text a:hover {
  color: var(--brand-yellow-hover) !important;
}

#footer.modern-footer .copyright-text a i {
  color: var(--brand-yellow) !important;
  margin-right: 4px;
}

/* --------------------------------------------------------------------------
   9. Ultra-Modern Glassmorphism Lightbox Modal & Native Drag Mechanics
   -------------------------------------------------------------------------- */
.modern-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(16, 16, 16, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
}

.modern-lightbox-modal:active {
  cursor: grabbing;
}

.modern-lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content-wrapper {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.94);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modern-lightbox-modal.active .lightbox-content-wrapper {
  transform: scale(1);
}

.lightbox-main-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  will-change: transform, opacity;
}

.lightbox-caption-bar {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #ffffff;
}

.lightbox-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0;
  text-transform: uppercase;
}

.lightbox-counter {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.lightbox-close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 100000;
}

.lightbox-close-btn:hover {
  background: var(--brand-yellow);
  border-color: var(--brand-yellow);
  transform: scale(1.1);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 100000;
}

.lightbox-nav-btn.prev {
  left: 40px;
}

.lightbox-nav-btn.next {
  right: 40px;
}

.lightbox-nav-btn:hover {
  background: var(--brand-yellow);
  border-color: var(--brand-yellow);
  transform: translateY(-50%) scale(1.1);
}

/* --------------------------------------------------------------------------
   Mobil Navigation Drawer & Hamburger Toggle System (Global Scope)
   -------------------------------------------------------------------------- */
.mobile-menu-toggle-btn {
  display: none; /* Hidden by default on Desktop (> 991px) */
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 24px;
  padding: 6px 10px;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 1001;
}

body.is-scrolled .mobile-menu-toggle-btn {
  color: #161616 !important;
}

/* Mobile Navigation Drawer System */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: #ffffff;
  z-index: 999999;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-nav-drawer.active {
  transform: translateX(0);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 16, 16, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--brand-border-light);
}

.mobile-drawer-brand img {
  height: 40px;
  width: auto;
}

.mobile-drawer-close-btn {
  background: transparent;
  border: none;
  font-size: 32px;
  color: #161616;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  transition: color 0.2s ease;
}

.mobile-drawer-close-btn:hover {
  color: var(--brand-yellow);
}

.mobile-drawer-body {
  padding: 20px 24px;
  flex-grow: 1;
}

.mobile-drawer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-drawer-links > li {
  border-bottom: 1px solid #f1f5f9;
}

.mobile-drawer-links > li > a {
  display: block;
  padding: 14px 0;
  color: #161616;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.mobile-drawer-links > li.active > a,
.mobile-drawer-links > li > a:hover {
  color: var(--brand-yellow) !important;
}

.mobile-sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  color: #161616;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  user-select: none;
}

.mobile-sub-toggle i {
  transition: transform 0.3s ease;
}

.mobile-sub-toggle.active i {
  transform: rotate(180deg);
  color: var(--brand-yellow);
}

.mobile-sub-menu {
  list-style: none;
  padding: 0 0 10px 16px;
  margin: 0;
  display: none;
}

.mobile-sub-menu.open {
  display: block;
}

.mobile-sub-menu li a {
  display: block;
  padding: 10px 0;
  color: #475569;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.mobile-sub-menu li a:hover {
  color: var(--brand-yellow) !important;
}

.mobile-drawer-footer {
  padding: 20px 24px 30px 24px;
  border-top: 1px solid var(--brand-border-light);
}

.mobile-drawer-footer .btn-brand-primary {
  width: 100% !important;
  justify-content: center !important;
}

/* --------------------------------------------------------------------------
   Responsive Rules (Master Mobile & Tablet System <= 991px)
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .gallery-carousel-slide {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media (max-width: 991px) {
  /* 1. Mobile Header & Navigation */
  .modern-navbar {
    padding: 12px 0;
  }
  .modern-brand img {
    height: 38px;
  }
  .modern-nav-links {
    display: none !important;
  }
  .mobile-menu-toggle-btn {
    display: inline-flex !important;
  }

  /* 2. Hero Slider Section (Refined Mobile Bottom Control Bar) */
  .hero-slider-section {
    height: 520px !important;
    min-height: 520px !important;
  }
  .hero-content-container {
    padding-top: 40px !important;
    padding-bottom: 75px !important;
  }
  .hero-caption {
    max-width: 100%;
    padding-right: 0 !important;
  }
  .hero-title {
    font-size: 27px !important;
    line-height: 1.22 !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 12px !important;
  }
  .hero-subtitle {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 20px !important;
  }
  .hero-btn-group {
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    gap: 10px !important;
  }
  .btn-brand-primary,
  .btn-brand-outline {
    width: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 20px !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    border-radius: 4px !important;
  }
  .hero-controls {
    position: absolute !important;
    left: 20px !important;
    right: 20px !important;
    bottom: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: auto !important;
    gap: 0 !important;
    z-index: 10 !important;
  }
  .hero-indicators {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
  }
  .hero-dot {
    width: 20px !important;
    height: 3.5px !important;
    border-radius: 2px !important;
  }
  .hero-dot.active {
    width: 38px !important;
  }
  .hero-arrows {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }
  .hero-arrow-btn {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    font-size: 14px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
  }
  .hero-drag-hint {
    display: none !important;
  }

  /* 3. Section Headers & Subtitles */
  .modern-section-header {
    margin-bottom: 30px !important;
  }
  .modern-section-subtitle {
    font-size: 11.5px !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 6px !important;
  }
  .modern-section-title {
    font-size: 23px !important;
    letter-spacing: -0.3px !important;
  }

  /* 4. Features Section */
  .modern-features-section {
    padding: 45px 0 !important;
  }
  .modern-feature-card {
    padding: 24px 20px !important;
    margin-bottom: 16px !important;
  }
  .feature-icon-wrapper {
    width: 46px !important;
    height: 46px !important;
    font-size: 19px !important;
    margin-bottom: 16px !important;
  }
  .feature-card-title {
    font-size: 16px !important;
    margin-bottom: 8px !important;
  }
  .feature-card-desc {
    font-size: 13.5px !important;
    line-height: 1.55 !important;
  }

  /* 5. Bilgi Portalı Carousel Section */
  .modern-portal-section {
    padding: 50px 0 !important;
  }
  .portal-carousel-slide {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .modern-portal-card {
    height: auto !important;
    min-height: 380px !important;
  }
  .portal-card-thumb {
    height: 180px !important;
  }
  .portal-card-body {
    padding: 20px 18px !important;
  }
  .portal-card-title {
    font-size: 16px !important;
    height: auto !important;
    max-height: 46px !important;
    margin-bottom: 8px !important;
  }
  .portal-card-desc {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
    height: auto !important;
    max-height: 60px !important;
    margin-bottom: 16px !important;
  }
  .portal-carousel-controls {
    margin-top: 24px !important;
    gap: 14px !important;
  }
  .portal-nav-btn {
    width: 42px !important;
    height: 42px !important;
    font-size: 15px !important;
  }

  /* 6. Photo Gallery Carousel Section (Overlay Always Visible on Mobile) */
  .modern-gallery-section {
    padding: 50px 0 !important;
  }
  .gallery-carousel-slide {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .modern-gallery-card {
    height: 260px !important;
  }
  .modern-gallery-card .gallery-card-overlay {
    opacity: 1 !important;
    background: linear-gradient(
      180deg,
      rgba(22, 22, 22, 0.15) 0%,
      rgba(22, 22, 22, 0.85) 100%
    ) !important;
    padding: 20px !important;
  }
  .modern-gallery-card .gallery-card-icon {
    width: 42px !important;
    height: 42px !important;
    font-size: 17px !important;
    margin-bottom: 12px !important;
    transform: translateY(0) !important;
  }
  .modern-gallery-card .gallery-card-title {
    font-size: 15px !important;
    transform: translateY(0) !important;
  }
  .gallery-carousel-controls {
    margin-top: 24px !important;
    gap: 14px !important;
  }
  .gallery-nav-btn {
    width: 42px !important;
    height: 42px !important;
    font-size: 15px !important;
  }

  /* 7. Lightbox Popup Modal */
  .lightbox-content-wrapper {
    max-width: 95vw !important;
    max-height: 80vh !important;
  }
  .lightbox-main-img {
    max-height: 60vh !important;
  }
  .lightbox-close-btn {
    top: 15px !important;
    right: 15px !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 20px !important;
  }
  .lightbox-nav-btn {
    width: 42px !important;
    height: 42px !important;
    font-size: 16px !important;
  }
  .lightbox-nav-btn.prev {
    left: 10px !important;
  }
  .lightbox-nav-btn.next {
    right: 10px !important;
  }
  .lightbox-caption-bar {
    margin-top: 10px !important;
  }
  .lightbox-title {
    font-size: 14px !important;
  }

  /* 8. CTA Clean Section */
  .modern-cta-clean {
    padding: 40px 0 !important;
  }
  .cta-clean-inner {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
  }
  .cta-clean-label {
    font-size: 11.5px !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 4px !important;
  }
  .cta-clean-heading {
    font-size: 21px !important;
    line-height: 1.35 !important;
  }
  .cta-clean-action {
    width: 100% !important;
  }
  .cta-clean-action .btn-brand-primary {
    width: 100% !important;
    justify-content: center !important;
  }

  /* 9. Corporate Footer Section Mobile Padding & Alignment */
  #footer.modern-footer .footer-primary-row {
    padding: 35px 0 15px 0 !important;
  }
  #footer.modern-footer .footer-primary-row .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  #footer.modern-footer .footer-primary-row .row {
    flex-direction: column !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  #footer .footer-widget,
  #footer.modern-footer .footer-widget {
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px 0 !important;
    margin-bottom: 18px !important;
  }
  #footer .footer-widget:last-child,
  #footer.modern-footer .footer-widget:last-child {
    margin-bottom: 5px !important;
  }
  #footer.modern-footer .footer-logo-img {
    max-height: 42px !important;
    max-width: 200px !important;
    margin-bottom: 12px !important;
  }
  #footer.modern-footer .footer-widget-title {
    font-size: 14px !important;
    margin-bottom: 12px !important;
    padding-bottom: 6px !important;
  }
  #footer.modern-footer .footer-links li {
    margin-bottom: 8px !important;
  }
  #footer.modern-footer .footer-contact-info li {
    margin-bottom: 8px !important;
  }
  #footer.modern-footer .footer-hours-list li {
    padding: 6px 0 !important;
    font-size: 13px !important;
  }
  .footer-partner-widget {
    margin-top: 15px !important;
    padding-top: 15px !important;
    text-align: center !important;
  }
  .footer-partner-img {
    max-height: 48px !important;
  }
  #footer.modern-footer .footer-copyright-bar {
    padding: 16px 0 !important;
  }
  #footer.modern-footer .footer-copyright-bar .container {
    padding-left: 20px !important;
    padding-right: 60px !important;
  }
  #footer.modern-footer .copyright-text {
    font-size: 12px !important;
    line-height: 1.5 !important;
    text-align: center !important;
  }

  /* 10. Global Floating Fixed Scroll-To-Top Button */
  .modern-floating-scroll-top {
    bottom: 20px !important;
    right: 20px !important;
    width: 42px !important;
    height: 42px !important;
    font-size: 16px !important;
  }
}

/* --------------------------------------------------------------------------
   10. Inner Page Hero & Breadcrumb System
   -------------------------------------------------------------------------- */
.modern-page-hero {
  position: relative;
  background: linear-gradient(135deg, #161616 0%, #262626 100%);
  padding: 130px 0 60px 0;
  color: #ffffff;
  border-bottom: 1px solid var(--brand-border-light);
}

.page-hero-content {
  text-align: left;
}

.page-hero-subtitle {
  color: var(--brand-yellow);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}

.page-hero-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.modern-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13.5px;
}

.modern-breadcrumb li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.modern-breadcrumb li a:hover {
  color: var(--brand-yellow);
}

.modern-breadcrumb li span {
  color: rgba(255, 255, 255, 0.35);
}

.modern-breadcrumb li.active {
  color: var(--brand-yellow);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   11. Hakkımızda Page Main Content Minimal Styling
   -------------------------------------------------------------------------- */
.modern-about-minimal {
  padding: 85px 0;
  background-color: #ffffff;
}

.about-text-content .about-lead {
  font-size: 17.5px;
  font-weight: 600;
  line-height: 1.65;
  color: #161616;
  margin-bottom: 18px;
}

.about-text-content .about-body {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 26px;
}

.about-segment-grid {
  background: var(--brand-bg-subtle);
  border: 1px solid var(--brand-border-light);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 28px;
}

.segment-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  font-size: 14.5px;
  font-weight: 700;
  color: #161616;
}

.segment-badge i {
  color: var(--brand-yellow);
  font-size: 16px;
}

.about-catalog-action {
  margin-top: 10px;
}

.portal-link-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  margin-bottom: 8px;
  background: #ffffff;
  border: 1px solid var(--brand-border-light);
  border-radius: 6px;
  color: #161616 !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.25s ease;
}

.portal-link-item:hover {
  background: var(--brand-yellow-light);
  border-color: var(--brand-yellow);
  color: var(--brand-yellow) !important;
  transform: translateX(4px);
}

.portal-link-item i {
  color: var(--brand-yellow);
  font-size: 15px;
  transition: transform 0.25s ease;
}

.portal-link-item:hover i {
  transform: translateX(3px);
}

.reasons-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reasons-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--brand-bg-subtle);
  border: 1px solid var(--brand-border-light);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #161616;
}

.reasons-list li i {
  color: var(--brand-yellow);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Minimal Info Cards (Right Column) */
.about-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.minimal-info-card {
  background: #ffffff;
  border: 1px solid var(--brand-border-light);
  border-radius: 8px;
  padding: 26px 24px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.minimal-info-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-yellow);
}

.minimal-info-card .card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--brand-yellow-light);
  color: var(--brand-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.minimal-info-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: #161616;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.minimal-info-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

@media (max-width: 991px) {
  .modern-page-hero {
    padding: 100px 0 35px 0 !important;
  }
  .page-hero-title {
    font-size: 28px !important;
    margin-bottom: 8px !important;
  }
  .modern-about-minimal {
    padding: 45px 0 !important;
  }
  .about-text-content .about-lead {
    font-size: 15.5px !important;
  }
  .about-text-content .about-body {
    font-size: 14px !important;
  }
  .about-segment-grid {
    padding: 16px 18px !important;
  }
  .about-catalog-action {
    margin-top: 15px !important;
    margin-bottom: 25px !important;
  }
  .minimal-info-card {
    padding: 20px 18px !important;
  }
}

@media (max-width: 575px) {
  .hero-slider-section {
    height: 480px !important;
    min-height: 480px !important;
  }
  .hero-title {
    font-size: 24px !important;
  }
  .hero-subtitle {
    font-size: 13.5px !important;
  }
  .modern-section-title {
    font-size: 21px !important;
  }
  .modern-gallery-card {
    height: 230px !important;
  }
}

/* --------------------------------------------------------------------------
   12. Floating Quick Communication Widget (Bottom-Left)
   -------------------------------------------------------------------------- */
.modern-quick-contact {
  position: fixed;
  bottom: 35px;
  left: 35px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-contact-item {
  position: relative;
  display: flex;
  align-items: center;
}

.quick-btn {
  width: 48px;
  height: 48px;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 20px;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18) !important;
  border: none !important;
}

.quick-btn-wa {
  background: #25D366 !important;
}

.quick-btn-phone {
  background: var(--brand-yellow) !important;
}

.quick-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28) !important;
  color: #ffffff !important;
}

/* Desktop Hover Tooltip Card */
.quick-card {
  position: absolute;
  left: 62px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  background: #ffffff;
  border: 1px solid var(--brand-border-light);
  border-radius: 8px;
  padding: 10px 16px;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Card Left Pointer Arrow */
.quick-card::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-left: 1px solid var(--brand-border-light);
  border-bottom: 1px solid var(--brand-border-light);
}

.quick-card-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--brand-text-muted);
}

.quick-card-num {
  font-size: 13.5px;
  font-weight: 800;
  color: #161616;
}

/* Show Card on Desktop Hover Only */
@media (min-width: 992px) {
  .quick-contact-item:hover .quick-card {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
  }
}

/* Mobile Adjustments & Disable Hover Card */
@media (max-width: 991px) {
  .modern-quick-contact {
    bottom: 20px !important;
    left: 20px !important;
    gap: 10px !important;
  }
  .quick-btn {
    width: 42px !important;
    height: 42px !important;
    font-size: 18px !important;
  }
  .quick-card {
    display: none !important; /* Cancelled completely on mobile */
  }
}

/* --------------------------------------------------------------------------
   13. Modern Bayi & Dağıtım Haritası Section (.modern-dealer-map-section)
   -------------------------------------------------------------------------- */
.modern-dealer-map-section {
  background-color: #ffffff;
  padding: 85px 0;
  border-bottom: 1px solid var(--brand-border-light);
}

.dealer-map-wrapper {
  /* background: #ffffff;
  border: 1px solid var(--brand-border-light);
  border-radius: 12px; */
  overflow: hidden;
  /* padding: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); */
}

.dealer-map-wrapper [data-bayimapp-embed],
.dealer-map-wrapper iframe {
  width: 100% !important;
  border-radius: 8px;
  border: none !important;
}

@media (max-width: 991px) {
  .modern-dealer-map-section {
    padding: 50px 0 !important;
  }
  .dealer-map-wrapper {
    padding: 8px !important;
    border-radius: 8px !important;
  }
}

/* --------------------------------------------------------------------------
   16. Contact Page - Fullwidth Map & 4 Separate Cards Grid
   -------------------------------------------------------------------------- */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 10px;
}

@media (max-width: 991px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 30px 24px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.contact-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
  border-color: var(--brand-yellow);
}

.contact-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--brand-yellow-light);
  color: var(--brand-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.contact-card-item:hover .contact-card-icon {
  background: var(--brand-yellow);
  color: #ffffff;
}

.contact-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #161616;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-card-text {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}

.contact-card-text a {
  color: #161616;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-card-text a:hover {
  color: var(--brand-yellow);
}

/* Full Width Map Section directly flush above CTA / Footer */
.modern-fullwidth-map {
  width: 100%;
  height: 480px;
  margin-bottom: 0;
  position: relative;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
}

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