/* =========================================
   1. VARIABILE GLOBALE & SETĂRI
   ========================================= */
:root {
  --color-primary: #d02d65;
  --color-secondary: #d02d65;
  --color-navy: #250f35;
  --color-dark: #250f35;
  --color-dark-blue: #250f35;
  --color-yellow: #d02d65;

  --text-main: #555555;
  --text-light: #e0e0e0;
  --bg-white-low: rgba(255, 255, 255, 0.05);
  --bg-light-gray: #f9f9f9;

  --font-heading: "Playfair Display", sans-serif;
  --font-body: "space_grotesk", sans-serif;

  --gradient-btn: linear-gradient(
    to right,
    var(--color-primary) 0%,
    var(--color-dark-blue) 50%,
    var(--color-primary) 100%
  );
  --gradient-soft: linear-gradient(
    rgba(255, 86, 79, 0.15) 0%,
    rgba(250, 208, 41, 0.15) 100%
  );
  --gradient-accent: linear-gradient(
    to right,
    var(--color-yellow) 0%,
    var(--color-secondary) 100%
  );
  --gradient-footer-line: linear-gradient(
    90deg,
    var(--color-primary) 0%,
    var(--color-secondary) 50%,
    var(--color-secondary) 100%
  );
}

.feature-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  padding: 40px;
  border-radius: 8px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: #d02d65;
  transition: width 0.3s ease;
}
.feature-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transform: translateY(-5px);
}
.feature-card:hover::after {
  width: 100%;
}
.feature-icon {
  font-size: 36px;
  color: #d02d65;
  margin-bottom: 25px;
  display: inline-block;
}

.process-flow-item {
  display: flex;
  margin-bottom: 50px;
  align-items: flex-start;
}
.process-flow-item:last-child {
  margin-bottom: 0;
}
.process-icon-box {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: #f9f9f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
  font-size: 24px;
  color: #121416;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}
.process-flow-item:hover .process-icon-box {
  background: #d02d65;
  color: #fff;
  border-color: #d02d65;
}
.process-content h5 {
  font-family: "Playfair Display", sans-serif;
  font-size: 22px;
  margin-bottom: 10px;
  margin-top: 5px;
}

.advantage-section {
  background-color: #121416;
  color: #fff;
  padding: 100px 0;
}
.advantage-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  height: 100%;
  transition: background 0.3s;
  transition: transform 0.3s;
}
.advantage-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}
.adv-icon {
  color: #d02d65;
  font-size: 28px;
  margin-bottom: 20px;
}

.benefit-card-clean {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid #d02d65;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  height: 100%;
}

.section-separator {
  width: 100px;
  height: 2px;
  background: #d02d65;
  margin: 40px auto;
}
.sticky-title {
  position: sticky;
  top: 120px;
}
.activity-card-row {
  background: #fff;
  padding: 40px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
}
.activity-card-row:last-child {
  border-bottom: none;
}
.activity-card-row:hover {
  background: #fcfcfc;
  transform: translateX(10px);
  border-left: 4px solid #1d286e;
}
.act-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(42, 163, 140, 0.1);
  color: #1d286e;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 25px;
}

.process-box {
  background: #fff;
  padding: 35px 25px;
  border: 1px solid #eee;
  border-radius: 8px;
  height: 100%;
  position: relative;
  transition: transform 0.3s;
}
.process-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: #d02d65;
}

.process-col:not(:last-child) .process-box::after {
  font-family: "FontAwesome";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: #1d286e;
  font-size: 18px;
  z-index: 2;
  background: #fff;
}
.p-icon {
  font-size: 32px;
  color: #121416;
  margin-bottom: 20px;
  display: block;
}
.process-box:hover .p-icon {
  color: #d02d65;
}

.grid-dark-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 4px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.grid-dark-item h5 {
  color: #fff;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.grid-dark-item h5 i {
  color: #d02d65;
  margin-right: 10px;
}

.audience-item {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 20px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  margin-bottom: 15px;
  border: 1px solid #f0f0f0;
  transition: 0.3s;
}
.audience-item:hover {
  border-color: #d02d65;
  transform: scale(1.02);
}
.audience-icon {
  width: 30px;
  height: 30px;
  background: #d02d65;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 15px;
  font-size: 12px;
}

@media (max-width: 991px) {
  .process-col:not(:last-child) .process-box::after {
    display: none;
  }
  .sticky-title {
    position: static;
    margin-bottom: 30px;
  }
  .activity-card-row {
    flex-direction: column;
  }
  .act-icon {
    margin-bottom: 20px;
  }
}

.feature-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  padding: 40px;
  border-radius: 8px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: #d02d65;
  transition: width 0.3s ease;
}
.feature-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transform: translateY(-5px);
}
.feature-card:hover::after {
  width: 100%;
}
.feature-icon {
  font-size: 36px;
  color: #d02d65;
  margin-bottom: 25px;
  display: inline-block;
}

