﻿@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');
/* ================================================================
   SEMİH YILMAZTTÜRK HOLDİNG — TURNER CONSTRUCTION FULL CLONE CSS
   ================================================================ */

/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* Global overflow fix — prevents horizontal scrolling */
html { overflow-x: hidden !important; max-width: 100% !important; }
body { overflow-x: hidden !important; max-width: 100% !important; }

:root {
  --black:        #1b1c1e;
  --white:        #fff;
  --off-white:    #f5f5f5;
  --blue:         #0B5DD0;
  --blue-dark:    #0946a8;
  --grey-text:    rgba(255, 255, 255, 0.75);
  --border:       rgba(255,255,255,0.12);
  --border-light: rgba(255,255,255,0.14);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  color: #fff;
  background: #060709;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: #b0b0b0; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ─── UTILITY ─── */
.prel         { position: relative; }
.ov-hidden    { overflow: hidden; }
.f0           { font-size: 0; }
.inline_block { display: inline-block; vertical-align: top; }
.w-100        { width: 100%; }
.radius       { border-radius: 8px; }
.v-top        { vertical-align: top; }
.vm           { vertical-align: middle; }
.block        { display: block; }
.desktop-only { display: block; }
.mobile-only  { display: none; }
.no-mar       { margin: 0 !important; }

/* Column grid */
.col-d-25  { width: 25%; }
.col-d-33  { width: 33.333%; }
.col-d-36  { width: 36%; }
.col-d-50  { width: 50%; }
.col-d-64  { width: 64%; }
.col-d-67  { width: 66.666%; }
.col-d-75  { width: 75%; }
.col-d-100 { width: 100%; }

/* ─── TYPOGRAPHY ─── */
.title { font-weight: 700; line-height: 1.05; letter-spacing: -0.025em; }
.fs-90 { font-size: clamp(40px, 6.5vw, 90px); }
.fs-70 { font-size: clamp(32px, 5vw, 70px); }
.fs-45 { font-size: clamp(22px, 3.2vw, 45px); }
.fs-40 { font-size: clamp(20px, 2.8vw, 40px); }
.fs-30 { font-size: clamp(16px, 2vw, 30px); }
.para { line-height: 1.55; font-weight: 400; }
.para.fs-32 { font-size: clamp(16px, 2.2vw, 32px); }
.para.fs-23 { font-size: clamp(14px, 1.6vw, 23px); }
.para.fs-20 { font-size: clamp(13px, 1.3vw, 20px); }
.para.fs-19 { font-size: clamp(13px, 1.2vw, 19px); }
.para.fs-16 { font-size: clamp(11px, 1vw, 16px); }
.para.upper { text-transform: uppercase; letter-spacing: 0.08em; }
.para.light { opacity: 0.7; }
.txt-24 { font-size: clamp(14px, 1.5vw, 24px); line-height: 1.5; }

.section-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--grey-text); display: block; margin-bottom: 16px;
}
.white  { color: var(--white) !important; }
.small-link {
  font-size: 13px; font-weight: 600; color: var(--black);
  text-decoration: underline; transition: color 0.25s ease;
}
.small-link:hover { color: var(--blue); }

/* ─── BUTTONS ─── */
.btn-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--grey-text); position: relative;
  transition: color 0.3s ease;
}
.btn-link:hover {
  color: var(--black);
}
.btn-link.white {
  color: rgba(255, 255, 255, 0.7);
}
.btn-link.white:hover {
  color: var(--white);
}

.btn-link::after,
.proj-show-more::after {
  content: '' !important;
  display: inline-block !important;
  width: 35px;
  height: 14px;
  margin-left: 10px;
  background-image: url('/images/btn-arrow.svg'), url('/images/btn-arrow.svg');
  background-position: 0px center, -45px center;
  background-repeat: no-repeat, no-repeat;
  background-size: 35px 14px;
  transition: background-position 1.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: invert(72%) sepia(57%) saturate(456%) hue-rotate(6deg) brightness(92%) contrast(85%) !important; /* Gold arrow */
  vertical-align: middle;
  flex-shrink: 0;
}

.btn-link:hover::after,
.proj-show-more:hover::after {
  background-position: 45px center, 0px center;
}

.btn-link img,
.proj-show-more img {
  display: none !important;
}

/* ─── GRID LINES ─── */
.grid-lines,
.line-25,
.line-50 {
  display: none !important;
}

/* ─── WRAPPERS ─── */
.wrapper-1419 { max-width: 1419px; margin: 0 auto; padding: 0 40px; }
.home-wrapper  { padding: 0 40px; }
.home-wrapper.w2100 { max-width: 2100px; margin: 0 auto; }
.width-960 { max-width: 960px; margin: 0 auto; }

/* ═══════════════════════════════════════
   MOBILE GALLERY POPUP
═══════════════════════════════════════ */
.mobile-gallery-popup-wrap {
  position: fixed; inset: 0; z-index: 980;
  background: var(--white);
  transform: translateY(-100%);
  transition: transform 0.65s var(--ease-out);
  overflow-y: auto;
}
.mobile-gallery-popup-wrap.is-open { transform: translateY(0); }
.gallery-popup-content-wrap { min-height: 100vh; display: flex; flex-direction: column; }
.popup-txt-content { padding: 40px; flex: 1; }

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.header,
#header,
header.header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              background-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              background-image 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              backdrop-filter 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              -webkit-backdrop-filter 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Ensure ZERO border/line and transparent gradient when top */
.header:not(.is-scrolled),
#header:not(.is-scrolled),
header.header:not(.is-scrolled) {
  height: 125px !important;
  background-color: transparent !important;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.kk-subbar, .kd-subbar, .at-subbar, .pg-subbar, .tg-subbar {
  border-top: none !important;
  border-bottom: none !important;
}

/* Scrolled state: SOLID CRISP LUXURY DARK BACKGROUND */
.header.is-scrolled,
#header.is-scrolled,
header.header.is-scrolled,
header#header.is-scrolled {
  height: 92px !important;
  background-color: #060709 !important;
  background-image: none !important;
  background: #060709 !important;
  backdrop-filter: blur(24px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(190%) !important;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.95) !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.35) !important;
}

.header-holder {
  display: flex; align-items: center; justify-content: space-between; height: 100%;
  padding: 0 40px; position: relative;
  flex-wrap: nowrap !important;
}


/* Logo */
.header-logo-col { flex-shrink: 0; margin-left: 0; margin-right: 24px; }
.header-logo-img { height: 115px; width: auto; display: block; max-width: 270px; object-fit: contain; transition: height 0.3s ease; }
.light-header { display: block !important; }
.dark-header  { display: none !important; }
.header.is-hero .light-header { display: block !important; }
.header.is-hero .dark-header  { display: none !important; }
.header.is-hero .header-logo-img { filter: none !important; }
.header.is-scrolled .header-logo-img { height: 85px; }

/* Desktop nav */
.header-nav-col { flex: 1; display: flex; justify-content: center; height: 100%; align-items: stretch; }
.header-ul { display: flex; gap: 4px; height: 100%; align-items: stretch; }
.header-li { position: relative; display: flex; align-items: stretch; }
.header-link {
  display: flex; align-items: center; padding: 0 18px;
  font-size: 15px; font-weight: 600; color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.01em; transition: color 0.2s ease;
  white-space: nowrap;
  position: relative;
}
.header-link::after {
  content: '';
  position: absolute;
  bottom: 22px;
  left: 18px;
  right: 18px;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}
.header-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.header.is-hero .header-link { color: rgba(255, 255, 255, 0.92); }
.header-link:hover { color: #d4af37; }
.header.is-hero .header-link:hover { color: #d4af37; }


/* Submenu dropdown */
.submenu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: max-content; min-width: 580px; background: var(--black);
  border-radius: 12px; padding: 32px 40px;
  opacity: 0; pointer-events: none; visibility: hidden;
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out), visibility 0s linear 0.25s;
  z-index: 200;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  height: 275px;
  box-sizing: border-box;
}
.submenu::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 40px;
  background: transparent;
}
.header-li:hover .submenu, .header-li.has-submenu:hover .submenu {
  opacity: 1; pointer-events: all; visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out), visibility 0s linear 0s;
}
.submenu-holder { display: flex; gap: 40px; height: 100%; align-items: flex-start; }
.submenu-left { width: 230px; flex-shrink: 0; display: flex; flex-direction: column; justify-content: flex-start; }
.submenu-title {
  font-size: 11px; font-weight: 700; color: #d4af37;
  margin-bottom: 12px; letter-spacing: 0.1em; text-transform: uppercase;
}
.submenu-title.white { color: var(--white); }
.submenu-left-description .txt-24 { color: rgba(255,255,255,0.75); margin-bottom: 14px; font-size: 14px; line-height: 1.5; }
.submenu-left .btn-link { margin-top: 4px; }
.submenu-center { flex: 1; height: 100%; }
.submenu-center.w-75 { flex: 0 0 75%; }
.submenu-title-holder { margin-bottom: 16px; }
.submenu-col-group { display: flex; gap: 32px; height: 100%; }
.submenu-col-third { flex: 1; display: flex; flex-direction: column; height: 100%; }
.submenu-col-quarter { flex: 0 0 180px; }
.submenu-ul-tag {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-height: 165px;
  column-gap: 32px;
  row-gap: 10px;
}
.submenu-ul-tag li { margin-bottom: 0; white-space: nowrap; }
.submenu-ul-tag a {
  font-size: 15px; color: rgba(255,255,255,0.78);
  transition: all 0.2s ease;
  font-weight: 500;
  display: inline-block;
}
.submenu-ul-tag a:hover { color: #d4af37; padding-left: 4px; }
.submenu-ul-tag.two-col-ul { column-count: 2; column-gap: 20px; }
.submenu-right { width: 200px; flex-shrink: 0; }
.submenu-feat-wrapper { margin-top: 12px; }
.img-wrapper { display: block; position: relative; overflow: hidden; }
.aspect-ratio-400-240 { aspect-ratio: 400/240; }
.aspect-ratio-400-240 img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.submenu-feat-img.to-be-scaled { display: block; border-radius: 6px; overflow: hidden; margin-bottom: 12px; }
.submenu-feat-img.to-be-scaled img { transition: transform 0.6s var(--ease-out); }
.submenu-feat-img.to-be-scaled:hover img { transform: scale(1.05); }
.submenu-feat .title { color: rgba(255,255,255,0.9); font-size: 18px; font-weight: 700; line-height: 1.3; }
.submenu-feat.w33 { display: inline-block; width: 32%; margin-right: 1%; vertical-align: top; }

/* Header right */
.header-menu-col { display: flex; align-items: center; margin-left: auto; gap: 0; flex-shrink: 0; }
.header-menu-contact {
  padding: 12px 20px; font-size: 13px; font-weight: 600;
  color: var(--white); cursor: pointer;
  transition: color 0.2s ease;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
}
.header-menu-contact:hover { color: #d4af37; }
.header.is-hero .header-menu-contact { color: var(--white); border-left-color: rgba(255, 255, 255, 0.15); }
.header-menu-contact a { font-size: 13px; font-weight: 600; color: inherit; }
.header-menu-icon { display: none; margin-left: 16px; cursor: pointer; padding: 8px; }
.menu-button { display: flex; flex-direction: column; gap: 5px; width: 22px; }
.menu-button-line { display: block; width: 22px; height: 2px; background: var(--white); transition: all 0.3s ease; }
.header.is-hero .menu-button-line { background: var(--white); }

/* ═══════════════════════════════════════
   FULL-SCREEN MEGAMENU OVERLAY
═══════════════════════════════════════ */
.megamenu {
  position: fixed; inset: 0; background: #0b0c0e;
  z-index: 999999 !important; display: flex; flex-direction: column;
  transform: translateY(-100%); opacity: 0;
  transition: transform 0.55s var(--ease-out), opacity 0.4s ease;
  pointer-events: none;
}
.megamenu.is-open { transform: translateY(0); opacity: 1; pointer-events: all; }
.megamenu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 40px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); flex-shrink: 0;
}
.megamenu-logo { display: flex; align-items: center; }

