/* =========================================
   RENOVEX — PIXEL-PERFECT CLONE
   All values taken directly from:
   - css-variable8a54.css
   - style8a54.css (5163 lines)
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap&subset=latin-ext');

/* ---------------------------------
   CSS VARIABLES (Milan Yapı Brand)
   --------------------------------- */
body {
  --e-global-color-primary: #323232;
  --e-global-color-secondary: #F5F5F5;
  --e-global-color-text: #5c5c5c;
  --e-global-color-accent: #cdcabe;
  --e-global-color-accentsecondary: transparent;
  --e-global-color-white: #FFFFFF;
  --e-global-color-black: #000000;
  --e-global-color-divider: #3232321A;
  --e-global-color-darkdivider: #FFFFFF1A;
  --e-global-color-background: #FFFFFF;
  --e-global-typography-primary-font-family: "Space Grotesk", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --e-global-typography-secondary-font-family: "Space Grotesk", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --e-global-typography-text-font-family: "Space Grotesk", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --e-global-typography-accent-font-family: "Space Grotesk", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

html,
body {
  width: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--e-global-typography-text-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  color: var(--e-global-color-text);
  background: var(--e-global-color-background);
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  line-height: 1.6em;
  margin-bottom: 1.5em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: 700;
  margin: 0;
  line-height: 1.2em;
  color: var(--e-global-color-primary);
}

figure {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ---------------------------------
   CONTAINER (Renovex Exact)
   --------------------------------- */
.container {
  max-width: 1500px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

/* ---------------------------------
   CUSTOM SCROLLBAR
   --------------------------------- */
body::-webkit-scrollbar-track {
  background-color: var(--e-global-color-primary);
  border-left: 1px solid var(--e-global-color-primary);
}

body::-webkit-scrollbar {
  width: 7px;
  background-color: var(--e-global-color-primary);
}

body::-webkit-scrollbar-thumb {
  background: var(--e-global-color-accent);
}

/* ---------------------------------
   PRELOADER (Exact Renovex)
   --------------------------------- */
.theme-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000 !important;
  background-color: var(--e-global-color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-preloader .loading-container,
.theme-preloader .loading-container .loading {
  height: 560px;
  position: relative;
  width: 560px;
  border-radius: 100%;
}

.theme-preloader .loading-container {
  margin: 40px auto;
}

.theme-preloader .loading-container .loading {
  border: 2px solid transparent;
  border-color: transparent var(--e-global-color-accent) transparent var(--e-global-color-accent);
  animation: rotate-loading 2s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.theme-preloader .loading-container:hover .loading,
.theme-preloader .loading-container .loading {
  transition: all 0.5s ease-in-out;
}

.theme-preloader .loading-container #loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 500px;
  max-height: 500px;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
}

.theme-preloader .loading-container #loading-icon img {
  display: block;
  max-width: 100%;
  max-height: 500px;
  width: auto;
  height: auto;
}

@media (max-width: 767px) {
  .theme-preloader .loading-container,
  .theme-preloader .loading-container .loading {
    height: 320px;
    width: 320px;
  }
  .theme-preloader .loading-container #loading-icon,
  .theme-preloader .loading-container #loading-icon img {
    max-width: 280px;
    max-height: 280px;
  }
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ---------------------------------
   BUTTONS (Exact Renovex btn-default)
   --------------------------------- */
.btn-default {
  font-family: var(--e-global-typography-accent-font-family);
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1em;
  text-transform: capitalize;
  color: var(--e-global-color-primary);
  background: var(--e-global-color-accent);
  border-radius: 5px;
  padding: 5px 5px 5px 20px;
  border: none;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 1;
  cursor: pointer;
}

.btn-default:hover {
  color: var(--e-global-color-white);
}

.btn-default::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: var(--e-global-color-primary);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.btn-default:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.btn-default svg,
.btn-default i {
  width: 42px;
  height: 42px;
  background-color: var(--e-global-color-primary);
  color: var(--e-global-color-white);
  border-radius: 5px;
  padding: 11px;
  margin-left: 6px;
  transition: all 0.4s ease-in-out;
}

.btn-default i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-default:hover svg,
.btn-default:hover i {
  background-color: var(--e-global-color-accent);
  color: var(--e-global-color-primary);
}

/* Highlighted Button (pill style used in header) */
.btn-highlighted {
  display: block;
  background: var(--e-global-color-accent);
  color: var(--e-global-color-primary);
  font-family: var(--e-global-typography-accent-font-family);
  font-size: 16px;
  font-weight: 500;
  border: 2px solid var(--e-global-color-accent);
  padding: 10px 30px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: 0.2s transform ease-in-out;
  text-decoration: none;
}

.btn-highlighted::after {
  background-color: var(--e-global-color-primary);
  border-radius: 30px;
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, 0) rotate(10deg);
  transform-origin: top left;
  transition: 0.2s transform ease-out;
  will-change: transform;
  z-index: -1;
}

.btn-highlighted:hover::after {
  transform: translate(0, 0);
}

.btn-highlighted:hover {
  color: var(--e-global-color-accent);
}

/* Simple button variants for backward compat */
.btn {
  font-family: var(--e-global-typography-accent-font-family);
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 1em;
  text-transform: capitalize;
  color: var(--e-global-color-primary);
  background: var(--e-global-color-accent);
  border-radius: 5px;
  padding: 5px 5px 5px 20px;
  border: none;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 1;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  color: var(--e-global-color-white);
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: var(--e-global-color-primary);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.btn:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.btn .btn-icon {
  width: 42px;
  height: 42px;
  background-color: var(--e-global-color-primary);
  color: var(--e-global-color-white);
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  transition: all 0.4s ease-in-out;
  font-size: 18px;
}

.btn:hover .btn-icon {
  background-color: var(--e-global-color-accent);
  color: var(--e-global-color-primary);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--e-global-color-accent);
  color: var(--e-global-color-accent);
  padding: 14px 30px;
}

.btn--outline:hover {
  background: var(--e-global-color-accent);
  color: var(--e-global-color-primary);
}

.btn--outline::after {
  display: none;
}

/* ---------------------------------
   HEADER (Exact Renovex)
   --------------------------------- */
header.main-header {
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  z-index: 100;
}

header.main-header .header-sticky {
  position: relative;
  top: 0;
  background: rgba(50, 50, 50, 0.55);
  backdrop-filter: blur(30px) saturate(120%);
  -webkit-backdrop-filter: blur(30px) saturate(120%);
  z-index: 100;
  padding: 6px 0;
}

header.main-header .header-sticky.hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  padding: 15px 0;
  border-radius: 0;
  border-bottom: 1px solid var(--e-global-color-divider);
}

header.main-header .header-sticky.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(205, 202, 190, 0.12);
  transform: translateY(0);
  background: rgba(50, 50, 50, 0.88);
  backdrop-filter: blur(30px) saturate(120%);
  -webkit-backdrop-filter: blur(30px) saturate(120%);
  box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.45);
  animation: headerSlideDown .35s ease-out;
}

@keyframes headerSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar {
  padding: 0;
}

.navbar-brand {
  padding: 0;
  text-decoration: none;
}

.navbar-brand h1,
.navbar-brand h2 {
  font-size: 40px !important;
  color: var(--e-global-color-white) !important;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}

.navbar-brand span {
  display: block;
  font-size: 14px;
  color: var(--e-global-color-text);
  line-height: 1.2em;
}

.navbar-brand:hover {
  color: var(--e-global-color-accent);
}

.navbar-brand img {
  max-height: 50px;
}

/* Main Menu */
.main-menu {
  font-family: var(--e-global-typography-primary-font-family);
  justify-content: flex-end;
}

.main-menu ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.main-menu ul li {
  margin: 0 10px;
  position: relative;
}

.main-menu ul li:last-child {
  margin-right: 0;
}

.main-menu ul li a {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2em;
  padding: 12px 10px;
  color: var(--e-global-color-white);
  display: block;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
  color: var(--e-global-color-accent);
}

.main-menu ul li.active>a {
  color: var(--e-global-color-accent);
}

/* Dropdown (Exact Renovex) */
.main-menu ul li.menu-item-has-children>a:after {
  content: '\f107';
  font-family: 'FontAwesome';
  font-weight: 900;
  font-size: 14px;
  margin-left: 8px;
}

.main-menu ul ul {
  visibility: hidden;
  padding: 5px 0;
  margin: 0;
  list-style: none;
  width: 235px;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: var(--e-global-color-accent);
  opacity: 0;
  transform: scaleY(0.8);
  transform-origin: top;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}

.main-menu ul li:hover>ul {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
}

.main-menu ul ul li {
  margin: 0;
  padding: 0;
}

.main-menu ul ul li a,
.main-menu ul ul li a:focus {
  color: var(--e-global-color-primary);
  padding: 6px 20px;
}

.main-menu ul ul li a:hover {
  color: var(--e-global-color-white);
}

/* Header Action Button */
.header-action {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Mobile Menu Toggle */
.responsive-menu,
.navbar-toggle {
  display: none;
}

.mobile-toggle {
  display: none;
  background: var(--e-global-color-accent);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  background-color: var(--e-global-color-primary);
  border-radius: 6px;
  margin: 4px auto;
  transition: all 0.1s ease-in-out;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}

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

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}

/* ---------------------------------
   PAGE HEADER (Exact Renovex)
   --------------------------------- */