.process-flow-item {
  display: flex;
  margin-bottom: 50px;
  align-items: flex-start;
}
.process-flow-item:last-child {
  margin-bottom: 0;
}
.process-icon-box {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: #f9f9f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
  font-size: 24px;
  color: #121416;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}
.process-flow-item:hover .process-icon-box {
  background: #d02d65;
  color: #fff;
  border-color: #d02d65;
}
.process-content h5 {
  font-family: "Playfair Display", sans-serif;
  font-size: 22px;
  margin-bottom: 10px;
  margin-top: 5px;
}

.grid-dark-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 4px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s;
}
.grid-dark-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}
.grid-dark-item h5 {
  color: #fff;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.grid-dark-item h5 i {
  color: #d02d65;
  margin-right: 12px;
}

.risk-benefit-item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  margin-bottom: 15px;
  border-left: 4px solid #d02d65;
  display: flex;
  align-items: center;
}
.risk-benefit-item i {
  color: #d02d65;
  margin-right: 15px;
  font-size: 18px;
}

.section-separator {
  width: 100px;
  height: 2px;
  background: #d02d65;
  margin: 40px auto;
}

.pro-heading {
  font-family: "Playfair Display", sans-serif;
  font-weight: 700;
  color: #121416;
  margin-bottom: 20px;
}
.pro-text {
  font-family: "space_grotesk", sans-serif;
  font-size: 17px;
  line-height: 28px;
  color: #555;
  font-weight: 300;
}

.service-anchor-bar {
  position: sticky;
  top: 0;
  z-index: 990;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 2px solid #eaeaea;
  border-bottom: 2px solid #eaeaea;
  padding: 15px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  transition: top 0.3s;
}
.anchor-list {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 40px;
}
.anchor-list li a {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #33415c;
  padding: 10px 0;
  position: relative;
}
.anchor-list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #d02d65;
  transition: width 0.3s ease;
}
.anchor-list li a:hover::after {
  width: 100%;
}

.service-section {
  padding: 100px 0;
  border-bottom: 1px solid #f0f0f0;
}
.service-section:last-child {
  border-bottom: none;
}
.bg-light-soft {
  background-color: #f9f9f9;
}

.benefit-wrapper {
  margin-top: 40px;
}
.benefit-card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  height: 100%;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
  display: flex;
  align-items: start;
}
.benefit-card:hover {
  transform: translateY(-5px);
  border-color: #d02d65;
}
.benefit-icon {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  background: rgba(255, 86, 79, 0.1);
  color: #d02d65;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 14px;
}
.benefit-card.teal .benefit-icon {
  color: #d02d65;
}

.benefit-text {
  font-size: 15px;
  line-height: 24px;
  color: #333;
  font-weight: 500;
}

.btn-modern {
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  transition: all 0.3s;
  display: inline-block;
  margin-top: 30px;
}
.btn-outline {
  border: 2px solid #121416;
  color: #121416;
}
.btn-outline:hover {
  background: #121416;
  color: #fff;
}

@media (max-width: 768px) {
  .anchor-list {
    gap: 15px;
    flex-wrap: wrap;
  }
  .anchor-list li a {
    font-size: 12px;
  }
  .pro-heading {
    font-size: 32px;
  }
}
/* =========================================
   2. HEADER & NAVIGAȚIE (Stil Modern & Blur)
   ========================================= */
.header-area.header-2-area .header-nav {
  background-color: #fff;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  transition:
    background-color 0.3s ease,
    backdrop-filter 0.3s ease;
  padding: 15px 0;
  top: 0;
  position: absolute;
  width: 100%;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header-nav .navigation .navbar .navbar-nav .nav-item a {
  color: #000;
  transition: color 0.3s ease;
}

.navbar-brand img {
  max-height: 60px;
  width: auto;
  display: block;
}

.header-nav.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05) !important;
  animation: stickySlideDown 0.3s ease-out;
  padding: 0 !important;
}

.header-nav.sticky .navigation {
  background: transparent !important;
  padding: 10px 0;
}

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

.header-nav.sticky .navbar-nav .nav-item a {
  color: var(--color-dark) !important;
}
.header-nav.sticky .navbar-nav .nav-item a:hover,
.header-nav.sticky .navbar-nav .nav-item.active a {
  color: var(--color-primary) !important;
}

.header-nav .navigation .navbar .navbar-nav .nav-item .sub-menu {
  width: 300px;
  min-width: 260px;
  left: 50% !important;
  transform: translateX(-50%) !important;
  top: 100% !important;
  margin-top: 15px !important;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border: none;
  padding: 10px 0;
  background-color: #fff;
}

.header-nav .navigation .navbar .navbar-nav .nav-item .sub-menu::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
  background: transparent;
}
.header-nav .navigation .navbar .navbar-nav .nav-item .sub-menu > li a {
  text-align: left;
  padding: 12px 25px;
  font-size: 15px;
  color: var(--color-navy);
  font-weight: 500;
  transition: all 0.2s ease;
}
.header-nav .navigation .navbar .navbar-nav .nav-item .sub-menu > li a:hover {
  background-color: rgba(191, 61, 101, 0.08);
  color: var(--color-primary);
  padding-left: 30px;
}
.header-nav
  .navigation
  .navbar
  .navbar-nav
  .nav-item
  .sub-menu
  > li.active
  > a {
  color: var(--color-primary) !important;
  font-weight: 700;
  background-color: rgba(191, 61, 101, 0.05);
  padding-left: 30px;
  border-left: 3px solid var(--color-primary);
}