.mega-desktop-logo { height: 120px; width: auto; object-fit: contain; }
.mega-mobile-logo  { height: 48px; width: auto; object-fit: contain; display: none; }
.megamenu-search { display: none !important; }
.megamenu-close {
  width: 40px; height: 40px; display: flex; align-items: center;
  justify-content: center; border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%; transition: all 0.2s ease; flex-shrink: 0;
  background: rgba(212, 175, 55, 0.15);
  cursor: pointer !important;
  z-index: 1000000 !important;
}
.megamenu-close:hover { background: #d4af37; border-color: #d4af37; }
.megamenu-close-holder { position: relative; width: 16px; height: 16px; }
.mega-close-arm {
  position: absolute; top: 50%; left: 50%;
  width: 16px; height: 1.5px; background: #fff; transform-origin: center;
}
.mega-close-arm:first-child { transform: translate(-50%,-50%) rotate(45deg); }
.mega-close-arm:last-child  { transform: translate(-50%,-50%) rotate(-45deg); }
.megamenu-close:hover .mega-close-arm { background: #000; }
.mobile-gallery-close .mega-close-arm { background: #fff; }

.megamenu-body { display: flex; flex: 1; overflow: hidden; }
.megamenu-nav { width: 55%; padding: 60px 40px; overflow-y: auto; border-right: 1px solid rgba(255, 255, 255, 0.06); }
.menu-items-holder { margin-bottom: 50px; }
.menu-item { margin-bottom: 20px; }
.menu-item a { font-weight: 700; color: #fff; transition: color 0.25s ease; line-height: 1.1; }
.menu-item a:hover { color: #d4af37; }
.dropdown-header-menu-item { display: flex; align-items: center; gap: 12px; }
.mega-arr {
  width: 32px; height: 32px; display: inline-flex;
  align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 50%; flex-shrink: 0;
  transition: all 0.2s ease;
  background: transparent;
}
.mega-arr:hover { background: rgba(255, 255, 255, 0.08); border-color: #d4af37; }
.mega-arr img { width: 12px; height: 8px; transition: transform 0.3s ease; filter: brightness(0) invert(1); }
.menu-item-holder.open .mega-arr img { transform: rotate(180deg); }

.menu-secondary { display: flex; gap: 60px; padding-top: 40px; border-top: 1px solid rgba(255, 255, 255, 0.06); }
.secondary-menu-ul { display: flex; flex-direction: column; gap: 10px; }
.secondary-menu-ul a { font-size: 13px; color: rgba(255, 255, 255, 0.5); transition: color 0.25s ease; }
.secondary-menu-ul a:hover { color: #fff; }

.megamenu-projects { flex: 1; padding: 60px 40px; display: flex; flex-direction: column; background: #0d0e10; }
.megamenu-proj-holder {}
.mega-proj-item { margin-top: 20px; }
.mega-proj-item .to-be-scaled { display: block; border-radius: 8px; overflow: hidden; margin-bottom: 16px; }
.mega-proj-item img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.mega-proj-item .to-be-scaled:hover img { transform: scale(1.04); }
.mega-proj-item .title { font-size: 22px; font-weight: 700; color: #fff; }

.megamenu-footer {
  margin-top: auto; padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.mega-footer-contact { font-size: 16px; font-weight: 600; color: #d4af37; transition: opacity 0.2s ease; }
.mega-footer-contact:hover { opacity: 0.7; }
.mega-footer-socials { display: flex; gap: 20px; }
.mega-footer-socials .small-link { font-size: 13px; font-weight: 600; color: rgba(255, 255, 255, 0.6); }
.mega-footer-socials .small-link:hover { color: #fff; }
.mega-all-projs .small-link { font-size: 13px; color: rgba(255, 255, 255, 0.6); }
.mega-all-projs .small-link:hover { color: #fff; }

/* Megamenu mobile submenu dropdown */
.submenu-col { margin-bottom: 20px; }
.contact-popup {
  position: fixed; top: 0; right: -100%;
  width: min(700px, 100%); height: 100%;
  background: rgba(10, 11, 13, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 960;
  overflow-y: auto;
  transition: right 0.55s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.55s;
  display: flex; flex-direction: column;
  border-left: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.7);
  visibility: hidden;
}
.contact-popup.is-open { right: 0; visibility: visible; }
.contact-popup-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.65);
  z-index: 955; opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease; backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.contact-popup-overlay.is-visible { opacity: 1; pointer-events: all; }
.contact-popup-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 40px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); flex-shrink: 0;
}
.specs-title { font-size: 13px; font-weight: 700; color: #d4af37; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-header-close-hold { display: flex; align-items: center; gap: 20px; }
.specs-close {
  width: 36px; height: 36px; border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s ease;
}
.specs-close:hover { background: #d4af37; border-color: #d4af37; transform: rotate(90deg); }
.specs-close:hover .mega-close-arm { background: #0a0b0d; }
.specs-close .mega-close-arm { background: var(--white); transition: background 0.3s; }
.contact-popup-body { flex: 1; display: flex; flex-direction: column; padding: 40px; gap: 32px; overflow-y: auto; }
.contact-content-col-hold { display: flex; flex-direction: column; gap: 24px; margin-bottom: 16px; }
.contact-txt-col .para { color: rgba(255, 255, 255, 0.7); line-height: 1.6; font-size: 15px; }
.contact-connect-col {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 24px;
}
.contact-block-row { margin-bottom: 0; }
.contact-block-row .section-label { color: #d4af37; font-weight: 700; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.contact-block-row .para { color: rgba(255, 255, 255, 0.85); font-size: 14.5px; line-height: 1.5; }
.contact-block-row a { display: inline-flex; align-items: center; font-size: 15px; color: #fff; margin-top: 8px; font-weight: 600; text-decoration: none; transition: color 0.2s; }
.contact-block-row a:hover { color: #d4af37; }
.contact-info-col { display: flex; flex-direction: column; gap: 24px; }
.contact-info-col .contact-block-row {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 24px;
  margin-top: 0 !important;
}
.contact-info-col .map-container {
  border: 1px solid rgba(212, 175, 55, 0.15) !important;
  transition: border-color 0.3s;
}
.contact-info-col .map-container:hover {
  border-color: rgba(212, 175, 55, 0.4) !important;
}
.contact-popup-form {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 28px;
}
.form-field { margin-bottom: 24px; }
.form-field.col-field { display: inline-block; width: calc(50% - 12px); }
.form-field.col-field.right { margin-right: 24px; }
.input-label {
  display: block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55); margin-bottom: 8px;
}
.input-field {
  width: 100%; padding: 12px 16px; background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 6px;
  color: var(--white); font-size: 14.5px; font-family: inherit;
  outline: none; transition: all 0.3s ease;
}
.input-field:focus {
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.03);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.12);
}
.input-field.textarea { min-height: 110px; resize: none; }
.show-error { font-size: 11px; color: #ff4d4d; margin-top: 4px; }
#success { display: none; color: #2ecc71; font-weight: 600; margin-top: 16px; font-size: 14px; }
#menu-contact-send { margin-top: 12px; }
.proj-show-more {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: #1b1c1e; cursor: pointer;
  background: linear-gradient(135deg, #d4af37, #b89220);
  border: none; border-radius: 6px; padding: 14px 28px;
  width: 100%; transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}
.proj-show-more img { filter: brightness(0); transition: transform 0.3s; }
.proj-show-more:hover {
  background: linear-gradient(135deg, #f3d060, #d4af37);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
  transform: translateY(-1px);
}
.proj-show-more:hover img { transform: translateX(4px); }

/* ═══════════════════════════════════════
   GLOBAL GRID LINES (DECORATIVE)
═══════════════════════════════════════ */
.grid-lines.gray .line-25,
.grid-lines.gray .line-50 {
  border-color: rgba(0,0,0,0.055);
}
.line-25 { border-color: rgba(0,0,0,0.055); }
.line-50 { border-color: rgba(0,0,0,0.055); }

/* ═══════════════════════════════════════
   TOTAL WRAPPER
═══════════════════════════════════════ */
.total-wrapper { position: relative; z-index: 2; }

/* ═══════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ */
.home-hero-section { position: relative; z-index: 1; }
.home-hero-holder {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: flex-end; overflow: hidden;
  background: #0d0e10;
}
.home-hero-img {
  position: absolute; inset: -10% 0; will-change: transform;
}
.home-hero-img video,
.home-hero-img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center center;
}
/* Dark overlay */
.home-hero-holder::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3)  0%,
    rgba(0,0,0,0.1) 35%,
    rgba(0,0,0,0.15) 60%,
    rgba(0,0,0,0.75) 85%,
    rgba(0,0,0,0.88) 100%
  );
}
/* Scroll indicator */
.scroll-down {
  position: absolute; bottom: 40px; right: 60px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  z-index: 10; opacity: 0;
  animation: fadeInUp 0.8s var(--ease-out) 1.8s forwards;
}
.scroll-down-txt {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  writing-mode: vertical-lr;
}
.scroll-down-line {
  display: block; width: 1px; height: 60px;
  background: rgba(255,255,255,0.3); overflow: hidden; position: relative;
}
.scroll-down-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 1px; height: 100%; background: var(--white);
  animation: scrollLineAnim 1.6s ease-in-out infinite;
}
.scroll-down img { width: 12px; opacity: 0.7; }
@keyframes scrollLineAnim {
  0%   { top: -100%; }
  50%  { top: 0; }
  100% { top: 100%; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero content */
.hero-content {
  position: relative; z-index: 10;
  padding: 0 40px 80px;
  width: 100%;
}
.hero-title { max-width: 800px; }
.hero-title h1 { margin-bottom: 28px; }
.hero-title .btn-link { font-size: 14px; }

/* Hero grid lines */
.home-hero-holder .grid-lines { z-index: 5; }
.home-hero-holder .grid-lines .line-25,
.home-hero-holder .grid-lines .line-50 { border-color: rgba(255,255,255,0.06); }

/* ═══════════════════════════════════════
   CTA POPUP (FLYOUT PANEL)
═══════════════════════════════════════ */
.cta-popup {
  position: fixed !important; top: 0; right: 0;
  width: 100%; height: 100%; z-index: 800;
  transform: translateX(100%);
  transition: transform 0.65s var(--ease-out), visibility 0.65s;
  background: var(--black);
  overflow-y: auto; display: flex; flex-direction: column;
  visibility: hidden;
}
.cta-popup.is-open { transform: translateX(0); visibility: visible; }
.close-flyout {
  position: absolute; top: 28px; right: 28px; z-index: 10;
  width: 40px; height: 40px; display: flex;
  align-items: center; justify-content: center;
  border: 1px solid var(--border-light); border-radius: 50%;
  transition: all 0.2s ease;
}
.close-flyout:hover { background: rgba(255,255,255,0.1); }
.close-flyout img { width: 20px; }
.cta-popup-wrap { padding: 80px 40px 40px; flex: 1; }
.cta-close {
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 60px; transition: color 0.2s ease;
}
.cta-close::before {
  content: '←'; font-size: 16px; transition: transform 0.3s ease;
}
.cta-close:hover { color: var(--white); }
.cta-close:hover::before { transform: translateX(-4px); }
.cta-popup-holder { display: flex; gap: 2px; }
.cta-cols {
  flex: 1; background: rgba(255,255,255,0.04);
  border-radius: 8px; overflow: hidden; cursor: pointer;
  transition: background 0.3s ease;
}
.cta-cols:hover { background: rgba(255,255,255,0.08); }
.cta-col-open {
  padding: 32px; display: flex; align-items: center;
  justify-content: space-between; border-bottom: 1px solid var(--border-light);
}
.cta-col-open img { width: 24px; opacity: 0.7; transition: transform 0.3s ease; }
.cta-cols.expanded .cta-col-open img { transform: rotate(90deg); }
.cta-col-content { display: none; }
.cta-cols.expanded .cta-col-content { display: block; }
.cta-col-img img {
  width: 100%; height: 280px; object-fit: cover;
  border-radius: 0;
}
.cta-col-txt { padding: 32px; }
.cta-col-txt h2 { margin-bottom: 16px; }
.cta-col-txt .para { color: rgba(255,255,255,0.75); margin-bottom: 28px; }
.close-cta-block {
  position: fixed; inset: 0; z-index: -1;
}

/* ═══════════════════════════════════════
   ANIMATION SYSTEM
═══════════════════════════════════════ */
.anim-block .anim-elem {
  opacity: 0;
  transition: opacity 1.10s var(--ease-out), transform 1.25s var(--ease-out);
}
.anim-block .anim-elem.top   { transform: translateY(40px) skewY(1deg); }
.anim-block .anim-elem.left  { transform: translateX(-40px); }
.anim-block .anim-elem.right { transform: translateX(40px); }

.anim-block.is-visible .anim-elem { opacity: 1; transform: none; }

/* Stagger delays */
.anim-block.is-visible .anim-elem:nth-child(1) { transition-delay: 0s; }
.anim-block.is-visible .anim-elem:nth-child(2) { transition-delay: 0.1s; }
.anim-block.is-visible .anim-elem:nth-child(3) { transition-delay: 0.2s; }
.anim-block.is-visible .anim-elem:nth-child(4) { transition-delay: 0.3s; }
.anim-block.is-visible .anim-elem:nth-child(5) { transition-delay: 0.4s; }

/* Image zoom on hover */
.to-be-scaled { overflow: hidden; display: block; }
.to-be-scaled img { transition: transform 0.7s var(--ease-out); display: block; width: 100%; }
.to-be-scaled:hover img { transform: scale(1.04); }

/* Parallax images */
.img-parallax { overflow: hidden; }
.img-parallax img { will-change: transform; }
.aspect-ratio-880-688 {
  aspect-ratio: 880/688; display: block; width: 100%; overflow: hidden;
}
.aspect-ratio-880-688 img {
  width: 100%; height: 110%; object-fit: cover;
}

/* ═══════════════════════════════════════
   PINNED / NEWS SECTION
═══════════════════════════════════════ */
.pinned-with-title { padding: 120px 0 80px; background: #07080a !important; color: #ffffff !important; }
.pinned-section-title { margin-bottom: 60px; }
.pinned-section-title h2 { color: #ffffff !important; }
.home-innovation { position: relative; }
.innovation-big-col { padding-right: 40px; }
.innovation-big-col a.to-be-scaled { margin-bottom: 24px; }
.innovation-big-col img { width: 100%; height: 380px; object-fit: cover; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.innovation-big-col .title { margin: 20px 0 16px; color: #ffffff !important; }
.innovation-small-col {}
.accents-slider-wrapper { display: flex; flex-wrap: wrap; gap: 0; }
.accents-slider-item { padding: 16px; }
.accents-slider-item img { width: 100%; height: 200px; object-fit: cover; border-radius: 6px; margin-bottom: 14px; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.accents-slider-item .title { margin: 10px 0 10px; font-size: clamp(14px, 1.5vw, 22px); line-height: 1.3; color: #ffffff !important; }
.accents-slider-item .btn-link { font-size: 11px; color: #d4af37 !important; }

/* ═══════════════════════════════════════
   HOME OFFICE SECTION
═══════════════════════════════════════ */
.home-office { padding: 100px 0; position: relative; background: #07080a !important; color: #ffffff !important; }
.office-cols { align-items: center; }
.office-txt-col { padding-left: 60px; }
.office-txt-col .section-label { margin-bottom: 20px; color: #d4af37 !important; font-weight: 700; }
.office-txt-col .title { margin-bottom: 24px; color: #ffffff !important; }
.office-txt-col .para { color: rgba(255,255,255,0.75) !important; margin-bottom: 32px; }
.offices-cta { display: flex; align-items: center; gap: 40px; margin-top: 40px; }

/* ═══════════════════════════════════════
   HOME VISION SECTION
═══════════════════════════════════════ */
.home-vision-section { padding: 120px 0 80px; background: #07080a !important; color: #ffffff !important; }
.home-vision-section .section-label { color: #d4af37 !important; font-weight: 700; }
.home-vision-section .title { color: #ffffff !important; }
.home-vision-section .para { color: rgba(255,255,255,0.75) !important; }

/* ═══════════════════════════════════════
   OUR CULTURE / COMMITMENTS SECTION
═══════════════════════════════════════ */
/* Culture slider wrapper */
.txt-faq-cols { padding: 100px 0; background: #07080a !important; color: #ffffff !important; position: relative; }
.home-slider-txt-before { padding: 0 40px; margin-bottom: 60px; }
.home-slider-txt-before .title { margin-bottom: 24px; color: #ffffff !important; }
.home-slider-txt-before .para { color: rgba(255,255,255,0.75) !important; max-width: 700px; }

.home-commitments .home-wrapper { display: flex; gap: 40px; }
.commitments-small-col { background: #0c0d0f; padding: 40px 24px; border-radius: 12px; border: 1px solid rgba(212, 175, 55, 0.25); height: 440px; display: flex; flex-direction: column; justify-content: center; flex: 0 0 25%; min-width: 280px; }
.commitments-big-col { background: transparent; border-radius: 0; overflow: hidden; flex: 1; height: 440px; }

.block-slider-container { display: flex; flex-direction: column; gap: 12px; }
.blue-slider-drop-heading {
  display: none !important;
}
.blue-slider-controls-drop {
  display: flex !important;
  flex-direction: column;
  gap: 16px;
}
.blue-slider-controls-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 16px; border-radius: 6px; cursor: pointer;
  background: transparent;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
/* White indicator line on active row */
.blue-slider-controls-row::before {
  content: '';
  display: block;
  width: 14px;
  height: 2px;
  background: #d4af37;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 10px;
}
.blue-slider-controls-row.active::before {
  opacity: 1;
  transform: scaleX(1);
}

.blue-slider-controls-row:hover { background: rgba(255,255,255,0.06); }
.blue-slider-controls-row.active {
  background: transparent;
}

/* Index styling */
.blue-slider-index {
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 5px;
}
.blue-slider-controls-row.active .blue-slider-index {
  color: #d4af37;
  font-size: 15px;
  margin-top: 5px;
}

/* Sidebar item title styling */
.blue-slider-controls-row .title {
  color: rgba(255,255,255,0.6) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1.4 !important;
}
.blue-slider-controls-row.active .title {
  color: #ffffff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
}

/* Swiper (culture slider) */
.commitments-inner-txt { padding: 40px 40px 40px 40px; background: #0c0d0f !important; border-radius: 12px; border: 1px solid rgba(212,175,55,0.2) !important; box-shadow: 0 10px 30px rgba(0,0,0,0.3); height: 100%; display: flex; flex-direction: column; justify-content: center; }
.commitments-inner-txt .section-label {
  font-size: 13px; font-weight: 700;
  color: #d4af37 !important; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 16px;
}
.commitments-inner-txt .title {
  font-size: clamp(22px, 2.5vw, 36px); font-weight: 700;
  color: #ffffff !important; line-height: 1.25; margin-bottom: 24px;
  word-break: break-word;
}
.commitments-inner-txt .para {
  font-size: 15px; color: rgba(255,255,255,0.75) !important;
  line-height: 1.6; margin-bottom: 32px; font-weight: 400;
}
.commitments-inner-txt .btn-link {
  font-size: 13px; font-weight: 700; color: #d4af37 !important;
  text-transform: uppercase; letter-spacing: 0.08em;
  display: inline-flex; align-items: center; gap: 8px;
}
.commitments-inner-img { position: relative; overflow: hidden; border-radius: 12px; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 10px 30px rgba(0,0,0,0.3); height: 440px; }
.commitments-inner-img img { width: 100%; height: 100%; object-fit: cover; }

/* Culture Slider Animations */
.culture-slide-track {
  display: flex;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}
.culture-slide {
  flex: 0 0 100%;
  width: 100%;
  display: flex !important;
}

.culture-slide .commitments-inner-txt h2,
.culture-slide .commitments-inner-txt h3,
.culture-slide .commitments-inner-txt p,
.culture-slide .commitments-inner-txt a {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.culture-slide .commitments-inner-img img {
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.culture-slide.active-slide .commitments-inner-txt h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}
.culture-slide.active-slide .commitments-inner-txt h3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}
.culture-slide.active-slide .commitments-inner-txt p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}
.culture-slide.active-slide .commitments-inner-txt a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}
.culture-slide.active-slide .commitments-inner-img img {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.1s;
}

/* ═══════════════════════════════════════
   LIFE AT TURNER / CAREERS SECTION & VALUES
═══════════════════════════════════════ */
.home-values { background: #07080a !important; color: #ffffff !important; }
.home-values .title { color: #ffffff !important; }
.home-values .section-label { color: #d4af37 !important; font-weight: 700; }
.value-card { background: #0c0d0f !important; border: 1px solid rgba(212,175,55,0.25) !important; box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important; }
.value-card .title { color: #ffffff !important; }
.value-card .para { color: rgba(255,255,255,0.75) !important; }

.home-life { padding: 100px 0; position: relative; background: #07080a !important; color: #ffffff !important; }
.life-txt-before { padding: 0 40px; margin-bottom: 60px; }
.life-txt-before .section-label { color: #d4af37 !important; font-weight: 700; }
.life-txt-before .title { margin-bottom: 20px; color: #ffffff !important; }
.life-txt-before .para { color: rgba(255,255,255,0.75) !important; max-width: 600px; }
.life-slider-wrapper { padding: 0 40px; }
.life-slider {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.life-slide img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 8px; margin-bottom: 16px;
}
.life-slide .section-label { margin-bottom: 8px; color: #d4af37 !important; font-weight: 700 !important; }
.life-slide .title { margin-bottom: 12px; font-size: clamp(16px, 1.5vw, 22px); color: #ffffff !important; }
.life-slide .para { color: rgba(255,255,255,0.75) !important; font-size: 15px; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--black); padding: 80px 0 40px; position: relative;
}
.footer-wrapper { max-width: 1419px; margin: 0 auto; padding: 0 40px; }
.footer-first-row { display: flex; align-items: center; gap: 40px; margin-bottom: 60px; padding-bottom: 60px; border-bottom: 1px solid var(--border-light); flex-wrap: wrap; }
.first-row-col   { flex: 2; min-width: 180px; }
.first-row-col-2 { flex: 4; min-width: 400px; }
.first-row-col-3 { flex: 1; min-width: 140px; }

.footer-logo { width: 144px; height: auto; filter: none !important; }
.footer-ul { display: flex; flex-direction: column; gap: 0; flex-wrap: wrap; }
.footer-li { margin-bottom: 0; }
.footer-a {
  font-size: 13px; color: rgba(255,255,255,0.6); display: inline-block;
  padding: 6px 0; transition: color 0.2s ease; position: relative;
}
.footer-a:hover { color: var(--white); }
.link-underline {
  position: absolute; bottom: 5px; left: 0; width: 0; height: 1px;
  background: var(--white); transition: width 0.3s ease;
}
.footer-a:hover .link-underline { width: 100%; }

/* Footer socials */
.socials-ul { flex-direction: row; flex-wrap: wrap; gap: 12px; }
.footer-li.socials { display: flex; gap: 12px; }
.social-icon-wrap {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border: 1px solid rgba(212,175,55,0.25);
  border-radius: 50%; color: #d4af37; font-size: 15px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.social-icon-wrap:hover { background: #d4af37; color: #0d0e10; border-color: #d4af37; transform: translateY(-3px); box-shadow: 0 6px 15px rgba(212,175,55,0.2); }

.footer-second-row { display: flex; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.second-row-col   { flex: 1; min-width: 200px; }
.second-row-col-2 { flex: 2; min-width: 300px; }
.second-row-col-3 { flex: 1; min-width: 200px; }
.copyright { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer-second-row .para { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.6; }
.terms-flex { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.terms-link { font-size: 12px; color: rgba(255,255,255,0.5); transition: color 0.2s ease; }
.terms-link:hover { color: var(--white); }
.terms-flex span { color: rgba(255,255,255,0.3); }

/* Footer grid col layout */
.footer-cols-wrap {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  width: 100%;
}
@media (max-width: 991px) {
  .footer-cols-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .footer-cols-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 479px) {
  .footer-cols-wrap {
    grid-template-columns: 1fr;
  }
}
.footer-col-group { flex: 1; min-width: 120px; }
.footer-col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 16px; }

/* ═══════════════════════════════════════
   MEDIA — RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1200px) {
  .submenu { width: max-content; min-width: 500px; }
  .office-txt-col { padding-left: 40px; }
  .innovation-big-col img { height: 320px; }
}
@media (max-width: 1024px) {
  .col-t-100 { width: 100%; }
  .col-t-50  { width: 50%; }
  .col-t-33  { width: 33.333%; }
  .header-nav-col { display: none; }
  .header-menu-contact.subcont { display: none; }
  .header-menu-icon { display: flex; }
  .desktop-only { display: none; }
  .mobile-only  { display: block; }
  .mega-desktop-logo { display: none; }
  .mega-mobile-logo  { display: block; }
  .office-txt-col { padding-left: 24px; }
  .header-nav-col .submenu { display: none !important; }
  .megamenu .submenu {
    display: none !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    width: 100% !important;
    min-width: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 16px 0 16px 20px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
  .megamenu .menu-item-holder.open .submenu {
    display: block !important;
  }
  .megamenu .submenu-col {
    margin-bottom: 0 !important;
  }
  .megamenu .submenu-ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }
  .megamenu .submenu-ul a {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.65) !important;
    text-decoration: none !important;
    transition: color 0.2s !important;
    display: block !important;
    padding: 2px 0 !important;
  }
  .megamenu .submenu-ul a:hover {
    color: #d4af37 !important;
  }
  .life-slider { grid-template-columns: repeat(2, 1fr); }
  .stats-divider { display: none !important; }
  .stats-grid { justify-content: center !important; }
  .home-commitments .home-wrapper { flex-direction: column; gap: 24px; }
  .commitments-small-col { flex: none; width: 100% !important; height: auto !important; }
  .commitments-big-col { flex: none; width: 100% !important; height: auto !important; }
}


@media (max-width: 768px) {
  .col-m-100 { width: 100%; }
  .col-m-50  { width: 50%; }
  .hero-content { padding: 0 24px 60px; }
  .home-wrapper { padding: 0 24px; }
  .wrapper-1419 { padding: 0 24px; }
  .header-holder { padding: 0 20px; }
  .megamenu-header { padding: 20px 24px; }
  .megamenu-nav { width: 100%; padding: 40px 24px; border-right: none; }
  .megamenu-body { flex-direction: column; }
  .megamenu-projects { display: none; }
  .office-txt-col { padding-left: 0; padding-top: 24px; }
  .commitments-small-col { border-radius: 8px; }
  .commitments-big-col { border-radius: 8px; }
  .life-slider { grid-template-columns: 1fr; }
  .footer-first-row { gap: 30px; }
  .innovation-big-col { padding-right: 0; }
  .contact-popup { width: 100%; }
  .contact-form-row { grid-template-columns: 1fr; }
  .form-field.col-field { width: 100%; }
  .form-field.col-field.right { margin-right: 0; }
  .pinned-with-title { padding: 80px 0 60px; }
  .home-office { padding: 70px 0; }
  .txt-faq-cols { padding: 70px 0; }
  .home-life { padding: 70px 0; }
  footer { padding: 60px 0 30px; }
  .accents-slider-item { padding: 10px; }

  /* ── FOOTER MOBILE FIXES ── */
  .footer-wrapper { padding: 0 20px !important; }
  .footer-first-row { flex-direction: column !important; gap: 24px !important; }
  .footer-logo-col { min-width: unset !important; width: 100% !important; }
  .footer-cols-wrap { min-width: unset !important; width: 100% !important; grid-template-columns: repeat(2, 1fr) !important; }
  .footer-bottom-row { flex-direction: column !important; gap: 12px !important; align-items: flex-start !important; }
  .bottom-copyright-col,
  .bottom-desc-col,
  .bottom-links-col { min-width: unset !important; width: 100% !important; padding: 0 !important; text-align: left !important; }

  /* ── SUBPAGE HERO MOBILE FIXES ── */
  .at-inner { padding-left: 20px !important; padding-right: 20px !important; }
  .at-hero-inner { padding: 40px 20px !important; }
  .at-hero-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .at-hero-right { display: none !important; }
  .at-hero-title { font-size: clamp(28px, 7vw, 44px) !important; }
  .at-hero-sub { font-size: 14px !important; }
  .at-hero-btns { flex-direction: column !important; gap: 10px !important; }
  .at-btn-gold, .at-btn-ghost { width: 100% !important; justify-content: center !important; }
  .at-split { grid-template-columns: 1fr !important; gap: 32px !important; }
  .at-approach { grid-template-columns: 1fr !important; gap: 32px !important; }
  .at-split-left-img, .at-approach-right-img { height: 220px !important; }
  .at-steps { grid-template-columns: repeat(2, 1fr) !important; gap: 28px !important; }
  .at-steps-line { display: none !important; }
  .at-cta-row { grid-template-columns: 1fr !important; gap: 32px !important; padding: 0 20px !important; }
  .at-calc-banner { margin: 0 20px !important; flex-direction: column !important; gap: 16px !important; }
  .at-feat-list { flex-direction: column !important; gap: 16px !important; }
  .at-subbar-inner { padding: 0 20px !important; }
  .at-sec { padding: 60px 0 !important; }

  /* ── SUBPAGE SECTION GENERAL FIXES ── */
  .dp-section-inner { padding: 0 20px !important; }
  .dp-hero-inner { padding: 0 20px !important; }
  .dp-hero-grid { flex-direction: column !important; gap: 32px !important; }
  .dp-hero-right { display: none !important; }
  .dp-cta-inner { flex-direction: column !important; padding: 0 20px !important; }

  /* ── KAT KARŞILIĞI / KENTSEL DÖNÜŞÜM ── */
  .kk-inner { padding: 0 20px !important; }
  .kk-hero-inner { padding: 40px 20px !important; }
  .kk-steps { grid-template-columns: 1fr !important; gap: 24px !important; }
  .kk-steps-line { display: none !important; }
  .kk-grid { grid-template-columns: 1fr !important; gap: 32px !important; }

  /* ── DANISMANLIK / GAYRIMENKUL ── */
  .gd-inner { padding: 0 20px !important; }
  .gd-hero-inner { padding: 40px 20px !important; }
  .gd-filter-bar { flex-wrap: wrap !important; gap: 8px !important; }
  .gd-grid { grid-template-columns: 1fr !important; }

  /* ── ARAÇ KİRALAMA ── */
  .ak-inner { padding: 0 20px !important; }
  .ak-hero-inner { padding: 40px 20px !important; }
  .rental-form-grid { grid-template-columns: 1fr !important; }
  .rental-services-grid { grid-template-columns: 1fr !important; }

  /* ── CONTACT PAGE ── */
  .ct-hero-content { padding: 60px 20px !important; }
  .ct-main-inner { padding: 0 20px !important; }
  .ct-map-inner { padding: 0 20px !important; }
  .ct-field-row { grid-template-columns: 1fr !important; }
  .ct-quick-inner { padding: 0 !important; grid-template-columns: 1fr !important; }
  .ct-quick-item { padding: 20px 20px !important; }

  /* ── HEADER MOBILE ── */
  .header-logo-img { height: 65px !important; max-width: 180px !important; }
  .header-logo-col { margin-left: 0 !important; margin-right: 8px !important; }
  .header-menu-contact { padding: 6px 10px !important; font-size: 12px !important; }
  .header-holder { padding: 0 16px !important; justify-content: space-between !important; }

  /* ── GENERIC SECTION PADDING ── */
  .pg-sec--mid { padding: 60px 0 !important; }
  section.at-sec .at-inner { padding: 0 20px !important; }
}

@media (max-width: 480px) {
  /* Tiny phone fixes */
  html, body { overflow-x: hidden !important; }
  .footer-cols-wrap { grid-template-columns: 1fr !important; }
  .at-steps { grid-template-columns: 1fr !important; }
  .at-hero-title { font-size: 26px !important; }
  .header-logo-img { height: 58px !important; }
  .ct-quick-value { font-size: 15px !important; }
  .ct-quick-inner { grid-template-columns: 1fr !important; }
  .at-cta-right { padding: 28px 20px !important; }
  .at-calc-banner { padding: 24px 20px !important; }
  .at-hero-inner { padding: 30px 16px !important; }
  .at-inner { padding-left: 16px !important; padding-right: 16px !important; }
  .footer-wrapper { padding: 0 16px !important; }
}


/* ─── WHATSAPP FLOATING BUTTON ─── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
  z-index: 850;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

* Card Hover Reveal Animations (Desktop Only) */
@media (min-width: 1025px) {
  /* 1. Gayrimenkul & Yatırım Danışmanlığı Cards */
  .svc-card .svc-card-desc,
  .svc-card .insaat-card-detail-btn {
    max-height: 0;
    opacity: 0;
    transform: translateY(12px);
    margin-top: 0 !important;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.3s ease, 
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                margin-top 0.4s ease;
    overflow: hidden;
  }
  .svc-card:hover .svc-card-desc {
    max-height: 120px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 10px !important;
  }
  .svc-card:hover .insaat-card-detail-btn {
    max-height: 50px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 16px !important;
  }

  /* 2. İnşaat Cards */
  .insaat-service-card .insaat-card-quote,
  .insaat-service-card .insaat-card-desc,
  .insaat-service-card .insaat-card-detail-btn {
    max-height: 0;
    opacity: 0;
    transform: translateY(12px);
    margin-top: 0 !important;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.3s ease, 
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                margin-top 0.4s ease;
    overflow: hidden;
  }
  .insaat-service-card:hover .insaat-card-quote {
    max-height: 40px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 8px !important;
  }
  .insaat-service-card:hover .insaat-card-desc {
    max-height: 120px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 8px !important;
  }
  .insaat-service-card:hover .insaat-card-detail-btn {
    max-height: 50px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 16px !important;
  }

  /* 3. Araç Kiralama Cards */
  .rental-service-card .rental-card-quote,
  .rental-service-card .rental-card-desc,
  .rental-service-card .insaat-card-detail-btn {
    max-height: 0;
    opacity: 0;
    transform: translateY(12px);
    margin-top: 0 !important;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.3s ease, 
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                margin-top 0.4s ease;
    overflow: hidden;
  }
  .rental-service-card:hover .rental-card-quote {
    max-height: 40px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 8px !important;
  }
  .rental-service-card:hover .rental-card-desc {
    max-height: 120px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 8px !important;
  }
  .rental-service-card:hover .insaat-card-detail-btn {
    max-height: 50px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 16px !important;
  }
}

/* Premium Service Detail Modal */
.service-detail-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(4, 5, 6, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-detail-modal-overlay.is-active {
  display: flex;
  opacity: 1;
}

.service-detail-modal-box {
  background: #0d0e10;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 24px;
  max-width: 1050px;
  width: 100%;
  height: 80vh;
  min-height: 550px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: scale(0.96) translateY(12px);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
  display: flex;
}
.service-detail-modal-overlay.is-active .service-detail-modal-box {
  transform: scale(1) translateY(0);
}

/* Left Column: Premium Image Info Card */
.modal-left-column {
  width: 42%;
  position: relative;
  overflow: hidden;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
}
.modal-left-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  filter: brightness(0.7) contrast(1.1);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-detail-modal-box:hover .modal-left-bg-img {
  transform: scale(1.06);
}
.modal-left-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 14, 16, 0.98) 0%, rgba(13, 14, 16, 0.4) 60%, transparent 100%);
  z-index: 1;
}
.modal-left-content {
  position: relative;
  z-index: 2;
}

/* Right Column: Timeline & CTA */
.modal-right-column {
  width: 58%;
  background: linear-gradient(135deg, #111215 0%, #08090a 100%);
  padding: 48px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Custom Scrollbar for Right Column */
.modal-right-column::-webkit-scrollbar {
  width: 6px;
}
.modal-right-column::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}
.modal-right-column::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.25);
  border-radius: 3px;
}
.modal-right-column::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.5);
}

/* Close Button positioning for Double Column */
.service-detail-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
  line-height: 1;
}
.service-detail-modal-close:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
  color: #d4af37;
  transform: rotate(90deg);
}

/* Premium Form Design inside Modal */
.quote-form-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
}
.quote-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.quote-form-field {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.quote-form-field:focus-within {
  background: rgba(212, 175, 55, 0.03);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.05);
}
.quote-form-field.full-width {
  grid-column: span 2;
}
.quote-form-field.textarea-field {
  padding: 16px;
  flex-direction: row;
  align-items: flex-start;
}
.field-icon {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}
.quote-form-field:focus-within .field-icon {
  color: #d4af37;
}
.field-icon svg {
  width: 100%;
  height: 100%;
}
.field-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  width: 100%;
}
.field-content label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.field-content input,
.field-content select,
.field-content textarea {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  padding: 0;
  margin: 0;
  width: 100%;
  font-family: inherit;
}
.field-content input::placeholder,
.field-content textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.field-content select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 14px;
}
.field-content select option {
  background: #0d0e10;
  color: #fff;
}
.field-content textarea {
  min-height: 70px;
  resize: none;
  line-height: 1.5;
}
.char-counter {
  position: absolute;
  bottom: -4px;
  right: 0;
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
}

/* Premium Form CTA Button */
.proposal-submit-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 16px;
  background: linear-gradient(90deg, #d4af37 0%, #f3e5ab 50%, #b89220 100%);
  background-size: 200% auto;
  color: #1b1c1e;
  padding: 16px 28px;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
  transition: all 0.4s ease;
}
.proposal-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
  background-position: right center;
}
.proposal-submit-btn:active {
  transform: translateY(0);
}
.submit-arrow-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1b1c1e;
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.proposal-submit-btn:hover .submit-arrow-circle {
  background: #fff;
  color: #1b1c1e;
  transform: rotate(45deg);
}

@media (max-width: 600px) {
  .quote-form-grid {
    grid-template-columns: 1fr;
  }
}

/* Quote/Highlight Box in Modal */
.modal-highlight-quote {
  border-left: 2px solid #d4af37;
  padding-left: 16px;
  margin: 16px 0 24px;
}
.modal-highlight-quote p {
  color: #d4af37;
  font-size: 14px;
  font-style: italic;
  line-height: 1.5;
}

/* Responsive constraints */
@media (max-width: 900px) {
  .service-detail-modal-box {
    flex-direction: column;
    height: auto;
    max-height: 90vh;
  }
  .modal-left-column {
    width: 100%;
    height: 250px;
    padding: 32px;
  }
  .modal-right-column {
    width: 100%;
    padding: 32px;
  }
}

/* flatpickr Dark Gold Theme Overrides */
.flatpickr-calendar {
  background: #0d0e10 !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6) !important;
  border-radius: 12px !important;
  font-family: inherit !important;
}
.flatpickr-calendar .flatpickr-months {
  background: transparent !important;
}
.flatpickr-calendar .flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(255, 255, 255, 0.9) !important;
}
.flatpickr-calendar .flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(255, 255, 255, 0.9) !important;
}
.flatpickr-calendar .flatpickr-months .flatpickr-prev-month,
.flatpickr-calendar .flatpickr-months .flatpickr-next-month {
  color: #fff !important;
  fill: #fff !important;
}
.flatpickr-calendar .flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-calendar .flatpickr-months .flatpickr-next-month:hover {
  color: #d4af37 !important;
  fill: #d4af37 !important;
}
.flatpickr-calendar .flatpickr-current-month {
  color: #fff !important;
}
.flatpickr-calendar span.flatpickr-weekday {
  color: rgba(255, 255, 255, 0.4) !important;
  font-weight: 700 !important;
}
.flatpickr-calendar .flatpickr-day {
  color: rgba(255, 255, 255, 0.85) !important;
  border-radius: 6px !important;
}
.flatpickr-calendar .flatpickr-day.today {
  border-color: rgba(212, 175, 55, 0.5) !important;
}
.flatpickr-calendar .flatpickr-day.today:hover {
  background: rgba(212, 175, 55, 0.1) !important;
  color: #fff !important;
}
.flatpickr-calendar .flatpickr-day:hover,
.flatpickr-calendar .flatpickr-day.prevMonthDay:hover,
.flatpickr-calendar .flatpickr-day.nextMonthDay:hover,
.flatpickr-calendar .flatpickr-day.today:hover {
  background: rgba(212, 175, 55, 0.15) !important;
  color: #fff !important;
  border-color: transparent !important;
}
.flatpickr-calendar .flatpickr-day.selected,
.flatpickr-calendar .flatpickr-day.startRange,
.flatpickr-calendar .flatpickr-day.endRange {
  background: #d4af37 !important;
  border-color: #d4af37 !important;
  color: #1b1c1e !important;
  font-weight: 700 !important;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3) !important;
}
.flatpickr-calendar .flatpickr-day.inRange {
  background: rgba(212, 175, 55, 0.12) !important;
  box-shadow: none !important;
  color: #d4af37 !important;
  border-radius: 0 !important;
}
.flatpickr-calendar .flatpickr-day.disabled,
.flatpickr-calendar .flatpickr-day.disabled:hover {
  color: rgba(255, 255, 255, 0.15) !important;
}

/* Fleet Showcase Section Styling */
.rental-fleet-section {
  padding: 120px 0;
  background: #08090a;
  position: relative;
  color: #fff;
}
.rental-fleet-before {
  margin-bottom: 56px;
}
.rental-fleet-before .title {
  color: #d4af37 !important;
  margin-bottom: 20px;
}
.rental-fleet-before .para {
  color: rgba(255, 255, 255, 0.6) !important;
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
}
.fleet-card {
  background: #111215;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.fleet-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.04);
}
.fleet-card-img {
  height: 220px;
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #000;
}
.fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.fleet-card:hover .fleet-card-img img {
  transform: scale(1.05);
}
.fleet-card-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.fleet-vehicle-model {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.fleet-vehicle-specs {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 16px;
}
.fleet-spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spec-label {
  font-size: 9px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.spec-value {
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
}
.fleet-pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 8px 16px;
  transition: all 0.3s ease;
}
.pricing-tier:hover {
  background: rgba(212, 175, 55, 0.03);
  border-color: rgba(212, 175, 55, 0.15);
}
.tier-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-quote-btn {
  background: transparent;
  border: none;
  outline: none;
  color: #d4af37;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.pricing-quote-btn:hover {
  color: #fff;
  background: #d4af37;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

@media (max-width: 1024px) {
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 650px) {
  .fleet-grid {
    grid-template-columns: 1fr;
  }
}
/* ── Modern Centered Footer Styles ── */
.footer-link-item {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.25s ease;
  padding: 4px 0;
}
.footer-link-item:hover {
  color: #d4af37;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}
.footer-link-divider {
  color: rgba(255, 255, 255, 0.2);
  font-weight: 400;
}

/* ── Graphical Footer Styles ── */
.footer-feature-title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  margin-bottom: 0;
}
.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 12px 0 20px 0;
  width: 100%;
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
}
.title-divider .line {
  height: 1px;
  background: #d4af37;
  opacity: 0.4;
  flex: 1;
}
.title-divider .diamond {
  width: 6px;
  height: 6px;
  background: #d4af37;
  transform: rotate(45deg);
}
.footer-bottom-link {
  transition: color 0.2s ease;
}
.footer-bottom-link:hover {
  color: #d4af37 !important;
}

@media (max-width: 767px) {
  .footer-features-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

/* ── Graphical Logo Footer Styles ── */
.footer-social-circle {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.25s ease;
  text-decoration: none;
}
.footer-social-circle:hover {
  border-color: #d4af37;
  color: #d4af37;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
}

@media (max-width: 991px) {
  .footer-first-row {
    flex-direction: column !important;
    align-items: center !important;
  }
  .footer-logo-col {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin-bottom: 30px !important;
  }
  .footer-cols-wrap {
    grid-template-columns: repeat(3, 1fr) !important;
    width: 100% !important;
  }
}

@media (max-width: 767px) {
  .footer-cols-wrap {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .bottom-links-col {
    text-align: left !important;
    justify-content: flex-start !important;
  }
  .bottom-links-col div {
    justify-content: flex-start !important;
  }
}

@media (max-width: 479px) {
  .footer-cols-wrap {
    grid-template-columns: 1fr !important;
  }
}

/* ══════════════════════════════════════════════════════
   CARD DETAIL MODAL — dp-* PANEL CSS
   ══════════════════════════════════════════════════════ */
.dp-breadcrumbs-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dp-breadcrumbs {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px; color: rgba(255,255,255,0.4);
}
.dp-breadcrumbs a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.dp-breadcrumbs a:hover { color: #d4af37; }
.dp-current { color: #d4af37; font-weight: 600; }
.dp-breadcrumbs-close {
  width: 28px; height: 28px;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); cursor: pointer;
  transition: all 0.2s; background: none;
}
.dp-breadcrumbs-close:hover { border-color: #d4af37; color: #d4af37; transform: rotate(90deg); }

.dp-hero {
  position: relative; min-height: 500px;
  background: #000; display: flex; align-items: center; overflow: hidden;
}
.dp-hero-bg { position: absolute; inset: 0; }
.dp-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.3; filter: brightness(0.45) contrast(1.1) saturate(0.7);
}
.dp-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.82) 50%, rgba(0,0,0,0.55) 100%);
}
.dp-hero-inner {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto;
  padding: 160px 28px 72px; width: 100%; box-sizing: border-box;
  display: grid; grid-template-columns: 1.3fr 0.7fr;
  gap: 56px; align-items: center;
}
.dp-hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.22em; color: #d4af37;
  text-transform: uppercase; margin-bottom: 18px;
}
.dp-hero-kicker::before {
  content: ''; display: block; width: 24px; height: 1px;
  background: #d4af37; flex-shrink: 0;
}
.dp-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 50px); font-weight: 700;
  color: #fff; line-height: 1.12; margin: 0 0 18px; letter-spacing: -0.025em;
}
.dp-hero-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px; color: rgba(255,255,255,0.55);
  line-height: 1.7; margin: 0 0 28px;
}
.dp-hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.dp-btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: #d4af37; color: #0a0a0a;
  font-family: 'Inter', sans-serif;
  font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 13px 22px; border-radius: 6px;
  border: none; cursor: pointer; transition: background 0.2s, transform 0.2s;
}
.dp-btn-gold:hover { background: #e8c547; transform: translateY(-2px); }
.dp-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.75);
  font-family: 'Inter', sans-serif;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 12px 20px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15); cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.dp-btn-outline:hover { border-color: #d4af37; color: #d4af37; }
.dp-hero-card {
  background: rgba(8,10,12,0.8);
  border: 1px solid rgba(212,175,55,0.3); border-radius: 14px;
  padding: 24px 26px 20px;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.dp-hero-card-kicker {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 9px; font-weight: 800;
  letter-spacing: 0.22em; color: #d4af37;
  text-transform: uppercase; margin-bottom: 8px;
}
.dp-hero-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 700;
  color: #fff; line-height: 1.35; margin: 0 0 18px;
}
.dp-hero-card-svg { width: 100%; height: 150px; color: #d4af37; }

.dp-section {
  background: #000; padding: 72px 28px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.dp-section-inner { max-width: 1400px; margin: 0 auto; }
.dp-split-grid, .dp-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.dp-split-grid.reverse, .dp-split.reverse {
  direction: rtl;
}
.dp-split-grid.reverse > *, .dp-split.reverse > * {
  direction: ltr;
}
.dp-split-img {
  width: 100%; height: 400px; object-fit: cover;
  border-radius: 12px; filter: brightness(0.88) saturate(0.85);
}
.dp-split-tag, .dp-sec-label {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.2em; color: #d4af37;
  text-transform: uppercase; margin-bottom: 14px;
}
.dp-split-title, .dp-sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.5vw, 32px); font-weight: 700;
  color: #fff; line-height: 1.25; margin: 0 0 14px;
}
.dp-split-desc, .dp-sec-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px; color: rgba(255,255,255,0.5);
  line-height: 1.7; margin: 0 0 24px;
}
.dp-split-feats, .dp-sec-feats {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0;
}
.dp-split-feat, .dp-sec-feat {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px; font-weight: 600;
  color: rgba(255,255,255,0.6);
  padding-right: 16px; margin-right: 16px;
  border-right: 1px solid rgba(212,175,55,0.25);
}
.dp-split-feat:last-child, .dp-sec-feat:last-child { border-right: none; padding-right: 0; margin-right: 0; }

.dp-process-section {
  background: #000; padding: 72px 28px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.dp-process-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.2vw, 28px); font-weight: 700;
  color: #fff; text-align: center; margin: 0 0 52px;
}
.dp-process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
  max-width: 1400px; margin: 0 auto;
}
.dp-process-grid::before {
  content: ''; position: absolute;
  top: 28px; left: calc(12.5% + 28px); right: calc(12.5% + 28px);
  height: 1px; background: rgba(212,175,55,0.2);
}
.dp-process-item {
  display: flex; flex-direction: column;
  align-items: center; text-align: center; padding: 0 14px;
}
.dp-process-num {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.4);
  background: rgba(212,175,55,0.06);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 800; color: #d4af37;
  margin-bottom: 18px; position: relative; z-index: 2; flex-shrink: 0;
}
.dp-process-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-weight: 700;
  color: #fff; margin: 0 0 8px; line-height: 1.3;
}
.dp-process-desc {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px; color: rgba(255,255,255,0.42);
  line-height: 1.55; margin: 0;
}

.dp-faq-section {
  background: #000; padding: 72px 28px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.dp-alert-bar {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(212,175,55,0.04);
  border: 1px solid rgba(212,175,55,0.15); border-radius: 10px;
  padding: 20px 24px; margin-bottom: 40px;
}
.dp-alert-icon { color: #d4af37; flex-shrink: 0; margin-top: 2px; }
.dp-alert-tag {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 9.5px; font-weight: 800;
  letter-spacing: 0.2em; color: #d4af37;
  text-transform: uppercase; margin-bottom: 6px;
}
.dp-alert-text {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px; color: rgba(255,255,255,0.65);
  line-height: 1.6; margin: 0;
}
.dp-faq-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.2vw, 26px); font-weight: 700;
  color: #fff; text-align: center; margin: 0 0 32px;
}
.dp-faq-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; }
.dp-faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.dp-faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; background: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.75); text-align: left; gap: 12px; transition: color 0.2s;
}
.dp-faq-btn:hover, .dp-faq-btn.active { color: #d4af37; }
.faq-icon {
  font-size: 20px; font-weight: 300; color: #d4af37;
  flex-shrink: 0; line-height: 1; width: 20px; text-align: center;
}
.dp-faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1); }
.dp-faq-content {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px; color: rgba(255,255,255,0.5);
  line-height: 1.65; padding: 0 0 18px;
}

.dp-form-section {
  background: #000; border-top: 1px solid rgba(255,255,255,0.04);
  position: relative; overflow: hidden;
}
.dp-form-section::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1400&q=50') center/cover no-repeat;
  opacity: 0.06; filter: brightness(0.3) saturate(0.4); pointer-events: none;
}
.dp-form-section::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.9); pointer-events: none;
}
.dp-form-inner {
  position: relative; z-index: 1;
  max-width: 1400px; margin: 0 auto; padding: 72px 28px;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 72px; align-items: center;
}
.dp-form-kicker {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.2em; color: #d4af37;
  text-transform: uppercase; margin-bottom: 14px;
}
.dp-form-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.2vw, 30px); font-weight: 700;
  color: #fff; line-height: 1.3; margin: 0 0 14px;
}
.dp-form-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px; color: rgba(255,255,255,0.48);
  line-height: 1.7; margin: 0 0 28px;
}
.dp-form-contacts { display: flex; flex-direction: column; gap: 14px; }
.dp-form-phone {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px; color: rgba(255,255,255,0.6);
  text-decoration: none; transition: color 0.2s;
}
.dp-form-phone:hover { color: #d4af37; }
.dp-form-phone svg { color: #d4af37; flex-shrink: 0; }
.dp-form-card {
  background: #08090c; border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; padding: 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.dp-field {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07); border-radius: 8px;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; transition: border-color 0.2s;
}
.dp-field:focus-within { border-color: rgba(212,175,55,0.4); }
.dp-field-icon { color: rgba(255,255,255,0.3); flex-shrink: 0; display: flex; align-items: center; }
.dp-field input, .dp-field select {
  flex: 1; background: none; border: none; outline: none;
  color: #fff; font-family: 'Inter', sans-serif; font-size: 13.5px;
  -webkit-appearance: none; appearance: none;
}
.dp-field input::placeholder { color: rgba(255,255,255,0.28); }
.dp-field select { cursor: pointer; }
.dp-field select option { background: #08090c; color: #fff; }
.dp-form-btn {
  width: 100%; background: #d4af37; color: #0a0a0a;
  border: none; border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 15px 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background 0.2s, transform 0.2s; margin-top: 4px;
}
.dp-form-btn:hover { background: #e8c547; transform: translateY(-1px); }

@media (max-width: 900px) {
  .dp-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .dp-hero-card { max-width: 440px; }
  .dp-split-grid { grid-template-columns: 1fr; gap: 36px; }
  .dp-process-grid { grid-template-columns: 1fr 1fr; }
  .dp-process-grid::before { display: none; }
  .dp-form-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .dp-process-grid { grid-template-columns: 1fr; }
}

/* ── SAHİBİNDEN BANNER ────────────────────────── */
.shbd-banner {
  background: #08090c;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.shbd-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.02) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.shbd-banner-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.shbd-banner-left {
  max-width: 70%;
}
.shbd-kicker {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #d4af37;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.shbd-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin: 0 0 12px;
}
.shbd-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.52);
  line-height: 1.6;
  margin: 0 0 12px;
}
.shbd-helper {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  margin: 0;
}
.shbd-banner-right {
  display: flex;
  justify-content: flex-end;
}
.shbd-brand-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ecc840;
  color: #111;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(236,200,64,0.15);
}
.shbd-brand-btn:hover {
  background: #f3cc18;
  transform: translateY(-1px);
}
.shbd-banner-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
}
.shbd-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.shbd-tab-btn {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 20px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}
.shbd-tab-btn:hover {
  border-color: rgba(212,175,55,0.5);
  color: #d4af37;
}
.shbd-tab-btn.active {
  background: #d4af37;
  color: #111;
  border-color: #d4af37;
}
.shbd-action-btn {
  display: inline-flex;
  align-items: center;
  background: #d4af37;
  color: #111;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 15px rgba(212,175,55,0.2);
}
.shbd-action-btn:hover {
  background: #ecc840;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .shbd-banner {
    padding: 24px;
  }
  .shbd-banner-header {
    flex-direction: column;
    gap: 20px;
  }
  .shbd-banner-left {
    max-width: 100%;
  }
  .shbd-banner-right {
    justify-content: flex-start;
  }
  .shbd-banner-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .shbd-action-btn {
    width: 100%;
    justify-content: center;
  }
  .shbd-tabs {
    width: 100%;
  }
  .shbd-tab-btn {
    flex: 1;
    min-width: 100px;
    text-align: center;
    padding: 8px 12px;
  }
}

/* ── SIKÇA SORULAN SORULAR ───────────────────── */
.faq-hero {
  position: relative;
  min-height: 480px;
  background: #000;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 24px;
}
.faq-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.faq-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: brightness(0.4) saturate(0.6);
}
.faq-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,4,6,0.85) 0%, rgba(3,4,6,0.97) 100%);
}
.faq-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
.faq-kicker {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #d4af37;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.faq-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.faq-hero p {
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0 0 36px;
  max-width: 680px;
  margin-inline: auto;
}
.faq-search-box {
  position: relative;
  max-width: 580px;
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding: 4px 6px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-search-box:focus-within {
  border-color: rgba(212,175,55,0.45);
  box-shadow: 0 0 25px rgba(212,175,55,0.1);
}
.faq-search-icon {
  color: rgba(255,255,255,0.3);
  margin-left: 18px;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.faq-search-box input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  padding: 14px 18px;
}
.faq-search-box input::placeholder {
  color: rgba(255,255,255,0.35);
}

.faq-content-section {
  background: #030406;
  padding: 72px 24px;
}
.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}
.faq-tabs-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.faq-tab {
  background: rgba(255,255,255,0.02);
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 10px 22px;
  border-radius: 40px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.faq-tab:hover {
  border-color: rgba(212,175,55,0.4);
  color: #d4af37;
}
.faq-tab.active {
  background: #d4af37;
  color: #0a0a0a;
  border-color: #d4af37;
  box-shadow: 0 4px 15px rgba(212,175,55,0.15);
}
.faq-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-accordion-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}
.faq-accordion-item:hover {
  border-color: rgba(212,175,55,0.25);
  background: rgba(255,255,255,0.03);
}
.faq-accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  outline: none;
  padding: 24px 28px;
  color: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 20px;
}
.faq-accordion-icon {
  font-size: 22px;
  color: #d4af37;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-accordion-btn.active .faq-accordion-icon {
  transform: rotate(45deg);
}
.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-accordion-content {
  padding: 0 28px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.faq-empty-state {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  padding: 48px 0;
}

.faq-cta-sec {
  background: #030406;
  padding: 0 24px 90px;
}
.faq-cta-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.faq-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212,175,55,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.faq-cta-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: #d4af37;
  margin-bottom: 14px;
}
.faq-cta-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
}
.faq-cta-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: rgba(255,255,255,0.48);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 28px;
}
.faq-cta-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.faq-cta-btn-gold {
  display: inline-flex;
  align-items: center;
  background: #d4af37;
  color: #0a0a0a;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 15px rgba(212,175,55,0.2);
}
.faq-cta-btn-gold:hover {
  background: #e8c547;
  transform: translateY(-1px);
}
.faq-cta-btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.15);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.2s;
}
.faq-cta-btn-outline:hover {
  border-color: #d4af37;
  color: #d4af37;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .faq-accordion-btn {
    padding: 20px;
    font-size: 14.5px;
  }
  .faq-accordion-content {
    padding: 0 20px 20px;
    font-size: 13.5px;
  }
  .faq-cta-card {
    padding: 36px 20px;
  }
  .faq-cta-btns {
    flex-direction: column;
    width: 100%;
  }
  .faq-cta-btn-gold, .faq-cta-btn-outline {
    width: 100%;
    justify-content: center;
  }
}

