/* Fonts */
:root {
  --default-font:
    "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Inter", sans-serif;
}

/* Global Colors */
:root {
  --background-color: #ffffff;
  --default-color: rgba(33, 37, 41, 0.85);
  --heading-color: #212529;
  --accent-color: #2c61aa;
  --button-color: #f2a83f;
  --surface-color: #f8f9fa;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  --nav-color: rgba(33, 37, 41, 0.8);
  --nav-hover-color: #2c61aa;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: rgba(33, 37, 41, 0.8);
  --nav-dropdown-hover-color: #2c61aa;
}

/* Color Presets */
.light-background {
  --background-color: #f1f7f6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 5px 0;
  transition: all 0.5s;
  z-index: 997;
  position: sticky;
  top: 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 70px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 400;
  color: var(--heading-color);
}

.header .header-social-links {
  padding-right: 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 16px;
}

.header .header-social-links a:hover {
  color: var(--accent-color);
}

.header .header-social-links a i {
  line-height: 0px;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .header-social-links {
    order: 2;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 80%);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(255, 255, 255, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .header {
    z-index: 9997;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
    z-index: 9998;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
    z-index: 9999;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0 0 0;
  position: relative;
}

.footer .icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer .address p {
  margin-bottom: 0px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f8f9fa;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Welcome Section (Grand Hero)
--------------------------------------------------------------*/
.welcome {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  background-color: var(--background-color);
  z-index: 1;
}

.welcome .welcome-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}

.welcome .welcome-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

/* Atmospheric Overlay */
.welcome .welcome-bg:after {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.9) 10%,
    rgba(255, 255, 255, 0.4) 100%
  );
  backdrop-filter: blur(2px);
  z-index: 1;
}

/* Animated Ambient Shapes */
.welcome .shape {
  position: absolute;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.6;
  animation: moveShape 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.welcome .shape-1 {
  top: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--accent-color), transparent 60%) 0%,
    transparent 70%
  );
}

.welcome .shape-2 {
  bottom: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(79, 172, 254, 0.4) 0%,
    transparent 70%
  );
  animation-delay: -5s;
}

@keyframes moveShape {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(50px, 30px) scale(1.1);
  }
}

.welcome .container {
  position: relative;
  z-index: 3;
}

.welcome .welcome-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
  animation: fadeUpIn 1.2s ease-out;
}

@keyframes fadeUpIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.welcome .welcome-content .welcome-badge {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--accent-color);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-radius: 50px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(5px);
}

.welcome .welcome-content h1 {
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.05;
  color: var(--heading-color);
  letter-spacing: -0.04em;
}

.welcome .welcome-content h1 span.text-gradient {
  background: linear-gradient(120deg, var(--accent-color), var(--accent-color));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 5s linear infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.welcome .welcome-content p {
  font-size: 1.35rem;
  font-weight: 400;
  color: color-mix(in srgb, var(--heading-color), transparent 25%);
  line-height: 1.6;
  margin-bottom: 50px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.welcome .welcome-content .actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.welcome .welcome-content .btn-welcome {
  padding: 18px 45px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.welcome .welcome-content .btn-primary-welcome {
  background: var(--button-color);
  color: var(--background-color);
  border: none;
  box-shadow: 0 20px 40px -10px rgba(242, 168, 63, 0.4);
}

.welcome .welcome-content .btn-primary-welcome:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px -10px rgba(242, 168, 63, 0.5);
  background: color-mix(in srgb, var(--button-color), black 10%);
}

.welcome .welcome-content .btn-primary-welcome i {
  transition: transform 0.3s ease;
}

.welcome .welcome-content .btn-primary-welcome:hover i {
  transform: translateX(5px);
}

.welcome .welcome-content .btn-outline-welcome {
  background: transparent;
  color: var(--button-color);
  border: 2px solid var(--button-color);
}

.welcome .welcome-content .btn-outline-welcome:hover {
  border-color: color-mix(in srgb, var(--button-color), black 10%);
  background: color-mix(in srgb, var(--button-color), transparent 90%);
  color: color-mix(in srgb, var(--button-color), black 10%);
  transform: translateY(-5px);
}

/* Scroll Indicator */
.welcome .scroll-down-btn {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--default-color);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.welcome .scroll-down-btn:hover {
  opacity: 1;
}

.welcome .scroll-down-btn .mouse {
  width: 26px;
  height: 42px;
  border: 2px solid var(--heading-color);
  border-radius: 20px;
  position: relative;
}

.welcome .scroll-down-btn .wheel {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--heading-color);
  border-radius: 50%;
  animation: scrollWheel 2s infinite;
}

.welcome .scroll-down-btn .arrow {
  animation: scrollArrow 2s infinite;
  font-size: 1.2rem;
  color: var(--heading-color);
}

@keyframes scrollWheel {
  0% {
    top: 6px;
    opacity: 1;
  }
  100% {
    top: 20px;
    opacity: 0;
  }
}

@keyframes scrollArrow {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(5px);
  }
  60% {
    transform: translateY(3px);
  }
}

@media (max-width: 991.98px) {
  .welcome .welcome-bg:after {
    background: rgba(255, 255, 255, 0.85);
  }
}

/*--------------------------------------------------------------
# Hero Section (Strategic Impact)
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding: 100px 0;
  overflow: visible;
  background-color: var(--surface-color);
}

.hero .hero-background {
  display: none;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
}

.hero .badge-container {
  margin-bottom: 20px;
}

.hero .hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero .hero-content h1 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.hero .hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.8;
  max-width: 90%;
}

.hero .hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero .hero-btns .btn {
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero .hero-btns .btn-primary {
  background: var(--button-color);
  border: 1px solid var(--button-color);
  color: #fff;
  box-shadow: 0 4px 15px
    color-mix(in srgb, var(--button-color), transparent 70%);
}

.hero .hero-btns .btn-primary:hover {
  background: color-mix(in srgb, var(--button-color), black 10%);
  transform: translateY(-2px);
}

.hero .hero-btns .btn-outline {
  border: 2px solid var(--button-color);
  color: var(--button-color);
  background: transparent;
}

.hero .hero-btns .btn-outline:hover {
  border-color: color-mix(in srgb, var(--button-color), black 10%);
  color: color-mix(in srgb, var(--button-color), black 10%);
  background: color-mix(in srgb, var(--button-color), transparent 90%);
  transform: translateY(-2px);
}

/* Stats */
.hero .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 30px;
}

.hero .hero-stats .stat-item {
  text-align: center;
  padding: 20px 15px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.hero .hero-stats .stat-item:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-3px);
}

.hero .hero-stats .stat-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 12px auto;
  background: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: 0 8px 20px
    color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero .hero-stats .stat-label {
  font-size: 0.9rem;
  color: var(--heading-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Image Wrapper */
.hero .hero-image-wrapper {
  position: relative;
  padding-left: 20px;
}

.hero .hero-image-wrapper .image-reveal {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.15);
}

.hero .hero-image-wrapper .image-reveal img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hero .hero-image-wrapper:hover .image-reveal img {
  transform: scale(1.05);
}

.hero .floating-card {
  position: absolute;
  bottom: 40px;
  left: 0px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  padding: 18px 24px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 260px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  animation: floatCard 5s ease-in-out infinite;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hero .floating-card .card-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 5px 15px
    color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero .floating-card .card-text h4 {
  font-size: 0.85rem;
  margin: 0 0 3px 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 600;
  text-transform: uppercase;
}

.hero .floating-card .card-text p {
  font-size: 1.1rem;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 991px) {
  .hero .hero-content {
    text-align: center;
    margin-bottom: 50px;
  }
  .hero .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero .hero-btns {
    justify-content: center;
  }
  .hero .hero-stats {
    justify-content: center;
    grid-template-columns: repeat(3, auto);
    text-align: center;
  }
  .hero .hero-stats .stat-item {
    text-align: center;
  }
  .hero .hero-image-wrapper {
    padding-left: 0;
    max-width: 600px;
    margin: 0 auto;
  }
  .hero .floating-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -70px;
    animation: none;
  }
}

@media (max-width: 576px) {
  .hero .hero-stats {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.hero .hero-stats .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px
    color-mix(in srgb, var(--default-color), transparent 85%);
}

.hero .hero-stats .stat-item .stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #fff 20%)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.hero .hero-stats .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.hero .hero-stats .stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .hero .hero-stats .stat-item h3 {
    font-size: 2rem;
  }

  .welcome .welcome-content .welcome-badge {
    font-size: 0.6rem;
  }

  .welcome .welcome-content h1 {
    font-size: 2rem;
  }

  .welcome .welcome-content p {
    font-size: 1rem;
  }

  .welcome .welcome-content .btn-primary-welcome {
    font-size: 0.75rem;
  }

  .welcome .welcome-content .btn-outline-welcome {
    font-size: 0.75rem;
  }

  .header .logo img {
    width: 185px;
  }
}