.header-nav.sticky
  .navigation
  .navbar
  .navbar-nav
  .nav-item.active
  .sub-menu
  li
  a {
  color: var(--color-navy) !important;
  font-weight: 500 !important;
}
.header-nav.sticky
  .navigation
  .navbar
  .navbar-nav
  .nav-item.active
  .sub-menu
  li
  a:hover {
  color: var(--color-primary) !important;
  background-color: rgba(191, 61, 101, 0.08);
}
.header-nav .navigation .navbar .navbar-nav .nav-item.active > a,
.header-nav .navigation .navbar .navbar-nav .nav-item a:hover {
  color: var(--color-primary) !important;
}

/* =========================================
   3. HERO & PAGE TITLES
   ========================================= */
.hero-video-wrapper {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.back-video {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -2;
  object-fit: cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.hero-video-wrapper .container {
  position: relative;
  z-index: 1;
}
.hero-2-content {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.hero-btn-wrapper {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .hero-2-content {
    text-align: center;
    padding: 0 15px;
  }
  .hero-2-content .title {
    font-size: 36px;
    line-height: 1.2;
  }
  .hero-btn-wrapper {
    margin-top: 30px;
  }
}

.page-title-area {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}
.page-title-area .section__bg {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.6);
  z-index: -2;
}
.page-title-area::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(29, 40, 110, 0.85) 0%,
    rgba(191, 61, 101, 0.6) 100%
  );
  z-index: -1;
}
.page-title-content {
  padding-top: 80px;
  width: 100%;
  text-align: center;
}
.page-title-content .title {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -1px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: #fff;
  opacity: 0;
  animation: fadeInUp 0.8s forwards;
}
.page-title-content .breadcrumb {
  background: transparent;
  justify-content: center;
  padding: 0;
  opacity: 0;
  animation: fadeInUp 0.8s forwards 0.2s;
}
.page-title-content .breadcrumb-item a,
.page-title-content .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--font-body);
}
.page-title-content .breadcrumb-item.active {
  color: var(--color-secondary);
}
.page-title-content .breadcrumb-item + .breadcrumb-item::before {
  content: "•";
  color: rgba(255, 255, 255, 0.4);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .page-title-area {
    min-height: 350px;
  }
  .page-title-content .title {
    font-size: 42px;
  }
}

/* =========================================
   4. ABOUT & MISSION (Standard & Modern)
   ========================================= */