/* ── COMPACT FOOTER OVERRIDES ── */
.footer-wrapper {
  padding: 16px 40px 8px !important;
}
.footer-first-row {
  margin-bottom: 12px !important;
  gap: 20px !important;
}
footer .footer-logo-col {
  min-width: 130px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}
footer .footer-logo-col > div {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: 10px !important;
}
footer .footer-logo {
  width: 180px !important;
  margin-bottom: 6px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
footer .title-divider {
  margin: 4px auto 6px auto !important;
}
footer .footer-feature-icon-wrap {
  height: 38px !important;
  margin-bottom: 4px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
footer .footer-feature-icon-wrap svg {
  width: 32px !important;
  height: 32px !important;
  margin: 0 auto !important;
  display: block !important;
}
footer .footer-feature-desc {
  font-size: 11px !important;
}
.footer-ul {
  gap: 2px !important;
}
.footer-li a {
  font-size: 11.5px !important;
}
.footer-first-row + div {
  margin-bottom: 8px !important;
}
.footer-bottom-row {
  font-size: 9.5px !important;
  gap: 12px !important;
}

/* ---- QUICK CONTACT STRIP ---- */
.ct-quick-strip {
  background: #111215;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ct-quick-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.ct-quick-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,0.05);
  gap: 16px;
  text-decoration: none;
  transition: background 0.25s;
  cursor: pointer;
}
.ct-quick-item:last-child { border-right: none; }
.ct-quick-item:hover { background: rgba(212,175,55,0.04); }
.ct-quick-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ct-quick-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ct-quick-icon svg { color: #d4af37; }
.ct-quick-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0 0 4px;
}
.ct-quick-value {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.ct-quick-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
  transition: all 0.25s;
}
.ct-quick-item:hover .ct-quick-arrow {
  border-color: #d4af37;
  color: #d4af37;
  background: rgba(212,175,55,0.08);
}

@media (max-width: 1024px) {
  .ct-quick-inner { grid-template-columns: 1fr; }
  .ct-quick-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .ct-quick-item:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
  .ct-quick-inner { padding: 0 24px; }
}

/* ─── UNIFIED STAT NUMBERS & LABELS FONT STYLING ─── */
.stats-title, .stat-num, .stats-item .title {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  color: #b89220 !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
}

.stats-para, .stat-label, .stats-item .para {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  color: rgba(255, 255, 255, 0.5) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  font-weight: 600 !important;
}

/* ═══════════════════════════════════════
   MAP LOCATION PICKER SYSTEM
═══════════════════════════════════════ */
.map-picker-badge-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #d4af37;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
  z-index: 3;
}
.map-picker-badge-btn:hover {
  background: #d4af37;
  color: #000;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}
.kd-field input.has-map-badge {
  padding-right: 130px !important;
}

.map-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(3, 4, 6, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: mapModalFadeIn 0.3s ease;
}
@keyframes mapModalFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
.map-modal-card {
  width: 100%;
  max-width: 840px;
  background: #0b0d10;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.85);
}
.map-modal-header {
  padding: 20px 24px;
  background: #060709;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.map-modal-title {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
}
.map-modal-sub {
  margin: 4px 0 0;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.map-modal-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 24px;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}
.map-modal-close:hover { color: #fff; }

.map-modal-search-row {
  padding: 14px 24px;
  background: #0f1116;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.map-search-input-wrap {
  flex: 1;
  min-width: 260px;
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}
.map-search-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px 14px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  outline: none;
}
.map-search-input-wrap input::placeholder { color: rgba(255,255,255,0.35); }
.map-search-input-wrap button {
  background: #d4af37;
  color: #000;
  border: none;
  padding: 0 18px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.2s;
}
.map-search-input-wrap button:hover { background: #ecc840; }

.map-gps-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.map-gps-btn:hover {
  border-color: #d4af37;
  color: #d4af37;
}

.map-modal-viewport-wrap {
  position: relative;
  height: 380px;
  width: 100%;
  background: #050608;
}
#leafletMapContainer {
  height: 100%;
  width: 100%;
}
.map-spinner {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.85);
  color: #d4af37;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(212,175,55,0.3);
  z-index: 1000;
}

.map-modal-footer {
  padding: 18px 24px;
  background: #060709;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.map-address-display-wrap {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.map-address-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #d4af37;
}
.map-address-val {
  font-size: 13px;
  color: #fff;
  font-weight: 500;
}
.map-confirm-btn {
  background: #d4af37;
  color: #1a1200;
  border: none;
  padding: 14px 24px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
.map-confirm-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.map-confirm-btn:not(:disabled):hover {
  background: #ecc840;
  box-shadow: 0 0 16px rgba(212,175,55,0.4);
}

/* ═══════════════════════════════════════
   AK LUXURY PROJECT CAROUSEL STYLES
═══════════════════════════════════════ */
:root {
  --color-gold: #d4af37;
  --color-bg-dark: #030406;
}

.ak-breadcrumbs-sec {
  padding: 18px 0 8px;
  background: var(--color-bg-dark);
}
.ak-breadcrumbs-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
}
.ak-breadcrumbs-inner a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.ak-breadcrumbs-inner a:hover {
  color: var(--color-gold);
}
.ak-current-crumb {
  color: var(--color-gold);
  font-weight: 600;
}

.ak-projects-hero {
  padding: 15px 0 35px;
  background: var(--color-bg-dark);
}
.ak-projects-hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 40px;
}
.ak-hero-left {
  display: flex;
  flex-direction: column;
}
.ak-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 58px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.ak-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
.ak-vision-card {
  border: 1px solid rgba(212,175,55,0.35);
  background: rgba(12, 13, 15, 0.7);
  padding: 20px 28px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.ak-vision-wireframe {
  width: 110px;
  height: 75px;
  flex-shrink: 0;
}
.ak-vision-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ak-vision-kicker {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: var(--color-gold);
  letter-spacing: 0.15em;
  font-weight: 700;
  text-transform: uppercase;
}
.ak-vision-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: rgba(255,255,255,0.9);
  margin: 0;
  font-weight: 600;
}