.page-header {
  position: relative;
  background-color: var(--e-global-color-primary);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 275px 0 170px;
  overflow: hidden;
}

.page-header:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--e-global-color-primary);
  opacity: 60%;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-header-box {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-header-box h1 {
  font-size: 52px !important;
  letter-spacing: -0.02em !important;
  color: var(--e-global-color-white) !important;
  line-height: 1.1em !important;
  margin-bottom: 10px;
  word-wrap: break-word;
}

.breadcrumb-trail {
  line-height: 1.3em;
}

.trail-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.trail-items li {
  font-weight: 500;
  color: var(--e-global-color-white);
  display: inline-block;
}

.trail-items li:before {
  content: '/';
  margin: 0 8px;
}

.trail-items li:first-child:before {
  display: none;
}

.trail-items li a {
  color: var(--e-global-color-white);
  transition: all 0.3s ease-in-out;
}

.trail-items li a:hover {
  color: var(--e-global-color-accent);
}

/* ---------------------------------
   HERO SECTION
   --------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--e-global-color-primary);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  color: var(--e-global-color-white);
  overflow: hidden;
  padding: 200px 0 100px;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--e-global-color-primary);
  opacity: 50%;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero__subtitle {
  font-family: var(--e-global-typography-primary-font-family);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--e-global-color-accent);
  margin-bottom: 20px;
  display: block;
}

.hero__title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1em;
  letter-spacing: -0.02em;
  color: var(--e-global-color-white) !important;
  margin-bottom: 25px;
}

.hero__desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.6em;
}

/* ---------------------------------
   SECTION HEADERS
   --------------------------------- */
.section {
  padding: 100px 0;
}

.section--dark {
  background-color: var(--e-global-color-primary);
  color: rgba(255, 255, 255, 0.7);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--e-global-color-white);
}

.section--alt {
  background-color: var(--e-global-color-secondary);
}

.section-header {
  margin-bottom: 60px;
}

.section-subtitle {
  font-family: var(--e-global-typography-primary-font-family);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--e-global-color-accent);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2em;
}

.section--dark .section-subtitle {
  color: var(--e-global-color-accent);
}

.section--dark .section-title {
  color: var(--e-global-color-white);
}

/* ---------------------------------
   SERVICE CARD (Renovex Icon Box)
   --------------------------------- */
.service-card {
  background-color: var(--e-global-color-white);
  padding: 0;
  border: 1px solid var(--e-global-color-divider);
  border-radius: 14px;
  transition: all 0.4s ease-in-out;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--e-global-color-accent);
}

.service-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f1f1ee;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__icon {
  font-size: 40px;
  color: var(--e-global-color-accent);
  margin: 40px 30px 20px;
  line-height: 0;
}

.service-card > .service-card__title,
.service-card > .service-card__text,
.service-card > .service-card__link {
  padding-left: 30px;
  padding-right: 30px;
}

.service-card > .service-card__title {
  margin-top: 24px;
}

.service-card > .service-card__link {
  margin-bottom: 30px;
  margin-top: auto;
}

.service-card__icon img,
.service-card__icon svg {
  width: 50px;
  height: 50px;
}

.service-card__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-card__text {
  color: var(--e-global-color-text);
  margin-bottom: 20px;
  line-height: 1.6em;
}

.service-card__link {
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: 600;
  color: var(--e-global-color-primary);
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease-in-out;
}

.service-card__link i,
.service-card__link svg {
  width: 24px;
  height: auto;
  color: var(--e-global-color-primary);
  background-color: var(--e-global-color-accent);
  border-radius: 50%;
  padding: 6px;
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out;
}

.service-card:hover .service-card__link i,
.service-card:hover .service-card__link svg {
  transform: rotate(0deg);
}

/* ---------------------------------
   PROJECT CARD (Renovex Blog-style overlay)
   --------------------------------- */
.project-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  display: block;
}

.project-card__img {
  width: 100%;
  aspect-ratio: 1 / 1.064;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.6s ease-in-out;
}

.project-card:hover .project-card__img {
  transform: scale(1.08);
}

.project-card__overlay {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  z-index: 1;
}

.project-card__title {
  color: var(--e-global-color-white) !important;
  font-size: 20px !important;
  line-height: 1.4em !important;
  margin-bottom: 5px;
}

.project-card__cat {
  font-weight: 600;
  text-transform: uppercase;
  color: var(--e-global-color-accent);
  font-size: 13px;
  letter-spacing: 1px;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--e-global-color-primary);
  opacity: 40%;
  z-index: 1;
  border-radius: 10px;
}

/* ---------------------------------
   BLOG CARD (Exact Renovex post-item)
   --------------------------------- */
.post-item {
  position: relative;
  border-radius: 10px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}

.post-item .post-featured-image {
  position: relative;
  display: block;
}

.post-item .post-featured-image::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--e-global-color-primary);
  opacity: 40%;
  z-index: 1;
}

.post-item .post-featured-image img {
  width: 100%;
  aspect-ratio: 1 / 1.064;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.6s ease-in-out;
}

.post-item:hover .post-featured-image img {
  transform: scale(1.08);
}

.post-item-body {
  position: absolute;
  right: 40px;
  bottom: 40px;
  left: 40px;
  z-index: 1;
}

.post-content-box {
  border-bottom: 1px solid var(--e-global-color-darkdivider);
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.post-item-meta p {
  line-height: 1em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--e-global-color-white);
  margin-bottom: 10px;
}

.post-item-content h2 {
  color: var(--e-global-color-white) !important;
  font-size: 20px !important;
  line-height: 1.4em !important;
  letter-spacing: 0 !important;
  word-wrap: break-word;
}

.post-item-content h2 a {
  color: inherit;
}

.post-item-btn a {
  font-weight: 600;
  color: var(--e-global-color-white);
}

.post-item-btn a i {
  width: 24px;
  height: auto;
  color: var(--e-global-color-primary);
  background-color: var(--e-global-color-accent);
  border-radius: 50%;
  padding: 6px;
  margin-left: 6px;
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.post-item-btn a:hover i {
  transform: rotate(0deg);
}

/* ---------------------------------
   FOOTER (Exact Renovex)
   --------------------------------- */
footer.footer {
  background-color: var(--e-global-color-primary);
}

.footer-main {
  padding: 60px 0;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo h4 {
  color: var(--e-global-color-white) !important;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}

.footer-logo a {
  display: inline-block;
}

.footer-logo img {
  max-height: 140px;
  width: auto;
  display: block;
}

.footer-social ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-social ul li {
  display: inline-block;
  margin-right: 12px;
}

.footer-social ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  width: 36px;
  height: 36px;
  color: var(--e-global-color-accent);
  font-size: 18px;
  border-radius: 100px;
  border: 1px solid var(--e-global-color-accent);
  transition: all 0.3s ease-in-out;
}

.footer-social ul li a:hover {
  background: var(--e-global-color-accent);
  color: var(--e-global-color-primary);
}

.footer-menu {
  text-align: right;
  margin-bottom: 20px;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu ul li {
  display: inline-block;
  margin-left: 30px;
}

.footer-menu ul li a {
  color: var(--e-global-color-white);
  transition: all 0.3s ease-in-out;
}

.footer-menu ul li a:hover {
  color: var(--e-global-color-accent);
}

.copyright {
  text-align: right;
}

.copyright p {
  color: var(--e-global-color-white);
  margin: 0;
}

/* Footer text helpers */
.footer-text {
  color: var(--e-global-color-text);
  line-height: 1.6em;
  margin-bottom: 25px;
}

.footer-widget-title {
  color: var(--e-global-color-white);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
}

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

.footer-links li a {
  color: var(--e-global-color-text);
  transition: all 0.3s ease-in-out;
}

.footer-links li a:hover {
  color: var(--e-global-color-accent);
  padding-left: 5px;
}

.footer-contact li {
  color: var(--e-global-color-text);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact li i {
  color: var(--e-global-color-accent);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--e-global-color-darkdivider);
  padding-top: 30px;
  margin-top: 30px;
}

/* ---------------------------------
   ABOUT SECTION
   --------------------------------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

/* ---------------------------------
   PAGINATION
   --------------------------------- */
.pagination .nav-links {
  margin-top: 30px;
  display: flex;
  text-align: center;
  justify-content: center;
  width: 100%;
}

.pagination .nav-links a,
.pagination .nav-links span {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  background: var(--e-global-color-secondary);
  color: var(--e-global-color-primary);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  font-weight: 700;
  line-height: 1em;
  transition: all 0.3s ease-in-out;
}

.pagination .nav-links span.current,
.pagination .nav-links a:hover {
  background: var(--e-global-color-accent);
  color: var(--e-global-color-primary);
}

/* ---------------------------------
   UTILITY CLASSES
   --------------------------------- */
.text-center {
  text-align: center;
}

.text-accent {
  color: var(--e-global-color-accent) !important;
}

.bg-dark {
  background-color: var(--e-global-color-primary);
}

.text-white {
  color: var(--e-global-color-white);
}

/* Grid helpers */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Shiny glass effect (Renovex) */
.at-shiny-glass-effect {
  position: relative;
  overflow: hidden;
}

.at-shiny-glass-effect:after {
  content: '';
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, .3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.at-shiny-glass-effect:hover:after {
  height: 250%;
  transition: all 600ms linear !important;
  background-color: transparent;
}

/* Reveal animation placeholder (GSAP handles actual animation) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------
   CTA SECTION
   --------------------------------- */
.cta-section {
  position: relative;
  background: var(--e-global-color-primary);
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(254, 212, 3, 0.08) 0%, transparent 70%);
  z-index: 0;
}

/* ---------------------------------
   STATS / COUNTER
   --------------------------------- */
.stat-item {
  text-align: center;
  padding: 30px 40px;
}

.stat-number {
  font-family: var(--e-global-typography-primary-font-family);
  font-size: 56px;
  font-weight: 700;
  color: var(--e-global-color-accent);
  line-height: 1em;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--e-global-color-darkdivider);
  align-self: center;
}

/* ---------------------------------
   TESTIMONIAL SLIDER
   --------------------------------- */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  min-width: 33.333%;
  padding: 0 15px;
  box-sizing: border-box;
}