.modern-about-area {
  background-color: var(--color-dark);
  color: #fff;
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
}
.modern-sub-title {
  color: var(--color-secondary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 15px;
}
.modern-title {
  font-size: 38px;
  color: #000;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
}
.modern-title.text-white {
  color: #fff;
}
.modern-title .highlight {
  color: var(--color-secondary);
  font-style: italic;
}
.modern-lead-text {
  font-size: 18px;
  line-height: 30px;
  color: var(--text-light);
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto;
}
.separator {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  width: 80px;
  margin: 20px auto;
}
.value-item i {
  font-size: 32px;
  color: #fff;
  margin-bottom: 10px;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.value-item:hover i {
  color: var(--color-secondary);
  transform: translateY(-5px);
}
.value-item h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mission-intro-area {
  background-color: #fff;
  position: relative;
  z-index: 5;
}
.mission-text p {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 34px;
  color: var(--color-navy);
  font-weight: 300;
  margin-bottom: 20px;
}
.mission-text strong {
  font-weight: 600;
  color: #000;
}
.mission-split-area {
  background-color: #f9f9f9;
  overflow: hidden;
}
.mission-left-content .sub-title {
  color: var(--color-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}
.mission-left-content .title {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #000;
}
.mission-left-content .lead-intro {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 20px;
  border-left: 4px solid var(--color-yellow);
  padding-left: 20px;
}
.mission-features {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.mission-features li {
  font-size: 18px;
  margin-bottom: 12px;
  color: #333;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.mission-features li i {
  margin-right: 12px;
  font-size: 20px;
}
.mission-highlight-card {
  background-color: var(--color-navy);
  padding: 50px 40px;
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  margin-top: 50px;
}
.mission-highlight-card h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 20px;
}
.mission-highlight-card p {
  color: #e0e0e0;
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
}
.card-decoration {
  height: 4px;
  width: 60px;
  background: var(--gradient-accent);
  margin-top: 30px;
  border-radius: 2px;
}

.about-2-thumb .about-main-img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.about-2-content span {
  background: var(--gradient-soft);
  display: inline-block;
  line-height: 40px;
  height: 40px;
  padding: 0 22px;
  border-radius: 30px;
  color: var(--color-primary);
  font-family: var(--font-body);
}

.ethos-box {
  background: var(--bg-white-low);
  padding: 20px 40px;
  border-radius: 4px;
  border-left: 3px solid var(--color-secondary);
  display: inline-block;
  max-width: 900px;
}
.ethos-box p {
  font-family: var(--font-heading);
  font-size: 16px;
  font-style: italic;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* =========================================
   5. SPECIAL SECTIONS (Editorial, Swiss, Triptych)
   ========================================= */

.approach-editorial-area {
  background-color: #fff;
  border-bottom: 1px solid #f0f0f0;
}
.approach-header .sub-title {
  color: var(--color-secondary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 20px;
}
.approach-header .title {
  font-family: var(--font-heading);
  font-size: 56px;
  line-height: 1.1;
  color: var(--color-dark);
  font-weight: 700;
  margin-bottom: 30px;
}
.line-decor {
  width: 80px;
  height: 4px;
  background-color: var(--color-dark);
}
.lead-text {
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1.5;
  color: var(--color-dark);
  font-weight: 500;
  border-left: 2px solid #eee;
  padding-left: 25px;
}
.body-text {
  font-size: 17px;
  line-height: 30px;
  color: #555;
  font-weight: 400;
}
.body-text strong {
  color: var(--color-dark);
  font-weight: 600;
}

.lines-approach-area {
  background-color: #fff;
}
.section-heading {
  font-family: var(--font-heading);
  font-size: 42px;
  color: var(--color-dark);
  font-weight: 700;
  margin: 0;
}
.line-divider {
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
  margin: 0;
}
.row-item {
  padding-top: 40px;
  padding-bottom: 40px;
  transition: background-color 0.3s ease;
}
.row-item:hover {
  background-color: #fafafa;
}
.item-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 20px;
}
.item-text {
  font-size: 16px;
  line-height: 28px;
  color: #555;
  margin-bottom: 15px;
}

.team-swiss-area {
  background-color: #fff;
}
.swiss-divider {
  width: 100%;
  height: 4px;
  background-color: var(--color-dark);
  display: block;
}
.swiss-title {
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
  color: var(--color-dark);
  margin-top: -5px;
}
.swiss-lead {
  font-size: 24px;
  line-height: 36px;
  color: var(--color-dark);
  font-weight: 500;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 30px;
}
.swiss-lead .text-highlight {
  color: var(--color-secondary);
  font-style: italic;
}
.swiss-desc {
  font-size: 17px;
  line-height: 30px;
  color: #555;
  margin: 0;
  text-align: justify;
}

.team-triptych-area {
  background-color: #fff;
}
.triptych-box {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
.triptych-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-secondary);
  margin-bottom: 20px;
}
.triptych-lead {
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1.3;
  color: var(--color-dark);
  font-weight: 700;
}
.triptych-lead .highlight {
  color: #555;
  font-weight: 400;
}
.triptych-text {
  font-size: 16px;
  line-height: 28px;
  color: #666;
  margin: 0;
}
.border-left-custom {
  border-left: 1px solid #e0e0e0;
}
.long-arrow {
  font-size: 20px;
  color: var(--color-secondary);
}

.split-ethos-section {
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.split-wrapper {
  width: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}
.split-box {
  padding: 80px 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-dark {
  background-color: var(--color-dark);
}
.split-light {
  background-color: #fff;
  border-top: 1px solid #eee;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.split-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 25px;
  display: block;
}
.split-accent {
  color: var(--color-secondary);
}
.split-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}
.split-title.text-white {
  color: #fff;
}
.split-title.text-dark {
  color: var(--color-dark);
}
.split-text {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 20px;
  font-weight: 400;
}
.split-white-70 {
  color: rgba(255, 255, 255, 0.7);
}
.split-dark-70 {
  color: #555;
}

@media (max-width: 991px) {
  .approach-header .title {
    font-size: 40px;
  }
  .lead-text {
    font-size: 20px;
    padding-left: 15px;
  }
  .swiss-title {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .border-left-custom {
    border-left: none;
    border-top: 1px solid #e0e0e0;
  }
  .split-box {
    padding: 50px 30px;
  }
  .split-light {
    border-left: 1px solid #eee;
  }
}

/* =========================================
   6. CONSULTANCY & COST & RISK
   ========================================= */

.consultancy-focus-area {
  background-color: #fff;
  position: relative;
}
.consultancy-thumb .main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.consultancy-thumb .exp-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--gradient-accent);
  padding: 20px 30px;
  border-radius: 8px;
  color: #fff;
  text-align: center;
  box-shadow: 0 10px 30px rgba(255, 86, 79, 0.3);
}
.consultancy-thumb .exp-badge .count {
  display: block;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.consultancy-thumb .exp-badge .text {
  font-size: 14px;
  font-weight: 500;
}
.consultancy-content .sub-heading {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
  color: var(--color-primary);
}
.consultancy-content .title {
  font-size: 36px;
  margin-bottom: 25px;
  color: #000;
}
.consultancy-content .description {
  color: #555;
  font-size: 17px;
  line-height: 28px;
  margin-bottom: 30px;
}

.service-box-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  padding: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}
.service-box-item:hover {
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: transparent;
  transform: translateY(-5px);
}
.service-box-item .icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: rgba(42, 163, 140, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
.service-box-item .details h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 5px;
}
.service-box-item .details p {
  font-size: 14px;
  margin-bottom: 0;
  color: #777;
}

.cost-control-area {
  background-color: var(--color-navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.section-title-cost .sub-title {
  color: var(--color-yellow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}
.section-title-cost .title {
  color: #fff;
  font-size: 42px;
  margin-bottom: 25px;
}
.section-title-cost .description {
  color: #e0e0e0;
  font-size: 18px;
  line-height: 32px;
  font-weight: 300;
}
.cost-feature-item {
  background: var(--bg-white-low);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}
.cost-feature-item:hover {
  background: #fff;
  transform: translateY(-10px);
}
.cost-feature-item:hover h4,
.cost-feature-item:hover p {
  color: var(--color-navy);
}
.cost-feature-item:hover .icon-wrapper {
  background: var(--color-secondary);
  box-shadow: 0 10px 20px rgba(255, 86, 79, 0.3);
}
.cost-feature-item .icon-wrapper {
  height: 70px;
  width: 70px;
  background: #fff;
  border-radius: 50%;
  line-height: 70px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.benefit-card.teal .benefit-icon,
.benefit-card.blue .benefit-icon {
  color: var(--color-secondary);
}

.risk-management-area {
  background-color: #fff;
  overflow: hidden;
}
.risk-thumb .thumb-wrapper {
  padding: 0;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}
.risk-thumb .main-img {
  width: 100% !important;
  height: 450px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.risk-content .sub-title {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
  color: var(--color-primary);
}
.risk-content .title {
  font-size: 38px;
  color: #000;
  margin-bottom: 20px;
}
.risk-accordion .card {
  border: none;
  margin-bottom: 15px;
  background: transparent;
}
.risk-accordion .card-header {
  background-color: #f5f8fd;
  border-radius: 5px;
}
.risk-accordion .btn-link {
  width: 100%;
  text-align: left;
  color: var(--color-navy);
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.risk-accordion .btn-link::after {
  content: "+";
  font-size: 20px;
  font-weight: 700;
  margin-left: 15px;
}
.risk-accordion .btn-link[aria-expanded="true"] {
  background-color: var(--color-dark-blue);
  color: #fff;
  box-shadow: 0 10px 20px rgba(42, 163, 140, 0.2);
}
.risk-accordion .btn-link[aria-expanded="true"]::after {
  content: "-";
}
.risk-accordion .card-body {
  background-color: #fff;
  border: 1px solid #f5f8fd;
  border-top: none;
  padding: 25px;
  font-size: 16px;
  line-height: 28px;
  color: #666;
}

/* =========================================
   7. WCU, CTA & CONNECT UI
   ========================================= */

.wcu-list-area {
  background-color: #f9f9f9;
}
.wcu-intro-text .description {
  border-left: 3px solid var(--color-primary);
  padding-left: 20px;
  font-size: 18px;
  color: #555;
  line-height: 30px;
}
.wcu-intro-text .title {
  font-size: 42px;
  color: #000;
  font-weight: 700;
  line-height: 1.2;
}
.wcu-list-item {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  border-left: 5px solid transparent;
}
.wcu-list-item:hover {
  transform: translateY(-5px);
  border-left: 5px solid var(--color-primary);
}
.wcu-list-item .icon-box {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: #fff;
  border: 2px solid #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 24px;
  color: var(--color-navy);
  transition: all 0.3s ease;
}
.wcu-list-item:hover .icon-box {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.wcu-list-item .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
}

.cta-parallax-area {
  position: relative;
  padding: 120px 0;
  background-image: url("../images/ffa/e.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
  overflow: hidden;
}
.cta-parallax-area .cta-bg-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(51, 65, 92, 0.95) 0%,
    rgba(30, 39, 56, 0.9) 100%
  );
  z-index: -1;
}
.cta-content .title {
  color: #fff;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
}
.cta-content .tagline {
  color: var(--color-primary);
  font-size: 22px;
  font-family: var(--font-heading);
  font-style: italic;
  margin-bottom: 0;
}
.cta-content .text {
  color: #e0e0e0;
  font-size: 20px;
  line-height: 34px;
  font-weight: 300;
  margin-bottom: 20px;
}

.connect-ui-section {
  background-color: #f4f5f8;
}
.connect-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 80px 70px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.connect-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}
.card-watermark {
  position: absolute;
  top: -20px;
  right: 0;
  font-size: 200px;
  font-weight: 900;
  color: #f9f9f9;
  font-family: var(--font-heading);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}
.connect-content {
  position: relative;
  z-index: 2;
}
.connect-tag {
  display: inline-block;
  background-color: rgba(255, 86, 79, 0.1);
  color: var(--color-secondary);
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.connect-heading {
  font-family: var(--font-heading);
  font-size: 42px;
  color: var(--color-dark);
  font-weight: 700;
  margin-bottom: 20px;
}
.connect-desc {
  font-size: 18px;
  line-height: 30px;
  color: #555;
  margin: 0;
  max-width: 90%;
}
.ui-pill-btn {
  display: inline-block;
  background-color: var(--color-dark);
  color: #fff;
  padding: 18px 50px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}
.ui-pill-btn:hover {
  background-color: var(--color-secondary);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(255, 86, 79, 0.3);
}
@media (min-width: 992px) {
  .connect-action {
    margin-top: 100px !important;
  }
}

/* =========================================
   8. FOOTER MODERN
   ========================================= */
.footer-2-area {
  background-color: #0b0d17;
  padding-top: 80px;
  padding-bottom: 0;
  position: relative;
  color: #fff;
}
.footer-2-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-footer-line);
  z-index: 1;
}
.footer-widget .title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 35px;
  position: relative;
  letter-spacing: 0.5px;
}
.footer-widget .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 35px;
  height: 3px;
  background-color: var(--color-secondary);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.footer-widget:hover .title::after {
  width: 50px;
}
.footer-logo a {
  display: inline-block;
  background-color: #fff;
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.05);
}
.footer-logo img {
  margin-bottom: 0 !important;
  max-height: 50px;
  width: auto;
}
.footer-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-list ul li {
  margin-bottom: 12px;
}
.footer-list ul li a {
  color: #a0a0a0;
  font-size: 15px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}
.footer-list ul li a::before {
  content: "›";
  margin-right: 0;
  opacity: 0;
  font-size: 18px;
  color: var(--color-secondary);
  transform: translateX(-10px);
  transition: all 0.3s;
}
.footer-list ul li a:hover {
  color: #fff;
  transform: translateX(5px);
}
.footer-list ul li a:hover::before {
  opacity: 1;
  margin-right: 8px;
  transform: translateX(0);
}

.footer-contact-info .item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: #b0b0b0;
  font-size: 15px;
}
.footer-contact-info .item i {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  margin-right: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
/* .footer-contact-info .item:hover i {
  background: var(--color-secondary);
  color: #fff;
  transform: rotateY(180deg);
} */

.footer-form .input-group {
  position: relative;
  display: flex;
}
.footer-form input {
  width: 100%;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  padding: 0 15px;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
}
.footer-form button {
  position: absolute;
  right: 4px;
  top: 4px;
  height: 37px;
  width: 37px;
  background: var(--color-secondary);
  border: none;
  color: #fff;
  border-radius: 3px;
  cursor: pointer;
}
.footer-copyright-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 50px;
  padding: 25px 0;
}
.copyright-text {
  color: #777;
  margin: 0;
  font-size: 14px;
}
.legal-links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.legal-links li {
  display: inline-block;
  margin-left: 25px;
}
.legal-links li a {
  color: #777;
  font-size: 13px;
  position: relative;
  transition: color 0.3s;
}
.legal-links li a:hover {
  color: #fff;
}
.legal-links li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--color-secondary);
  transition: width 0.3s ease;
}
.legal-links li a:hover::after {
  width: 100%;
}

/* =========================================
   9. UTILITY
   ========================================= */
.main-btn.main-btn-3 {
  background: var(--gradient-btn);
  background-size: 200% auto;
  border: 0;
  color: #fff;
  padding: 0 34px;
  background-position: center;
  transition: all 0.3s ease;
}
.main-btn.main-btn-3:hover {
  background-position: right center;
}
.back-to-top {
  background-color: var(--color-primary);
  transition: background-color 0.3s ease;
}
.back-to-top:hover {
  filter: brightness(1.1);
}

/* =========================================
   10. RESPONSIVE FIXES (MOBILE & TABLET)
   ========================================= */

@media (max-width: 991px) {
  .modern-title,
  .pro-heading,
  .split-title,
  .section-heading,
  .page-title-content .title,
  .hero-content .title {
    font-size: 32px !important;
    line-height: 1.3 !important;
  }

  .modern-lead-text,
  .pro-text,
  .mission-text p,
  .split-text {
    font-size: 16px !important;
    line-height: 26px !important;
  }

  .pt-100 {
    padding-top: 60px !important;
  }
  .pb-100 {
    padding-bottom: 60px !important;
  }
  .pt-80 {
    padding-top: 50px !important;
  }
  .pb-80 {
    padding-bottom: 50px !important;
  }

  .header-nav .navigation .navbar .navbar-collapse {
    background-color: #fff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-top: 15px;
    border-radius: 8px;
  }
  .header-nav .navigation .navbar .navbar-nav .nav-item a {
    color: var(--color-dark) !important;
    padding: 10px 0;
  }

  .contact-card-wrapper {
    flex-direction: column;
  }
  .contact-left-panel,
  .contact-right-panel {
    width: 100%;
    padding: 40px 25px !important;
  }
  .contact-left-panel {
    order: 1;
  }
  .contact-right-panel {
    order: 2;
  }

  .split-box {
    padding: 50px 25px !important;
    height: auto !important;
  }
  .split-light {
    border-left: none !important;
    border-top: 1px solid #eee;
  }

  .process-flow-item {
    flex-direction: column;
    text-align: center;
    margin-bottom: 40px;
  }
  .process-icon-box {
    margin: 0 auto 20px auto !important;
  }

  .activity-card-row {
    flex-direction: column;
    padding: 30px 20px !important;
  }
  .activity-card-row .act-icon {
    margin-bottom: 20px;
  }

  .service-anchor-bar {
    display: none !important;
  }

  .connect-card {
    padding: 40px 25px !important;
    text-align: center;
  }
  .connect-action {
    margin-top: 30px !important;
    text-align: center !important;
  }
  .card-watermark {
    font-size: 80px !important;
    top: 0;
  }

  .footer-widget {
    margin-bottom: 40px;
  }
  .footer-copyright-bottom {
    text-align: center;
  }
  .footer-copyright-bottom .col-md-6 {
    text-align: center !important;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .hero-2-content {
    text-align: center;
    padding-top: 150px;
  }
  .page-title-content {
    padding-top: 120px;
  }
  .page-title-content .title {
    font-size: 36px !important;
  }

  .feature-card,
  .benefit-card {
    padding: 25px !important;
  }

  .ui-pill-btn,
  .main-btn {
    width: 100%;
    display: block;
    text-align: center;
  }
}

.audience-item .audience-icon {
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .audience-item {
    align-items: flex-start;
    padding: 15px 20px;
    border-radius: 30px;
  }

  .audience-item .audience-icon {
    margin-top: 2px;
  }

  .audience-item > div:last-child {
    padding-left: 5px;
    font-size: 15px;
    line-height: 1.4;
  }
}

:root {
  --bg-contrast-gray: #f2f4f7;
  --bg-brand-tint: #eef1f6;
  --shadow-lift: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.bg-light,
.bg-light-soft,
.section-gray,
.f5f5f5-bg {
  background-color: var(--bg-contrast-gray) !important;
}

.wcu-list-area {
  background-color: var(--bg-brand-tint) !important;
  border-top: 1px solid #e0e4eb;
  border-bottom: 1px solid #e0e4eb;
}

#cost-control.bg-light-soft {
  background-color: var(--bg-brand-tint) !important;
  position: relative;
}

#cost-control::before,
#cost-control::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(51, 65, 92, 0.1),
    transparent
  );
}
#cost-control::before {
  top: 0;
}
#cost-control::after {
  bottom: 0;
}