.ak-tabs-sec {
  padding: 10px 0 25px;
  background: var(--color-bg-dark);
}
.ak-tabs-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
.ak-tabs-wrapper {
  display: inline-flex;
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 10px;
  overflow: hidden;
  background: #08090b;
}
.ak-tab-btn {
  border: none;
  background: transparent;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}
.ak-tab-btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
  transition: all 0.3s;
}
.ak-tab-btn.active {
  background: var(--color-gold);
  color: #000000;
}
.ak-tab-btn.active .ak-tab-btn-icon {
  background: #000000;
  border-color: #000000;
  color: var(--color-gold);
}
.ak-tab-pointer {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--color-gold);
  margin-top: -1px;
  transition: transform 0.3s ease;
}

.ak-slider-sec {
  padding: 10px 0 40px;
  background: var(--color-bg-dark);
  overflow: hidden;
}
.ak-slider-wrapper {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
}
.ak-slider-nav {
  width: 46px;
  height: 46px;
  border: 1.5px solid rgba(212,175,55,0.4);
  background: rgba(8,10,12,0.9);
  border-radius: 50%;
  color: var(--color-gold);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all 0.3s ease;
}
.ak-slider-nav:hover {
  background: var(--color-gold);
  color: #000;
  border-color: var(--color-gold);
  box-shadow: 0 0 15px rgba(212,175,55,0.4);
}
.nav-prev { left: 0; }
.nav-next { right: 0; }