.testimonial-card {
  background: var(--e-global-color-white);
  border: 1px solid var(--e-global-color-divider);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
}

.testimonial-stars {
  color: var(--e-global-color-accent);
  font-size: 18px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-style: italic;
  color: var(--e-global-color-text);
  line-height: 1.6em;
  margin-bottom: 20px;
  font-size: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 700;
  color: var(--e-global-color-primary);
  font-size: 16px;
}

.testimonial-role {
  font-size: 14px;
  color: var(--e-global-color-text);
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--e-global-color-divider);
  background: transparent;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  color: var(--e-global-color-primary);
}

.slider-btn:hover {
  background: var(--e-global-color-accent);
  border-color: var(--e-global-color-accent);
  color: var(--e-global-color-primary);
}

/* ---------------------------------
   FAQ ACCORDION
   --------------------------------- */
.faq-item {
  border: 1px solid var(--e-global-color-divider);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 25px;
  border: none;
  background: transparent;
  font-family: var(--e-global-typography-primary-font-family);
  font-size: 18px;
  font-weight: 600;
  color: var(--e-global-color-primary);
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease-in-out;
}

.faq-question:hover {
  color: var(--e-global-color-accent);
}

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  transition: transform 0.3s ease-in-out;
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}

.faq-answer p {
  padding: 0 25px 20px;
  color: var(--e-global-color-text);
  line-height: 1.6em;
  margin: 0;
}

.faq-item.active {
  border-color: var(--e-global-color-accent);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ---------------------------------
   BACK TO TOP
   --------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--e-global-color-accent);
  color: var(--e-global-color-primary);
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ---------------------------------
   FORM ELEMENTS
   --------------------------------- */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  font-family: var(--e-global-typography-text-font-family);
  transition: border-color 0.3s ease-in-out;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: var(--e-global-color-accent) !important;
  outline: none;
}

/* ---------------------------------
   RESPONSIVE (Exact Renovex Breakpoints)
   --------------------------------- */

/* ≤ 1440px */
@media only screen and (max-width: 1440px) {
  .container {
    max-width: 1300px;
  }
}