.hero .hero-stats .stat-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

@media (max-width: 992px) {
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero .hero-content {
    margin-bottom: 3rem;
  }

  .hero .hero-content h1 {
    margin-bottom: 1.5rem;
  }

  .hero .hero-content p {
    margin-bottom: 2rem;
  }

  .hero .hero-image-container {
    margin-bottom: 3rem;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .image-wrapper {
  position: relative;
}

.about .image-wrapper .image-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about .image-wrapper .image-box img {
  transition: 0.5s transform;
}

.about .image-wrapper .image-box:hover img {
  transform: scale(1.05);
}

.about .image-wrapper .experience-box {
  position: absolute;
  bottom: -30px;
  right: 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about .image-wrapper .experience-box .years {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--heading-font);
}

.about .image-wrapper .experience-box .text {
  font-size: 0.9rem;
  margin-top: 5px;
  line-height: 1.2;
}

.about .content {
  padding-left: 2rem;
}

@media (max-width: 991.98px) {
  .about .content {
    padding-left: 0;
    margin-top: 10px;
  }
}

.about .content .section-header {
  margin-bottom: 2rem;
}

.about .content .section-header .subtitle {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.about .content .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0;
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .about .content .section-header h2 {
    font-size: 2rem;
  }
}

.about .content .highlight-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  margin-bottom: 2rem;
  font-weight: 500;
}

.about .content .features-list {
  margin-bottom: 2.5rem;
}

.about .content .features-list .feature-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.about .content .features-list .feature-item:last-child {
  margin-bottom: 0;
}

.about .content .features-list .feature-item .icon-box {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: 0.3s;
}

.about .content .features-list .feature-item .icon-box:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-5px);
}

.about .content .features-list .feature-item .text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.about .content .features-list .feature-item .text p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .content .cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.about .content .cta-buttons .btn-get-started {
  background-color: var(--button-color);
  color: var(--contrast-color);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 500;
  transition: 0.3s;
  display: grid;
  place-items: center;
}

.about .content .cta-buttons .btn-get-started:hover {
  background-color: color-mix(in srgb, var(--button-color), black 10%);
  transform: translateY(-3px);
}

.about .content .cta-buttons .btn-learn-more {
  background-color: transparent;
  color: var(--button-color);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 500;
  border: 2px solid var(--button-color);
  transition: 0.3s;
}

.about .content .cta-buttons .btn-learn-more:hover {
  border-color: color-mix(in srgb, var(--button-color), black 10%);
  background-color: color-mix(in srgb, var(--button-color), transparent 90%);
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .services-container {
  margin-bottom: 60px;
}

.services .services-container .service-item {
  display: flex;
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px
    color-mix(in srgb, var(--accent-color), transparent 92%);
  transition: all 0.4s ease;
  height: 100%;
}

.services .services-container .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px
    color-mix(in srgb, var(--accent-color), transparent 85%);
}

.services .services-container .service-item:hover .service-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.services .services-container .service-item:hover .service-link {
  color: var(--accent-color);
}

.services .services-container .service-item:hover .service-link i {
  transform: translateX(5px);
}

.services .services-container .service-item .service-icon {
  flex: 0 0 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.services .services-container .service-item .service-content {
  padding: 30px;
  position: relative;
}

.services .services-container .service-item .service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 90%);
  line-height: 1;
  opacity: 0.5;
  z-index: 1;
}

.services .services-container .service-item .service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
}

.services .services-container .service-item .service-text {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  position: relative;
  z-index: 2;
}

.services .services-container .service-item .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.services .services-container .service-item .service-link i {
  transition: transform 0.3s ease;
}

.services .cta-wrapper .cta-box {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), transparent 15%),
    color-mix(in srgb, var(--accent-color), transparent 5%)
  );
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px
    color-mix(in srgb, var(--default-color), transparent 85%);
}

.services .cta-wrapper .cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 0.05;
  z-index: 1;
}

.services .cta-wrapper .cta-box .cta-image {
  position: relative;
  z-index: 2;
}

.services .cta-wrapper .cta-box .cta-image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 5px solid color-mix(in srgb, var(--contrast-color), transparent 15%);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .services .cta-wrapper .cta-box .cta-image img {
    margin-bottom: 30px;
  }
}

.services .cta-wrapper .cta-box .cta-content {
  position: relative;
  z-index: 2;
}

.services .cta-wrapper .cta-box .cta-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.services .cta-wrapper .cta-box .cta-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
  margin-bottom: 25px;
  font-size: 1rem;
  line-height: 1.6;
}

.services .cta-wrapper .cta-box .cta-content .primary-btn {
  display: inline-block;
  background-color: var(--contrast-color);
  color: var(--accent-color);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.services .cta-wrapper .cta-box .cta-content .primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .services .cta-wrapper .cta-box .cta-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }

  .services .services-container .service-item {
    flex-direction: column;
  }

  .services .services-container .service-item .service-icon {
    flex: 0 0 auto;
    height: 80px;
    width: 100%;
  }

  .services .cta-wrapper .cta-box {
    padding: 30px 20px;
  }
}

/*--------------------------------------------------------------
# Steps Section
--------------------------------------------------------------*/
.steps .process-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.steps .process-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-bottom: 2.5rem;
}

.steps .process-item:last-child {
  padding-bottom: 0;
}

.steps .process-item .content {
  width: 100%;
  position: relative;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--accent-color), transparent 95%),
    var(--surface-color)
  );
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 20px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.steps .process-item .content:hover {
  transform: translateX(10px);
  box-shadow: -8px 8px 25px rgba(0, 0, 0, 0.1);
}

.steps .process-item .content:hover .step-icon {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), transparent 15%),
    var(--accent-color)
  );
  transform: rotate(10deg);
}

.steps .process-item .content:hover .step-number {
  transform: translateX(-5px);
  opacity: 1;
}