.feature-card,
.benefit-card,
.benefit-card-clean,
.process-box,
.wcu-list-item,
.service-item,
.article-item {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
  background: #fff;
}

.feature-card:hover,
.benefit-card:hover,
.process-box:hover,
.wcu-list-item:hover {
  box-shadow: var(--shadow-lift) !important;
  transform: translateY(-5px);
  border-color: transparent;
}

.modern-about-area {
  background-color: #1a1d21;
  border-bottom: 4px solid var(--color-secondary);
}

.modern-sub-title,
.section-title .sub-title {
  background: rgba(255, 86, 79, 0.08);
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 20px;
}

.footer-area {
  border-top: 5px solid var(--color-secondary);
}

@keyframes float-y {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

.animate-float {
  animation: float-y 6s ease-in-out infinite;
}

.hover-lift-card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(0);
}

.hover-lift-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
  border-color: transparent !important;
}

.hover-icon-effect .icon i,
.hover-icon-effect i {
  transition: all 0.3s ease;
}

.hover-icon-effect:hover .icon i,
.hover-icon-effect:hover > i {
  transform: scale(1.2);
  color: var(--color-secondary);
}

.text-shine {
  background: linear-gradient(
    to right,
    #121416 20%,
    #d02d65 40%,
    #d02d65 60%,
    #121416 80%
  );
  background-size: 200% auto;
  color: #000;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.wcu-list-item {
  transition:
    transform 0.3s ease,
    border-left 0.3s ease;
}
.wcu-list-item:hover {
  transform: translateX(10px);
}