/* ≤ 1024px */
@media only screen and (max-width: 1024px) {
  .navbar-brand span {
    display: none;
  }

  .main-menu ul li {
    margin: 0;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ≤ 991px */
@media only screen and (max-width: 991px) {

  .navbar-brand h1,
  .navbar-brand h2 {
    font-size: 30px !important;
  }

  .mobile-toggle {
    display: flex;
  }

  /* ---- Mobil: Gate-Style Full-Screen Overlay ---- */
  /* =====================================================
     Mobil Full-Screen Menü — Şık + Animasyonlu
     ===================================================== */
  .main-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    background: #232323;
    background-image:
      radial-gradient(ellipse at 15% 5%, rgba(205, 202, 190, 0.05), transparent 50%),
      radial-gradient(ellipse at 85% 95%, rgba(205, 202, 190, 0.04), transparent 55%);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.03);
    transition: opacity .45s ease, transform .6s cubic-bezier(.22,1,.36,1), visibility 0s linear .6s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .main-menu.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: opacity .45s ease, transform .6s cubic-bezier(.22,1,.36,1), visibility 0s;
  }

  /* Dekoratif köşe çizgisi */
  .main-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--e-global-color-accent), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .8s cubic-bezier(.22,1,.36,1) .15s;
  }
  .main-menu.active::before { transform: scaleX(1); }

  /* Menü liste */
  .main-menu ul {
    flex-direction: column;
    padding: 30px 30px;
    margin: 0;
    list-style: none;
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 0;
  }

  .main-menu ul li {
    border-top: 1px solid rgba(205, 202, 190, 0.12);
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity .5s ease, transform .6s cubic-bezier(.22,1,.36,1);
  }
  .main-menu ul li:last-child { border-bottom: 1px solid rgba(205, 202, 190, 0.12); }

  .main-menu.active ul li { opacity: 1; transform: none; }
  .main-menu.active ul li:nth-child(1) { transition-delay: .35s; }
  .main-menu.active ul li:nth-child(2) { transition-delay: .42s; }
  .main-menu.active ul li:nth-child(3) { transition-delay: .49s; }
  .main-menu.active ul li:nth-child(4) { transition-delay: .56s; }
  .main-menu.active ul li:nth-child(5) { transition-delay: .63s; }
  .main-menu.active ul li:nth-child(6) { transition-delay: .70s; }

  .main-menu ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 8px;
    color: var(--e-global-color-accent);
    font-family: "Space Grotesk", sans-serif;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1;
    position: relative;
    overflow: hidden;
    transition: color .35s, padding-left .45s cubic-bezier(.22,1,.36,1);
  }

  .main-menu ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--e-global-color-accent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .4s cubic-bezier(.22,1,.36,1);
  }

  .main-menu ul li a::after {
    content: "→";
    font-size: 18px;
    opacity: 0.3;
    transition: opacity .3s, transform .4s cubic-bezier(.22,1,.36,1), color .3s;
  }

  .main-menu ul li a:hover,
  .main-menu ul li.active > a {
    color: #fff;
    padding-left: 18px;
  }
  .main-menu ul li a:hover::before,
  .main-menu ul li.active > a::before { transform: scaleY(1); }
  .main-menu ul li a:hover::after,
  .main-menu ul li.active > a::after {
    opacity: 1;
    transform: translateX(6px);
    color: var(--e-global-color-accent);
  }

  /* Mobil menü başlığı */
  /* Mobil menü başlığı — logo ortada, close sağda */
  .mobile-menu-head {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 26px 24px 22px;
    min-height: 110px;
    border-bottom: 1px solid rgba(205, 202, 190, 0.1);
    position: relative;
  }

  .mobile-menu-head .mobile-menu-close {
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
  }

  .mobile-menu-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    line-height: 0;
  }

  /* Sinematik logo wrapper */
  .mobile-menu-logo .mm-logo-wrap {
    position: relative;
    display: inline-block;
    line-height: 0;
  }

  .mobile-menu-logo img {
    max-height: 72px;
    width: auto;
    display: block;
  }

  /* Header tarzı shine — logo alpha şekline maskelenmiş kesintisiz parıltı */
  .mobile-menu-logo .mm-logo-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
      115deg,
      rgba(255, 255, 255, 0) 38%,
      rgba(255, 255, 255, 0.85) 50%,
      rgba(255, 255, 255, 0) 62%
    ) no-repeat;
    background-size: 220% 100%;
    background-position: -120% 0;
    -webkit-mask-image: var(--logo-shape);
            mask-image: var(--logo-shape);
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    mix-blend-mode: screen;
    animation: logoVipShine 3.5s linear infinite 1.2s;
  }


  .mobile-menu-logo .mm-slogan {
    display: inline-block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--e-global-color-accent);
    padding-left: 14px;
    border-left: 1px solid rgba(205, 202, 190, 0.3);
    line-height: 1.3;
    white-space: nowrap;
    opacity: .85;
  }

  /* Dekoratif caption şeridi — "NAVIGATION" ile iki yan çizgi */
  .mobile-menu-caption-line {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 32px 8px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .5s ease .45s, transform .6s cubic-bezier(.22,1,.36,1) .45s;
  }
  .main-menu.active .mobile-menu-caption-line {
    opacity: 1;
    transform: none;
  }
  .mobile-menu-caption-line .mm-line {
    flex: 1;
    height: 1px;
    background: rgba(205, 202, 190, 0.18);
  }
  .mobile-menu-caption-line .mm-caption {
    font-family: "Space Grotesk", sans-serif;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--e-global-color-accent);
    opacity: 0.7;
    font-weight: 500;
  }

  .mobile-menu-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(205, 202, 190, 0.25);
    background: transparent;
    position: relative;
    cursor: pointer;
    transition: border-color .3s, background .3s;
  }

  .mobile-menu-close:hover {
    border-color: var(--e-global-color-accent);
    background: rgba(205, 202, 190, 0.08);
  }

  .mobile-menu-close span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 1.5px;
    background: var(--e-global-color-accent);
    border-radius: 2px;
  }

  .mobile-menu-close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
  .mobile-menu-close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

  /* Dil seçici mobil */
  .main-menu.active ul li.menu-lang-switch {
    border-top: 1px solid rgba(205, 202, 190, 0.14);
    border-bottom: none;
    padding: 18px 0;
    justify-content: center;
    display: flex;
    gap: 10px;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 600;
  }

  .main-menu.active ul li.menu-lang-switch a {
    display: inline;
    padding: 6px 10px;
    color: rgba(205, 202, 190, 0.5);
  }

  .main-menu.active ul li.menu-lang-switch a.is-active,
  .main-menu.active ul li.menu-lang-switch a:hover {
    color: var(--e-global-color-accent);
    padding-left: 10px;
  }

  .main-menu.active ul li.menu-lang-switch .lang-sep {
    color: rgba(205, 202, 190, 0.3);
  }

  /* Mobil menü alt bilgi */
  .mobile-menu-foot {
    padding: 20px 28px 32px;
    border-top: 1px solid rgba(205, 202, 190, 0.12);
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease .65s, transform .7s cubic-bezier(.22,1,.36,1) .65s;
  }

  .main-menu.active .mobile-menu-foot {
    opacity: 1;
    transform: none;
  }

  .mmf-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: rgba(205, 202, 190, 0.75);
    letter-spacing: 0.5px;
    transition: color .3s;
  }

  .mmf-contact:hover { color: var(--e-global-color-accent); }

  .mmf-contact i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(205, 202, 190, 0.08);
    color: var(--e-global-color-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
  }

  .mmf-social {
    display: flex;
    gap: 10px;
    margin-top: 8px;
  }

  .mmf-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(205, 202, 190, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--e-global-color-accent);
    font-size: 13px;
    transition: all .3s;
  }

  .mmf-social a:hover {
    background: var(--e-global-color-accent);
    color: var(--e-global-color-primary);
    border-color: var(--e-global-color-accent);
  }

  .mobile-menu-head { display: flex; }
  .mobile-menu-foot { display: flex; }

  body.menu-open { overflow: hidden; }

  .header-action .btn-highlighted,
  .header-action .btn-default {
    display: none;
  }

  header.main-header .header-sticky {
    padding: 20px 0;
  }

  .page-header {
    background-attachment: inherit;
    padding: 170px 0 80px;
  }

  .page-header-box h1 {
    font-size: 40px !important;
  }

  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 32px;
  }

  .hero {
    padding: 160px 0 80px;
  }

  .hero__title {
    font-size: 40px;
  }

  .btn-default {
    font-size: 16px;
    padding: 5px 5px 5px 16px;
  }

  .btn-default svg,
  .btn-default i {
    width: 36px;
    height: 36px;
    padding: 9px;
  }

  .btn .btn-icon {
    width: 36px;
    height: 36px;
  }

  .footer-main {
    padding: 40px 0;
  }

  .footer-logo {
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-social {
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-social ul li {
    margin: 0 5px;
  }

  .footer-menu {
    text-align: center;
  }

  .footer-menu ul li {
    margin: 0 10px;
  }

  .copyright {
    text-align: center;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .post-item-body {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .project-card__overlay {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .testimonial-slide {
    min-width: 50%;
  }

  .stat-number {
    font-size: 40px;
  }

  .cta-section {
    padding: 60px 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-left,
  .footer-right {
    text-align: center;
  }

  .footer-menu {
    text-align: center;
  }

  .about-split {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

/* ≤ 767px */
@media only screen and (max-width: 767px) {
  .page-header-box h1 {
    font-size: 28px !important;
  }

  .hero__title {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

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

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

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

  .testimonial-slide {
    min-width: 100%;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-item {
    padding: 15px 20px;
  }

  .stat-divider {
    display: none;
  }

  .hero__desc {
    font-size: 16px;
  }
}

/* ===================================================================
   RENOVEX SLIDER STYLES
   =================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 750px;
  overflow: hidden;
  background: #000;
}

.hero-slider {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  animation: panZoom 20s linear infinite alternate;
}

@keyframes panZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.hero-slider .container {
  height: 100%;
  position: relative;
  z-index: 2;
}

.slide-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 800px;
  padding-top: 80px;
  /* Offset for header */
}

.slide-subtitle {
  display: inline-block;
  color: var(--e-global-color-accent);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards 0.5s;
}

.slide-title {
  font-family: var(--e-global-typography-primary-font-family);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1em;
  color: #fff;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards 0.7s;
}

.slide-title .text-accent {
  color: var(--e-global-color-accent);
}

.slide-desc {
  font-size: 18px;
  line-height: 1.6em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards 0.9s;
}

.slide-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards 1.1s;
}

/* Animations that restart on active slide */
.swiper-slide-active .slide-subtitle,
.swiper-slide-active .slide-title,
.swiper-slide-active .slide-desc,
.swiper-slide-active .slide-btns {
  animation-play-state: running;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Swiper Nav */
.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
  width: 60px !important;
  height: 60px !important;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--e-global-color-accent);
  color: var(--e-global-color-primary) !important;
}

.swiper-pagination-bullet {
  background: #fff !important;
  opacity: 0.5;
  width: 10px;
  height: 10px;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--e-global-color-accent) !important;
  width: 30px;
  border-radius: 5px;
  transition: width 0.3s ease;
}

/* Response */
@media (max-width: 768px) {
  .slide-title {
    font-size: 36px;
  }

  .slide-desc {
    font-size: 16px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
}

/* ===================================================================
   OVERLAPPING SERVICES STYLES
   =================================================================== */
.services-overlap {
  padding-top: 0 !important;
  margin-top: -120px;
  position: relative;
  z-index: 20;
  background: transparent !important;
}

.services-overlap .section-header {
  display: none;
}

.services-overlap .service-card {
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  background: #fff;
  border: none;
}

@media (max-width: 991px) {
  .services-overlap {
    margin-top: 0;
    background: var(--e-global-color-secondary) !important;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  .services-overlap .section-header {
    display: block;
  }
}

/* ===================================================================
   ABOUT US REDESIGN STYLES
   =================================================================== */
.about-section {
  padding: 100px 0;
  /* Standard Section Padding */
  margin-top: 0;
  /* Remove negative margin to prevent overlap */
  background: #fff;
  /* Ensure background breaks content */
  overflow: hidden;
}

/* Flex Layout (Strict Side-by-Side) */
.about-newspaper-layout {
  display: flex;
  align-items: flex-start;
  /* Align top */
  gap: 60px;
  /* Generous gap */
}

.about-images-wrapper {
  position: relative;
  flex: 0 0 450px;
  /* Fixed width */
  max-width: 450px;
  width: 100%;
  margin: 0;
  padding-right: 0;
  text-align: left;
}

.about-img-main img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: none;
}

.about-img-overlap {
  position: absolute;
  top: auto;
  bottom: -20px;
  right: -20px;
  width: 50%;
  border: 5px solid #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.about-img-overlap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
}

/* Line Clamp Utility */
/* Line Clamp Utility */
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.about-content-wrapper {
  padding-left: 0;
  /* Removed padding for wrap */
  display: block;
}

.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  /* Compact gap */
  margin-top: 20px;
  /* Compact margin */
  margin-bottom: 20px;
}

.about-feature-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f9f9f9;
  padding: 15px;
  /* Compact padding */
  border-radius: 10px;
}

.about-feature-box .icon-box {
  min-width: 40px;
  /* Smaller icon */
  height: 40px;
  background: var(--e-global-color-accent);
  color: var(--e-global-color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 8px;
}

.about-feature-box h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--e-global-color-primary);
}

.about-feature-box p {
  font-size: 13px;
  line-height: 1.5em;
  margin: 0;
  color: var(--e-global-color-text);
}

/* Compact Bottom Row - Side by Side */
.about-bottom-row {
  display: flex;
  flex-direction: row;
  /* Horizontal */
  align-items: center;
  /* Center vertically */
  justify-content: space-between;
  /* Space between list and button */
  gap: 20px;
  margin-top: 10px;
  /* Minimal top margin */
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-list li {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  /* Compact spacing */
  display: flex;
  align-items: center;
}

.about-list li i {
  color: var(--e-global-color-accent);
  margin-right: 10px;
  font-size: 10px;
  /* Mini icon */
}

/* Button Compact */
.about-content-wrapper .btn {
  padding: 10px 25px;
  font-size: 14px;
}


.about-list li i {
  color: var(--e-global-color-accent);
  font-size: 8px;
  /* Square bullet */
}

.about-video-preview {
  position: relative;
  width: 200px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.about-video-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-video-preview .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--e-global-color-accent);
  color: var(--e-global-color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

.about-video-preview .play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 991px) {
  .about-newspaper-layout {
    flex-direction: column;
    gap: 40px;
  }

  .about-images-wrapper {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    margin: 0 0 30px 0;
    padding-right: 0;
    text-align: center;
    padding-bottom: 0;
  }

  .about-img-main img {
    width: 100%;
  }

  .about-img-overlap {
    display: none;
  }

  .experience-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin: -40px auto 0;
    transform: none !important;
    animation: none;
  }

  .experience-badge .badge-content {
    animation: none;
    transform: none;
  }

  .about-content-wrapper {
    padding-left: 0;
  }

  .about-features-grid {
    grid-template-columns: 1fr;
  }

  .about-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-video-preview {
    width: 100%;
    height: 200px;
  }
}

/* ===================================================================
   SERVICE CARD PREMIUM ENHANCEMENTS
   =================================================================== */
.service-card {
  position: relative;
  overflow: hidden !important;
  z-index: 1;
  border: none !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  /* Softer, larger shadow */
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Architectural Accent (Corner) */
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: var(--e-global-color-accent);
  opacity: 0.1;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  transition: all 0.4s ease;
  z-index: -1;
}

.service-card:hover::after {
  width: 100%;
  height: 4px;
  /* Bottom border effect */
  opacity: 1;
  clip-path: none;
}

/* Shine Effect (Light Süzmesi) */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.7) 50%, transparent 100%);
  transform: skewX(-25deg);
  transition: none;
  z-index: 2;
  pointer-events: none;
}