.ak-slider-track-container {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}
.ak-slider-track {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.ak-slider-item {
  width: 360px;
  height: 280px;
  flex-shrink: 0;
  border: 1.5px solid rgba(212,175,55,0.3);
  background: #0c0d0f;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease;
  position: relative;
  opacity: 0.65;
  filter: brightness(0.7);
}

.ak-slider-item.active {
  width: 480px;
  height: 320px;
  border: 2px solid var(--color-gold);
  opacity: 1;
  filter: none;
  box-shadow: 0 0 30px rgba(212,175,55,0.25);
  z-index: 5;
}

.ak-slider-item-img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 1 !important;
}

/* Projeler hero: mobile alignment (also covers dynamically injected page content). */
@media (max-width: 768px) {
  .ak-projects-hero .ak-projects-hero-inner {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: none !important;
    margin-inline: auto !important;
    padding-inline: 20px !important;
    justify-content: center !important;
  }

  .ak-projects-hero .ak-hero-left {
    align-items: center !important;
    width: 100% !important;
    min-width: 0 !important;
    text-align: center !important;
  }

  .ak-projects-hero .ak-hero-title {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 12px !important;
    font-size: clamp(40px, 12vw, 54px) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.035em !important;
    white-space: normal !important;
  }

  .ak-projects-hero .ak-hero-sub {
    width: 100% !important;
    max-width: 440px !important;
    margin-inline: auto !important;
    font-size: clamp(14px, 3.8vw, 16px) !important;
    line-height: 1.45 !important;
  }
}

/* Mobile sustainability card controls remain invisible on desktop. */
.culture-mobile-selector,
.culture-mobile-footer {
  display: none !important;
}