.steps .process-item .step-number {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent-color);
  font-family: var(--heading-font);
  line-height: 1;
  opacity: 0.2;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.steps .process-item .card-body {
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.steps .process-item .step-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.steps .process-item .step-icon i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.steps .process-item .step-content h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.steps .process-item .step-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.steps .process-item .arrow {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  margin: 1rem 0;
  width: 100px;
  height: 100px;
  opacity: 0.7;
}

@media (max-width: 767.98px) {
  .steps .process-container {
    padding: 1rem 0;
  }

  .steps .process-item {
    padding-bottom: 2rem;
  }

  .steps .process-item .content {
    border-width: 1px;
  }

  .steps .process-item .content:hover {
    transform: translateY(-5px);
  }

  .steps .process-item .step-number {
    font-size: 3rem;
    left: 50%;
    top: -1.5rem;
    transform: translateX(-50%);
  }

  .steps .process-item .step-number:hover {
    transform: translateX(-50%);
  }

  .steps .process-item .card-body {
    padding: 2rem 1.5rem 1.5rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .steps .process-item .step-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
  }

  .steps .process-item .step-icon i {
    font-size: 1.75rem;
  }

  .steps .process-item .step-content h3 {
    font-size: 1.25rem;
  }

  .steps .process-item .arrow {
    height: 60px;
    margin: 0.5rem 0;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}

.testimonials .testimonial-card:hover {
  border-color: var(--accent-color);
}

.testimonials .testimonial-content {
  padding: 40px 30px 30px;
  position: relative;
  flex-grow: 1;
}

.testimonials .testimonial-content p {
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.testimonials .testimonial-content .quote-icon {
  position: absolute;
  top: 15px;
  left: 30px;
  font-size: 42px;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  z-index: 0;
  opacity: 0.8;
}

.testimonials .testimonial-profile {
  padding: 20px 30px;
  background-color: color-mix(in srgb, var(--heading-color), transparent 95%);
  border-top: 1px solid
    color-mix(in srgb, var(--heading-color), transparent 90%);
}

.testimonials .rating {
  margin-bottom: 15px;
}

.testimonials .rating i {
  color: #ffc107;
  margin-right: 3px;
  font-size: 14px;
}

.testimonials .profile-info {
  display: flex;
  align-items: center;
}

.testimonials .profile-info img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--background-color);
  margin-right: 15px;
}

.testimonials .profile-info div {
  flex: 1;
}

.testimonials .profile-info h3 {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
}

.testimonials .profile-info h4 {
  margin: 0;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  width: 25px;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .testimonials .testimonial-content {
    padding: 30px 20px 20px;
  }

  .testimonials .testimonial-content p {
    font-size: 15px;
  }

  .testimonials .testimonial-content .quote-icon {
    font-size: 36px;
    left: 20px;
  }

  .testimonials .testimonial-profile {
    padding: 15px 20px;
  }

  .testimonials .profile-info img {
    width: 45px;
    height: 45px;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters-wrapper {
  text-align: center;
  margin-bottom: 80px;
}

.portfolio .portfolio-filters {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

.portfolio .portfolio-filters::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio .portfolio-filters li {
  position: relative;
  cursor: pointer;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: all 0.4s ease-out;
  letter-spacing: 0.5px;
}

.portfolio .portfolio-filters li::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: all 0.4s ease-out;
  transform: translateX(-50%);
}

.portfolio .portfolio-filters li:hover {
  color: var(--default-color);
}

.portfolio .portfolio-filters li.filter-active {
  color: var(--default-color);
}

.portfolio .portfolio-filters li.filter-active::after {
  width: 100%;
}

@media (max-width: 768px) {
  .portfolio .portfolio-filters {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}

.portfolio .portfolio-card {
  background: var(--surface-color);
  transition: all 0.4s ease-out;
  overflow: hidden;
}

.portfolio .portfolio-card:hover {
  transform: translateY(-8px);
}

.portfolio .portfolio-card:hover .image-container img {
  transform: scale(1.05);
}

.portfolio .portfolio-card:hover .overlay {
  opacity: 1;
  visibility: visible;
}

.portfolio .portfolio-card:hover .content h3 {
  color: var(--accent-color);
}

.portfolio .image-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 8px;
}

.portfolio .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-out;
}

.portfolio .image-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-out;
  backdrop-filter: blur(2px);
}

.portfolio .image-container .overlay-content {
  display: flex;
  gap: 20px;
  transform: translateY(20px);
  transition: transform 0.4s ease-out 0.1s;
}

.portfolio-card:hover .portfolio .image-container .overlay-content {
  transform: translateY(0);
}

.portfolio .image-container .overlay-content a {
  width: 50px;
  height: 50px;
  background: var(--surface-color);
  color: var(--heading-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 18px;
}

.portfolio .image-container .overlay-content a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.portfolio .content {
  padding: 30px 0;
  text-align: center;
}

.portfolio .content h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

.portfolio .content p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.3px;
}

@media (min-width: 992px) {
  .portfolio .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .portfolio .portfolio-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
}

.team .team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px
    color-mix(in srgb, var(--accent-color), transparent 80%);
  border-color: var(--accent-color);
}

.team .team-member:hover .member-image:before {
  opacity: 1;
}

.team .team-member:hover .member-image img {
  transform: scale(1.1);
}

.team .team-member:hover .social-overlay {
  transform: translateY(0);
  opacity: 1;
}

.team .team-member:hover .member-info h4 {
  color: var(--accent-color);
}

.team .member-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.team .member-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    color-mix(in srgb, var(--accent-color), transparent 50%) 100%
  );
  opacity: 0;
  transition: 0.4s;
  z-index: 1;
}

.team .member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team .social-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 30px 20px 20px;
  transform: translateY(100%);
  opacity: 0;
  transition: 0.4s;
  z-index: 2;
}

.team .social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 18px;
  transition: 0.3s;
}

.team .social-icons a:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  transform: scale(1.1);
}

.team .member-info {
  padding: 25px 20px 30px;
  text-align: center;
  position: relative;
}

.team .member-info:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-color) 0%,
    color-mix(in srgb, var(--accent-color), transparent 60%) 100%
  );
  border-radius: 2px;
}

.team .member-info h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
  transition: 0.3s;
}

.team .member-info span {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--accent-color);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team .member-info p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 768px) {
  .team .team-member {
    margin-bottom: 30px;
  }

  .team .team-member .member-image {
    height: 250px;
  }

  .team .team-member .member-info {
    padding: 20px 15px 25px;
  }

  .team .team-member .member-info h4 {
    font-size: 20px;
  }

  .team .team-member .member-info p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.pricing .pricing-card:hover {
  transform: translateY(-10px);
}

.pricing .pricing-card.featured {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border: 2px solid var(--accent-color);
}

.pricing .pricing-card.featured .pricing-header h3 {
  color: var(--accent-color);
}

.pricing .pricing-card .pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing .pricing-card .pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.pricing .pricing-card .pricing-header .price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--accent-color);
}

.pricing .pricing-card .pricing-header .price .currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.pricing .pricing-card .pricing-header .price .period {
  font-size: 1rem;
  font-weight: 400;
  margin-left: -4px;
  color: var(--default-color);
  opacity: 0.7;
}

.pricing .pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.pricing .pricing-card .features-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.pricing .pricing-card .features-list li i {
  margin-right: 0.5rem;
  color: var(--accent-color);
}

.pricing .pricing-card .features-list li.disabled {
  opacity: 0.5;
}

.pricing .pricing-card .features-list li.disabled i {
  color: var(--default-color);
}

.pricing .pricing-card .btn-primary {
  background-color: var(--button-color);
  border-color: var(--button-color);
  color: var(--contrast-color);
  padding: 0.75rem 2rem;
  font-weight: bold;
  transition: all 0.3s ease;
  border-radius: 50px;
}