.service-card:hover::before {
  left: 150%;
  transition: 0.8s ease-in-out;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-card__icon {
  width: 70px;
  height: 70px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease;
  background: transparent;
  /* Reset */
}

/* Icon Background via Pseudo */
.service-card__icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--e-global-color-accent);
  opacity: 0.1;
  border-radius: 50% 50% 50% 0;
  /* Leaf shape */
  transition: all 0.4s ease;
  z-index: -1;
}

.service-card:hover .service-card__icon::before {
  opacity: 1;
  transform: rotate(360deg);
  border-radius: 50%;
}

.service-card:hover .service-card__icon {
  color: var(--e-global-color-primary);
}

/* ===================================================================
   OVERLAPPING SERVICES: 6 COLUMN PREMIUM DARK & REFINED V4 (FINAL)
   =================================================================== */
@media (min-width: 1200px) {
  .services-overlap .grid-3 {
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 15px;
    align-items: stretch;
  }

  .services-overlap .service-card {
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: 280px !important;
    min-height: 280px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: none;
    background: #222;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
  }

  /* Background Image Wrapper */
  .services-overlap .service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 0.8s ease;
    opacity: 0.85;
    /* Even more visible */
  }

  /* Gradient Overlay - LIGHT & BALANCED */
  .services-overlap .service-card-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Lighter gradient for image visibility */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.7) 100%);
    transition: all 0.5s ease;
    z-index: 1;
  }

  .services-overlap .service-card:hover .service-card-bg {
    transform: scale(1.1);
    opacity: 0.6;
  }

  .services-overlap .service-card:hover .service-card-bg::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.8) 100%);
  }

  /* Content Wrapper */
  .services-overlap .service-card__content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    /* TOP ALIGN FIX */
    padding: 60px 25px 25px 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  /* Icon - TOP RIGHT & VISIBLE 
       Added !important to override potential conflicts */
  /* Icon - TOP RIGHT & VISIBLE 
       Added !important to override potential conflicts */
  .services-overlap .service-card__icon {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    margin: 0 !important;
    width: 45px !important;
    height: 45px !important;
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 10px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    transform: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 20 !important;
    /* On Top of Everything */
    opacity: 1 !important;
  }

  .services-overlap .service-card__icon i,
  .services-overlap .service-card__icon svg {
    font-size: 18px !important;
    color: #fff !important;
    line-height: 1;
    display: inline-block !important;
    visibility: visible !important;
  }

  /* Title */
  .services-overlap .service-card__title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.5s ease;
    transform: none;
    color: #fff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
    display: block !important;
    opacity: 1 !important;
    text-align: left;
    width: 100%;
    padding-right: 40px;
    min-height: 38px;
    /* Fixed Height for Alignment */
  }

  /* Text */
  .services-overlap .service-card__text {
    position: relative;
    opacity: 0.9;
    transition: all 0.5s ease;
    font-size: 11px;
    line-height: 1.5em;
    color: #eee;
    margin: 0 0 15px 0;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    pointer-events: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  }

  /* Link */
  .services-overlap .service-card__link {
    position: relative;
    width: auto;
    text-align: left;
    opacity: 1;
    transition: all 0.5s ease;
    margin: 0;
    font-size: 10px;
    font-weight: 700;
    color: var(--e-global-color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 0;
    display: inline-flex;
    align-items: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  }

  .services-overlap .service-card__link i {
    margin-left: 6px;
    transition: margin 0.3s ease;
  }

  /* Stretched Link */
  .services-overlap .service-card__link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    top: -300px;
    bottom: -300px;
    left: -300px;
    right: -300px;
    /* Coverage */
    z-index: 10;
    cursor: pointer;
  }

  /* Hover Effects */
  .services-overlap .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  }

  .services-overlap .service-card:hover .service-card__icon {
    background: var(--e-global-color-accent) !important;
    border-color: var(--e-global-color-accent) !important;
    transform: rotate(10deg) scale(1.1);
  }

  .services-overlap .service-card:hover .service-card__icon i {
    color: #000 !important;
    transform: rotate(-10deg);
  }

  .services-overlap .service-card:hover .service-card__title {
    color: var(--e-global-color-accent) !important;
  }

  .services-overlap .service-card:hover .service-card__text {
    opacity: 1;
    color: #fff;
  }

  .services-overlap .service-card:hover .service-card__link {
    color: #fff;
    padding-left: 5px;
  }

  .services-overlap .service-card:hover .service-card__link i {
    margin-left: 10px;
  }
}

/* Tablet Adjustment (3 cols) */
@media (min-width: 992px) and (max-width: 1199px) {
  .services-overlap .grid-3 {
    grid-template-columns: repeat(3, 1fr) !important;
    background: transparent !important;
  }
}

/* ===================================================================
   PROJECT SLIDER (MODERN SWIPER)
   =================================================================== */
.project-slider-section {
  padding: 50px 0;
  /* Narrower padding */
  overflow: hidden;
  background-color: #080808;
  /* Premium Dark */
  position: relative;
  /* Stylish Motif - Dotted with Accent Color */
  background-image: radial-gradient(rgba(254, 212, 3, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* Vignette Overlay for Depth */
.project-slider-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, #080808 90%);
  z-index: 1;
  pointer-events: none;
}

/* Filtering Transition */
.projects-slider .swiper-wrapper {
  transition: opacity 0.3s ease;
  opacity: 1;
}

.projects-slider .swiper-wrapper.filtering {
  opacity: 0;
}

/* ARCHITECTURAL ANIMATION */
.arch-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
}

.arch-line {
  position: absolute;
  background: var(--e-global-color-accent);
}

.arch-line.line-1 {
  width: 1px;
  height: 100%;
  left: 15%;
  top: 0;
  opacity: 0.2;
  animation: archMoveY 15s infinite linear;
}

.arch-line.line-2 {
  width: 100%;
  height: 1px;
  left: 0;
  top: 30%;
  opacity: 0.2;
  animation: archMoveX 20s infinite linear;
}

.arch-line.line-3 {
  width: 1px;
  height: 100%;
  right: 25%;
  top: 0;
  opacity: 0.15;
  animation: archMoveY 18s infinite linear reverse;
}

.arch-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1px dashed rgba(254, 212, 3, 0.2);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  animation: archRotate 60s infinite linear;
}

@keyframes archMoveY {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

@keyframes archMoveX {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes archRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


.project-slider-section .container,
.project-slider-section .container-fluid {
  position: relative;
  z-index: 2;
}

.project-slider-section .section-header {
  margin-bottom: 30px;
}

/* Filter Tabs */
.project-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--e-global-typography-primary-font-family);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--e-global-color-accent);
  border-color: var(--e-global-color-accent);
  color: var(--e-global-color-primary);
  font-weight: 700;
}

/* Vignette Overlay for Depth */
.project-slider-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, #080808 90%);
  z-index: 1;
  pointer-events: none;
}

.project-slider-section .container,
.project-slider-section .container-fluid {
  position: relative;
  z-index: 2;
}

.project-slider-section .section-header {
  margin-bottom: 40px;
}

/* Custom Navigation Buttons */
.slider-nav-buttons {
  display: flex;
  gap: 15px;
}

.swiper-button-custom {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.swiper-button-custom:hover {
  background: var(--e-global-color-accent);
  border-color: var(--e-global-color-accent);
  color: var(--e-global-color-primary);
  transform: scale(1.1);
}

.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Project Card Modern */
/* Project Card Modern - Hover Reveal */
/* 2026 GLASS FILTERS */
/* 2026 GLASS FILTERS */
.project-filters-glass {
  display: inline-flex;
  gap: 10px;
  /* Restored gap */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-filter-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  padding: 10px 25px;
  /* Comfortable padding */
  border-radius: 40px;
  font-size: 14px;
  /* Readable font */
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--e-global-typography-primary-font-family);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.glass-filter-btn:hover {
  color: #fff;
}

.glass-filter-btn.active {
  background: var(--e-global-color-accent);
  color: var(--e-global-color-primary);
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(254, 212, 3, 0.2);
}

/* PROJECT CARD - RICH HOVER REVEAL (Refined for Visibility) */
.project-card-modern {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}

.project-card-modern .card-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #000;
  aspect-ratio: 4/5;
}

.project-card-modern .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0.9;
}

.project-card-modern:hover .card-image img {
  transform: scale(1.1);
  opacity: 0.4;
  filter: blur(2px);
}

.project-card-modern .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Always visible gradient for title readability */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0) 100%);
  opacity: 1;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

/* Container for content */
.project-card-modern .card-content-reveal {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Title is always visible and dominant */
.project-card-modern .card-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  transition: transform 0.4s ease;
}

/* HIDDEN ELEMENTS (Reveal on Hover) */
.project-card-modern .card-separator,
.project-card-modern .project-details-grid,
.project-card-modern .card-action-btn {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  transform: translateY(20px);
}