@media (max-width: 768px), (hover: none) and (pointer: coarse) and (orientation: portrait) {
  .home-commitments {
    padding: 34px 0 38px !important;
    background: #07080a !important;
  }

  .home-commitments > .home-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
    padding: 0 10px !important;
  }

  .home-commitments .culture-mobile-selector {
    order: 0 !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    height: 40px !important;
    margin: 0 0 20px !important;
    padding: 0 14px !important;
    border: 1px solid rgba(212, 175, 55, .48) !important;
    border-radius: 7px !important;
    background: rgba(10, 11, 12, .96) !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 12px !important;
    color: #fff !important;
  }

  .culture-mobile-selector-index {
    flex: 0 0 auto !important;
    margin-right: 10px !important;
    color: #d4af37 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .04em !important;
  }

  .culture-mobile-select {
    min-width: 0 !important;
    flex: 1 !important;
    height: 100% !important;
    padding: 0 28px 0 0 !important;
    border: 0 !important;
    outline: 0 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    background: transparent !important;
    color: rgba(255, 255, 255, .82) !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    text-overflow: ellipsis !important;
  }

  .culture-mobile-select option {
    background: #0b0c0e !important;
    color: #fff !important;
  }

  .culture-mobile-selector-arrow {
    position: absolute !important;
    right: 16px !important;
    top: 50% !important;
    width: 7px !important;
    height: 7px !important;
    border-right: 1px solid #d4af37 !important;
    border-bottom: 1px solid #d4af37 !important;
    transform: translateY(-70%) rotate(45deg) !important;
    pointer-events: none !important;
  }

  .home-commitments .commitments-small-col {
    display: none !important;
  }

  .home-commitments .commitments-big-col {
    order: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    overflow: hidden !important;
    border-radius: 0 !important;
  }

  .home-commitments .culture-slide-track {
    order: 1 !important;
    width: 100% !important;
  }

  .home-commitments .culture-slide {
    flex: 0 0 100% !important;
    width: 100% !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .home-commitments .commitments-inner-txt {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 0 4px 16px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    justify-content: flex-start !important;
  }

  .home-commitments .commitments-inner-txt .section-label.desktop-only {
    display: block !important;
    margin: 0 0 12px !important;
    color: #d4af37 !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    letter-spacing: .1em !important;
  }

  .home-commitments .commitments-inner-txt .title {
    margin: 0 0 14px !important;
    font-family: 'DM Serif Display', Georgia, serif !important;
    font-size: clamp(29px, 8.8vw, 36px) !important;
    font-weight: 400 !important;
    line-height: 1.04 !important;
    letter-spacing: -.025em !important;
    color: #fff !important;
  }

  .home-commitments .commitments-inner-txt .para {
    margin: 0 !important;
    color: rgba(255, 255, 255, .68) !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.62 !important;
  }

  .home-commitments .commitments-inner-img {
    width: 100% !important;
    height: clamp(250px, 76vw, 340px) !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 8px !important;
    box-shadow: none !important;
  }

  .home-commitments .commitments-inner-img img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 8px !important;
    object-fit: cover !important;
  }

  .home-commitments .culture-mobile-footer {
    order: 2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    margin-top: 16px !important;
    padding: 14px 4px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, .12) !important;
    font-family: 'Manrope', sans-serif !important;
  }

  .culture-mobile-count {
    flex: 0 0 auto !important;
    color: #d4af37 !important;
    font-size: 10px !important;
    font-weight: 700 !important;
  }

  .culture-mobile-total {
    color: rgba(255, 255, 255, .54) !important;
    font-weight: 400 !important;
  }

  .culture-mobile-next {
    display: flex !important;
    align-items: center !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: rgba(255, 255, 255, .5) !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 9px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }

  .culture-mobile-next strong {
    max-width: 155px !important;
    margin-left: 3px !important;
    overflow: hidden !important;
    color: rgba(255, 255, 255, .82) !important;
    font-weight: 600 !important;
    text-overflow: ellipsis !important;
  }

  .culture-mobile-next-arrow {
    position: relative !important;
    display: block !important;
    width: 18px !important;
    height: 1px !important;
    margin-left: 8px !important;
    background: #d4af37 !important;
  }

  .culture-mobile-next-arrow::after {
    content: '' !important;
    position: absolute !important;
    right: 0 !important;
    top: -3px !important;
    width: 6px !important;
    height: 6px !important;
    border-top: 1px solid #d4af37 !important;
    border-right: 1px solid #d4af37 !important;
    transform: rotate(45deg) !important;
  }
}

.ak-slider-item-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  position: relative !important;
  z-index: 1 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.ak-slider-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,11,13,0.92) 0%, rgba(10,11,13,0.35) 50%, rgba(10,11,13,0.05) 100%);
  z-index: 2 !important;
  pointer-events: none;
}

.ak-slider-item-meta {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 3 !important;
}
.ak-slider-item-loc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}
.ak-slider-item-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #ffffff;
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}

.ak-slider-item-badge {
  display: none !important;
}
.ak-slider-item.active .ak-slider-item-badge {
  display: none !important;
}

.ak-progress-container {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.ak-slider-item.active .ak-progress-container {
  display: flex;
}
.ak-progress-bar-bg {
  flex: 1;
  background: rgba(255,255,255,0.15);
  height: 4px;
  border-radius: 2px;
  overflow: hidden;
}
.ak-progress-bar-fill {
  background: var(--color-gold);
  height: 100%;
  border-radius: 2px;
}
.ak-progress-num {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--color-gold);
  font-weight: 700;
}

.ak-details-sec {
  padding: 10px 0 60px;
  background: var(--color-bg-dark);
}
.ak-details-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid rgba(212,175,55,0.35);
  background: rgba(12,13,15,0.85);
  padding: 18px 32px;
  border-radius: 12px;
  max-width: 1280px;
  margin: 0 auto;
  backdrop-filter: blur(12px);
}
.ak-detail-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
}
.ak-detail-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
}
.ak-detail-divider-v {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  margin: 0 24px;
}
.ak-detail-specs {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex: 1;
}
.ak-spec-col {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.ak-spec-icon {
  color: var(--color-gold);
}
.ak-proj-action-btn {
  background: var(--color-gold);
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #000;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}
.ak-proj-action-btn:hover {
  background: #ecc840;
  box-shadow: 0 0 15px rgba(212,175,55,0.4);
}

/* ─── GLOBAL FOOTER BOTTOM STRIP CLEANUP ─── */
.footer-bottom-row {
  background: transparent !important;
  border-top: none !important;
  border: none !important;
  margin-top: 5px !important;
  padding: 12px 0 28px 0 !important;
}

/* ─── REMOVE ALL BREADCRUMBS GLOBALLY ───────────────────────── */
.kd-subbar,
.kd-breadcrumb,
.kk-breadcrumb,
.tg-breadcrumb,
.pg-breadcrumb,
.ak-breadcrumbs-sec,
.dp-breadcrumbs,
.dp-breadcrumb-sec,
.dp-breadcrumbs-bar,
.breadcrumb,
.breadcrumbs,
[aria-label="Navigasyon Yolu"] {
  display: none !important;
}

/* ─── GLOBAL PREMIUM GOLD STRIP FOR ALL HERO BANNERS (EXCEPT HOME) ─── */
.gd-hero,
.yd-hero,
.gyd-hero,
.dp-hero,
.at-hero,
.ak-hero,
.hk-hero-sec,
.ct-hero,
.i-hero,
.kk-hero,
.kd-hero,
.pg-hero,
.ak-projects-hero,
.faq-hero,
.th-hero,
.tg-hero {
  position: relative !important;
}

.gd-hero::after,
.yd-hero::after,
.gyd-hero::after,
.dp-hero::after,
.at-hero::after,
.ak-hero::after,
.hk-hero-sec::after,
.ct-hero::after,
.i-hero::after,
.kk-hero::after,
.kd-hero::after,
.pg-hero::after,
.ak-projects-hero::after,
.faq-hero::after,
.th-hero::after,
.tg-hero::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg, #b89220 0%, #d4af37 25%, #fff2a8 50%, #d4af37 75%, #b89220 100%) !important;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6) !important;
  z-index: 20 !important;
  pointer-events: none !important;
}

/* ═══════════════════════════════════════
   DARK BACKGROUND SECTIONS
═══════════════════════════════════════ */
.home-innovation,
.home-office,
.pinned-with-title,
.home-vision-section,
.txt-faq-cols,
.home-life {
  background-color: #07080a !important;
  background: #07080a !important;
  color: #ffffff !important;
}

.home-innovation {
  padding-top: 80px !important;
  padding-bottom: 60px !important;
}

.home-office {
  padding-top: 60px !important;
  padding-bottom: 90px !important;
}

.home-innovation .title,
.home-office .title,
.home-innovation h2,
.home-innovation h3,
.home-office h2,
.home-office h3,
.home-innovation .pinned-section-title {
  color: #ffffff !important;
}

.home-office .section-label {
  color: #d4af37 !important;
  font-weight: 700 !important;
}

.home-office .para,
.home-office p,
.home-office div p,
.home-life .para,
.home-life p,
.home-life div p,
.life-slide .para {
  color: rgba(255, 255, 255, 0.75) !important;
}

.home-office .para.fs-28 {
  color: #d4af37 !important;
  font-weight: 600 !important;
}

.home-innovation .btn-link,
.home-office .btn-link,
.home-life .btn-link,
.home-life a.btn-link,
.btn-link {
  color: #d4af37 !important;
  font-weight: 700 !important;
}

.btn-link.white,
.submenu .btn-link.white,
.gyd-hero .btn-link.white {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* ─── GLOBAL UNIFORM 4-STEP PROCESS CARDS ─── */
.gyd-sec-divider {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 20px !important;
  margin-bottom: 56px !important;
  width: 100% !important;
}
.gyd-sec-divider .line {
  height: 1px !important;
  width: 120px !important;
  background: linear-gradient(90deg, transparent, #d4af37, transparent) !important;
  display: block !important;
}
.gyd-sec-divider h2 {
  font-family: 'Playfair Display', serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  letter-spacing: 3px !important;
  color: #d4af37 !important;
  margin: 0 !important;
  text-transform: uppercase !important;
}
.gyd-steps-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  position: relative !important;
  max-width: 1320px !important;
  width: 100% !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}
.gyd-step-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  padding: 36px 24px !important;
  border-radius: 12px !important;
  background: #0b0c0f !important;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
  position: relative !important;
  overflow: hidden !important;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease !important;
  text-align: center !important;
  box-sizing: border-box !important;
  width: 100% !important;
}
.gyd-step-card::before {
  content: '' !important;
  position: absolute !important;
  top: -50% !important;
  left: -50% !important;
  width: 200% !important;
  height: 200% !important;
  background: linear-gradient(
    45deg,
    transparent 42%,
    rgba(212, 175, 55, 0.35) 50%,
    transparent 58%
  ) !important;
  transform: rotate(25deg) translateX(-100%) !important;
  transition: transform 0.75s ease !important;
  z-index: 4 !important;
  pointer-events: none !important;
}
.gyd-step-card:hover {
  border-color: #d4af37 !important;
  background: #0e1014 !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.45), inset 0 0 15px rgba(212, 175, 55, 0.12) !important;
}
.gyd-step-card:hover::before {
  transform: rotate(25deg) translateX(100%) !important;
}
.gyd-step-top {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 20px !important;
}
.gyd-step-num {
  font-family: 'Playfair Display', serif !important;
  font-size: 34px !important;
  font-weight: 700 !important;
  color: #d4af37 !important;
  line-height: 1 !important;
}
.gyd-step-icon {
  width: 54px !important;
  height: 54px !important;
  border-radius: 50% !important;
  border: 1.5px solid rgba(212, 175, 55, 0.3) !important;
  background: rgba(212, 175, 55, 0.06) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #d4af37 !important;
}
.gyd-step-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 19px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 0 10px !important;
  text-align: center !important;
}
.gyd-step-desc {
  font-family: 'Inter', sans-serif !important;
  font-size: 13.5px !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.65) !important;
  margin: 0 !important;
  text-align: center !important;
}
@media (max-width: 1024px) {
  .gyd-steps-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 640px) {
  .gyd-steps-grid { grid-template-columns: 1fr !important; }
}

/* Hide breadcrumbs globally */
.gyd-breadcrumb-bar, .dp-breadcrumbs-bar, .gyd-breadcrumb, .dp-breadcrumbs {
  display: none !important;
}

/* ─── GLOBAL UNIFORM NUMBER & STEP TYPOGRAPHY ─── */
.stats-number,
.stat-number,
.counter,
.gyd-step-num,
.hk-process-num,
.i-process-num,
.th-process-num,
.at-step-num,
.kk-step-num,
.kd-step-num,
.pg-step-num,
.tg-step-num,
.stat-box .number,
.stat-val,
.stats-item .title {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
  color: #d4af37 !important;
}

.gyd-step-title,
.hk-process-name,
.i-process-name,
.th-process-name,
.at-step-title,
.kk-step-title,
.kd-step-title,
.pg-step-title,
.tg-step-title,
.stats-item-title {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
  color: #ffffff !important;
}

.gyd-step-desc,
.hk-process-desc,
.i-process-desc,
.th-process-desc,
.at-step-desc,
.kk-step-desc,
.kd-step-desc,
.pg-step-desc,
.tg-step-desc,
.stats-item-desc {
  font-family: 'Inter', sans-serif !important;
  font-size: 13.5px !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.65) !important;
}


/* UNIFIED CTA SECTION FOR KAT KARŞILIĞI, KENTSEL DÖNÜŞÜM, TAAHHÜT */
.kk-cta {
  background: #08090b;
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}
.kk-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.kk-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2) contrast(1.05);
}
.kk-cta-row {
  position: relative;
  z-index: 10;
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 0 40px;
}
.kk-cta-left {
  max-width: 580px;
}
.kk-cta-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 20px;
}
.kk-cta-h2 {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(30px, 3.6vw, 48px) !important;
  font-weight: 700 !important;
  color: #fff !important;
  line-height: 1.18 !important;
  margin: 0 0 24px !important;
}
.kk-cta-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.68;
  margin: 0;
}
.kk-cta-right {
  background: rgba(13, 14, 16, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 6px;
  padding: 44px 40px;
  width: 100%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.kk-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.kk-field {
  position: relative;
}
.kk-inp {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 16px 20px 16px 48px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: all 0.25s ease;
}
.kk-inp:focus {
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.04);
}
.kk-field-ico {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  stroke: #d4af37;
  fill: none;
  stroke-width: 1.6;
}
.kk-submit {
  width: 100%;
  background: #d4af37;
  color: #08090b;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 18px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}
.kk-submit:hover {
  background: #e9c342;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}
@media (max-width: 1024px) {
  .kk-cta-row {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }
  .kk-cta-left { max-width: 100%; }
}


/* ─── HIDE ALL CARD NUMBERS (01, 02, 03...) ─── */
.gyd-card-num,
.ak-card-num,
.insaat-card-num,
.svc-card-num,
.card-num,
.step-num {
  display: none !important;
}


/* ─── TYPOGRAPHY SYSTEM (USER SPECIFIED DESIGN RULES) ─── */

/* 1. Ana başlıklar: Cormorant Garamond 600 */
h1, 
.hero-title, 
.main-title, 
h1.title, 
.at-hero-title, 
.ct-hero-title,
.dp-hero h1,
.faq-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 600 !important;
}

/* 2. Bölüm başlıklar: Cormorant Garamond 500-600 */
h2, h3, h4, 
.sec-title, 
.section-title, 
.shbd-title, 
.dp-sec-title, 
.dp-split-title, 
.dp-form-title,
.dp-process-title,
.dp-faq-title,
.faq-cta-card h2,
.rental-fleet-before .title,
.insaat-service-title,
.svc-card-title,
.fleet-vehicle-model {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 600 !important;
}

/* 3. Açıklamalar: Manrope 400 */
p, 
.para, 
.desc, 
.description, 
.svc-card-desc, 
.insaat-card-desc, 
.rental-card-desc, 
.dp-split-desc, 
.dp-sec-desc, 
.dp-form-desc,
.dp-hero-desc,
.dp-process-desc,
.dp-faq-content,
.shbd-subtext,
.shbd-helper,
.faq-hero p,
.faq-accordion-content {
  font-family: 'Manrope', -apple-system, sans-serif !important;
  font-weight: 400 !important;
}

/* 4. Menü ve butonlar: Manrope 600 */
.header-link, 
nav a, 
.submenu a, 
.megamenu a, 
button, 
.btn, 
.btn-link, 
.btn-gold, 
.btn-outline, 
.header-menu-contact, 
.proposal-submit-btn, 
.dp-btn-gold, 
.dp-btn-outline, 
.dp-form-btn,
.shbd-action-btn, 
.shbd-brand-btn,
.shbd-tab-btn,
.faq-tab,
.faq-cta-btn-gold,
.faq-cta-btn-outline,
.insaat-card-detail-btn,
.footer-link-item {
  font-family: 'Manrope', -apple-system, sans-serif !important;
  font-weight: 600 !important;
}

/* 5. Küçük alt başlıklar / Kicker: Manrope 600, harf aralığı açık */
.section-label, 
.kicker, 
.shbd-kicker, 
.dp-hero-kicker, 
.dp-split-tag, 
.dp-sec-label, 
.dp-form-kicker, 
.faq-kicker, 
.submenu-title, 
.small-title, 
.specs-title,
.dp-hero-card-kicker,
.dp-alert-tag,
.faq-cta-label,
.spec-label,
.tier-label,
.footer-feature-title {
  font-family: 'Manrope', -apple-system, sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
}


/* ─── FOOTER SMALL TEXT FONT SIZE & CONTRAST FIX (11.5px) ─── */
.footer-bottom,
.footer-copyright,
.bottom-links-col,
.footer-bottom-link,
.footer-legal-link,
.footer-sub-text,
.footer-copy {
  font-size: 11.5px !important;
  color: rgba(255, 255, 255, 0.68) !important;
  line-height: 1.5 !important;
}


/* ─── HIDE ALL PROCESS STEP NUMBERS (01, 02, 03...) ─── */
.gyd-step-num,
.dp-process-num,
.hk-process-num,
.ct-career-step-num,
.at-step-num,
.ak-step-num,
.kk-step-num,
.kd-step-num,
.pg-step-num,
.tg-step-num,
.pj-process-num,
.step-num,
.process-num,
.step-number,
.process-step-num {
  display: none !important;
}


/* ─── PREMIUM LUXURY SUBMENU DROPDOWN (4K & ULTRA-WIDE FITTED) ─── */
.submenu {
  position: absolute; 
  top: 100%; 
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: max-content; 
  min-width: 940px; 
  max-width: min(1350px, 95vw);
  background: #0b0c0e;
  border-radius: 16px; 
  padding: 40px 48px;
  opacity: 0; 
  pointer-events: none; 
  visibility: hidden;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.25s;
  z-index: 250;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), 0 0 1px rgba(212, 175, 55, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-sizing: border-box;
}

.submenu::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  height: 30px;
  background: transparent;
}

.header-li:hover .submenu, 
.header-li.has-submenu:hover .submenu,
.header-li:focus-within .submenu,
.submenu:hover {
  opacity: 1 !important; 
  pointer-events: all !important; 
  visibility: visible !important;
  transform: translateX(-50%) translateY(0) !important;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0s !important;
}

.submenu-holder { 
  display: flex; 
  gap: 52px; 
  width: 100%;
  align-items: flex-start;
  box-sizing: border-box;
}

/* Left Promo Box */
.submenu-left { 
  width: 280px; 
  flex-shrink: 0; 
  display: flex; 
  flex-direction: column; 
  justify-content: flex-start; 
  padding-right: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.submenu-title {
  font-family: 'Manrope', -apple-system, sans-serif !important;
  font-size: 11px !important; 
  font-weight: 800 !important; 
  color: #d4af37 !important;
  margin-bottom: 14px !important; 
  letter-spacing: 0.16em !important; 
  text-transform: uppercase !important;
  line-height: 1.3 !important;
}

.submenu-left-description .txt-24,
.submenu-left-description p {
  font-family: 'Manrope', -apple-system, sans-serif !important;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 13.5px !important;
  line-height: 1.65 !important;
  font-weight: 400 !important;
  margin-bottom: 20px !important;
}

.submenu-left .btn-link,
.submenu-left a.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  color: #d4af37;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
}

.submenu-left .btn-link:hover {
  color: #fff;
  transform: translateX(4px);
}

/* Right Content Area */
.submenu-center { 
  flex: 1; 
  min-width: 0;
}

.submenu-title-holder {
  margin-bottom: 20px;
}

/* 2-Column Dynamic Grid Layout for Links - Never Overflow */
.submenu-ul-tag,
.submenu-col-group,
.submenu-ul-tag.two-col-ul {
  display: grid !important;
  grid-template-columns: repeat(2, max-content) !important;
  column-gap: 52px !important;
  row-gap: 16px !important;
  margin-top: 0 !important;
  max-height: none !important;
  column-count: auto !important;
  list-style: none !important;
  padding: 0 !important;
}

.submenu-ul-tag li { 
  margin-bottom: 0 !important; 
  white-space: nowrap !important;
}

.submenu-ul-tag a {
  font-family: 'Manrope', -apple-system, sans-serif !important;
  font-size: 14.5px !important; 
  color: rgba(255, 255, 255, 0.85) !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  font-weight: 500 !important;
  display: inline-block !important;
  line-height: 1.4 !important;
  text-decoration: none !important;
}

.submenu-ul-tag a:hover { 
  color: #d4af37 !important; 
  transform: translateX(4px) !important;
}

/* 4K and Ultra-Wide Displays (2560px, 3840px) */
@media (min-width: 1800px) {
  .submenu {
    min-width: 1060px !important;
    padding: 44px 56px !important;
  }
  .submenu-holder {
    gap: 64px !important;
  }
  .submenu-left {
    width: 320px !important;
    padding-right: 48px !important;
  }
  .submenu-ul-tag {
    column-gap: 60px !important;
    row-gap: 18px !important;
  }
  .submenu-ul-tag a {
    font-size: 15.5px !important;
  }
}




/* ─── LUXURY CENTERED PRELOADER ─── */
#preloader {
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: #050505 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

#preloader::before,
#preloader::after {
  display: none !important;
  content: none !important;
}