html {
  scroll-behavior: smooth;
}

section[id],
.service-section {
  scroll-margin-top: 120px;
}

.navbar-brand img {
  transition: max-height 0.3s ease;
}

.header-nav.sticky .navbar-brand img {
  max-height: 35px !important;
}

.header-nav.sticky .navigation {
  padding: 0 !important;
}

.header-nav.sticky .navbar-nav .nav-item a {
  line-height: 50px !important;
}

.cost-control-area {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=2070&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  z-index: 1;
}

.cost-control-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.85);
  z-index: -2;
}

.cost-control-area .container {
  position: relative;
  z-index: 3;
}

.cost-control-area .section-title-cost .title,
.cost-control-area .section-title-cost .description {
  color: #ffffff !important;
}

.cost-control-area .section-title-cost .sub-title {
  color: #d02d65;
}

.bg-shape.shape-move-1,
.bg-shape.shape-move-2 {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    rgba(255, 86, 79, 0.15),
    rgba(255, 86, 79, 0.05)
  );
  z-index: -1;
  pointer-events: none;
}

.bg-shape.shape-move-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -150px;
  animation: floatAnimation1 25s infinite alternate linear;
}

.bg-shape.shape-move-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  right: -100px;
  animation: floatAnimation2 20s infinite alternate linear;
}