.project-card-modern .card-separator {
  margin: 0;
}

.project-card-modern .project-details-grid {
  margin-bottom: 0;
}

/* HOVER STATES */
.project-card-modern:hover .card-separator {
  max-height: 2px;
  opacity: 1;
  margin-top: 15px;
  margin-bottom: 20px;
  transform: translateY(0);
}

.project-card-modern:hover .project-details-grid {
  max-height: 200px;
  /* Approximately enough for 2 rows */
  opacity: 1;
  margin-bottom: 25px;
  transform: translateY(0);
}

.project-card-modern:hover .card-action-btn {
  max-height: 30px;
  opacity: 1;
  transform: translateY(0);
}

/* Details Grid */
.project-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 25px;
}

.detail-item {
  display: flex;
  flex-direction: column;
}

.detail-item .lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.detail-item .lbl i {
  color: var(--e-global-color-accent);
  margin-right: 5px;
}

.detail-item .val {
  font-size: 13px;
  color: #fff;
  font-weight: 600;
}

.card-action-btn {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--e-global-color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.card-action-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.project-card-modern:hover .card-action-btn i {
  transform: translateX(5px);
}

.project-card-modern .card-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
  aspect-ratio: 4/5;
  /* Taller format for better reveal */
}

.project-card-modern .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0.9;
}

.project-card-modern:hover .card-image img {
  transform: scale(1.15);
  opacity: 0.5;
}

.project-card-modern .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

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

.project-card-modern .card-content-reveal {
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-card-modern:hover .card-content-reveal {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.1s;
}

.project-card-modern .card-cat {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--e-global-color-accent);
  margin-bottom: 8px;
  font-weight: 700;
}

.project-card-modern .card-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.project-card-modern .card-icon {
  width: 45px;
  height: 45px;
  background: var(--e-global-color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--e-global-color-primary);
  font-size: 16px;
  display: inline-flex;
  /* Fix alignment */
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s ease;
}

.project-card-modern:hover .card-icon {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.2s;
}

/* Swiper Pagination */
.project-slider-section .swiper-pagination {
  position: relative;
  margin-top: 30px;
  bottom: 0 !important;
}

.project-slider-section .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.3;
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
}

.project-slider-section .swiper-pagination-bullet-active {
  background: var(--e-global-color-accent);
  opacity: 1;
  transform: scale(1.2);
}

/* ==============================================
   Service Detail Page — Sidebar + Content Layout
   ============================================== */
.service-detail {
  padding: 80px 0 100px;
  background: #fff;
}

.service-detail__grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
}

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

/* Sidebar */
.service-detail__sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}

@media (max-width: 991px) {
  .service-detail__sidebar {
    position: static;
  }
}

.service-sidebar-box {
  border-radius: 14px;
  overflow: hidden;
  background: #f7f7f7;
  border: 1px solid #ececec;
}

.service-sidebar-box__head,
.services-list-box .service-sidebar-box__head {
  background: var(--e-global-color-accent);
  padding: 18px 22px;
}

.service-sidebar-box__head h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--e-global-color-primary);
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 10px 0;
}

.service-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  color: #1e293b;
  border-bottom: 1px solid #ececec;
  transition: color .2s, background .2s;
  text-decoration: none;
  font-size: 15px;
}

.service-list li:last-child a {
  border-bottom: none;
}

.service-list li a:hover {
  color: var(--e-global-color-accent);
  background: #fff;
}

.service-list li a i {
  font-size: 13px;
  color: #94a3b8;
  transition: transform .2s, color .2s;
}

.service-list li a:hover i {
  color: var(--e-global-color-accent);
  transform: translate(2px, -2px);
}

.service-list__empty {
  padding: 14px 22px;
  color: #64748b;
  font-size: 14px;
}

/* Contact Expert Box */
.contact-expert-box {
  background: var(--e-global-color-primary);
  color: #fff;
  border-color: var(--e-global-color-primary);
}

.contact-expert-box .contact-expert-box__head {
  background: var(--e-global-color-primary);
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-expert-box .contact-expert-box__head h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.contact-expert-box__body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--e-global-color-accent);
  color: var(--e-global-color-primary);
}

.contact-expert-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--e-global-color-primary);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: opacity .2s;
}

.contact-expert-item:hover {
  opacity: .8;
}

.contact-expert-item i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--e-global-color-primary);
  color: var(--e-global-color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.contact-expert-btn {
  margin-top: 8px;
  justify-content: center;
}

/* Ana içerik */
.service-detail__main {
  min-width: 0;
}

.service-detail__image {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 30px;
  background: #f1f5f9;
  max-height: 420px;
  box-shadow: 0 12px 32px -16px rgba(15, 23, 42, 0.25);
}

.service-detail__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .6s ease;
}

.service-detail__image:hover img {
  transform: scale(1.03);
}

@media (max-width: 767px) {
  .service-detail__image,
  .service-detail__image img {
    max-height: 280px;
    height: 280px;
  }
}

/* Bir Uzmana Danışın: Görsel + Shine (Tüm Kutu) */
.contact-expert-box {
  position: relative;
  overflow: hidden;
}

.contact-expert-box__body {
  position: relative;
  padding-bottom: 180px; /* Görsele yer aç (altta) */
  z-index: 2;
}

.contact-expert-item,
.contact-expert-btn {
  position: relative;
  z-index: 3;
}

.contact-expert-box__image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 170px;
  height: 180px;
  pointer-events: none;
  background-image: url('../../uploads/uzmana-danisin.png');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  z-index: 2;
}

@media (max-width: 1199px) {
  .contact-expert-box__image {
    width: 140px;
    height: 160px;
  }
}

/* Shine: tüm kutuyu kaplayan diyagonal parlaklık */
.contact-expert-box > .shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-18deg);
  animation: expertShine 3.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 5;
  mix-blend-mode: overlay;
}

@keyframes expertShine {
  0%   { left: -60%; opacity: 0; }
  15%  { opacity: 1; }
  70%  { left: 140%; opacity: 1; }
  100% { left: 140%; opacity: 0; }
}

@media (max-width: 575px) {
  .contact-expert-box__image {
    width: 45%;
    max-width: 150px;
    height: 150px;
  }
  .contact-expert-box__body {
    padding-bottom: 150px;
  }
}

.service-detail__summary {
  font-size: 17px;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 24px;
}

.service-detail__content {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 40px;
}

.service-detail__content p {
  margin-bottom: 1em;
}

.service-detail__content h2,
.service-detail__content h3 {
  color: var(--e-global-color-primary);
  margin-top: 1.2em;
  margin-bottom: 0.6em;
  font-weight: 700;
}

/* 6 Kutu */
.service-detail__features {
  margin-top: 40px;
}

.service-detail__features-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--e-global-color-primary);
  line-height: 1.2;
  margin-bottom: 14px;
}

@media (max-width: 575px) {
  .service-detail__features-title {
    font-size: 26px;
  }
}

.service-detail__features-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 32px;
  max-width: 720px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

@media (max-width: 575px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature-item__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--e-global-color-accent);
  color: var(--e-global-color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.feature-item__icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}

.feature-item__body h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--e-global-color-primary);
  margin: 0 0 8px;
  line-height: 1.3;
}

.feature-item__body p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
}


/* ==============================================
   Header Logo + Slogan (Brand)
   ============================================== */
.header-logo .navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  line-height: 0;
}

/* VIP Shine: logonun ALPHA şekli üzerinde kayan parlaklık (dikdörtgen görünmez) */
.header-logo .brand-logo-wrap {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.header-logo .brand-logo {
  display: block;
  max-height: 62px;
  width: auto;
}

.header-logo .brand-logo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 38%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 255, 255, 0) 62%
  ) no-repeat;
  background-size: 220% 100%;
  background-position: -120% 0;
  /* Logo şeklini maske olarak uygula — shine sadece logonun opak piksellerinde */
  -webkit-mask-image: var(--logo-shape);
  mask-image: var(--logo-shape);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  mix-blend-mode: screen;
  animation: logoVipShine 3.5s linear infinite;
}

/* Sürekli, kesintisiz parıldama — loop arasında bekleme yok */
@keyframes logoVipShine {
  0%   { background-position: -120% 0; }
  100% { background-position: 220% 0; }
}

.header-logo .brand-slogan {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
  letter-spacing: 4px;
  /* text-transform kaldırıldı — Türkçe "İ/ı" karakterleri bozulmasın */
  color: #cdcabe;
  line-height: 1.2;
  padding-left: 20px;
  border-left: 1px solid rgba(205, 202, 190, 0.35);
  white-space: nowrap;
  opacity: 1;
}

@media (max-width: 991px) {
  .header-logo .brand-slogan {
    font-size: 22px;
    letter-spacing: 3px;
    padding-left: 14px;
  }
}

@media (max-width: 767px) {
  .header-logo .brand-slogan {
    display: none;
  }
}


/* ==============================================
   Corporate Footer (Holding Style)
   ============================================== */
.footer--corporate {
  background: var(--e-global-color-primary);
  color: #bdbdb5;
  position: relative;
}

.footer--corporate::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(205, 202, 190, 0.4) 50%,
    transparent 100%
  );
}

.footer--corporate .footer-main {
  padding: 80px 0 50px;
}

.footer--corporate .footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
}

@media (max-width: 991px) {
  .footer--corporate .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }
}