#preloader.loaded,
#preloader.fade-out,
#preloader.is-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.preloader-inner {
  --preloader-progress: 0%;
  position: relative !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.006) 0 1px, transparent 1px 5px),
    radial-gradient(circle at 50% 44%, rgba(212, 175, 55, 0.055) 0, rgba(212, 175, 55, 0.018) 24%, transparent 50%),
    radial-gradient(circle at 50% 50%, #11100d 0, #080808 48%, #030303 100%) !important;
}

/* Large architectural rings with a single soft travelling-light layer */
.preloader-inner::before {
  content: '' !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: min(86vw, 184dvh) !important;
  aspect-ratio: 1 !important;
  transform: translate(-50%, -50%) rotate(0deg);
  border: 0 !important;
  border-radius: 50% !important;
  background: conic-gradient(
    from 0deg,
    rgba(212, 175, 55, 0.2) 0%,
    rgba(212, 175, 55, 0.26) 22%,
    rgba(238, 203, 92, 0.72) 36%,
    rgba(255, 231, 148, 1) 44%,
    rgba(238, 203, 92, 0.72) 52%,
    rgba(212, 175, 55, 0.26) 68%,
    rgba(212, 175, 55, 0.2) 100%
  ) !important;
  -webkit-mask: radial-gradient(circle,
    transparent 0 48.7%,
    #000 48.78% 48.94%,
    transparent 49.02% 57.5%,
    rgba(0, 0, 0, 0.82) 57.58% 57.74%,
    transparent 57.82% 66.3%,
    rgba(0, 0, 0, 0.64) 66.38% 66.54%,
    transparent 66.62% 100%) !important;
  mask: radial-gradient(circle,
    transparent 0 48.7%,
    #000 48.78% 48.94%,
    transparent 49.02% 57.5%,
    rgba(0, 0, 0, 0.82) 57.58% 57.74%,
    transparent 57.82% 66.3%,
    rgba(0, 0, 0, 0.64) 66.38% 66.54%,
    transparent 66.62% 100%) !important;
  box-shadow: none !important;
  opacity: 0.08;
  filter: brightness(0.48) drop-shadow(0 0 0 rgba(212, 175, 55, 0));
  animation:
    preloaderRingsIlluminate 1.2s linear forwards,
    preloaderRingLightSweep 2.4s linear infinite !important;
  will-change: opacity, filter !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

/* Gold loading line and illuminated progress point */
.preloader-inner::after {
  content: '' !important;
  position: absolute !important;
  left: 50% !important;
  top: 77% !important;
  width: min(420px, 54vw) !important;
  height: 2px !important;
  transform: translateX(-50%) !important;
  border-radius: 999px !important;
  background:
    radial-gradient(circle at var(--preloader-progress) 50%, #fff8d1 0 2px, #e7c65c 3px, transparent 4px),
    linear-gradient(90deg, #e4c154 0, #d4af37 var(--preloader-progress), rgba(212, 175, 55, 0.3) var(--preloader-progress), rgba(212, 175, 55, 0.1) 100%) !important;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.22) !important;
  z-index: 12 !important;
  animation: preloaderTrackGlow 1.15s ease-in-out infinite alternate !important;
  pointer-events: none !important;
}

.preloader-logo-main {
  position: absolute !important;
  left: 50% !important;
  top: 45% !important;
  width: min(250px, 42vw, 35dvh) !important;
  height: auto !important;
  max-height: 35dvh !important;
  transform: translate(-50%, -50%) !important;
  object-fit: contain !important;
  z-index: 10 !important;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.28)) !important;
  animation: preloaderLogoPulse 2.2s ease-in-out infinite alternate !important;
}

.preloader-skyline-bottom {
  display: none !important;
}

@keyframes preloaderLogoPulse {
  0% { transform: translate(-50%, -50%) scale(0.985); opacity: 0.93; }
  100% { transform: translate(-50%, -50%) scale(1.015); opacity: 1; filter: drop-shadow(0 0 26px rgba(212, 175, 55, 0.4)); }
}

@keyframes preloaderTrackGlow {
  0% { opacity: 0.72; filter: brightness(0.9); }
  100% { opacity: 1; filter: brightness(1.18); }
}

@keyframes preloaderRingsIlluminate {
  0% {
    opacity: 0.05;
    filter: brightness(0.42) drop-shadow(0 0 0 rgba(212, 175, 55, 0));
  }
  25% {
    opacity: 0.24;
    filter: brightness(0.68) drop-shadow(0 0 3px rgba(212, 175, 55, 0.12));
  }
  50% {
    opacity: 0.48;
    filter: brightness(0.94) drop-shadow(0 0 7px rgba(212, 175, 55, 0.25));
  }
  75% {
    opacity: 0.74;
    filter: brightness(1.25) drop-shadow(0 0 13px rgba(222, 185, 63, 0.43));
  }
  100% {
    opacity: 1;
    filter: brightness(1.62) drop-shadow(0 0 20px rgba(232, 196, 75, 0.62));
  }
}

@keyframes preloaderRingLightSweep {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 768px), (hover: none) and (pointer: coarse) and (orientation: portrait) {
  .preloader-inner::before {
    width: min(145vw, 78dvh) !important;
  }

  .preloader-logo-main {
    top: 43% !important;
    width: min(220px, 52vw, 29dvh) !important;
    max-height: 29dvh !important;
  }

  .preloader-inner::after {
    top: 70% !important;
    width: min(280px, 68vw) !important;
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .preloader-logo-main {
    top: 43% !important;
    width: min(190px, 25vw, 42dvh) !important;
  }

  .preloader-inner::after {
    top: 78% !important;
    width: min(360px, 42vw) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .preloader-logo-main,
  .preloader-inner::after {
    animation: none !important;
  }

}

/* ═════════════════════════════════════════════════════════
   MOBILE RESPONSIVE & OVERFLOW FIXES (COMPREHENSIVE)
   ═════════════════════════════════════════════════════════ */
html, body {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* Ekspertiz & Keşif Grid Responsive Fix */
.gyd-ekspertiz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.dd-split-grid,
.dd-split-grid-card {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 44px;
  align-items: center;
  background: #080a0d;
  border: 1px solid rgba(212,175,55,0.22);
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  margin-bottom: 50px;
}

.dd-split-img-box {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
}

.dd-split-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92);
}

.dd-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Map Picker Badge Button & Input Fix */
.map-picker-badge-btn {
  white-space: nowrap !important;
}

input.has-map-badge {
  padding-right: 125px !important;
}

@media (max-width: 991px) {
  .gyd-ekspertiz-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  
  .dd-split-grid,
  .dd-split-grid-card {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 24px 18px !important;
    margin-bottom: 36px !important;
  }

  .dd-split-img-box {
    height: 220px !important;
  }

  .dd-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  .th-hero__inner {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
}

@media (max-width: 768px) {
  #ekspertiz-kesif {
    padding: 50px 0 !important;
  }

  #ekspertiz-kesif .gyd-container > div > div:nth-child(2),
  #ekspertiz-kesif .gyd-ekspertiz-grid > div:nth-child(2) {
    padding: 24px 18px !important;
    border-radius: 12px !important;
  }

  .dd-stats-grid,
  .ak-steps,
  .kd-steps,
  .pg-steps,
  .tg-steps,
  .gyd-steps-grid,
  .pj-process-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .gyd-container, .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
    max-width: 100% !important;
  }
}

@media (max-width: 576px) {
  .map-picker-badge-btn {
    font-size: 10px !important;
    padding: 4px 8px !important;
    right: 6px !important;
    gap: 4px !important;
  }

  .map-picker-badge-btn span {
    font-size: 10px !important;
  }

  input.has-map-badge {
    padding-right: 95px !important;
  }

  #ekspertiz-kesif h2 {
    font-size: 24px !important;
  }
}

.stats-banner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}

@media (max-width: 1024px) {
  .stats-banner-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px 16px !important;
  }
}

@media (max-width: 768px) {
  .stats-banner-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px 12px !important;
  }
  .stats-banner-grid > div {
    border-left: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 0 !important;
    justify-content: flex-start !important;
  }
}

@media (max-width: 480px) {
  .stats-banner-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .stats-banner-grid > div {
    justify-content: center !important;
    text-align: center !important;
  }
}

.premium-logo-text, .preloader-text {
  display: none !important;
}

/* Megamenu z-index & close fix */
#megamenu {
  z-index: 999999 !important;
}
#megamenuClose, .megamenu-close {
  cursor: pointer !important;
  z-index: 1000000 !important;
  position: relative !important;
}
#megamenu.is-open {
  pointer-events: auto !important;
}

/* Calculator Mobile Fixes */
@media (max-width: 768px) {
  .kd-calc-main-box {
    padding: 20px 14px !important;
    border-radius: 12px !important;
  }
  
  .kd-calc-toplam-row,
  .kd-calc-cost-row,
  .kd-calc-kamu-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
  }

  .kd-calc-toplam-row .label,
  .kd-calc-cost-row .label,
  .kd-calc-kamu-row .label {
    flex: 1 1 55% !important;
    max-width: 100% !important;
    word-break: break-word !important;
  }

  .kd-calc-toplam-row .val,
  .kd-calc-cost-row .val,
  .kd-calc-kamu-row .val {
    flex-shrink: 0 !important;
    margin-left: auto !important;
    text-align: right !important;
  }

  .kd-calc-net-card {
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 20px 16px !important;
    gap: 14px !important;
    text-align: center !important;
  }

  .kd-calc-net-val {
    font-size: 32px !important;
    text-align: center !important;
    margin: 4px 0 !important;
  }

  .kd-calc-net-btn {
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
    white-space: normal !important;
    padding: 15px 16px !important;
    display: block !important;
  }
}

/* Projects Slider & Tabs Mobile Responsive Fix */
@media (max-width: 991px) {
  .ak-tabs-container {
    padding: 0 16px !important;
  }

  .ak-tabs-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
  }

  .ak-tab-btn {
    flex: 1 !important;
    justify-content: center !important;
    padding: 10px 8px !important;
    font-size: 11.5px !important;
    gap: 6px !important;
  }

  .ak-tab-btn-icon {
    width: 24px !important;
    height: 24px !important;
  }

  .ak-tab-btn-icon svg {
    width: 12px !important;
    height: 12px !important;
  }

/* Projects Slider Clean & Robust Styles */
.ak-slider-wrapper {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 50px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.ak-slider-track-container {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

.ak-slider-track {
  display: flex;
  gap: 20px;
  align-items: center;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.ak-slider-item {
  width: 320px;
  height: 250px;
  flex-shrink: 0;
  border: 1.5px solid rgba(212,175,55,0.3);
  background: #0c0d0f;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  opacity: 0.6;
  filter: brightness(0.65);
}

.ak-slider-item.active {
  width: 320px;
  height: 250px;
  border: 2px solid var(--color-gold) !important;
  opacity: 1 !important;
  filter: none !important;
  box-shadow: 0 0 25px rgba(212,175,55,0.3) !important;
  z-index: 5;
}

.ak-slider-item-img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.ak-slider-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  display: block !important;
}

@media (max-width: 991px) {
  .ak-slider-wrapper {
    padding: 0 45px !important;
  }

  .ak-slider-nav {
    width: 38px !important;
    height: 38px !important;
    font-size: 18px !important;
    z-index: 50 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(13, 16, 20, 0.95) !important;
    border: 1.5px solid #d4af37 !important;
    color: #d4af37 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6) !important;
  }

  .nav-prev { left: 4px !important; }
  .nav-next { right: 4px !important; }

  .ak-slider-item,
  .ak-slider-item.active {
    width: 290px !important;
    height: 240px !important;
  }

  .ak-slider-item-title {
    font-size: 17px !important;
    line-height: 1.25 !important;
  }
}

@media (max-width: 480px) {
  .ak-slider-wrapper {
    padding: 0 38px !important;
  }

  .nav-prev { left: 2px !important; }
  .nav-next { right: 2px !important; }

  .ak-slider-item,
  .ak-slider-item.active {
    width: 260px !important;
    height: 230px !important;
  }

  .ak-slider-item-title {
    font-size: 15.5px !important;
  }
}

/* ─── HABERLER & İÇGÖRÜLER ─── */
.pinned-with-title.home-news-wrap {
  padding: 0;
}

.home-news-section {
  background: #07080a;
  color: #fff;
  padding: clamp(68px, 6.5vw, 112px) 0 clamp(84px, 8vw, 144px);
}

.home-news-shell {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4.45vw, 80px);
}

.home-news-header {
  margin-bottom: clamp(42px, 4vw, 66px);
}

.home-news-heading,
.home-news-featured-title,
.home-news-card-title {
  font-family: 'DM Serif Display', Georgia, serif;
  color: #fff;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.home-news-heading {
  margin: 0;
  font-size: clamp(46px, 4.2vw, 74px);
  line-height: .96;
}

.home-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(54px, 6.2vw, 112px);
}

