/* =========================================
   RENOVEX — PIXEL-PERFECT CLONE
   All values taken directly from:
   - css-variable8a54.css
   - style8a54.css (5163 lines)
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Space+Grotesk:wght@300..700&display=swap');

/* ---------------------------------
   CSS VARIABLES (Exact Renovex Tokens)
   --------------------------------- */
body {
  --e-global-color-primary: #0D0D0D;
  --e-global-color-secondary: #F5F5F5;
  --e-global-color-text: #666666;
  --e-global-color-accent: #FED403;
  --e-global-color-accentsecondary: transparent;
  --e-global-color-white: #FFFFFF;
  --e-global-color-black: #000000;
  --e-global-color-divider: #0D0D0D1A;
  --e-global-color-darkdivider: #FFFFFF1A;
  --e-global-color-background: #FFFFFF;
  --e-global-typography-primary-font-family: "Space Grotesk", sans-serif;
  --e-global-typography-secondary-font-family: "Space Grotesk", sans-serif;
  --e-global-typography-text-font-family: "DM Sans", sans-serif;
  --e-global-typography-accent-font-family: "Space Grotesk", 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: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}

.theme-preloader .loading-container {
  margin: 40px auto;
}

.theme-preloader .loading-container .loading {
  border: 1px solid transparent;
  border-color: transparent var(--e-global-color-white) transparent var(--e-global-color-white);
  animation: rotate-loading 1.5s 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: 66px;
  transform: translate(-50%, -50%);
}

@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: var(--e-global-color-darkdivider);
  backdrop-filter: blur(30px) saturate(100%);
  -webkit-backdrop-filter: blur(30px) saturate(100%);
  z-index: 100;
  padding: 25px 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 var(--e-global-color-divider);
  transform: translateY(0);
  background: var(--e-global-color-primary);
}

.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: 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: 40px 30px;
  border: 1px solid var(--e-global-color-divider);
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
  height: 100%;
}

.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__icon {
  font-size: 40px;
  color: var(--e-global-color-accent);
  margin-bottom: 20px;
  line-height: 0;
}

.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: 50px;
}

.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;
  }

  .main-menu {
    display: none;
  }

  .main-menu.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--e-global-color-accent);
    padding: 10px 0;
    max-height: 80vh;
    overflow: auto;
    border-radius: 0 0 10px 10px;
  }

  .main-menu.active ul {
    flex-direction: column;
  }

  .main-menu.active ul li a {
    color: var(--e-global-color-primary);
    padding: 7px 20px;
  }

  .main-menu.active ul li a:hover {
    color: var(--e-global-color-white);
  }

  .main-menu.active ul ul {
    position: relative;
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    width: 100%;
    border-radius: 0;
  }

  .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);
}