@media (max-width: 575px) {
  .footer--corporate .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer--corporate .footer-main {
    padding: 60px 0 30px;
  }
}

/* Brand Column */
.footer--corporate .footer-col--brand .footer-logo {
  display: inline-block;
  margin-bottom: 18px;
  line-height: 0;
}

.footer--corporate .footer-col--brand .footer-logo img {
  max-height: 110px;
  width: auto;
  display: block;
}

.footer--corporate .footer-brand-slogan {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--e-global-color-accent);
  margin-bottom: 14px;
  line-height: 1.3;
}

.footer--corporate .footer-brand-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: #a6a69f;
  margin: 0 0 22px;
  max-width: 360px;
}

/* Social */
.footer--corporate .footer-social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer--corporate .footer-social li {
  margin: 0;
}

.footer--corporate .footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(205, 202, 190, 0.35);
  color: var(--e-global-color-accent);
  font-size: 15px;
  transition: all .3s ease;
  background: transparent;
}

.footer--corporate .footer-social a:hover {
  background: var(--e-global-color-accent);
  color: var(--e-global-color-primary);
  border-color: var(--e-global-color-accent);
  transform: translateY(-2px);
}

/* Col Title */
.footer--corporate .footer-col__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #ffffff;
  margin: 0 0 22px;
  padding-bottom: 14px;
  position: relative;
  display: inline-block;
}

.footer--corporate .footer-col__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: var(--e-global-color-accent);
}

/* Links */
.footer--corporate .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer--corporate .footer-links li {
  margin-bottom: 11px;
}

.footer--corporate .footer-links a {
  color: #a6a69f;
  font-size: 14.5px;
  position: relative;
  padding-left: 0;
  transition: all .25s ease;
  display: inline-block;
}

.footer--corporate .footer-links a::before {
  content: "›";
  display: inline-block;
  margin-right: 8px;
  color: var(--e-global-color-accent);
  opacity: 0;
  transform: translateX(-6px);
  transition: all .25s ease;
}

.footer--corporate .footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer--corporate .footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Contact */
.footer--corporate .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer--corporate .footer-contact li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: #a6a69f;
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer--corporate .footer-contact li i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(205, 202, 190, 0.08);
  color: var(--e-global-color-accent);
  font-size: 13px;
  margin-top: 2px;
}

.footer--corporate .footer-contact a {
  color: #a6a69f;
  transition: color .25s ease;
}

.footer--corporate .footer-contact a:hover {
  color: var(--e-global-color-accent);
}

/* Alt Bar */
.footer--corporate .footer-bottom-bar {
  border-top: 1px solid rgba(205, 202, 190, 0.12);
  padding: 22px 0;
  background: rgba(0, 0, 0, 0.15);
}

.footer--corporate .footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer--corporate .footer-copyright {
  color: #8a8a82;
  font-size: 13.5px;
  margin: 0;
  letter-spacing: .3px;
}

.footer--corporate .footer-copyright__brand {
  color: var(--e-global-color-accent);
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 1px;
}

.footer--corporate .footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.footer--corporate .footer-legal a {
  color: #8a8a82;
  font-size: 13.5px;
  transition: color .25s ease;
  letter-spacing: .3px;
}

.footer--corporate .footer-legal a:hover {
  color: var(--e-global-color-accent);
}

@media (max-width: 575px) {
  .footer--corporate .footer-bottom-inner {
    justify-content: center;
    text-align: center;
  }
  .footer--corporate .footer-legal {
    justify-content: center;
  }
}


/* ==============================================
   Top Info Bar (Corporate)
   ============================================== */
.top-info-bar {
  background: rgba(30, 30, 30, 0.85);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid rgba(205, 202, 190, 0.12);
  color: #cdcabe;
  font-size: 13px;
  position: relative;
  z-index: 99;
  letter-spacing: .3px;
}

.top-info-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  gap: 20px;
  flex-wrap: wrap;
}

.top-info-bar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.top-info-bar__contact > li,
.top-info-bar__meta > li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  position: relative;
  color: #cdcabe;
}

.top-info-bar__contact > li + li::before,
.top-info-bar__meta > li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%;
  bottom: 25%;
  width: 1px;
  background: rgba(205, 202, 190, 0.18);
}

.top-info-bar i {
  color: var(--e-global-color-accent);
  font-size: 13px;
}

.top-info-bar a {
  color: #cdcabe;
  transition: color .25s ease;
}

.top-info-bar a:hover {
  color: #ffffff;
}

.top-info-bar__social {
  display: inline-flex !important;
  gap: 4px !important;
  padding: 6px 14px !important;
}

.top-info-bar__social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(205, 202, 190, 0.08);
  color: var(--e-global-color-accent);
  font-size: 12px;
  transition: all .25s ease;
}

.top-info-bar__social a:hover {
  background: var(--e-global-color-accent);
  color: var(--e-global-color-primary);
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .top-info-bar__address,
  .top-info-bar__hours {
    display: none !important;
  }
  .top-info-bar__inner {
    justify-content: center;
    min-height: 38px;
  }
}

@media (max-width: 575px) {
  .top-info-bar {
    font-size: 12px;
  }
  .top-info-bar__contact > li,
  .top-info-bar__meta > li {
    padding: 8px 10px;
  }
}


/* ==============================================
   Main Menu: Kurumsal İkon + Hover Geçişleri
   ============================================== */
.main-menu .menu-icon {
  font-size: 12px;
  margin-right: 8px;
  color: var(--e-global-color-accent);
  opacity: 0;
  transform: translateX(-8px);
  transition: all .35s cubic-bezier(.5,0,.2,1);
  display: inline-block;
  width: 0;
  overflow: hidden;
}

.main-menu li:hover .menu-icon,
.main-menu li.active .menu-icon {
  opacity: 1;
  transform: translateX(0);
  width: auto;
  margin-right: 8px;
}

.main-menu ul li a {
  position: relative;
  padding: 8px 2px;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
}

.main-menu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--e-global-color-accent);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .4s cubic-bezier(.5,0,.2,1);
}

.main-menu ul li:hover a::after,
.main-menu ul li.active a::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.main-menu ul li:hover a,
.main-menu ul li.active a {
  color: var(--e-global-color-accent);
}

/* Sticky header aktif durumunda top-bar gizli zaten değil; ama sticky mod active olduğunda top-bar akışta yukarıda kaldığı için sorun yok */


/* ==============================================
   Slider — Kısmi Nokta Deseni (WoW Crea tarzı halftone)
   ============================================== */
.hero-slider .swiper-slide {
  position: relative;
  overflow: hidden;
}

.slide-dots-decor {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.28) 1.4px, transparent 2px);
  background-size: 22px 22px;
  opacity: 0;
  transition: opacity 1s ease 0.5s;
}

.hero-slider .swiper-slide-active .slide-dots-decor {
  opacity: 1;
}

.slide-dots-decor.dots-top-right {
  top: 0; right: 0;
  width: 48%; height: 70%;
  -webkit-mask-image: linear-gradient(225deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 35%, transparent 85%);
          mask-image: linear-gradient(225deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 35%, transparent 85%);
}

.slide-dots-decor.dots-top-left {
  top: 0; left: 0;
  width: 48%; height: 70%;
  -webkit-mask-image: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 35%, transparent 85%);
          mask-image: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 35%, transparent 85%);
}

.slide-dots-decor.dots-bottom-right {
  bottom: 0; right: 0;
  width: 48%; height: 70%;
  -webkit-mask-image: linear-gradient(315deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 35%, transparent 85%);
          mask-image: linear-gradient(315deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 35%, transparent 85%);
}

.slide-dots-decor.dots-bottom-left {
  bottom: 0; left: 0;
  width: 48%; height: 70%;
  -webkit-mask-image: linear-gradient(45deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 35%, transparent 85%);
          mask-image: linear-gradient(45deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 35%, transparent 85%);
}

@media (max-width: 767px) {
  .slide-dots-decor {
    background-size: 18px 18px;
  }
}

/* Pagination daha şık (accent renkli yatay bar) */
.hero-section .swiper-pagination-bullet {
  width: 28px !important;
  height: 3px !important;
  border-radius: 0 !important;
  background: rgba(255, 255, 255, 0.35) !important;
  opacity: 1 !important;
  transition: all .35s ease !important;
  margin: 0 5px !important;
}

.hero-section .swiper-pagination-bullet-active {
  background: var(--e-global-color-accent) !important;
  width: 46px !important;
}


/* ==============================================
   Top-Info-Bar: Dil Seçici
   ============================================== */
.top-info-bar__lang {
  padding: 6px 14px !important;
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 2px;
}
.top-info-bar__lang a {
  color: #cdcabe;
  font-size: 12px;
  padding: 2px 4px;
  transition: color .25s ease;
  opacity: .6;
}
.top-info-bar__lang a.is-active,
.top-info-bar__lang a:hover {
  color: var(--e-global-color-accent);
  opacity: 1;
}
.top-info-bar__lang .lang-sep {
  color: rgba(205, 202, 190, 0.35);
  font-size: 11px;
}


/* ==============================================
   Ana Sayfa — Hizmetler (Tek Şerit Horizontal Carousel)
   ============================================== */
.home-services-strip {
  background: var(--e-global-color-primary);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}