.pricing .pricing-card .btn-primary:hover {
  background-color: color-mix(in srgb, var(--button-color), black 15%);
  border-color: color-mix(in srgb, var(--button-color), black 15%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.faq .section-header .lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
}

.faq .faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq .faq-item {
  border-left: 4px solid transparent;
  border-radius: 10px;
  background: var(--surface-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-left-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

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

.faq .faq-item.faq-active .faq-header .faq-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-item.faq-active .faq-header h4 {
  color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-header .faq-toggle {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
  display: none;
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
  display: block;
}

.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
  display: block;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
  display: none;
}

.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  padding: 25px;
  cursor: pointer;
  gap: 20px;
}

.faq .faq-item .faq-header .faq-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 20px;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header h4 {
  flex: 1;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  transition: color 0.3s ease;
  line-height: 1.4;
}

.faq .faq-item .faq-header .faq-toggle {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.faq .faq-item .faq-header .faq-toggle i {
  position: absolute;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header .faq-toggle:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-item .faq-content .content-inner {
  padding: 0 25px 25px 25px;
  overflow: hidden;
}

.faq .faq-item .faq-content .content-inner p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  font-size: 0.95rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .faq .faq-item .faq-header {
    padding: 20px;
    gap: 15px;
  }

  .faq .faq-item .faq-header .faq-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 1rem;
  }

  .faq .faq-item .faq-header .faq-toggle {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 20px;
  }

  .faq .faq-item.faq-active .faq-content .content-inner {
    padding-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .container {
  max-width: 1280px;
}

.contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .contact .contact-wrapper {
    grid-template-columns: 38% 62%;
    gap: 30px;
  }
}

.contact .contact-info-panel {
  background: linear-gradient(
    145deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #1a4372 40%)
  );
  color: var(--contrast-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-panel .contact-info-header {
  margin-bottom: 30px;
}

.contact .contact-info-panel .contact-info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .contact-info-panel .contact-info-header p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}

.contact .contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: auto;
}

@media (min-width: 576px) and (max-width: 991px) {
  .contact .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .info-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.contact .info-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact .info-card .icon-container {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .info-card .icon-container i {
  font-size: 20px;
  color: var(--contrast-color);
}

.contact .info-card .card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--contrast-color);
}

.contact .info-card .card-content p {
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.8;
}

.contact .social-links-panel {
  margin-top: 35px;
}

.contact .social-links-panel h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.contact .social-links-panel .social-icons {
  display: flex;
  gap: 12px;
}

.contact .social-links-panel .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--contrast-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact .social-links-panel .social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.contact .contact-form-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .map-container {
  width: 100%;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact .form-container {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.contact .form-container h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  background: linear-gradient(
    120deg,
    var(--heading-color),
    color-mix(in srgb, var(--heading-color), var(--accent-color) 30%)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact .form-container p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 25px;
}

.contact .form-container .form-floating {
  margin-bottom: 20px;
}

.contact .form-container .form-floating .form-control {
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 24px 20px 8px 20px;
  height: calc(3.5rem + 3px);
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .form-container .form-floating .form-control:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  background-color: var(--surface-color);
}

.contact .form-container .form-floating .form-control::placeholder {
  color: transparent;
}

.contact .form-container .form-floating label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 1rem 1.25rem 2.5rem 1.25rem;
}

.contact .form-container .form-floating label::after {
  background-color: transparent;
}

.contact .form-container .btn-submit {
  background: linear-gradient(
    145deg,
    var(--button-color),
    color-mix(in srgb, var(--button-color), #a36515 30%)
  );
  color: var(--contrast-color);
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .form-container .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px
    color-mix(in srgb, var(--button-color), transparent 60%);
}

.contact .form-container .btn-submit i {
  transition: transform 0.3s ease;
}

.contact .form-container .btn-submit:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .contact .contact-info-panel {
    padding: 30px 25px;
  }

  .contact .form-container {
    padding: 30px 25px;
  }
}

@media (max-width: 576px) {
  .contact .social-links-panel .social-icons {
    flex-wrap: wrap;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-hero {
  position: relative;
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
}

.service-details .service-hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-details .service-hero .service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
}

.service-details .service-content .service-header {
  margin-bottom: 40px;
}

.service-details .service-content .service-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.service-details .service-content .service-header .service-intro {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-content h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.service-details .service-features {
  margin-bottom: 50px;
}

.service-details .service-features .feature-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.service-details .service-features .feature-item:hover {
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--default-color), transparent 90%);
  transform: translateY(-2px);
}

.service-details .service-features .feature-item .feature-icon {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.service-details .service-features .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.service-details .service-features .feature-item .feature-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.service-details .service-features .feature-item .feature-content p {
  font-size: 14px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-process {
  margin-bottom: 50px;
}

.service-details .service-process .process-steps .process-step {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.service-details
  .service-process
  .process-steps
  .process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 60px;
  width: 2px;
  height: 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.service-details .service-process .process-steps .process-step .step-number {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 25px;
  flex-shrink: 0;
  font-size: 16px;
}

.service-details
  .service-process
  .process-steps
  .process-step
  .step-content
  h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.service-details .service-process .process-steps .process-step .step-content p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-gallery {
  margin-bottom: 30px;
}

.service-details .service-gallery img {
  transition: transform 0.3s ease;
}

.service-details .service-gallery img:hover {
  transform: scale(1.05);
}

.service-details .service-sidebar .service-menu {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-menu h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-menu .menu-list .menu-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-details
  .service-sidebar
  .service-menu
  .menu-list
  .menu-item:last-child {
  border-bottom: none;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:hover,
.service-details .service-sidebar .service-menu .menu-list .menu-item.active {
  color: var(--accent-color);
  padding-left: 10px;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:hover i,
.service-details .service-sidebar .service-menu .menu-list .menu-item.active i {
  color: var(--accent-color);
}

.service-details .service-sidebar .service-menu .menu-list .menu-item i {
  margin-right: 12px;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: color 0.3s ease;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item span {
  font-weight: 500;
}

.service-details .service-sidebar .service-info {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-info h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-info .info-list .info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details
  .service-sidebar
  .service-info
  .info-list
  .info-item:last-child {
  border-bottom: none;
}

.service-details
  .service-sidebar
  .service-info
  .info-list
  .info-item
  .info-label {
  font-weight: 500;
  color: var(--default-color);
}

.service-details
  .service-sidebar
  .service-info
  .info-list
  .info-item
  .info-value {
  font-weight: 600;
  color: var(--accent-color);
}

.service-details .service-sidebar .contact-card {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #000 20%)
  );
  padding: 30px;
  border-radius: 10px;
  color: var(--contrast-color);
}

.service-details .service-sidebar .contact-card .contact-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.service-details .service-sidebar .contact-card .contact-content p {
  margin-bottom: 20px;
  opacity: 0.9;
  font-size: 14px;
  line-height: 1.6;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info {
  margin-bottom: 25px;
}

.service-details
  .service-sidebar
  .contact-card
  .contact-content
  .contact-info
  .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.service-details
  .service-sidebar
  .contact-card
  .contact-content
  .contact-info
  .contact-item
  i {
  margin-right: 10px;
  opacity: 0.8;
}

.service-details
  .service-sidebar
  .contact-card
  .contact-content
  .contact-info
  .contact-item
  span {
  font-size: 14px;
}

.service-details .service-sidebar .contact-card .contact-content .btn {
  background: var(--contrast-color);
  color: var(--accent-color);
  border: none;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .contact-card .contact-content .btn:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .service-details .service-hero img {
    height: 250px;
  }

  .service-details .service-hero .service-badge {
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    font-size: 12px;
  }

  .service-details .service-content .service-header h2 {
    font-size: 24px;
  }

  .service-details .feature-item {
    padding: 15px !important;
  }

  .service-details .feature-item .feature-icon {
    width: 50px !important;
    height: 50px !important;
    margin-right: 15px !important;
  }

  .service-details .feature-item .feature-icon i {
    font-size: 20px !important;
  }

  .service-details .service-sidebar {
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Stats Section (Impacto)
--------------------------------------------------------------*/
.stats .stats-item {
  background: var(--surface-color);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.stats .stats-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.stats .stats-item .stats-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  background: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  font-size: 28px;
  box-shadow: 0 8px 25px
    color-mix(in srgb, var(--accent-color), transparent 60%);
}

.stats .stats-item span {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
  line-height: 1;
}

.stats .stats-item p {
  margin: 0;
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Team Section - Enhanced with Icons
--------------------------------------------------------------*/
.team-category {
  margin-bottom: 40px;
}

.team-category-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.team-category-header .category-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 5px 15px
    color-mix(in srgb, var(--accent-color), transparent 60%);
}

.team-category-header .category-icon-alt {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

.team-category-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

.team-card {
  background: var(--surface-color);
  padding: 25px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.team-card-alt:hover {
  border-color: #10b981;
}

.team-card-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 15px auto;
  transition: all 0.3s ease;
}

.team-card:hover .team-card-icon {
  background: var(--accent-color);
  color: #fff;
}

.team-card-alt .team-card-icon {
  background: color-mix(in srgb, #10b981, transparent 90%);
  color: #10b981;
}

.team-card-alt:hover .team-card-icon {
  background: #10b981;
  color: #fff;
}

.team-card-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.role-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.role-president {
  background: color-mix(in srgb, #f59e0b, transparent 85%);
  color: #d97706;
}

.role-vp {
  background: color-mix(in srgb, #8b5cf6, transparent 85%);
  color: #7c3aed;
}

.role-treasurer {
  background: color-mix(in srgb, #3b82f6, transparent 85%);
  color: #2563eb;
}

.role-director {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

.role-manager {
  background: color-mix(in srgb, #ef4444, transparent 85%);
  color: #dc2626;
}

.role-ops {
  background: color-mix(in srgb, #10b981, transparent 85%);
  color: #059669;
}

.role-analyst {
  background: color-mix(in srgb, #06b6d4, transparent 85%);
  color: #0891b2;
}

.role-commercial {
  background: color-mix(in srgb, #f97316, transparent 85%);
  color: #ea580c;
}

/*--------------------------------------------------------------
# Footer - Premium Design
--------------------------------------------------------------*/
.footer {
  background: linear-gradient(
    135deg,
    var(--heading-color) 0%,
    color-mix(in srgb, var(--heading-color), #000 30%) 100%
  );
  color: #fff;
  position: relative;
  overflow: hidden;
}

.footer .footer-main {
  padding: 80px 0 60px;
  position: relative;
  z-index: 2;
}

.footer .footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer .footer-logo img {
  max-height: 70px;
}

.footer .footer-about .footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.footer .footer-social {
  display: flex;
  gap: 12px;
}

.footer .footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-social a:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px
    color-mix(in srgb, var(--accent-color), transparent 60%);
}

/* Footer Links */
.footer .footer-links h4,
.footer .footer-contact h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links h4::after,
.footer .footer-contact h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

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

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

.footer .footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer .footer-links ul li a i {
  font-size: 10px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.footer .footer-links ul li a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer .footer-links ul li a:hover i {
  transform: translateX(3px);
}

/* Footer Contact */
.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.footer .footer-contact .contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-contact .contact-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Footer Bottom */
.footer .footer-bottom {
  padding: 25px 0;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}

.footer .footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer .footer-bottom .copyright strong {
  color: #fff;
}

.footer .footer-bottom .developer i {
  color: #ef4444;
  margin: 0 3px;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

.footer .footer-bottom .developer a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer .footer-bottom .developer a:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Decorative Elements */
.footer .footer-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.footer .decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent-color);
  opacity: 0.03;
}

.footer .decoration-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
}

.footer .decoration-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -100px;
}

/* Responsive */
@media (max-width: 991px) {
  .footer .footer-main {
    padding: 60px 0 40px;
  }

  .footer .footer-about {
    text-align: center;
    margin-bottom: 30px;
  }

  .footer .footer-social {
    justify-content: center;
  }

  .footer .footer-links h4::after,
  .footer .footer-contact h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer .footer-links,
  .footer .footer-contact {
    text-align: center;
  }

  .footer .footer-links ul li a {
    justify-content: center;
  }

  .footer .footer-contact .contact-item {
    justify-content: center;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .footer .footer-main {
    padding: 50px 0 30px;
  }

  .footer .footer-links h4,
  .footer .footer-contact h4 {
    font-size: 1.05rem;
  }
}

/*--------------------------------------------------------------
# Misión, Visión y Valores Section
--------------------------------------------------------------*/
.mision-vision {
  background: linear-gradient(
    180deg,
    var(--surface-color) 0%,
    var(--background-color) 100%
  );
}

/* MV Cards */
.mv-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-color);
}

.mv-card.mv-mision::before {
  background: linear-gradient(90deg, var(--accent-color), #3b82f6);
}

.mv-card.mv-vision::before {
  background: linear-gradient(90deg, #10b981, #06b6d4);
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.mv-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.mv-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.mv-card.mv-vision .mv-icon {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.mv-card:hover .mv-icon {
  background: var(--accent-color);
  color: #fff;
}

.mv-card.mv-vision:hover .mv-icon {
  background: var(--accent-color);
}

.mv-badge {
  font-size: 2.5rem;
  font-weight: 800;
  color: color-mix(in srgb, var(--default-color), transparent 85%);
  line-height: 1;
}

.mv-card-body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.mv-main-text {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.mv-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.mv-highlights li i {
  color: var(--accent-color);
  font-size: 14px;
  margin-top: 3px;
}

/* Valores Section */
.valores-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.valores-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.valores-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ef4444, #f97316);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

.valores-title h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 5px 0;
}

.valores-title p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

/* Valor Items */
.valor-item {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
}

.valor-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--accent-color);
}

.valor-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-color);
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.valor-item:hover .valor-icon {
  background: var(--accent-color);
  color: #fff;
  transform: scale(1.1);
}

.valor-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.valor-item p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
  .mv-card {
    padding: 30px;
  }

  .valores-header {
    flex-direction: column;
    text-align: center;
  }

  .valores-section {
    margin-top: 60px;
    padding-top: 40px;
  }
}

@media (max-width: 576px) {
  .mv-card {
    padding: 25px;
  }

  .mv-icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }

  .mv-badge {
    font-size: 2rem;
  }

  .mv-card-body h3 {
    font-size: 1.25rem;
  }

  .valor-item {
    padding: 25px;
  }
}

/*--------------------------------------------------------------
# Service Pages Styles
--------------------------------------------------------------*/

/* Service Hero Section */
.service-hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.service-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    color-mix(in srgb, var(--accent-color), #3b82f6 50%) 100%
  );
  opacity: 0.05;
  border-radius: 0 0 0 50%;
  z-index: 0;
}

.service-hero .breadcrumb {
  background: none;
  padding: 0;
  margin-bottom: 20px;
}

.service-hero .breadcrumb-item a {
  color: var(--accent-color);
  text-decoration: none;
}

.service-hero .breadcrumb-item.active {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #3b82f6 30%)
  );
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-badge-green {
  background: linear-gradient(135deg, #10b981, #06b6d4);
}
.service-badge-cyan {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}
.service-badge-purple {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
}
.service-badge-orange {
  background: linear-gradient(135deg, #f97316, #eab308);
}
.service-badge-teal {
  background: linear-gradient(135deg, #14b8a6, #10b981);
}
.service-badge-indigo {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.service-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.service-hero .lead {
  font-size: 1.15rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 30px;
}

.service-hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(
    135deg,
    var(--button-color),
    color-mix(in srgb, var(--button-color), #a36515 30%)
  );
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(242, 168, 63, 0.3);
}

.btn-primary-service:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(242, 168, 63, 0.4);
  color: #fff;
}

.btn-outline-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--button-color);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--button-color);
  transition: all 0.3s ease;
}

.btn-outline-service:hover {
  background: color-mix(in srgb, var(--button-color), transparent 90%);
  border-color: color-mix(in srgb, var(--button-color), black 10%);
  color: color-mix(in srgb, var(--button-color), black 10%);
}

.service-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 300px;
}

.service-icon-large {
  width: 200px;
  height: 200px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #3b82f6 30%)
  );
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: #fff;
  box-shadow: 0 20px 60px rgba(var(--accent-color-rgb), 0.3);
  animation: float 6s ease-in-out infinite;
}

.service-icon-green {
  background: linear-gradient(135deg, #10b981, #06b6d4);
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
}
.service-icon-cyan {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
}
.service-icon-purple {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}
.service-icon-orange {
  background: linear-gradient(135deg, #f97316, #eab308);
  box-shadow: 0 20px 60px rgba(249, 115, 22, 0.3);
}
.service-icon-teal {
  background: linear-gradient(135deg, #14b8a6, #10b981);
  box-shadow: 0 20px 60px rgba(20, 184, 166, 0.3);
}
.service-icon-indigo {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

/* Service Details Section */
.service-details {
  padding: 80px 0;
}

.service-content-block {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.service-content-block h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-content-block h2 i {
  color: var(--accent-color);
  font-size: 1.3rem;
}

.service-content-block > p {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--background-color);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--accent-color);
}

.feature-icon {
  width: 55px;
  height: 55px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--accent-color);
  color: #fff;
}

.feature-icon-green {
  background: color-mix(in srgb, #10b981, transparent 90%);
  color: #10b981;
}
.feature-card:hover .feature-icon-green {
  background: #10b981;
  color: #fff;
}
.feature-icon-cyan {
  background: color-mix(in srgb, #06b6d4, transparent 90%);
  color: #06b6d4;
}
.feature-card:hover .feature-icon-cyan {
  background: #06b6d4;
  color: #fff;
}
.feature-icon-purple {
  background: color-mix(in srgb, #8b5cf6, transparent 90%);
  color: #8b5cf6;
}
.feature-card:hover .feature-icon-purple {
  background: #8b5cf6;
  color: #fff;
}
.feature-icon-orange {
  background: color-mix(in srgb, #f97316, transparent 90%);
  color: #f97316;
}
.feature-card:hover .feature-icon-orange {
  background: #f97316;
  color: #fff;
}
.feature-icon-teal {
  background: color-mix(in srgb, #14b8a6, transparent 90%);
  color: #14b8a6;
}
.feature-card:hover .feature-icon-teal {
  background: #14b8a6;
  color: #fff;
}
.feature-icon-indigo {
  background: color-mix(in srgb, #6366f1, transparent 90%);
  color: #6366f1;
}
.feature-card:hover .feature-icon-indigo {
  background: #6366f1;
  color: #fff;
}

.feature-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

/* Benefits List */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: var(--background-color);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 18px;
}

.benefit-icon-green {
  background: color-mix(in srgb, #10b981, transparent 85%);
  color: #10b981;
}
.benefit-icon-cyan {
  background: color-mix(in srgb, #06b6d4, transparent 85%);
  color: #06b6d4;
}
.benefit-icon-purple {
  background: color-mix(in srgb, #8b5cf6, transparent 85%);
  color: #8b5cf6;
}
.benefit-icon-orange {
  background: color-mix(in srgb, #f97316, transparent 85%);
  color: #f97316;
}
.benefit-icon-teal {
  background: color-mix(in srgb, #14b8a6, transparent 85%);
  color: #14b8a6;
}
.benefit-icon-indigo {
  background: color-mix(in srgb, #6366f1, transparent 85%);
  color: #6366f1;
}

.benefit-content h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.benefit-content p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.5;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #3b82f6 30%)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}

.step-green {
  background: linear-gradient(135deg, #10b981, #06b6d4);
}
.step-cyan {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}
.step-purple {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
}
.step-orange {
  background: linear-gradient(135deg, #f97316, #eab308);
}
.step-teal {
  background: linear-gradient(135deg, #14b8a6, #10b981);
}
.step-indigo {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.step-content {
  flex: 1;
  padding: 15px 20px;
  background: var(--background-color);
  border-radius: 12px;
  border-left: 3px solid var(--accent-color);
}

.step-content h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.5;
}

/* Requirements Box */
.requirements-box {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
}

.requirements-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}

.requirements-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--default-color);
}

.requirements-list li i {
  color: var(--accent-color);
  font-size: 16px;
}

/* Service Sidebar */
.service-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 25px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

/* CTA Card */
.cta-card {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #3b82f6 30%)
  );
  color: #fff;
  text-align: center;
}

.cta-card-green {
  background: linear-gradient(135deg, #10b981, #06b6d4);
}
.cta-card-cyan {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}
.cta-card-purple {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
}
.cta-card-orange {
  background: linear-gradient(135deg, #f97316, #eab308);
}
.cta-card-teal {
  background: linear-gradient(135deg, #14b8a6, #10b981);
}
.cta-card-indigo {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.cta-card .cta-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
}

.cta-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.cta-card p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 20px;
  line-height: 1.5;
}

.btn-cta {
  display: inline-block;
  background: #fff;
  color: var(--accent-color);
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta-green {
  color: #10b981;
}
.btn-cta-cyan {
  color: #06b6d4;
}
.btn-cta-purple {
  color: #8b5cf6;
}
.btn-cta-orange {
  color: #f97316;
}
.btn-cta-teal {
  color: #14b8a6;
}
.btn-cta-indigo {
  color: #6366f1;
}

/* Services Card */
.services-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 20px;
}

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

.other-services-list li {
  margin-bottom: 10px;
}

.other-services-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: var(--background-color);
  border-radius: 10px;
  color: var(--default-color);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.other-services-list li a i {
  color: var(--accent-color);
  font-size: 18px;
}

.other-services-list li a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transform: translateX(5px);
}

/* Contact Card */
.contact-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 20px;
}

.contact-card .contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-card .contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact-card .contact-info li:last-child {
  border-bottom: none;
}

.contact-card .contact-info li i {
  color: var(--contrast-color);
  font-size: 18px;
}

.contact-card .contact-info li span {
  color: var(--contrast-color);
  font-size: 0.9rem;
}

/* Service Contact Section */
.service-contact {
  padding: 80px 0;
}

.service-contact .section-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #3b82f6 30%)
  );
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-contact h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.service-contact > .container > .row:first-child p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.contact-form-wrapper {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-contact-form .form-floating > .form-control {
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  background: var(--background-color);
}

.service-contact-form .form-floating > .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-contact-form .form-floating > label {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.btn-submit-service {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), #3b82f6 30%)
  );
  color: #fff;
  padding: 15px 40px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(var(--accent-color-rgb), 0.3);
}

.btn-submit-service:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--accent-color-rgb), 0.4);
}

/* Service Page Responsive */
@media (max-width: 991px) {
  .service-hero {
    padding: 100px 0 60px;
  }

  .service-hero h1 {
    font-size: 2.2rem;
  }

  .service-hero-image {
    margin-top: 40px;
  }

  .service-icon-large {
    width: 150px;
    height: 150px;
    font-size: 60px;
  }

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

  .service-sidebar {
    position: static;
    margin-top: 40px;
  }

  .service-content-block {
    padding: 30px;
  }

  .contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .service-hero {
    padding: 90px 0 50px;
  }

  .service-hero h1 {
    font-size: 1.8rem;
  }

  .service-hero .lead {
    font-size: 1rem;
  }

  .service-hero-cta {
    flex-direction: column;
  }

  .btn-primary-service,
  .btn-outline-service {
    width: 100%;
    justify-content: center;
  }

  .service-icon-large {
    width: 120px;
    height: 120px;
    font-size: 50px;
    border-radius: 20px;
  }

  .service-content-block {
    padding: 20px;
  }

  .service-content-block h2 {
    font-size: 1.3rem;
  }

  .process-step {
    flex-direction: column;
    gap: 10px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1rem;
  }

  .step-content {
    border-left: none;
    border-top: 3px solid var(--accent-color);
  }

  .sidebar-card {
    padding: 20px;
  }

  .contact-form-wrapper {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Licitaciones & Becas Cards
--------------------------------------------------------------*/
/* Licitaciones Cards */
.licitaciones-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.licitacion-card {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.licitacion-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.licitacion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
}

.licitacion-estado {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.estado-abierta {
  background: color-mix(in srgb, #10b981, transparent 85%);
  color: #059669;
}

.estado-evaluacion {
  background: color-mix(in srgb, #f59e0b, transparent 85%);
  color: #d97706;
}

.estado-cerrada {
  background: color-mix(in srgb, #ef4444, transparent 85%);
  color: #dc2626;
}

.licitacion-fecha {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.licitacion-body {
  padding: 25px;
}

.licitacion-body h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.licitacion-body p {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 20px;
  line-height: 1.6;
}

.licitacion-detalles {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.licitacion-detalles span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  padding: 6px 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 6px;
}

.licitacion-detalles span i {
  color: var(--accent-color);
}

.licitacion-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
  background: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.btn-descargar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--button-color);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-descargar:hover {
  background: color-mix(in srgb, var(--button-color), black 10%);
  color: #fff;
  transform: translateY(-2px);
}

.btn-consultar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-consultar:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.licitacion-evaluacion {
  opacity: 0.85;
}

.estado-info {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

/* Requirements List */
.requirements-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.requirements-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
}

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

.requirements-list li i {
  color: var(--accent-color);
  font-size: 1rem;
}

.requirements-list li span {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-size: 0.95rem;
}

/* Becas Cards */
.becas-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.beca-card {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.beca-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  border-color: #10b981;
}

.beca-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background: color-mix(in srgb, #10b981, transparent 92%);
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
}

.beca-categoria {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.beca-cupos {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #059669;
  font-weight: 600;
}

.beca-body {
  padding: 25px;
}

.beca-body h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.beca-body p {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.detalle-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.detalle-item i {
  color: #10b981;
  font-size: 1rem;
}

.beca-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
  background: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.beca-estado {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.beca-estado.estado-abierta {
  color: #059669;
}

.beca-estado.estado-proximamente {
  color: #d97706;
}

.btn-postular {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-postular:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
  color: #fff;
}

.btn-avisar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  color: #d97706;
  border: 2px solid #d97706;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-avisar:hover {
  background: color-mix(in srgb, #f59e0b, transparent 90%);
  color: #d97706;
}

.beca-proximamente {
  opacity: 0.85;
}

.beca-proximamente:hover {
  border-color: #f59e0b;
}

/* FAQ Mini (Becas Sidebar) */
.faq-mini {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-mini-item {
  padding-bottom: 15px;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.faq-mini-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.faq-mini-item h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.faq-mini-item p {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
  line-height: 1.5;
}

/* Responsive for cards */
@media (max-width: 768px) {
  .licitacion-header,
  .beca-header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .licitacion-footer,
  .beca-footer {
    flex-direction: column;
    gap: 15px;
  }

  .beca-detalles {
    grid-template-columns: 1fr;
  }

  .licitacion-detalles {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Oportunidades Pages - Unique Design
--------------------------------------------------------------*/
/* Oportunidades Page Body */
.oportunidades-page {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* Oportunidades Hero Section */
.oportunidades-hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}

.oportunidades-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

/* Licitaciones Hero - Blue Theme */
.oportunidades-hero.licitaciones-theme::before {
  background: linear-gradient(135deg, #1e3a5f 0%, #2c61aa 50%, #3b82f6 100%);
}

/* Becas Hero - Green Theme */
.oportunidades-hero.becas-theme::before {
  background: linear-gradient(135deg, #064e3b 0%, #059669 50%, #10b981 100%);
}

.oportunidades-hero .container {
  position: relative;
  z-index: 2;
}

/* Floating shapes */
.oportunidades-hero .floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.oportunidades-hero .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  background: #fff;
}

.oportunidades-hero .shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}

.oportunidades-hero .shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -50px;
  animation: float 15s ease-in-out infinite reverse;
}

.oportunidades-hero .shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 20%;
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(10deg);
  }
}

/* Hero Content */
.oportunidades-hero-content {
  color: #fff;
  max-width: 650px;
}

.oportunidades-hero-content .breadcrumb {
  margin-bottom: 20px;
}

.oportunidades-hero-content .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.oportunidades-hero-content .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.9);
}

.oportunidades-hero-content .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
  font-size: 1rem;
}

.oportunidades-hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}

.oportunidades-hero-content .lead {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.7;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 35px;
}

.hero-stat {
  text-align: center;
}

.hero-stat .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero-stat .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 5px;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: #fff;
  color: var(--accent-color);
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.becas-theme .btn-hero-primary {
  color: #059669;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  color: var(--accent-color);
}

.becas-theme .btn-hero-primary:hover {
  color: #059669;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

/* Hero Visual */
.oportunidades-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-icon-container {
  position: relative;
  width: 280px;
  height: 280px;
}

.hero-icon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-icon-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-icon-inner i {
  font-size: 80px;
  color: #fff;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatCard 6s ease-in-out infinite;
}

.floating-card.card-1 {
  top: 10%;
  right: 0;
  animation-delay: 0s;
}

.floating-card.card-2 {
  bottom: 10%;
  left: 0;
  animation-delay: 2s;
}

.floating-card.card-3 {
  top: 50%;
  right: -10%;
  animation-delay: 4s;
}

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

.floating-card .card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
}

.licitaciones-theme .floating-card .card-icon {
  background: linear-gradient(135deg, #2c61aa, #3b82f6);
}

.becas-theme .floating-card .card-icon {
  background: linear-gradient(135deg, #059669, #10b981);
}

.floating-card .card-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--heading-color);
}

.floating-card .card-text span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/* Main Content Area */
.oportunidades-content {
  padding: 80px 0;
}

/* Filter/Info Bar */
.oportunidades-info-bar {
  background: #fff;
  border-radius: 16px;
  padding: 25px 30px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.info-bar-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.info-bar-text p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.info-bar-filters {
  display: flex;
  gap: 10px;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background: transparent;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--accent-color);
  background: var(--accent-color);
  color: #fff;
}

.becas-theme .filter-btn:hover,
.becas-theme .filter-btn.active {
  border-color: #10b981;
  background: #10b981;
}

/* Enhanced Cards Grid */
.oportunidades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 30px;
}

/* Enhanced Licitacion Card */
.licitacion-card-enhanced {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.licitacion-card-enhanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(44, 97, 170, 0.15);
}

.licitacion-card-top {
  background: linear-gradient(135deg, #1e3a5f, #2c61aa);
  padding: 25px;
  position: relative;
  overflow: hidden;
}

.licitacion-card-top::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
}

.licitacion-card-top .card-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.9);
  color: #fff;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.licitacion-card-top .card-status.evaluacion {
  background: rgba(245, 158, 11, 0.9);
}

.licitacion-card-top .card-status.cerrada {
  background: rgba(239, 68, 68, 0.9);
}

.licitacion-card-top .card-code {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-bottom: 8px;
}

.licitacion-card-top h4 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.licitacion-card-body {
  padding: 25px;
}

.licitacion-card-body p {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.licitacion-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.meta-item .meta-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1rem;
}

.meta-item .meta-text {
  font-size: 0.85rem;
}

.meta-item .meta-text strong {
  display: block;
  font-weight: 600;
  color: var(--heading-color);
}

.meta-item .meta-text span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.8rem;
}

.licitacion-card-actions {
  display: flex;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.licitacion-card-actions .btn-ver-bases {
  flex: 1;
  padding: 12px 20px;
  background: linear-gradient(135deg, #2c61aa, #3b82f6);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.licitacion-card-actions .btn-ver-bases:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 97, 170, 0.35);
  color: #fff;
}

.licitacion-card-actions .btn-consulta {
  padding: 12px 20px;
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.licitacion-card-actions .btn-consulta:hover {
  background: var(--accent-color);
  color: #fff;
}

/* Enhanced Beca Card */
.beca-card-enhanced {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  position: relative;
}

.beca-card-enhanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.15);
}

.beca-card-enhanced.proximamente {
  opacity: 0.85;
}

.beca-card-enhanced.proximamente:hover {
  box-shadow: 0 20px 50px rgba(245, 158, 11, 0.15);
}

.beca-ribbon {
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  padding: 8px 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.beca-ribbon.proximamente {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.beca-card-top {
  background: linear-gradient(135deg, #064e3b, #059669);
  padding: 30px 25px;
  position: relative;
  overflow: hidden;
}

.beca-card-top::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
}

.beca-card-enhanced.proximamente .beca-card-top {
  background: linear-gradient(135deg, #78350f, #d97706);
}

.beca-card-top .beca-categoria-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.beca-card-top h4 {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.beca-card-top .beca-cupos-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

.beca-card-body {
  padding: 25px;
}

.beca-card-body p {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.beca-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.beca-info-item {
  background: color-mix(in srgb, #10b981, transparent 95%);
  padding: 15px;
  border-radius: 12px;
  text-align: center;
}

.beca-card-enhanced.proximamente .beca-info-item {
  background: color-mix(in srgb, #f59e0b, transparent 95%);
}

.beca-info-item i {
  font-size: 1.5rem;
  color: #10b981;
  margin-bottom: 8px;
}

.beca-card-enhanced.proximamente .beca-info-item i {
  color: #d97706;
}

.beca-info-item .info-value {
  display: block;
  font-weight: 700;
  color: var(--heading-color);
  font-size: 0.95rem;
}

.beca-info-item .info-label {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.beca-card-actions {
  display: flex;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.beca-card-actions .btn-postular-beca {
  flex: 1;
  padding: 14px 20px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.beca-card-actions .btn-postular-beca:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
  color: #fff;
}

.beca-card-enhanced.proximamente .beca-card-actions .btn-postular-beca {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.beca-card-enhanced.proximamente .beca-card-actions .btn-postular-beca:hover {
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.beca-card-actions .btn-info-beca {
  padding: 14px 20px;
  background: transparent;
  color: #10b981;
  border: 2px solid #10b981;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.beca-card-enhanced.proximamente .beca-card-actions .btn-info-beca {
  color: #d97706;
  border-color: #d97706;
}

.beca-card-actions .btn-info-beca:hover {
  background: #10b981;
  color: #fff;
}

.beca-card-enhanced.proximamente .beca-card-actions .btn-info-beca:hover {
  background: #d97706;
}

/* CTA Banner */
.oportunidades-cta-banner {
  margin-top: 60px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.oportunidades-cta-banner.licitaciones-cta {
  background: linear-gradient(135deg, #1e3a5f, #2c61aa);
}

.oportunidades-cta-banner.becas-cta {
  background: linear-gradient(135deg, #064e3b, #059669);
}

.oportunidades-cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(
    circle at right,
    rgba(255, 255, 255, 0.1),
    transparent 70%
  );
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.cta-banner-text {
  max-width: 500px;
}

.cta-banner-text h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.cta-banner-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin: 0;
}

.cta-banner-actions {
  display: flex;
  gap: 15px;
}

.cta-banner-actions .btn-cta-primary {
  padding: 15px 30px;
  background: #fff;
  color: var(--accent-color);
  border-radius: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.becas-cta .cta-banner-actions .btn-cta-primary {
  color: #059669;
}

.cta-banner-actions .btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Sidebar Enhanced */
.oportunidades-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card-enhanced {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.sidebar-card-enhanced h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-card-enhanced h4 i {
  color: var(--accent-color);
}

.becas-theme .sidebar-card-enhanced h4 i {
  color: #10b981;
}

/* Notification Card */
.notification-card {
  background: linear-gradient(135deg, #2c61aa, #3b82f6);
  color: #fff;
}

.becas-theme .notification-card {
  background: linear-gradient(135deg, #059669, #10b981);
}

.notification-card h4 {
  color: #fff;
}

.notification-card h4 i {
  color: #fff !important;
}

.notification-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.notification-card .btn-subscribe {
  width: 100%;
  padding: 14px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.notification-card .btn-subscribe:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

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

.contact-sidebar-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
}

.contact-sidebar-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-sidebar-list li .contact-icon-box {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.1rem;
}

.becas-theme .contact-sidebar-list li .contact-icon-box {
  background: color-mix(in srgb, #10b981, transparent 92%);
  color: #10b981;
}

.contact-sidebar-list li .contact-text {
  font-size: 0.95rem;
  color: var(--heading-color);
  font-weight: 500;
}

.contact-sidebar-list li .contact-label {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/* Process Steps Enhanced */
.process-card {
  background: #fff;
}

.process-steps-enhanced {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step-enhanced {
  display: flex;
  gap: 20px;
  position: relative;
}

.process-step-enhanced:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 45px;
  width: 2px;
  height: calc(100% - 20px);
  background: linear-gradient(
    180deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 70%)
  );
}

.becas-theme .process-step-enhanced:not(:last-child)::after {
  background: linear-gradient(
    180deg,
    #10b981,
    color-mix(in srgb, #10b981, transparent 70%)
  );
}

.process-step-enhanced .step-number-enhanced {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), #3b82f6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  z-index: 2;
}

.becas-theme .process-step-enhanced .step-number-enhanced {
  background: linear-gradient(135deg, #10b981, #059669);
}

.process-step-enhanced .step-content-enhanced {
  flex: 1;
  padding-bottom: 25px;
}

.process-step-enhanced .step-content-enhanced h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.process-step-enhanced .step-content-enhanced p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .oportunidades-hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    gap: 25px;
  }

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

  .cta-banner-content {
    padding: 35px;
    flex-direction: column;
    text-align: center;
  }

  .cta-banner-text {
    max-width: 100%;
  }

  .oportunidades-sidebar {
    position: static;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .oportunidades-hero {
    padding: 70px 0 50px;
  }

  .oportunidades-hero-content h1 {
    font-size: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-icon-container {
    display: none;
  }

  .oportunidades-info-bar {
    flex-direction: column;
    text-align: center;
  }

  .licitacion-meta,
  .beca-info-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner-actions {
    flex-direction: column;
    width: 100%;
  }
}

/* Licitaciones Cards */
.licitaciones-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.licitacion-card {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.licitacion-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.licitacion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
}

.licitacion-estado {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.estado-abierta {
  background: color-mix(in srgb, #10b981, transparent 85%);
  color: #059669;
}

.estado-evaluacion {
  background: color-mix(in srgb, #f59e0b, transparent 85%);
  color: #d97706;
}

.estado-cerrada {
  background: color-mix(in srgb, #ef4444, transparent 85%);
  color: #dc2626;
}

.licitacion-fecha {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.licitacion-body {
  padding: 25px;
}

.licitacion-body h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.licitacion-body p {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 20px;
  line-height: 1.6;
}

.licitacion-detalles {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.licitacion-detalles span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  padding: 6px 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 6px;
}

.licitacion-detalles span i {
  color: var(--accent-color);
}

.licitacion-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
  background: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.btn-descargar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--button-color);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-descargar:hover {
  background: color-mix(in srgb, var(--button-color), black 10%);
  color: #fff;
  transform: translateY(-2px);
}

.btn-consultar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-consultar:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
}

.licitacion-evaluacion {
  opacity: 0.85;
}

.estado-info {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

/* Requirements List */
.requirements-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.requirements-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
}

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

.requirements-list li i {
  color: var(--accent-color);
  font-size: 1rem;
}

.requirements-list li span {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-size: 0.95rem;
}

/* Becas Cards */
.becas-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.beca-card {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.beca-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  border-color: #10b981;
}

.beca-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background: color-mix(in srgb, #10b981, transparent 92%);
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
}

.beca-categoria {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.beca-cupos {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #059669;
  font-weight: 600;
}

.beca-body {
  padding: 25px;
}

.beca-body h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.beca-body p {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.detalle-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.detalle-item i {
  color: #10b981;
  font-size: 1rem;
}

.beca-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
  background: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.beca-estado {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.beca-estado.estado-abierta {
  color: #059669;
}

.beca-estado.estado-proximamente {
  color: #d97706;
}

.btn-postular {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-postular:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
  color: #fff;
}

.btn-avisar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  color: #d97706;
  border: 2px solid #d97706;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-avisar:hover {
  background: color-mix(in srgb, #f59e0b, transparent 90%);
  color: #d97706;
}

.beca-proximamente {
  opacity: 0.85;
}

.beca-proximamente:hover {
  border-color: #f59e0b;
}

/* FAQ Mini (Becas Sidebar) */
.faq-mini {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-mini-item {
  padding-bottom: 15px;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.faq-mini-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.faq-mini-item h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.faq-mini-item p {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
  line-height: 1.5;
}

/* Responsive for cards */
@media (max-width: 768px) {
  .licitacion-header,
  .beca-header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .licitacion-footer,
  .beca-footer {
    flex-direction: column;
    gap: 15px;
  }

  .beca-detalles {
    grid-template-columns: 1fr;
  }

  .licitacion-detalles {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Service CTA Redirect Section
--------------------------------------------------------------*/
.service-cta-redirect {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.service-cta-redirect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1e3a5f 0%, #2c61aa 50%, #3b82f6 100%);
  z-index: 0;
}

.service-cta-redirect .container {
  position: relative;
  z-index: 2;
}

.cta-redirect-wrapper {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 60px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-redirect-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.cta-redirect-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-redirect-icon i {
  font-size: 45px;
  color: #fff;
}

.cta-redirect-wrapper h2 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-redirect-wrapper p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 35px;
  line-height: 1.7;
}

.cta-redirect-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 35px;
  background: #fff;
  color: #2c61aa;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-main:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  color: #1e3a5f;
}

.btn-cta-main i {
  font-size: 1.2rem;
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 35px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.cta-redirect-info {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.cta-info-item i {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
}

.cta-info-item span {
  font-size: 0.95rem;
}

/* Floating decorations */
.cta-decoration {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.cta-decoration-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  left: -50px;
}

.cta-decoration-2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  right: -30px;
}

@media (max-width: 768px) {
  .cta-redirect-wrapper {
    padding: 40px 25px;
  }

  .cta-redirect-wrapper h2 {
    font-size: 1.7rem;
  }

  .cta-redirect-wrapper p {
    font-size: 1rem;
  }

  .cta-redirect-buttons {
    flex-direction: column;
  }

  .btn-cta-main,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }

  .cta-redirect-info {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}