@keyframes floatAnimation1 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(150px, 100px) rotate(45deg);
  }
}

@keyframes floatAnimation2 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(-120px, -80px) rotate(-45deg);
  }
}

.cta-parallax-area .tagline {
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 600;
}

.mobile-nav-toggler {
  display: none;
}

@media (max-width: 991px) {
  .header-nav .navbar-nav .nav-item {
    position: relative;
  }

  .mobile-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    cursor: pointer;
    color: #333;
    z-index: 10;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
  }

  .header-nav .navbar-nav .sub-menu {
    position: static !important;
    width: 100% !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
    padding-left: 20px !important;
    background: transparent !important;
    transform: none !important;
    transition: none !important;
  }

  .header-nav .navbar-nav .sub-menu li a {
    padding: 10px 0 !important;
    color: #555 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
}

@media (max-width: 991px) {
  .header-nav .navbar-nav .nav-item.active > .nav-link,
  .header-nav .navbar-nav .nav-item:hover > .nav-link {
    color: #d02d65 !important;
    background-color: transparent !important;
    border: none !important;
  }

  .header-nav .navbar-nav .nav-item.active .mobile-nav-toggler,
  .header-nav .navbar-nav .nav-item:hover .mobile-nav-toggler {
    color: #d02d65 !important;
    border-color: rgba(255, 86, 79, 0.1);
  }

  .header-nav .navbar-nav .sub-menu li a {
    color: #555 !important;
    font-weight: 400;
    background: transparent !important;
    transition: all 0.3s ease;
  }

  .header-nav .navbar-nav .sub-menu li a:hover,
  .header-nav .navbar-nav .sub-menu li.active > a {
    color: #d02d65 !important;
    background: rgba(255, 86, 79, 0.05) !important;
    padding-left: 15px !important;
  }
}