.home-services-strip::before,
.home-services-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 3;
  pointer-events: none;
}
.home-services-strip::before { left: 0;  background: linear-gradient(90deg, var(--e-global-color-primary), transparent); }
.home-services-strip::after  { right: 0; background: linear-gradient(-90deg, var(--e-global-color-primary), transparent); }

.home-services-strip__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.home-services-strip__sub {
  display: inline-block;
  color: var(--e-global-color-accent);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.home-services-strip__title {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

.home-services-strip__nav {
  display: inline-flex;
  gap: 10px;
}

.home-services-strip__nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(205, 202, 190, 0.35);
  background: transparent;
  color: var(--e-global-color-accent);
  font-size: 15px;
  cursor: pointer;
  transition: all .3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-services-strip__nav button:hover {
  background: var(--e-global-color-accent);
  color: var(--e-global-color-primary);
  border-color: var(--e-global-color-accent);
  transform: translateY(-2px);
}

.home-services-strip__track {
  position: relative;
}

.hss-swiper {
  overflow: visible !important;
  padding: 10px 0 20px;
}

/* Kart — kompakt */
.hss-card {
  display: block;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  color: #fff;
  background: #2a2a2a;
  transition: transform .4s cubic-bezier(.2,.9,.2,1), box-shadow .4s ease;
  text-decoration: none;
}

.hss-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -20px rgba(0,0,0,.5);
}

.hss-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s ease;
}

.hss-card:hover .hss-card__bg {
  transform: scale(1.06);
}

.hss-card__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,20,20,0.9) 0%,
    rgba(20,20,20,0.45) 45%,
    rgba(20,20,20,0.1) 80%,
    rgba(20,20,20,0) 100%
  );
}

.hss-card__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 16px 14px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(4px);
  transition: transform .4s cubic-bezier(.2,.9,.2,1);
}

.hss-card:hover .hss-card__body {
  transform: translateY(0);
}

.hss-card__title {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  color: #fff;
}

.hss-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--e-global-color-accent);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-4px);
  transition: all .35s cubic-bezier(.2,.9,.2,1);
  margin-top: 2px;
}

.hss-card:hover .hss-card__cta {
  opacity: 1;
  transform: translateX(0);
}

.hss-card__cta i { transition: transform .3s ease; font-size: 9px; }
.hss-card:hover .hss-card__cta i { transform: translateX(3px); }

.home-services-strip {
  padding: 60px 0 70px;
}

.home-services-strip__title {
  font-size: 34px;
}

.home-services-strip__head {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .home-services-strip__title { font-size: 26px; }
  .home-services-strip__nav button { width: 38px; height: 38px; font-size: 13px; }
  .hss-card__title { font-size: 14px; }
  .home-services-strip::before,
  .home-services-strip::after { width: 24px; }
}


/* ==============================================
   Ana Sayfa — Projeler (Minimal Beyaz)
   ============================================== */
.home-projects-minimal {
  background: #ffffff;
  padding: 90px 0 70px;
}

.home-projects-minimal__head {
  text-align: center;
  margin-bottom: 50px;
}

.home-projects-minimal__sub {
  display: inline-block;
  color: var(--e-global-color-accent);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.home-projects-minimal__title {
  color: var(--e-global-color-primary);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.home-projects-minimal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 991px) { .home-projects-minimal__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 575px) { .home-projects-minimal__grid { grid-template-columns: 1fr; } }

.hpm-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .4s ease;
}

.hpm-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 10px;
  background: #f3f3f1;
  margin-bottom: 14px;
}

.hpm-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s cubic-bezier(.2,.9,.2,1);
}

.hpm-card:hover .hpm-card__image img {
  transform: scale(1.05);
}

.hpm-card__ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: #c9c9c2; font-size: 28px;
}

.hpm-card__meta {
  padding: 0 2px;
}

.hpm-card__cat {
  display: inline-block;
  color: var(--e-global-color-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.hpm-card__title {
  color: var(--e-global-color-primary);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  transition: color .3s ease;
}

.hpm-card:hover .hpm-card__title {
  color: #000;
}

.home-projects-minimal__btn {
  text-align: center;
  margin-top: 28px;
}

/* Ana sayfa projeler wrapper — site açık ton */
.home-projects-wrap { background: #e8e6de; }


/* ==============================================
   Menü içi Dil Switcher
   ============================================== */
.main-menu .menu-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 10px;
  padding-left: 16px;
  border-left: 1px solid rgba(205, 202, 190, 0.35);
  letter-spacing: 1.5px;
  font-size: 13px;
  font-weight: 600;
}

.main-menu .menu-lang-switch a {
  padding: 4px 6px;
  opacity: .6;
  transition: all .25s ease;
}

.main-menu .menu-lang-switch a.is-active,
.main-menu .menu-lang-switch a:hover {
  opacity: 1;
  color: var(--e-global-color-accent);
}

.main-menu .menu-lang-switch .lang-sep {
  opacity: .4;
  font-weight: 300;
}

@media (max-width: 991px) {
  .main-menu .menu-lang-switch {
    justify-content: center;
    margin: 10px 0 0;
    padding: 10px 0 0;
    border-left: none;
    border-top: 1px solid rgba(50, 50, 50, 0.2);
    width: 100%;
  }
}


/* ==============================================
   Türkçe locale — text-transform ile İ/ı karakter bütünlüğü
   ============================================== */
html[lang="tr"] body,
html[lang="tr"] * {
  font-feature-settings: "kern" 1, "liga" 1;
}

/* text-transform: uppercase kullanılan her öğe için Türkçe kurallar */
html[lang="tr"] [class*="uppercase"],
html[lang="tr"] .section-subtitle,
html[lang="tr"] .menu-icon,
html[lang="tr"] button,
html[lang="tr"] h1,
html[lang="tr"] h2,
html[lang="tr"] h3,
html[lang="tr"] h4,
html[lang="tr"] h5,
html[lang="tr"] h6,
html[lang="tr"] .btn,
html[lang="tr"] .btn-default,
html[lang="tr"] .brand-slogan,
html[lang="tr"] .footer-col__title {
  /* "ı" → "I" (no dot) ve "i" → "İ" (dotted) korunsun */
  -moz-font-feature-settings: "case" on;
  font-variant-caps: normal;
}

/* Space Grotesk'in latin-ext subset'i ı,ğ,ş,ç,ü,ö,İ karakterlerini içerir.
   Fallback chain'de Inter/system-ui de Türkçe destekler. */


/* ==============================================
   Project Slider — Light (Beyaz) varyant override
   ============================================== */
.project-slider-section.project-slider-light {
  background-color: #e8e6de;
  background-image: radial-gradient(rgba(50, 50, 50, 0.12) 1px, transparent 1px);
  background-size: 30px 30px;
}

.project-slider-section.project-slider-light::before {
  background: radial-gradient(circle at center, transparent 0%, #e8e6de 90%);
}

.project-slider-section.project-slider-light .section-subtitle {
  color: var(--e-global-color-primary);
  opacity: .7;
}

.project-slider-section.project-slider-light .section-title {
  color: var(--e-global-color-primary);
}

.project-slider-section.project-slider-light .arch-line {
  background: linear-gradient(90deg, transparent, rgba(50, 50, 50, 0.12), transparent);
}

.project-slider-section.project-slider-light .arch-circle {
  border-color: rgba(50, 50, 50, 0.1);
}

.project-slider-section.project-slider-light .project-filters-glass {
  background: rgba(50, 50, 50, 0.06);
  border: 1px solid rgba(50, 50, 50, 0.15);
}

.project-slider-section.project-slider-light .glass-filter-btn {
  color: var(--e-global-color-primary);
}

.project-slider-section.project-slider-light .glass-filter-btn.active {
  background: var(--e-global-color-primary);
  color: var(--e-global-color-accent);
}


/* Beyaz proje slider — swiper pagination bullet'ları koyu olsun */
.project-slider-section.project-slider-light .swiper-pagination-bullet {
  background: var(--e-global-color-primary);
  opacity: 0.25;
}

.project-slider-section.project-slider-light .swiper-pagination-bullet-active {
  background: var(--e-global-color-accent);
  opacity: 1;
}

.project-slider-section.project-slider-light .swiper-pagination {
  margin-top: 20px;
  position: relative;
  padding: 16px 0 4px;
}


/* Gate elemanları sadece mobilde görünür — desktop'ta gizli */
@media (min-width: 992px) {
  .mobile-menu-head,
  .mobile-menu-foot,
  .mobile-menu-caption-line { display: none !important; }
}


/* Mobil menü açıkken header en üste çıksın (swiper/slider üstünde) */
body.menu-open header.main-header,
body.menu-open .header-sticky {
  z-index: 100000 !important;
}

body.menu-open .main-menu {
  z-index: 100001 !important;
}

/* Swiper ve slider'lar menü açıkken arkada kalsın */
body.menu-open .hero-section,
body.menu-open .swiper,
body.menu-open section {
  z-index: 1 !important;
}

/* Menü açıkken header-sticky transform'u kaldır (fixed child'ı kısıtlamasın) */
body.menu-open .header-sticky,
body.menu-open .header-sticky.active {
  transform: none !important;
  animation: none !important;
}


/* Mobil menü head/caption-line desktop'ta gizli */
.mobile-menu-caption-line { display: none; }

@media (max-width: 991px) {
  .mobile-menu-caption-line { display: flex; }
}