.home-news-featured,
.home-news-card {
  min-width: 0;
}

.home-news-featured {
  display: flex;
  flex-direction: column;
}

.home-news-image-link {
  display: block;
  width: 100%;
  overflow: hidden;
  background: #10151c;
}

.home-news-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s var(--ease-out), filter .45s ease;
}

.home-news-image-link:hover img,
.home-news-image-link:focus-visible img {
  transform: scale(1.025);
  filter: brightness(1.06);
}

.home-news-featured-image {
  aspect-ratio: 1.285 / 1;
  border-radius: 14px;
  margin-bottom: clamp(36px, 3.1vw, 54px);
}

.home-news-featured-title {
  max-width: 900px;
  margin: 0 0 28px;
  font-size: clamp(38px, 3.05vw, 54px);
  line-height: 1.02;
}

.home-news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  column-gap: clamp(26px, 2.25vw, 42px);
  row-gap: clamp(44px, 4.4vw, 78px);
  padding-top: clamp(8px, 1.15vw, 20px);
}

.home-news-card {
  display: flex;
  flex-direction: column;
}

.home-news-card-image {
  aspect-ratio: 1.46 / 1;
  border-radius: 8px;
  margin-bottom: clamp(25px, 2vw, 34px);
}

.home-news-card-title {
  flex: 1;
  margin: 0 0 24px;
  font-size: clamp(23px, 1.72vw, 31px);
  line-height: 1.14;
}

.home-news-featured-title a,
.home-news-card-title a {
  transition: color .25s ease;
}

.home-news-featured-title a:hover,
.home-news-featured-title a:focus-visible,
.home-news-card-title a:hover,
.home-news-card-title a:focus-visible {
  color: #d4af37;
}

.home-news-read-more.btn-link {
  align-self: flex-start;
  color: #d4af37;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .11em;
  line-height: 1;
}

.home-news-read-more.btn-link:hover,
.home-news-read-more.btn-link:focus-visible {
  color: #e6c65a;
}

.home-news-section a:focus-visible {
  outline: 2px solid #d4af37;
  outline-offset: 5px;
}

@media (max-width: 1180px) {
  .home-news-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
  }

  .home-news-card-title {
    font-size: clamp(20px, 2.15vw, 26px);
  }
}

@media (max-width: 900px) {
  .home-news-section {
    padding-top: 72px;
  }

  .home-news-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .home-news-featured-image {
    aspect-ratio: 16 / 10;
  }

  .home-news-grid {
    padding-top: 0;
    row-gap: 52px;
  }

  .home-news-card-title {
    font-size: clamp(24px, 3.5vw, 31px);
  }
}

@media (max-width: 600px) {
  .home-news-section {
    padding: 58px 0 82px;
  }

  .home-news-shell {
    padding: 0 20px;
  }

  .home-news-header {
    margin-bottom: 34px;
  }

  .home-news-heading {
    font-size: clamp(39px, 12vw, 52px);
    line-height: 1;
  }

  .home-news-featured-image {
    aspect-ratio: 1.2 / 1;
    margin-bottom: 28px;
  }

  .home-news-featured-title {
    margin-bottom: 22px;
    font-size: clamp(32px, 9.2vw, 42px);
    line-height: 1.04;
  }

  .home-news-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .home-news-card-image {
    margin-bottom: 24px;
  }

  .home-news-card-title {
    margin-bottom: 20px;
    font-size: clamp(27px, 7.6vw, 34px);
    line-height: 1.1;
  }
}


/* ─── EXACT MATCH NEWS SECTION TO USER IMAGE ─── */
.news-exact-container {
  display: flex !important;
  flex-direction: row !important;
  gap: 48px !important;
  align-items: flex-start !important;
  width: 100% !important;
}

.news-exact-left {
  flex: 0 0 48% !important;
  width: 48% !important;
  max-width: 48% !important;
  display: flex !important;
  flex-direction: column !important;
}

.news-exact-big-img-link {
  display: block !important;
  width: 100% !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  margin-bottom: 24px !important;
}

.news-exact-big-img {
  width: 100% !important;
  height: 420px !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 16px !important;
  transition: transform 0.4s ease !important;
}

.news-exact-big-img-link:hover .news-exact-big-img {
  transform: scale(1.03) !important;
}

.news-exact-big-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 32px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  line-height: 1.2 !important;
  margin: 0 0 16px 0 !important;
  letter-spacing: -0.01em !important;
}

.news-exact-right {
  flex: 0 0 48% !important;
  width: 48% !important;
  max-width: 48% !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 32px 28px !important;
}

.news-exact-small-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.news-exact-small-img-link {
  display: block !important;
  width: 100% !important;
  height: 175px !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  margin-bottom: 16px !important;
}

.news-exact-small-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.4s ease !important;
}

.news-exact-small-img-link:hover .news-exact-small-img {
  transform: scale(1.04) !important;
}

.news-exact-small-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 19px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  line-height: 1.3 !important;
  margin: 0 0 12px 0 !important;
  flex: 1 !important;
}

.news-exact-readmore-gold {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: #d4af37 !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  margin-top: auto !important;
  transition: opacity 0.25s ease !important;
}

.news-exact-readmore-gold:hover {
  opacity: 0.8 !important;
}

@media (max-width: 1024px) {
  .news-exact-container {
    flex-direction: column !important;
    gap: 40px !important;
  }
  .news-exact-left, .news-exact-right {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .news-exact-big-img {
    height: 320px !important;
  }
}

@media (max-width: 640px) {
  .news-exact-right {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .news-exact-big-img {
    height: 230px !important;
  }
  .news-exact-small-img-link {
    height: 190px !important;
  }
  .news-exact-big-title {
    font-size: 24px !important;
  }
  .news-exact-small-title {
    font-size: 18px !important;
  }
}

/* ─── EXACT MATCH NEWS DESIGN ─── */
.home-news-section {
  padding: 90px 0 !important;
  background: #07080a !important;
}

.home-news-shell {
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 0 40px !important;
}

.home-news-heading {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(38px, 4.5vw, 64px) !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 0 44px 0 !important;
  line-height: 1.1 !important;
}

.home-news-layout {
  display: flex !important;
  flex-direction: row !important;
  gap: 48px !important;
  align-items: flex-start !important;
  width: 100% !important;
}

.home-news-featured {
  flex: 0 0 48% !important;
  width: 48% !important;
  max-width: 48% !important;
  display: flex !important;
  flex-direction: column !important;
}

.home-news-featured-image {
  display: block !important;
  width: 100% !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  margin-bottom: 24px !important;
}

.home-news-featured-image img {
  width: 100% !important;
  height: 420px !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 16px !important;
  transition: transform 0.4s ease !important;
}

.home-news-featured-image:hover img {
  transform: scale(1.03) !important;
}

.home-news-featured-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 30px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  margin: 0 0 16px 0 !important;
}

.home-news-featured-title a {
  color: #ffffff !important;
  text-decoration: none !important;
}

.home-news-grid {
  flex: 0 0 48% !important;
  width: 48% !important;
  max-width: 48% !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 32px 28px !important;
}

.home-news-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.home-news-card-image {
  display: block !important;
  width: 100% !important;
  height: 175px !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  margin-bottom: 16px !important;
}

.home-news-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.4s ease !important;
}

.home-news-card-image:hover img {
  transform: scale(1.04) !important;
}

.home-news-card-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 19px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin: 0 0 12px 0 !important;
  flex: 1 !important;
}

.home-news-card-title a {
  color: #ffffff !important;
  text-decoration: none !important;
}

.home-news-read-more {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: #d4af37 !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  margin-top: auto !important;
}

.home-news-read-more::after {
  content: ' ⟶' !important;
  font-size: 14px !important;
}

@media (max-width: 1024px) {
  .home-news-layout {
    flex-direction: column !important;
    gap: 40px !important;
  }
  .home-news-featured, .home-news-grid {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .home-news-featured-image img {
    height: 320px !important;
  }
}

@media (max-width: 640px) {
  .home-news-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .home-news-featured-image img {
    height: 230px !important;
  }
  .home-news-card-image {
    height: 190px !important;
  }
  .home-news-featured-title {
    font-size: 24px !important;
  }
  .home-news-card-title {
    font-size: 18px !important;
  }
}

/* Haberler: yalnızca telefon görünümü */
@media (max-width: 640px), (hover: none) and (pointer: coarse) and (orientation: portrait) {
  .home-news-section {
    padding: 44px 0 68px !important;
  }

  .home-news-shell {
    width: 100% !important;
    max-width: none !important;
    padding: 0 20px !important;
  }

  .home-news-header {
    margin-bottom: 28px !important;
  }

  .home-news-heading {
    margin: 0 !important;
    font-family: 'DM Serif Display', Georgia, serif !important;
    font-size: clamp(34px, 9vw, 39px) !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    letter-spacing: -0.025em !important;
  }

  .home-news-layout {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 42px !important;
    width: 100% !important;
  }

  .home-news-featured,
  .home-news-grid {
    flex: 0 0 auto !important;
    width: 100% !important;
    max-width: none !important;
  }

  .home-news-featured-image {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: auto !important;
    margin-bottom: 23px !important;
    border-radius: 14px !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .28) !important;
  }

  .home-news-featured-image img {
    width: 100% !important;
    height: clamp(215px, 60vw, 258px) !important;
    border-radius: 14px !important;
    object-fit: cover !important;
  }

  .home-news-featured-title {
    max-width: none !important;
    margin: 0 0 20px !important;
    font-family: 'DM Serif Display', Georgia, serif !important;
    font-size: clamp(28px, 7.7vw, 33px) !important;
    font-weight: 400 !important;
    line-height: 1.06 !important;
    letter-spacing: -0.02em !important;
  }

  .home-news-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0 !important;
    padding-top: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, .17) !important;
  }

  .home-news-card {
    display: grid !important;
    grid-template-columns: clamp(104px, 31vw, 124px) minmax(0, 1fr) !important;
    grid-template-rows: minmax(0, auto) auto !important;
    column-gap: 16px !important;
    row-gap: 10px !important;
    align-items: start !important;
    width: 100% !important;
    height: auto !important;
    padding: 21px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .17) !important;
  }

  .home-news-card-image {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    width: 100% !important;
    height: clamp(104px, 31vw, 124px) !important;
    margin: 0 !important;
    border-radius: 9px !important;
  }

  .home-news-card-image img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 9px !important;
    object-fit: cover !important;
  }

  .home-news-card-title {
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-self: start !important;
    flex: none !important;
    margin: -2px 0 0 !important;
    font-family: 'DM Serif Display', Georgia, serif !important;
    font-size: clamp(17px, 4.8vw, 20px) !important;
    font-weight: 400 !important;
    line-height: 1.12 !important;
    letter-spacing: -0.01em !important;
  }

  .home-news-card-title a {
    display: -webkit-box !important;
    overflow: hidden !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 4 !important;
  }

  .home-news-read-more {
    align-self: flex-start !important;
    margin-top: 0 !important;
    font-size: 11px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .home-news-card .home-news-read-more {
    grid-column: 2 !important;
    grid-row: 2 !important;
    align-self: end !important;
    font-size: 9px !important;
    letter-spacing: .1em !important;
  }

  .home-news-card .home-news-read-more::after {
    content: '' !important;
    width: 24px !important;
    height: 10px !important;
    margin-left: 5px !important;
    background-size: 24px 10px !important;
  }

  /* Açık geliştirme sürümündeki eski haber şablonu için mobil uyumluluk */
  .pinned-with-title:has(> #home-innovation:not(.home-news-section)) {
    padding: 0 !important;
  }

  #home-innovation:not(.home-news-section) {
    padding: 44px 0 68px !important;
    background: #07080a !important;
  }

  #home-innovation:not(.home-news-section) > .home-wrapper {
    width: 100% !important;
    max-width: none !important;
    padding: 0 20px !important;
  }

  #home-innovation:not(.home-news-section) > .home-wrapper > div:first-child {
    margin-bottom: 28px !important;
  }

  #home-innovation:not(.home-news-section) h2.title {
    margin: 0 !important;
    font-family: 'DM Serif Display', Georgia, serif !important;
    font-size: clamp(34px, 9vw, 39px) !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    letter-spacing: -0.025em !important;
  }

  #home-innovation:not(.home-news-section) > .home-wrapper > div:nth-of-type(2) {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 42px !important;
  }

  #home-innovation:not(.home-news-section) .innovation-big-col,
  #home-innovation:not(.home-news-section) .innovation-small-col {
    display: block !important;
    flex: 0 0 auto !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  #home-innovation:not(.home-news-section) .innovation-big-col > .to-be-scaled {
    display: block !important;
    width: 100% !important;
    margin: 0 0 23px !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .28) !important;
  }

  #home-innovation:not(.home-news-section) .innovation-big-col .news-hero-img {
    width: 100% !important;
    height: clamp(215px, 60vw, 258px) !important;
    margin: 0 !important;
    border-radius: 14px !important;
    object-fit: cover !important;
  }

  #home-innovation:not(.home-news-section) .innovation-big-col > h3 {
    margin: 0 0 20px !important;
    font-family: 'DM Serif Display', Georgia, serif !important;
    font-size: clamp(28px, 7.7vw, 33px) !important;
    font-weight: 400 !important;
    line-height: 1.06 !important;
    letter-spacing: -0.02em !important;
  }

  #home-innovation:not(.home-news-section) .innovation-big-col > .btn-link {
    align-self: flex-start !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #d4af37 !important;
    font-size: 11px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  #home-innovation:not(.home-news-section) .accents-slider-wrapper {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0 !important;
    width: 100% !important;
    border-top: 1px solid rgba(255, 255, 255, .17) !important;
  }

  #home-innovation:not(.home-news-section) .accents-slider-item {
    display: grid !important;
    grid-template-columns: clamp(104px, 31vw, 124px) minmax(0, 1fr) !important;
    grid-template-rows: minmax(0, auto) auto !important;
    column-gap: 16px !important;
    row-gap: 10px !important;
    align-items: start !important;
    width: 100% !important;
    height: auto !important;
    padding: 21px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .17) !important;
  }

  #home-innovation:not(.home-news-section) .accents-slider-item:nth-child(n + 5) {
    display: none !important;
  }

  #home-innovation:not(.home-news-section) .accents-slider-item > .to-be-scaled {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    display: block !important;
    width: 100% !important;
    height: clamp(104px, 31vw, 124px) !important;
    margin: 0 !important;
    border-radius: 9px !important;
    overflow: hidden !important;
  }

  #home-innovation:not(.home-news-section) .accents-slider-item > .to-be-scaled img {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    border-radius: 9px !important;
    object-fit: cover !important;
  }

  #home-innovation:not(.home-news-section) .accents-slider-item > h3 {
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-self: start !important;
    margin: -2px 0 0 !important;
    font-family: 'DM Serif Display', Georgia, serif !important;
    font-size: clamp(17px, 4.8vw, 20px) !important;
    font-weight: 400 !important;
    line-height: 1.12 !important;
    letter-spacing: -0.01em !important;
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 4 !important;
  }

  #home-innovation:not(.home-news-section) .accents-slider-item > .btn-link {
    grid-column: 2 !important;
    grid-row: 2 !important;
    align-self: end !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #d4af37 !important;
    font-size: 9px !important;
    line-height: 1 !important;
    letter-spacing: .1em !important;
    white-space: nowrap !important;
  }

  #home-innovation:not(.home-news-section) .accents-slider-item > .btn-link::after {
    width: 24px !important;
    height: 10px !important;
    margin-left: 5px !important;
    background-size: 24px 10px !important;
  }
}