@media (max-width: 991px) {
  .header-nav .navbar-brand img {
    max-height: 40px;
    width: auto;
    margin-top: 5px;
  }
}

@media (max-width: 991px) {
  .header-nav .navbar-toggler .toggler-icon {
    background-color: #000 !important;
  }
}
.contact-left-panel {
  background-color: #33415c;
  padding: 60px 50px;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-title-area {
  min-height: 500px !important;
}

.page-title-content {
  margin-top: 150px !important;
  padding-top: 0 !important;
}

@media (max-width: 768px) {
  .page-title-area {
    min-height: 300px !important;
  }
  .page-title-content {
    margin-top: 50px !important;
  }
}

.page-title-area {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;

  width: 100% !important;
  min-height: 500px !important;
  position: relative;
  padding: 0 !important;
}

.page-title-content {
  width: 100% !important;
  margin: 0 !important;
  padding-top: 150px !important;
}

@media (max-width: 991px) {
  .page-title-area {
    min-height: 350px !important;
  }

  .page-title-content {
    padding-top: 120px !important;
  }

  .page-title-content .title {
    font-size: 36px !important;
  }
}
.contact-left-panel {
  background-color: #33415c;
  padding: 60px 50px;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@keyframes float-y {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.animate-float {
  animation: float-y 4s ease-in-out infinite;
}

.about-2-thumb img {
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}
.mail-footer {
  color: #b0b0b0;
}
.mail-footer:hover {
  color: #d02d65;
}

:root {
  --bg-light-gray: #eaedf2;
  --bg-section-alt: #f4f6f9;
}

body.home-2-bg,
body {
  background-color: #eff2f6 !important;
}

.about-2-area,
.service-area,
.features-area,
.section-white {
  background-color: #ffffff;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 1;
}

.sub-item,
.service-box,
.single-features-item {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
  border: 1px solid rgba(0, 0, 0, 0.02);
  background-color: #ffffff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.sub-item:hover,
.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.section-alt {
  background-color: var(--bg-section-alt) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}
.mail-footer {
  color: #b0b0b0;
}
.mail-footer:hover {
  color: #d02d65;
}
/* =========================================
   FIXARE VIZIBILITATE FOOTER (TEXT ÎNCHIS)
   ========================================= */

.footer-area,
.footer-2-area {
  background-color: #ffffff !important;
  background-image: none !important;
}

.footer-widget .title,
.footer-widget h4 {
  color: #000000 !important;
}

.footer-widget ul li a,
.footer-contact-info span,
.footer-contact-info a,
.footer-copyright-bottom p,
.footer-copyright-bottom .copyright-text,
.footer-copyright-bottom .legal-links li a {
  color: #33415c !important;
}

a.mail-footer {
  color: #33415c !important;
}

.footer-contact-info i {
  color: #d02d65 !important;
}

.footer-widget ul li a:hover,
.footer-copyright-bottom .legal-links li a:hover,
a.mail-footer:hover {
  color: #d02d65 !important;
}
/* =========================================
   UNIFORMIZARE FONT & MĂRIME FOOTER
   ========================================= */

.footer-area,
.footer-2-area,
.footer-widget h4,
.footer-widget .title,
.footer-widget ul li a,
.footer-widget p,
.footer-contact-info span,
.footer-contact-info a,
.footer-copyright-bottom p,
.footer-copyright-bottom span,
.footer-copyright-bottom a {
  font-family: "space_grotesk", sans-serif !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  letter-spacing: 0.5px !important;
}

.footer-widget h4,
.footer-widget .title {
  font-weight: 700 !important;
  text-transform: uppercase;
  margin-bottom: 20px !important;
}

.footer-widget ul li a,
.footer-contact-info span,
.footer-copyright-bottom p {
  font-weight: 400 !important;
}
