@font-face {
    font-family: 'Pricedown';
    src: url('/assets/fonts/pricedownbl.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Mejora el rendimiento de carga */
}

    .patron {
      width: 100%;
      height: 22px;
      background: repeating-linear-gradient(
        to right,
        black 0px,
        black 20px,
        white 20px,
        white 40px
      );}

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* 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: "Nunito Sans",  sans-serif;
  --nav-font: "Raleway",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #0A34FF; /* Background color for the entire website, including individual sections */
  --default-color: rgba(255, 255, 255, 0.8); /* Default color used for the majority of the text content across the entire website */
  --heading-color: #e0e9f2; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #e3a127; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #1b262c; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.8);  /* The default color of the main navmenu links */
  --nav-hover-color: #e3a127; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #29343a; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #29343a; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: rgba(255, 255, 255, 0.8); /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #e3a127; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #0d1d26;
  --surface-color: #16262f;
}

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

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
   perspective: 1000px;
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  scrollbar-width: none;
}

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);
}

.header{
      position: absolute !important;
    top: 10px !important; 
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
  transition: all 0.5s;
  z-index: 1000;
      position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.header .header-container {
border-radius: 50px;
    background: rgb(0 20 255 / 52%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.1), 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.header .logo img {
  width: 68px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 20px;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--heading-color);
}


@media (max-width: 1200px) {

  .header .header-container {
    position: absolute !important;
    top: 6px;
        width: 40%;
    left: 6px;
  }

  .header .logo {
    order: 1;
    margin-left: 15px;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# 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: rgba(245, 245, 245, 0.674);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  /* Estilo específico para el botón de contacto en el nav */
.navmenu ul li a.contactanos-btn {
    color: white !important; /* Color de texto blanco */
    background-color: transparent !important; /* Fondo transparente */
    border: 2px solid white; /* Borde blanco */
    border-radius: 30px; /* Bordes redondeados */
    margin-left: 10px; /* Espaciado del borde */
    padding: 8px 20px !important; /* Ajuste de padding */
    transition: all 0.3s ease;
}

/* Efecto hover para el botón en nav */
.navmenu ul li a.contactanos-btn:hover {
    background-color: white !important;
    color: var(--surface-color) !important; /* Color de tu tema */
    transform: translateY(-2px);
}

  .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: white;
  }

  .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;
  }
}

/* ============================================
   NAVEGACIÓN MÓVIL - IMPLEMENTACIÓN NUEVA
   ============================================ */

/* Variables para el menú móvil */
:root {
  --mobile-nav-bg: rgba(13, 29, 38, 0.95);
  --mobile-nav-overlay: rgba(0, 0, 0, 0.8);
  --mobile-nav-item-bg: rgba(255, 255, 255, 0.05);
  --mobile-nav-item-hover: rgba(227, 161, 39, 0.2);
  --mobile-nav-border: rgba(227, 161, 39, 0.3);
}

/* Botón hamburguesa */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  transition: all 0.3s ease;
}

.mobile-nav-toggle:hover {
  color: #e3a127;
}

/* Mostrar botón hamburguesa en móvil */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    display: block;
  }
  
  /* Ocultar menú desktop */
  .navmenu ul {
    display: none;
  }
}

/* Overlay del menú móvil */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--mobile-nav-overlay);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Contenedor del menú móvil */
.mobile-nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--mobile-nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-menu.active {
  right: 0;
}

/* Header del menú móvil */
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-logo {
  height: 40px;
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  padding: 5px;
  transition: all 0.3s ease;
}

.mobile-nav-close:hover {
  color: #e3a127;
  transform: rotate(90deg);
}

/* Lista de navegación móvil */
.mobile-nav-list {
  list-style: none;
  padding: 20px 0;
  margin: 0;
}

.mobile-nav-item {
  margin: 0;
  opacity: 0;
  transform: translateX(20px);
  animation: slideInRight 0.3s ease forwards;
}

.mobile-nav-item:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-item:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav-item:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-nav-link {
  display: block;
  padding: 15px 20px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  position: relative;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #ffffff;
  background: var(--mobile-nav-item-hover);
  border-left-color: #e3a127;
  padding-left: 25px;
}

/* Botón de contacto especial */
.mobile-nav-contact {
  margin: 20px;
  padding: 15px 20px;
  background: linear-gradient(135deg, #e3a127 0%, #f4b942 100%);
  color: #000 !important;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(227, 161, 39, 0.3);
}

.mobile-nav-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 161, 39, 0.5);
  color: #000 !important;
}

/* Prevenir scroll del body cuando el menú está abierto */
body.mobile-nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .mobile-nav-menu {
    width: 100%;
    right: -100%;
  }
  
  .mobile-nav-menu.active {
    right: 0;
  }
}

/* Optimizaciones para iOS */
@supports (-webkit-touch-callout: none) {
  .mobile-nav-menu {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  
  .mobile-nav-link {
    -webkit-tap-highlight-color: rgba(227, 161, 39, 0.2);
  }
}

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

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

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.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 h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

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

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

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

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 0.8s ease-out;
  opacity: 1;
  visibility: visible;
}



#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Prevenir scroll mientras carga */
body.loading {
  overflow: hidden;
  height: 100vh;
}

/* Container del logo */
.preloader-logo {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 20px;
}

/* Imagen del logo con animación */
.preloader-image {
  width: 80%;
  height: 80%;
  object-fit: contain;
  animation: logoFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

/* Animación principal del logo */
@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-15px) rotate(3deg) scale(1.05);
  }
  50% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  75% {
    transform: translateY(15px) rotate(-3deg) scale(0.95);
  }
}

/* Círculo pulsante alrededor del logo */
.pulse-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Texto de carga */
.loading-text {
  color: var(--accent-color, #ffffff);
  font-family: 'Pricedown', 'Anton', Arial, sans-serif;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  animation: textGlow 2s ease-in-out infinite;
  letter-spacing: 3px;
  margin-bottom: 30px;
}

@keyframes textGlow {
  0%, 100% {
    opacity: 0.7;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
  }
}

/* Barra de progreso */
.progress-bar-container {
  width: 300px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(
    90deg, 
    transparent, 
    var(--accent-color, #ffffff), 
    transparent
  );
  width: 40%;
  animation: progressMove 2s linear infinite;
}

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

/* Partículas de fondo (opcional) */
.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
  animation: float 8s linear infinite;
}

.particle:nth-child(1) {
  width: 4px;
  height: 4px;
  left: 15%;
  animation-delay: 0s;
  animation-duration: 10s;
}

.particle:nth-child(2) {
  width: 6px;
  height: 6px;
  left: 35%;
  animation-delay: 2s;
  animation-duration: 12s;
}

.particle:nth-child(3) {
  width: 3px;
  height: 3px;
  left: 65%;
  animation-delay: 4s;
  animation-duration: 8s;
}

.particle:nth-child(4) {
  width: 5px;
  height: 5px;
  left: 85%;
  animation-delay: 1s;
  animation-duration: 11s;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10%, 90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) rotate(360deg);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .preloader-logo {
    width: 150px;
    height: 150px;
  }

  .padding{
  padding: 15px;
}
  
  .loading-text {
    font-size: 18px;
    letter-spacing: 2px;
  }
  
  .progress-bar-container {
    width: 250px;
  }
}


/*--------------------------------------------------------------
# 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);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 10px);
  z-index: 1;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  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 50%);
}

/*--------------------------------------------------------------
# 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;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  background-color: #000;
  width: 100vw;
  height: 100vh;
  height: -webkit-fill-available; /* Fix para Safari mobile */
  min-height: -webkit-fill-available;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  perspective: 1000px;
  overflow: hidden;
  padding: 2rem 0;
}

/* Patrón de fondo responsive */
.hero-pattern {
  position: absolute;
  width: 300vw;
  height: 300vh;
  top: 47%;
  left: 50%;
  transform: translate(-59%, -62%) rotateX(53deg) rotateY(0deg);
  opacity: 0.9;
  transform-origin: center;
  background-image: repeating-conic-gradient(black 0deg 90deg, white 90deg 180deg);
  background-size: 200px 200px;
  background-position: 0 0;
  z-index: -2;
  transition: transform 0.1s ease-out;
  /* Añade prefijos para Safari */
  -webkit-transform: translate(-59%, -62%) rotateX(53deg) rotateY(0deg);
  transform: translate(-59%, -62%) rotateX(53deg) rotateY(0deg);
  
  /* Asegura la aceleración hardware */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

/* Responsivo para el patrón */
@media (max-width: 1200px) {
  .hero-pattern {
      background-size: 150px 150px;
      width: 250vw;
      height: 250vh;
  }
}

@media (max-width: 768px) {
  .hero-pattern {
      background-size: 100px 100px;
      width: 200vw;
      height: 200vh;
      transform: translate(-50%, -60%) rotateX(45deg) rotateY(0deg);
  }
}

@media (max-width: 480px) {
.reverse{
  display: flex;
  flex-direction: column-reverse !important;
}
  .hero-pattern {
      background-size: 80px 80px;
      opacity: 0.7;
  }
}

.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
  background: -webkit-radial-gradient(circle at center, rgba(255,255,255,0.05), rgba(0,0,0,0.6) 80%);
  background: radial-gradient(circle at center, rgba(255,255,255,0.05), rgba(0,0,0,0.6) 80%);
  will-change: transform;
  transform: translateZ(0);
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Columna de contenido responsive */
.hero .content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 3rem;
  z-index: 1;
  min-height: 80vh;
}

@media (max-width: 1200px) {
  .hero .content-col {
      padding-right: 2rem;
  }
}

@media (max-width: 991px) {
  .hero .content-col {
      padding-right: 15px;
      margin-bottom: 2rem;
      text-align: center;
      min-height: auto;
  }
}

@media (max-width: 768px) {
  .hero .content-col {
      margin-bottom: 3rem;
      padding-right: 0;
  }
}

/* Heading principal responsive */
.hero .main-heading {
  margin-bottom: 2rem;
      margin-top: 50px;
}
@-webkit-keyframes text-pop-up-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    text-shadow: none;
  }
  100% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    text-shadow: 0 1px 0 #cccccc, 0 2px 0 #cccccc, 0 3px 0 #cccccc, 0 4px 0 #cccccc, 0 5px 0 #cccccc, 0 6px 0 #cccccc, 0 7px 0 #cccccc, 0 8px 0 #cccccc, 0 9px 0 #cccccc, 0 50px 30px rgba(0, 0, 0, 0.3);
  }
}
@keyframes text-pop-up-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    text-shadow: none;
  }
  100% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    text-shadow: 0 1px 0 #cccccc, 0 2px 0 #cccccc, 0 3px 0 #cccccc, 0 4px 0 #cccccc, 0 5px 0 #cccccc, 0 6px 0 #cccccc, 0 7px 0 #cccccc, 0 8px 0 #cccccc, 0 9px 0 #cccccc, 0 50px 30px rgba(0, 0, 0, 0.3);
  }
}


.hero .main-heading h1 {
	-webkit-animation: text-pop-up-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 2s both;
	        animation: text-pop-up-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 2s both;
  font-size: clamp(2.5rem, 8vw, 7.5rem);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -1px;
  margin: 0;
  font-family: 'Pricedown', sans-serif;
  position: relative;
  color: #1E32F5;
  z-index: 1;
  text-shadow: -8px -1px 19px #000000b0;
}

/* Breakpoints específicos para el título */
@media (max-width: 1400px) {
  .hero .main-heading h1 {
      font-size: 6rem;
  }
}

@media (max-width: 1200px) {
  .hero .main-heading h1 {
      font-size: 5rem;
  }
}

@media (max-width: 991px) {
  .hero .main-heading h1 {
      font-size: 4rem;
      line-height: 0.9;
  }
}

@media (max-width: 768px) {
  .hero .main-heading h1 {
      font-size: 3.5rem;
      text-shadow: -4px -1px 15px #000000b0;
  }
}

@media (max-width: 576px) {
  .hero .main-heading h1 {
      font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .hero .main-heading h1 {
        text-align: left;
        font-size: 4.5rem;
        line-height: 58px;
  }
}

@media (max-width: 360px) {
  .hero .main-heading h1 {
      font-size: 2.2rem;
  }
}

/* Divider responsive */
.hero .divider {
  width: 60%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  margin-bottom: 2rem;
}

@media (max-width: 991px) {
  .hero .divider {
      width: 80%;
      margin: 0 auto 2rem auto;
  }
}

@media (max-width: 767px) {
  .hero .divider {
      width: 100%;
  }
}

/* Descripción responsive */
.hero .description {
  margin-bottom: 2rem;
}

.hero .description p {
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  line-height: 1.7;
  margin: 0;
  color: #3645ca;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero .description p {
      font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .hero .description p {
      font-size: 1.2rem;
  }
}

/* Botón CTA responsive */
.hero .cta-button .btn {
  display: inline-flex;
  align-items: center;
  background-color: black;
  color: var(--default-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
}

@media (max-width: 768px) {
  .hero .cta-button .btn {
      padding: 1rem 2rem;
      font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero .cta-button .btn {
      padding: 0.8rem 1.8rem;
      font-size: 1rem;
      width: 100%;
      justify-content: center;
      max-width: 300px;
  }
}

.hero .cta-button .btn:hover {
  background-color: #1E32F5;
  color: var(--contrast-color);
  border-color: #1E32F5;
  transform: translateY(-2px);
}

/* Contenido visual responsive */
.hero .visual-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

@media (max-width: 991px) {
  .hero .visual-content {
      flex-direction: column;
      min-height: 300px;
  }
}

@media (max-width: 768px) {
  .hero .visual-content {
      min-height: 250px;
              margin-bottom: 50px;
  }
}

.hero .fluid-shape {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero .fluid-shape {
      max-width: 400px;
  }
}

@media (max-width: 480px) {
  .hero .fluid-shape {
      max-width: 300px;
      filter: drop-shadow(0 12.2px 5.25rem black);
  }
}

.hero .fluid-shape .fluid-img {
  width: 100%;
  height: auto;
  animation: float 2s ease-in-out infinite;
  max-width: 100%;
  display: block;
}

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

/* Animación más sutil en móviles */
@media (max-width: 768px) {
  @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-8px); }
      100% { transform: translateY(0px); }
  }
}

/* Stats card responsive (si la descomentas) */
.hero .stats-card {
  position: absolute;
  bottom: 10%;
  right: 0;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  width: 200px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1200px) {
  .hero .stats-card {
      width: 180px;
      padding: 1.2rem;
      bottom: 5%;
  }
}

@media (max-width: 991px) {
  .hero .stats-card {
      position: relative;
      bottom: auto;
      right: auto;
      margin: 2rem auto 0;
      width: 90%;
      max-width: 250px;
  }
}

@media (max-width: 768px) {
  .hero .stats-card {
      width: 100%;
      max-width: 300px;
  }
}

/* Mejoras adicionales para muy pequeñas pantallas */
@media (max-width: 360px) {
  .hero {
      padding: 1rem 0;
  }
  
  .hero .container {
      padding: 0 10px;
  }
  
  .hero .description {
      margin-bottom: 1.5rem;
  }
}

/* Landscape mode en móviles */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
      min-height: auto;
      padding: 1rem 0;
  }
  
  .hero .content-col {
      min-height: auto;
  }
  
  .hero .main-heading h1 {
      font-size: 2.5rem;
      line-height: 1;
  }
  
  .hero .visual-content {
      min-height: 200px;
  }
}

/* Utilidades adicionales */
.text-responsive {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
}

.section {
  position: relative;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about {
  padding-top: 60px;
  padding-bottom: 60px;
}

.about .container {
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
}
.about .about-content {
  text-align: left;
  padding-left: 20px;
  padding-right: 30px;
}

@media (max-width: 768px) {
  .about {
      padding-top: 40px;
      padding-bottom: 40px;
  }

  .about .about-content {
    text-align: center; /* Centramos todo el contenido */
    padding-left: 15px;
    padding-right: 0;
  }

  .about .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
  }

  /* Estilo para el párrafo "Somos" */
  .about .about-content .lead {
    font-size: 1.8rem !important;
    color: white !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
    height: auto !important;
    padding: 0 !important;
    display: block;
    line-height: 1.2;
    text-align: center;
    font-size: 1.2rem;
    justify-content: center;
    align-items: center;
  }

  /* Estilo para el título "CHESS" */
  .about .about-content h2 {
    font-size: 4rem !important;
    height: auto !important;
    margin: 30px 0 20px 0 !important;
    line-height: 1.1;
    letter-spacing: -1px;
    font-family: 'Pricedown', sans-serif;
    color: white;
    text-align: center;
    display: block;
    width: 100%;
  }

  /* Estilo para el párrafo descriptivo */
  .about .about-content p {
    font-size: 1.2rem !important;
    line-height: 1.6 !important;;
    margin-bottom: 20px !important;
    text-align: center;
    padding: 0 15px;
  }
}

.about .about-image {
  border-radius: 8px;
  overflow: hidden;
}

.about .about-image .experience-badge {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 140px;
}

.about .about-image .experience-badge .years {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}

.about .about-image .experience-badge .text {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .about .about-image .experience-badge {
      right: 0;
      bottom: 20px;
      padding: 1rem;
      min-width: 120px;
  }

  .about .about-image .experience-badge .years {
      font-size: 2rem;
  }
}

.about .about-content h2 {
  font-size: 9.2rem;
  font-weight: 700;
  letter-spacing: -1px;
  height: 150px;
  font-family: 'Pricedown', sans-serif;
}

@media (max-width: 1200px) {

  .about .about-content .lead {
      font-size: 1.2rem;
      justify-content: center;
      align-items: center;
  }

  .about .about-content h2 {
      font-size: 6rem;
      height: 120px;
      justify-content: center;
      align-items: center;
  }
  .about .about-content p {
      font-size: 1.4rem;
      line-height: 30px;
      justify-content: center;
      align-items: center;
  }

  .about .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .about .about-content .lead {
      font-size: 1.2rem;
      justify-content: center;
      align-items: center;
  }

  .about .about-content h2 {
      font-size: 4.5rem;
      height: 100px;
      justify-content: center;
      align-items: center;
  }
  .about .about-content p {
      font-size: 1.2rem;
      line-height: 26px;
      justify-content: center;
      align-items: center;
  }

  .about .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
  }
}

@media (max-width: 768px) {

  .about .about-content .lead {
      font-size: 1.2rem;
      justify-content: center;
      align-items: center;
  }

  .about .about-content h2 {
      font-size: 3.5rem;
      height: 80px;
      justify-content: center;
      align-items: center;
  }
}

@media (max-width: 576px) {
  .about .about-content h2 {
      font-size: 2.5rem;
      height: 60px;
      justify-content: center;
      align-items: center;
  }
}

@media (max-width: 480px) {
  .about .about-content h2 {
      font-size: 2rem;
      height: 50px;
  }

  .about .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
  }
}

.about .about-content .lead {
  font-size: 2rem;
  margin: 0px !important;
  height: 0px !important;
  padding: 0px !important;
  color: white;
  font-weight: 600;
}

@media (max-width: 768px) {
  .about .about-content .lead {
      font-size: 1.5rem;
      justify-content: center;
      align-items: center;
  }
}

@media (max-width: 480px) {
  .about .about-content .lead {
      font-size: 1.2rem;
      justify-content: center;
      align-items: center;
  }
}

.about .about-content p {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  line-height: 30px;
  color: white;
  justify-content: center;
      align-items: center;
}

@media (max-width: 768px) {
  .about .about-content p {
      font-size: 1.2rem;
      line-height: 26px;
      justify-content: center;
      align-items: center;
  }
}

@media (max-width: 480px) {
  .about .about-content p {
      font-size: 1rem;
      line-height: 22px;
  }
}

.about .about-content .feature-item {
  padding: 1.25rem;
  background-color: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.about .about-content .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about .about-content .feature-item i {
  font-size: 1.75rem;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
  display: block;
}

.about .about-content .feature-item h5 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.about .about-content .feature-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.about .about-content .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  color: var(--contrast-color);
}

.about .about-content .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.about .testimonial-section {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.about .testimonial-section .testimonial-intro h3 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.about .testimonial-section .testimonial-intro p {
  margin-bottom: 1.5rem;
}

.about .testimonial-section .testimonial-intro .swiper-nav-buttons {
  display: flex;
  gap: 10px;
}

.about .testimonial-section .testimonial-intro .swiper-nav-buttons button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about .testimonial-section .testimonial-intro .swiper-nav-buttons button:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .testimonial-section .testimonial-intro .swiper-nav-buttons button i {
  font-size: 1.25rem;
}

.about .testimonial-section .testimonial-slider {
  overflow: hidden;
}

.about .testimonial-section .testimonial-slider .swiper-wrapper {
  height: auto !important;
}

.testimonial-slider .swiper-wrapper {
  height: 285px !important;
}

@media (max-width: 768px) {
  .testimonial-slider .swiper-wrapper {
      height: 200px !important;
  }
}

@media (max-width: 480px) {
  .testimonial-slider .swiper-wrapper {
      height: 150px !important;
  }
}

.about .testimonial-section .testimonial-item {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.about .testimonial-section .testimonial-item img {
  width: 100%;
  height: auto;
  object-fit: fill;
}

.about .testimonial-section .testimonial-item .rating {
  color: #ffc107;
  font-size: 1rem;
}

.about .testimonial-section .testimonial-item p {
  font-style: italic;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.about .testimonial-section .testimonial-item .client-info .client-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.about .testimonial-section .testimonial-item .client-info h6 {
  font-weight: 600;
}

.about .testimonial-section .testimonial-item .client-info span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}



@media (max-width: 768px) {
  .patron {
      height: 40px;
      margin: 0;
  }
}

@media (max-width: 480px) {
  .patron {
      height: 30px;
      margin: 0;
  }
}

/* Sección de piezas de ajedrez */
.chess-pieces-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 430px; 
}

.chess-pieces-container {
  width: 50%; 
  position: relative;
}

.chess-pieces-wrapper {
  position: relative;
  height: 100%;
}

.chess-piece {
  position: absolute;
  top: -150px;
  max-width: 100%;
  height: auto;
}

.chess-text-container {
  width: 87%; 
  padding-left: 5px;
}

.chess-text-container h4 {
  font-size: 1.8rem;
  line-height: 2;
  color: white;
}

.chess-text-container strong {
  color: #000000;
  font-weight: 700;
}

/* Tablet (991px o menos) */
@media (max-width: 991px) {
.chess-pieces-section {
  flex-direction: row;
  align-items: center;
  height: 250px;
  padding: 20px 15px;
}

.chess-pieces-container {
  width: 60%;
  order: 1; 
  margin-top: 0;
}

.chess-piece {
  position: absolute; 
  top: 0;
  max-width: 250px;
  display: block;
  margin-bottom: 10px;
}

.chess-piece:nth-child(1) {
margin-left: 30px;
z-index: 1;
}

.chess-piece:nth-child(2) {
margin-left: -100px;
z-index: 2;
}

.chess-text-container {
  width: 60%; 
  order: 2;
  text-align: center; 
  padding-left: 20px;
}
}

/* Móvil (768px o menos) */
@media (max-width: 768px) {
.chess-pieces-section {
  flex-direction: column;
  height: auto;
  padding: 30px 15px;
}

.chess-pieces-container {
  width: 100%;
  display: block !important; /* Mostramos las imágenes */
  order: 1;
  text-align: center;
  margin-bottom: 20px;
}

.chess-piece {
  position: relative;
  top: 0;
  max-width: 120px;
  margin-right: 15px;
  display: inline-block !important;
  vertical-align: middle;
}

.chess-text-container {
  width: 100%;
  order: 2;
  text-align: center;
  padding-left: 0;
}

.chess-text-container h4 {
  font-size: 1.2rem;
}
}

/* Móviles pequeños (480px o menos) */
@media (max-width: 480px) {
.chess-piece {
  max-width: 100px;
}

.chess-text-container h4 {
  font-size: 1rem;
  line-height: 1.4;
}
}

/* Navegación del swiper */
.swiper-nav-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 2rem;
}

.swiper-nav-buttons button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--surface-color);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
}

.swiper-nav-buttons button:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.swiper-nav-buttons button i {
  font-size: 1.25rem;
}


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

.services{
  background-color: black;
}

.services .service-header .service-intro .service-heading {
  font-size: 48px;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(180deg,rgba(30, 50, 245, 1) 0%, rgba(54, 48, 48, 0) 100%);
  color: var(--heading-color);
}

.services .service-header .service-intro .service-heading div {
  display: block;
  position: relative;
}

.services .service-header .service-intro .service-heading span {
  display: block;
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .services .service-header .service-intro .service-heading {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .services .service-header .service-intro .service-heading {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

.services .service-header .service-summary p {
  margin-bottom: 25px;
  color: var(--default-color);
}

.services .service-header .service-summary .service-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .service-header .service-summary .service-btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.services .service-header .service-summary .service-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
}

.services .service-header .service-summary .service-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .services .service-header .service-summary {
    margin-top: 30px;
  }
}

.services .service-card {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: blue;
  padding: 20px;
  margin-bottom: 30px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  border-radius: 18px;
}

.services .service-card img {
  width: 200px; /* Ancho deseado */
  height: 300px; /* Altura deseada */
  object-fit: contain;
  transition: ease-in-out 0.2s;
}

.services .service-card:hover {
  border-color: transparent;
}

.services .service-card:hover img {
  transform: scale(1.1);
  transition: ease-in-out 0.2s;
}

.services .service-card:hover h3 a {
  color: var(--accent-color);
}

.services .service-card:hover h3 a:hover {
  color: var(--accent-color);
}

.services .service-card:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .service-card:hover .card-action {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.services .service-card:hover .service-icon i {
  transform: scale(1.1);
}

/* MOBILE FIXES */
@media (max-width: 768px) {
  .services .service-card {
    padding: 20px; /* Mantener padding normal, no 150px */
    min-height: 300px; /* Altura mínima para mantener proporción cuadrada */
    height: auto; /* Permitir altura automática */
  }
  
  .services .service-card img {
    width: 180px; /* Reducir tamaño en mobile */
    height: 240px; /* Mantener proporción */
    object-fit: contain;
    margin: 0; /* Eliminar márgenes que puedan desplazar la imagen */
  }

  .services .service-card h3 {
    font-size: 24px;
  }

  /* Asegurar que el contenedor mantenga la imagen centrada */
  .service-card-wrapper {
    margin-bottom: 40px;
  }
  
  /* Ajustar el contenedor padre para mejor centrado */
  .services .service-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Para mejor control en mobile */
  }
}

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

/* EXTRA: Para pantallas muy pequeñas (móviles en orientación vertical) */
@media (max-width: 480px) {
  .services .service-card {
    padding: 15px;
    min-height: 280px;
  }
  
  .services .service-card img {
    width: 160px;
    height: 220px;
  }
}

/*--------------------------------------------------------------
# Steps Section
--------------------------------------------------------------*/
.steps .steps-wrapper {
  position: relative;
  padding: 20px 0;
}

.steps .steps-wrapper::before {
  content: "";
  position: absolute;
  width: 2px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.steps .step-item {
  margin-bottom: 50px;
  width: 100%;
  position: relative;
}

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

.steps .step-item:nth-child(even) .step-content {
  flex-direction: row-reverse;
}

.steps .step-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.steps .step-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-color: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  transition: all 0.3s ease-in-out;
}

.steps .step-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: transform 0.3s ease-in-out;
}

.steps .step-info {
  flex: 1;
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out;
}

.steps .step-info:hover {
  transform: translateY(-5px);
}

.steps .step-number {
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.steps h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--heading-color);
}

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

@media (max-width: 991px) {
  .steps .steps-wrapper::before {
    left: 25px;
  }

  .steps .step-item .step-content {
    flex-direction: row !important;
  }

  .steps .step-icon {
    width: 60px;
    height: 60px;
  }

  .steps .step-icon i {
    font-size: 24px;
  }

  .steps .step-info {
    padding: 20px;
  }

  .steps h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .steps .step-content {
    gap: 20px;
  }

  .steps .step-icon {
    width: 50px;
    height: 50px;
  }

  .steps .step-icon i {
    font-size: 20px;
  }

  .steps .step-info {
    padding: 15px;
  }

  .steps h3 {
    font-size: 1.2rem;
  }

  .steps p {
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding-top: 80px;
  position: relative;
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 1rem;
  overflow: hidden;
  padding-bottom: 80px;
}

.call-to-action .badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2rem;
}

.call-to-action h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.call-to-action p {
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
}

.call-to-action .features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.call-to-action .features .feature-item:hover {
  transform: translateY(-2px);
}

.call-to-action .features .feature-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.call-to-action .features .feature-item span {
  font-weight: 500;
}

.call-to-action .cta-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.call-to-action .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.call-to-action .cta-buttons .btn.btn-outline {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
}

.call-to-action .cta-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.call-to-action .content-right {
  flex-shrink: 0;
  max-width: 100%;
  width: 450px;
}

.call-to-action .content-right img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.call-to-action .content-right .floating-card {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--surface-color);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

.call-to-action .content-right .floating-card .card-icon {
  width: 3rem;
  height: 3rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-to-action .content-right .floating-card .card-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.call-to-action .content-right .floating-card .card-content {
  display: flex;
  flex-direction: column;
}

.call-to-action .content-right .floating-card .card-content .stats-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
}

.call-to-action .content-right .floating-card .card-content .stats-text {
  font-size: 0.875rem;
  opacity: 0.8;
}

.call-to-action .decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.call-to-action .decoration .circle-1,
.call-to-action .decoration .circle-2 {
  position: absolute;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.call-to-action .decoration .circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  opacity: 0.5;
}

.call-to-action .decoration .circle-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  opacity: 0.3;
}

@media (max-width: 991.98px) {
  .call-to-action {
    padding: 2rem;
  }

  .call-to-action .content-right {
    width: 100%;
    margin-top: 2rem;
  }

  .call-to-action .content-right .floating-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -3rem;
    margin-right: 1rem;
    z-index: 1;
  }
}

@keyframes float {

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

  50% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-slider {
  width: 100%;
  position: relative;
  padding-bottom: 60px;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
}

@media (max-width: 575px) {
  .testimonials .testimonial-item {
    padding: 20px;
  }
}

.testimonials .testimonial-item h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonials .testimonial-item .profile {
  gap: 15px;
}

.testimonials .testimonial-item .profile .profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials .testimonial-item .profile .profile-info h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

.testimonials .testimonial-item .profile .profile-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
}

.testimonials .testimonial-item .featured-img-wrapper {
  min-height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.testimonials .testimonial-item .featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonials .swiper-navigation {
  position: absolute;
  bottom: 0;
  gap: 10px;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  margin: 0;
  width: 44px;
  height: 44px;
  background-color: var(--surface-color);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: 0.3s;
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 20px;
  color: var(--default-color);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.testimonials .swiper-button-prev:hover::after,
.testimonials .swiper-button-next:hover::after {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  margin: 0 0 40px;
  list-style: none;
}

.portfolio .portfolio-filters li {
  font-size: 15px;
  font-weight: 500;
  padding: 12px 25px;
  cursor: pointer;
  background: var(--surface-color);
  color: var(--default-color);
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.portfolio .portfolio-filters li i {
  font-size: 1.1em;
  transition: transform 0.3s ease;
}



.portfolio .portfolio-filters li:hover i {
  transform: scale(1.1);
}

.portfolio .portfolio-filters li.filter-active {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .portfolio .portfolio-filters {
    gap: 10px;
  }

  .portfolio .portfolio-filters li {
    padding: 8px 20px;
    font-size: 14px;
  }
}

.portfolio .portfolio-entry {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface-color);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.portfolio .portfolio-entry .entry-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.portfolio .portfolio-entry .entry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}


.portfolio .portfolio-entry .entry-image .entry-overlay .overlay-content {
  width: 100%;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-meta {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-title {
  color: var(--contrast-color);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 20px;
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links {
  display: flex;
  gap: 15px;
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-color);
  color: var(--accent-color);
  border-radius: 12px;
  font-size: 20px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}








@media (max-width: 768px) {
  .portfolio .portfolio-entry .entry-image .entry-overlay {
    padding: 20px;
  }

  .portfolio .portfolio-entry .entry-image .entry-overlay .entry-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

.portfolio .portfolio-item .entry-image {
  aspect-ratio: 4/3;
}

@media (min-width: 1200px) {
  .portfolio .portfolio-item .entry-title {
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  .portfolio .row {
    margin-left: -10px;
    margin-right: -10px;
  }

  .portfolio .row .portfolio-item {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 992px) {
  .portfolio .row {
    margin-left: -12px;
    margin-right: -12px;
  }

  .portfolio .row .portfolio-item {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (min-width: 1200px) {
  .portfolio .row {
    margin-left: -15px;
    margin-right: -15px;
  }

  .portfolio .row .portfolio-item {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 1200px) {
  .portfolio .entry-overlay {
    padding: 25px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .portfolio .entry-overlay {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .portfolio .entry-overlay {
    padding: 20px;
  }
}

/* Modal de Video */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.video-modal.active {
    display: flex;
    align-items: flex-start; 
    justify-content: center;
    padding-top: 50px; 
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
    from { 
        opacity: 0; 
        transform: scale(0.8) translateY(50px); 
    }
    to { 
        opacity: 1; 
        transform: scale(1) translateY(0); 
    }
}

.video-player {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    background-color: #000;
}

/* Loading Spinner */
.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
    z-index: 10001;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.loading-spinner.active {
    display: block;
}

/* Controles de Video */
.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal-content:hover .video-controls {
    opacity: 1;
}

.control-button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    color: #333;
    backdrop-filter: blur(10px);
}

.control-button:hover {
    background: white;
    transform: scale(1.1);
}

.progress-container {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: var(--accent-color);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s ease;
}

.time-display {
    color: white;
    font-size: 14px;
    font-weight: 500;
    min-width: 100px;
    text-align: center;
}

/* Botón de cerrar modal */
.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 24px;
    z-index: 10002;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.close-modal-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .video-modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .video-controls {
        padding: 15px;
        gap: 10px;
    }
    
    .control-button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .time-display {
        font-size: 12px;
        min-width: 80px;
    }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  position: relative;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  transition: 0.3s;
}

.team .team-member:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.team .team-member .member-img {
  flex: 0 0 200px;
  overflow: hidden;
}

.team .team-member .member-img img {
  width: 200px;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.team .team-member .member-info {
  padding: 25px;
  text-align: left;
}

.team .team-member .member-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.team .team-member .member-info span {
  font-size: 0.9rem;
  font-weight: 400;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
  display: block;
  margin-bottom: 15px;
}

.team .team-member .member-info p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-member .member-info .social {
  display: flex;
  gap: 10px;
}

.team .team-member .member-info .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 1rem;
  color: var(--heading-color);
  transition: 0.3s;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.team .team-member .member-info .social a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

@media (max-width: 767px) {
  .team .team-member {
    flex-direction: column;
  }

  .team .team-member .member-img {
    flex: auto;
  }

  .team .team-member .member-img img {
    width: 100%;
    border-radius: 8px 8px 0 0;
  }

  .team .team-member .member-info {
    text-align: center;
  }

  .team .team-member .member-info .social {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  --card-border-radius: 20px;
}

.pricing .row {
  justify-content: center;
}

.pricing .pricing-card {
  height: 100%;
  background: var(--surface-color);
  border-radius: var(--card-border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
  transition: all 0.4s;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.pricing .pricing-card.popular {
  border: 2px solid var(--accent-color);
}

.pricing .pricing-card.popular .plan-cta .btn-plan {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .plan-cta .btn-plan:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .pricing-card .popular-tag {
  position: absolute;
  top: 20px;
  right: -35px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 40px;
  transform: rotate(45deg);
}

.pricing .plan-header {
  padding: 30px 30px 20px;
  text-align: center;
}

.pricing .plan-header .plan-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.pricing .plan-header .plan-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.pricing .plan-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing .plan-header p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.pricing .plan-pricing {
  text-align: center;
  padding: 10px 30px 20px;
  position: relative;
}

.pricing .plan-pricing .currency {
  font-size: 24px;
  vertical-align: top;
  line-height: 1;
  color: var(--heading-color);
  font-weight: 600;
}

.pricing .plan-pricing .amount {
  font-size: 60px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.pricing .plan-pricing .period {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .plan-features {
  padding: 20px 30px;
  flex: 1;
}

.pricing .plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing .plan-features ul li {
  padding: 12px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.pricing .plan-features ul li.disabled {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing .plan-features ul li i {
  font-size: 18px;
}

.pricing .plan-features ul li i.bi-check-circle-fill {
  color: var(--accent-color);
}

.pricing .plan-features ul li i.bi-x-circle-fill {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing .plan-cta {
  padding: 10px 30px 30px;
  text-align: center;
}

.pricing .plan-cta .btn-plan {
  display: inline-block;
  width: 100%;
  padding: 14px 32px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--default-color);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}

.pricing .plan-cta .btn-plan:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 992px) {
  .pricing .pricing-card {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .pricing .plan-pricing .amount {
    font-size: 48px;
  }

  .pricing .plan-header {
    padding: 25px 20px 15px;
  }

  .pricing .plan-features,
  .pricing .plan-pricing,
  .pricing .plan-cta {
    padding-left: 20px;
    padding-right: 20px;
  }
}

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

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

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

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-box {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact .contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-box .icon-box {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .contact-info-box .icon-box i {
  font-size: 24px;
}

.contact .contact-info-box .info-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact .contact-info-box .info-content p {
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.5;
}

.contact .contact-info-box .info-content p:last-child {
  margin-bottom: 0;
}

.contact .map-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.contact .map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact .form-container-overlap {
  position: relative;
  margin-top: -150px;
  margin-bottom: 60px;
  z-index: 10;
}

.contact .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.contact .contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.contact .contact-form-wrapper h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.contact .contact-form-wrapper .form-group {
  margin-bottom: 20px;
}

.contact .contact-form-wrapper .form-group .input-with-icon {
  position: relative;
}

.contact .contact-form-wrapper .form-group .input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  z-index: 10;
}

.contact .contact-form-wrapper .form-group .input-with-icon i.message-icon {
  top: 28px;
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea+i {
  top: 25px;
  transform: none;
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control {
  border-radius: 8px;
  padding: 12px 15px 12px 45px;
  height: 3.5rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
  height: 180px;
  resize: none;
  padding-top: 15px;
}

.contact .contact-form-wrapper .btn-submit {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact .contact-form-wrapper .btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .loading,
.contact .contact-form-wrapper .error-message,
.contact .contact-form-wrapper .sent-message {
  margin-top: 10px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .contact .form-container-overlap {
    margin-top: -120px;
  }

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

@media (max-width: 768px) {
  .contact .contact-info-box {
    margin-bottom: 20px;
  }

  .contact .form-container-overlap {
    margin-top: -100px;
  }

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

  .contact .contact-form-wrapper h2 {
    font-size: 24px;
  }

  .contact .map-section {
    height: 450px;
  }
}

@media (max-width: 576px) {
  .contact .form-container-overlap {
    margin-top: -80px;
  }

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

  .contact .btn-submit {
    width: 100%;
  }

  .contact .map-section {
    height: 400px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details {
  --section-spacing: 2.5rem;
}

.portfolio-details .portfolio-details-media {
  position: relative;
}

.portfolio-details .portfolio-details-media .main-image {
  margin-bottom: 1rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider {
  position: relative;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-wrapper {
  height: auto !important;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-slide img {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-next,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-prev {
  background-color: var(--contrast-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-next:after,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-prev:after {
  font-size: 16px;
  color: var(--accent-color);
  font-weight: bold;
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-next:hover,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-prev:hover {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-next:hover:after,
.portfolio-details .portfolio-details-media .main-image .portfolio-details-slider .swiper-button-prev:hover:after {
  color: var(--contrast-color);
}

.portfolio-details .portfolio-details-media .thumbnail-grid img {
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.portfolio-details .portfolio-details-media .thumbnail-grid img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-details-media .tech-stack-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}

.portfolio-details .portfolio-details-media .tech-stack-badges span {
  display: inline-block;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 20px;
  background-color: color-mix(in srgb, var(--heading-color), transparent 85%);
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.portfolio-details .portfolio-details-media .tech-stack-badges span:hover {
  background-color: color-mix(in srgb, var(--heading-color), transparent 70%);
  transform: translateY(-2px);
}

.portfolio-details .portfolio-details-content {
  padding: 0 0 0 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.portfolio-details .portfolio-details-content .project-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.portfolio-details .portfolio-details-content .project-meta .badge-wrapper .project-badge {
  display: inline-block;
  padding: 8px 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
}

.portfolio-details .portfolio-details-content .project-meta .date-client {
  display: flex;
  gap: 1.5rem;
}

.portfolio-details .portfolio-details-content .project-meta .date-client .meta-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.portfolio-details .portfolio-details-content .project-meta .date-client .meta-item i {
  margin-right: 6px;
  color: var(--accent-color);
}

.portfolio-details .portfolio-details-content .project-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color);
}

.portfolio-details .portfolio-details-content .project-website {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.portfolio-details .portfolio-details-content .project-website i {
  font-size: 22px;
  color: var(--accent-color);
  margin-right: 8px;
}

.portfolio-details .portfolio-details-content .project-website a {
  font-weight: 500;
  transition: all 0.3s;
}

.portfolio-details .portfolio-details-content .project-website a:hover {
  letter-spacing: 0.5px;
}

.portfolio-details .portfolio-details-content .project-overview {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .portfolio-details-content .project-overview .lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 1.5rem;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item {
  border: none;
  background: none;
  margin-bottom: 10px;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button {
  padding: 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--heading-color);
  background-color: color-mix(in srgb, var(--surface-color), transparent 70%);
  border-radius: 8px !important;
  box-shadow: none;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: var(--surface-color);
  color: var(--accent-color);
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) i {
  color: var(--accent-color);
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button::after {
  background-size: 14px;
  width: 14px;
  height: 14px;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-header .accordion-button i {
  font-size: 1.1rem;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-body {
  padding: 1rem;
  background-color: var(--surface-color);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.portfolio-details .portfolio-details-content .project-overview .project-accordion .accordion-item .accordion-body p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
}

.portfolio-details .portfolio-details-content .project-features {
  margin-bottom: var(--section-spacing);
}

.portfolio-details .portfolio-details-content .project-features h3 {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
}

.portfolio-details .portfolio-details-content .project-features h3 i {
  margin-right: 10px;
  color: var(--accent-color);
  font-size: 1.1em;
}

.portfolio-details .portfolio-details-content .project-features .feature-list {
  list-style: none;
  padding-left: 0;
}

.portfolio-details .portfolio-details-content .project-features .feature-list li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.portfolio-details .portfolio-details-content .project-features .feature-list li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1.1em;
}

.portfolio-details .portfolio-details-content .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: auto;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-view-project {
  padding: 12px 28px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-view-project:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project {
  padding: 12px 28px;
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  color: var(--heading-color);
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project i {
  transition: transform 0.3s ease;
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project:hover {
  background-color: color-mix(in srgb, var(--heading-color), transparent 80%);
}

.portfolio-details .portfolio-details-content .cta-buttons .btn-next-project:hover i {
  transform: translateX(3px);
}

@media (max-width: 1199.98px) {
  .portfolio-details .portfolio-details-content {
    padding-left: 1rem;
  }
}

@media (max-width: 991.98px) {
  .portfolio-details .portfolio-details-content {
    padding: 2rem 0 0 0;
  }

  .portfolio-details .portfolio-details-content .cta-buttons {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .portfolio-details .project-meta {
    flex-direction: column;
    gap: 1rem;
  }

  .portfolio-details .project-meta .date-client {
    flex-direction: column;
    gap: 0.5rem;
  }

  .portfolio-details .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .portfolio-details .cta-buttons a {
    width: 100%;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .swiper-wrapper {
  height: auto !important;
}

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

.service-details .service-header h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.service-details .service-header h1:after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
}

.service-details .service-header .service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  margin-top: 25px;
}

.service-details .service-header .service-meta span {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-header .service-meta span i {
  color: var(--accent-color);
  margin-right: 8px;
  font-size: 16px;
}

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

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

.service-details .service-tabs .nav-tabs {
  border-bottom: 2px solid color-mix(in srgb, var(--heading-color), transparent 90%);
  margin-bottom: 30px;
}

.service-details .service-tabs .nav-tabs .nav-item {
  margin-right: 5px;
}

.service-details .service-tabs .nav-tabs .nav-link {
  border: none;
  border-radius: 0;
  padding: 12px 20px;
  font-weight: 600;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
  position: relative;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.service-details .service-tabs .nav-tabs .nav-link i {
  margin-right: 8px;
  font-size: 18px;
}

.service-details .service-tabs .nav-tabs .nav-link:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
}

.service-details .service-tabs .nav-tabs .nav-link:hover {
  color: var(--heading-color);
  background-color: transparent;
}

.service-details .service-tabs .nav-tabs .nav-link:hover:after {
  width: 30%;
}

.service-details .service-tabs .nav-tabs .nav-link.active {
  color: var(--accent-color);
  background-color: transparent;
}

.service-details .service-tabs .nav-tabs .nav-link.active:after {
  width: 100%;
}

.service-details .service-tabs .tab-content .content-block h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}

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

.service-details .service-tabs .tab-content img {
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-details .service-tabs .tab-content .process-timeline {
  position: relative;
  padding-left: 30px;
}

.service-details .service-tabs .tab-content .process-timeline:before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 15px;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item {
  position: relative;
  padding-bottom: 35px;
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item:last-child {
  padding-bottom: 0;
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-marker {
  position: absolute;
  left: -30px;
  top: -5px;
  width: 32px;
  height: 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  z-index: 2;
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-content {
  padding-left: 10px;
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.service-details .service-tabs .tab-content .benefit-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.service-details .service-tabs .tab-content .benefit-card:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.service-details .service-tabs .tab-content .benefit-card:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

.service-details .service-tabs .tab-content .benefit-card:hover .benefit-icon {
  transform: rotateY(180deg);
  background-color: var(--accent-color);
}

.service-details .service-tabs .tab-content .benefit-card:hover .benefit-icon i {
  color: var(--contrast-color);
}

.service-details .service-tabs .tab-content .benefit-card .benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card .benefit-icon i {
  font-size: 28px;
  color: var(--accent-color);
  transition: all 0.5s ease;
}

.service-details .service-tabs .tab-content .benefit-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-details .service-tabs .tab-content .benefit-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.service-details .service-gallery h3 {
  font-size: 26px;
  margin-bottom: 25px;
  font-weight: 700;
}

.service-details .service-gallery .service-details-slider {
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.service-details .service-gallery .service-details-slider .portfolio-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-details .service-gallery .service-details-slider .portfolio-item:hover .portfolio-info {
  opacity: 1;
  transform: translateY(0);
}

.service-details .service-gallery .service-details-slider .portfolio-item img {
  border-radius: 12px;
  transition: all 0.4s ease;
}

.service-details .service-gallery .service-details-slider .portfolio-item .portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 30px 20px 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.service-details .service-gallery .service-details-slider .portfolio-item .portfolio-info h5 {
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 5px;
}

.service-details .service-gallery .service-details-slider .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin: 0;
  font-size: 14px;
}

.service-details .service-gallery .service-details-slider .swiper-pagination {
  padding-top: 5px;
  bottom: 0;
}

.service-details .service-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  opacity: 1;
}

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

.service-details .service-sidebar {
  position: sticky;
  top: 100px;
}

.service-details .service-sidebar .action-card {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 20%) 100%);
  border-radius: 15px;
  padding: 35px 30px;
  color: var(--contrast-color);
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.service-details .service-sidebar .action-card:before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.service-details .service-sidebar .action-card:after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.service-details .service-sidebar .action-card h3 {
  color: var(--contrast-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-details .service-sidebar .action-card p {
  margin-bottom: 25px;
  opacity: 0.9;
}

.service-details .service-sidebar .action-card .btn-primary {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  border: none;
  border-radius: 8px;
  padding: 12px 25px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .action-card .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-details .service-sidebar .action-card .guarantee {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.8;
}

.service-details .service-sidebar .action-card .guarantee i {
  margin-right: 5px;
}

.service-details .service-sidebar .service-features-list {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .service-features-list h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid color-mix(in srgb, var(--heading-color), transparent 90%);
}

.service-details .service-sidebar .service-features-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-details .service-sidebar .service-features-list ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.service-details .service-sidebar .service-features-list ul li:last-child {
  margin-bottom: 0;
}

.service-details .service-sidebar .service-features-list ul li i {
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 15px;
}

.service-details .service-sidebar .service-features-list ul li div {
  flex: 1;
}

.service-details .service-sidebar .service-features-list ul li div h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.service-details .service-sidebar .service-features-list ul li div p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
  font-size: 14px;
}

.service-details .service-sidebar .testimonial-card {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .testimonial-card .testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.service-details .service-sidebar .testimonial-card .testimonial-header i {
  font-size: 36px;
  color: var(--accent-color);
  opacity: 0.3;
}

.service-details .service-sidebar .testimonial-card .testimonial-header .rating {
  display: flex;
}

.service-details .service-sidebar .testimonial-card .testimonial-header .rating i {
  color: #FFD700;
  font-size: 16px;
  opacity: 1;
  margin-left: 2px;
}

.service-details .service-sidebar .testimonial-card .testimonial-text {
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-sidebar .testimonial-card .client-info {
  display: flex;
  align-items: center;
}

.service-details .service-sidebar .testimonial-card .client-info .client-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.service-details .service-sidebar .testimonial-card .client-info .client-details h5 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 5px;
}

.service-details .service-sidebar .testimonial-card .client-info .client-details span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-sidebar .contact-info {
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-sidebar .contact-info h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
}

.service-details .service-sidebar .contact-info .contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.service-details .service-sidebar .contact-info .contact-method:last-child {
  margin-bottom: 0;
}

.service-details .service-sidebar .contact-info .contact-method i {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 15px;
}

.service-details .service-sidebar .contact-info .contact-method div {
  flex: 1;
}

.service-details .service-sidebar .contact-info .contact-method div span {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 5px;
}

.service-details .service-sidebar .contact-info .contact-method div p {
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

#produccion-audiovisual,
#produccion-eventos,
#influencer-mkt {
  width: 100%;
  min-height: 100vh;
  background: #000;
  color: #fff;
  padding: 0;
  position: relative;
  z-index: 1;
  display: none;
}

.produccion-header {
  width: 100%;
  background: #000;
  padding-top: 130px; 
  padding-bottom: 40px;
  position: relative;
  align-items: center;
}

.produccion-header-content {
  width: 100vw;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.produccion-title-block,
.eventos-title-block,
.influencer-title-block {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
  margin-bottom: 2rem;
}

.produccion-logo-block {
  margin-top: 10px;
  margin-left: -50px;
}

.produccion-icon {
  width: 150px;
  height: auto;
}

.produccion-title,
.eventos-title,
.influencer-title{
  font-family: 'Anton', sans-serif;
  font-size: 5.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 4px;
  margin-bottom: 2rem;
  line-height: 1;
  text-align: left;
  position: relative;
}

.produccion-title span:first-child {
  display: block;
  margin-left: 0;
  margin-bottom: -50px;
}

.eventos-title span:first-child {
  display: block;
  margin-left: 0;
  margin-bottom: -50px;
}

.produccion-title span:last-child {
  display: block;
  margin-left: 140px; 
}

.eventos-title span:last-child {
  display: block;
  margin-left: 140px; 
}


.eventos-title span,
.influencer-title span {
  display: block;
}

.influencer-title.inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.influencer-icon-inline {
  width: 100px;
  height: auto;
}

.produccion-desc {
  left: 40px;
  top: 40px;
  width: 100%;
  max-width: 1200px; 
}

.produccion-desc h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  text-transform: uppercase;
}

.produccion-desc p {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.5px;
}


/* imágenes */
.produccion-gallery {
  width: 100vw;
  background: #222;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gallery-row {
  display: flex;
  width: 100vw;
  gap: 0;
}

.gallery-img {
  width: 50vw;
  height: 350px;
  object-fit: cover;
  display: block;
}

.eventos-gallery {
  width: 100vw;
  background: #222;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.eventos-gallery-grid {
  width: 100vw;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gallery-title-overlay-l {
  position: absolute;
  top: 25px;
  left: 60px;
  z-index: 10;
  color: white;
  font-weight: 900;
  font-family: 'Roboto', sans-serif;
  text-shadow: 10px 10px 20px rgb(0, 0, 0);
  pointer-events: none;
}

.gallery-title-overlay-r {
  position: absolute;
  top: 35px;
  right: 60px; 
  z-index: 10;
  color: white;
  font-weight: 900;
  font-family: 'Roboto', sans-serif;
  text-shadow: 10px 10px 20px rgb(0, 0, 0);
  pointer-events: none;
}

.gallery-title-overlay-l h2{
  font-size: 40px;
    font-weight: 900;
  font-family: 'Roboto', sans-serif;
}

.gallery-title-overlay-r h2{
  font-size: 40px;
    font-weight: 900;
  font-family: 'Roboto', sans-serif;
}

.eventos-row {
  display: flex;
  width: 100vw;
  position: relative;
  gap: 0;
  min-height: 200px;
}

.img-wrapper {
  position: relative;
  overflow: hidden;
}

.eventos-img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eventos-row:not(.eventos-row-3) .img-wrapper {
  width: 100vw;
  min-height: 600px;
  max-height: 800px;
}

.eventos-row-3 .img-wrapper {
  width: 100vw;
  min-height: 500px;
  max-height: 700px;
}

.img-100 { flex: 0 0 100%; }
.img-80 { flex: 0 0 80%; }
.img-70 { flex: 0 0 70%; }
.img-60 { flex: 0 0 60%; }
.img-30 { flex: 0 0 30%; }
.img-40 { flex: 0 0 40%; }
.img-50 { flex: 0 0 50%; }
.img-33 { flex: 0 0 33.33%; }
.img-25 { flex: 0 0 25%; }

.blur-right::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(to left, rgba(100, 100, 100, 0.7) 0%, transparent 100%);
  z-index: 2;
}

.blur-left::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(to right, rgba(100, 100, 100, 0.7) 0%, transparent 100%);
  z-index: 2;
}

.blur-center::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(to right, rgba(100, 100, 100, 0.7) 0%, transparent 20px, transparent calc(100% - 20px), rgba(100, 100, 100, 0.7) 100%);
  z-index: 2;
}

.mobile-gallery-carousel {
  display: none;
}

.clientes-section {
  width: 100%;
  background: #111;
  padding: 80px 0 60px 0; 
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.clientes {
  max-width: 3600px; 
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.clientes-feed {
  display: flex;
  justify-content: center; 
  align-items: center;
  margin-top: -200px;
  margin-bottom: -150px;
  overflow: visible; 
}

.cliente-logo {
  width: 100%;
  max-width: 3600px; 
  height: auto;
  border-radius: 18px;
  padding: 20px; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: contain; 
}

.cliente-logo:hover {
  transform: scale(1.02); 
  box-shadow: 0 12px 40px rgba(30, 50, 245, 0.2); 
}

@media (min-width: 991px) and (max-width: 1600px) {
  .clientes {
    max-width: 120vw;
    margin-top: 30px;
  }

  .clientes-feed {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: -120px;
    margin-bottom: -20px;
  }

  .cliente-logo,
  .cliente-logo video {
    max-width: 100vw;
    width: 100vw;
    height: auto;
    padding: 0;
    margin-top: 40px;
    border-radius: 12px;
    display: block;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .clientes {
    max-width: 120vw;
    margin-top: 60px;
  }

  .clientes-feed {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: -120px;
    margin-bottom: -20px;
  }
  
  .cliente-logo {
    max-width: 100vw;
    width: 100vw;
    height: auto;
    padding: 0;
    margin-top: 50px;
    border-radius: 12px;
    display: block;
  }
}

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

@media (max-width: 600px) {
  .clientes-section {
    padding: 40px 0 30px 0;
  }
  
  .cliente-logo {
    max-width: 100vw;
    width: 100vw;
    height: auto;
    padding: 0;
    margin-top: 50px;
    border-radius: 0;
    display: block;
  }
}

.cliente-logo,
.cliente-logo video {
  width: 100%;
  max-width: 3600px; 
  height: auto;
  margin-top: 120px;
  border-radius: 18px;
  padding: 20px; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: contain;
}

.cliente-logo video {
  display: block; 
}

.cliente-logo:hover,
.cliente-logo video:hover {
  transform: scale(1.02); 
  box-shadow: 0 12px 40px rgba(30, 50, 245, 0.2); 
}

@media (max-width: 992px) {
  .cliente-logo,
  .cliente-logo video {
    max-width: 100vw;
    width: 100vw;
    height: auto;
    padding: 0;
    margin-top: 100px;
    border-radius: 12px;
    display: block;
  }
}

@media (max-width: 600px) {
  .cliente-logo,
  .cliente-logo video {
    border-radius: 0;
    margin-top: 100px;
  }
}


/* Responsive */
@media (max-width: 991px) {
  .produccion-header {
    padding-top: 120px;
    padding-bottom: 30px;
  }
  .produccion-title-block,
  .eventos-title-block,
  .influencer-title-block {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    padding-left: 10px;
  }
  .produccion-title,
  .eventos-title,
  .influencer-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-align: left;
  }
  .produccion-title span,
  .eventos-title span,
  .influencer-title span {
    margin-left: 0 !important;
    margin-bottom: 0 !important;
  }
  .produccion-desc {
    padding: 0 10px;
    font-size: 1rem;
    max-width: 100%;
  }
  .produccion-gallery {
    padding: 0 0 10px 0;
    gap: 0;
    overflow-x: auto;
    display: block;
    white-space: nowrap;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  @media (max-width: 991px) {
    .produccion-back {
      top: 18px;
      left: 10px;
      width: 36px;
      height: 36px;
      font-size: 1.2rem;
    }
    .produccion-back i {
      color: #1E32F5;
      font-size: 1.5rem;
      transition: color 0.2s;
    }
  }
}
  
  @media (max-width: 991px) {
    .eventos-gallery,
    .produccion-gallery,
    .gallery-row,
    .eventos-gallery-grid {
      display: none !important;
      visibility: hidden !important;
      height: 0 !important;
      pointer-events: none;
    }

  .mobile-gallery-carousel {
    display: block;
    width: 100vw;
    background: #222;
    padding: 18px 0 10px 0;
    overflow-x: auto;
    white-space: nowrap;
    scroll-snap-type: x mandatory;
    margin-bottom: 50px;
  }
  .carousel-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-left: 12px;
    margin-bottom: 10px;
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
  }
  .carousel-row {
    display: inline-flex;
    gap: 0;
    width: auto;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .carousel-img {
    width: 90vw;
    min-width: 90vw;
    max-width: 90vw;
    height: 220px;
    margin-right: 8px;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
    object-fit: cover;
    display: inline-block;
    scroll-snap-align: start;
    transition: transform 0.2s;
    cursor: pointer;
  }
  .carousel-img:active {
    transform: scale(0.97);
  }
}


@media (max-width: 991px) {
  .service-details .service-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .service-details .service-header h1 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .service-details .service-tabs .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .service-details .service-tabs .nav-tabs .nav-link {
    white-space: nowrap;
    padding: 10px 15px;
    font-size: 14px;
  }

  .service-details .service-tabs .nav-tabs .nav-link i {
    font-size: 16px;
  }

  .service-details .service-header h1 {
    font-size: 26px;
  }

  .service-details .service-header .service-meta {
    gap: 15px;
  }

  .service-details .service-header .service-meta span {
    font-size: 14px;
  }

  .service-details .service-header .lead {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

.portfolio-section {
  padding: 80px 0;
  background: var(--background-dark);
}

@media (max-width: 768px) {
    .portfolio-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .portfolio-section {
        padding: 40px 0;
    }
}

/* Section Title */
.section-title {
    text-align: left;
    margin-bottom: 4rem;
}


.section-title h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--default-color);
    text-transform: uppercase;
    letter-spacing: 2px; /* Valor para desktop */
    margin-bottom: 0;
    word-spacing: 8px; /* Añadimos espacio entre palabras */
}

@media (max-width: 991px) {
    .section-title {
        margin-top: -15px;
        text-align: center;
        margin-bottom: 3rem;
        letter-spacing: 4px; 
        word-spacing: 12px; 
        line-height: 1.3;
    }
}

@media (max-width: 768px) {
    .section-title {
        margin-top: -15px;
        text-align: center;
        margin-bottom: 3rem;
        letter-spacing: 4px; 
        word-spacing: 12px; 
        line-height: 1.3; 
    }
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .portfolio-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        gap: 1.5rem;
    }
}

/* Portfolio Items */
.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    aspect-ratio: 16/10;
}

@media (max-width: 768px) {
    .portfolio-item {
        aspect-ratio: 16/9;
    }
}



/* Portfolio Item Images */
.portfolio-item .portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}



/* Portfolio Overlay */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(30, 50, 245, 0.8) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* Portfolio Title */
.portfolio-title {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
}

@media (max-width: 480px) {
    .portfolio-title {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
}

.portfolio-title h3 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--default-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

/* Specific Brand Colors */
.portfolio-item.teve-compras .portfolio-title h3 {
    color: #ffffff;
}

.portfolio-item.jack-daniels .portfolio-title h3 {
    color: #D4AF37;
}

.portfolio-item.spiritu-blu .portfolio-title h3 {
    color: #00BFFF;
}

.portfolio-item.swell .portfolio-title h3 {
    color: #ffffff;
}

.portfolio-item.juli-puente .portfolio-title h3 {
    color: #FF1493;
}

.portfolio-item.reebok .portfolio-title h3 {
    color: #ffffff;
}

/* Play Button */
.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

.play-button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 1);
}

.play-button i {
    margin-left: 5px;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Animation classes */
.fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

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


/* Loading placeholder */
.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #333, #555);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #888;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* Additional responsive fixes */
@media (max-width: 360px) {
    .portfolio-title h3 {
        font-size: 1.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}
      

/* Form Groups */
.form-group {
  position: relative;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: #ff4757 !important;
  box-shadow: 0 0 0 4px rgba(255, 71, 87, 0.1) !important;
  animation: shakeError 0.5s ease-in-out;
}

.form-group input.success,
.form-group textarea.success,
.form-group select.success {
  border-color: #2ed573 !important;
  box-shadow: 0 0 0 4px rgba(46, 213, 115, 0.1) !important;
}

@keyframes shakeError {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Error Messages */
.error-message {
  display: block;
  color: #ff4757;
  font-size: 8px;
  font-weight: 500;
  margin-top: 5px;
  margin-left: 5px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-height: 16px;
}

.error-message.show {
  opacity: 1;
  transform: translateY(0);
}

/* Loading Spinner */
.loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.spinner-ring {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #1623c6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-spinner p {
  margin: 0;
  color: #1623c6;
  font-weight: 600;
  font-size: 14px;
}

/* Button Loading State */
.modal-content button {
  position: relative;
  overflow: hidden;
}

.modal-content button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

.btn-loading {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Form Disabled State */
.form-disabled {
  pointer-events: none;
  opacity: 0.6;
}

/* Success Animation */
.form-success {
  animation: successBounce 0.6s ease-out;
}

@keyframes successBounce {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Validation Icons */
.form-group::after {
  content: '';
  position: absolute;
  right: 15px;
  top: 35%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.form-group.error::after {
  content: '✕';
  color: #ff4757;
  opacity: 1;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-group.success::after {
  content: '✓';
  color: #2ed573;
  opacity: 1;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-group:has(textarea)::after {
  top: 25px;
  transform: none;
}

.form-group:has(select)::after {
  right: 45px;
}

/*footer*/
.footer-contact-section {
  background: #000 !important;
  padding: 60px 0 40px 0;
}

.footer-contact-button {
  display: flex;
  justify-content: center;
  margin-bottom: 50px; 
  z-index: 2;
}

.contactanos-btn {
  background: #1E32F5;
  color: white;
  border: 1px solid gray;
  border-radius: 35px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 24px;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 2;
}




.contactanos-btn:hover {
  background: #1623c6;
}


/* Modal Styles - Modern & Technological Design */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(10px);
  }
}

.modal-content {
  background: linear-gradient(145deg, #ffffff, #f8f9ff);
  padding: 40px;
  max-width: 500px;
  margin: 5% auto;
  border-radius: 20px;
  text-align: left;
  position: relative;
  box-shadow: 
    0 25px 50px rgba(22, 35, 198, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transform: translateY(-20px);
  animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-size: 200% 100%;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(-20px) scale(1);
  }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.modal-content h2 {
  color: #1623c6;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.modal-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  border-radius: 2px;
}

.modal-content input,
.modal-content textarea,
.modal-content select {
  width: 100%;
  margin-bottom: 5px;
  padding: 15px 20px;
  border: 2px solid #e1e5f0;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-sizing: border-box;
}

.modal-content input:focus,
.modal-content textarea:focus,
.modal-content select:focus {
  outline: none;
  border-color: #1623c6;
  background: #ffffff;
  box-shadow: 
    0 0 0 4px rgba(22, 35, 198, 0.1),
    0 8px 25px rgba(22, 35, 198, 0.15);
  transform: translateY(-2px);
}

.modal-content input::placeholder,
.modal-content textarea::placeholder {
  color: #8892b0;
  font-weight: 400;
}

.modal-content select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

.modal-content textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

.modal-content button {
  background: linear-gradient(135deg, #1623c6, #0052ff);
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 12px;
  cursor: pointer;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(22, 35, 198, 0.3);
}

.modal-content button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.modal-content button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(22, 35, 198, 0.4);
  background: linear-gradient(135deg, #0052ff, #1623c6);
}

.modal-content button:hover::before {
  left: 100%;
}

.modal-content button:active {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(22, 35, 198, 0.3);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: 300;
  cursor: pointer;
  color: #8892b0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  background: rgba(136, 146, 176, 0.1);
}

.close-modal:hover {
  color: #1623c6;
  background: rgba(22, 35, 198, 0.1);
  transform: rotate(90deg) scale(1.1);
}

#formMessage {
  background: linear-gradient(135deg, #00d4aa, #00b894);
  color: white;
  padding: 15px 20px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  margin-top: 20px;
  box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
  animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .modal-content {
    max-width: 90%;
    margin: 10% auto;
    padding: 30px 25px;
  }
  
  .modal-content h2 {
    font-size: 24px;
  }
  
  .modal-content input,
  .modal-content textarea,
  .modal-content select {
    padding: 12px 16px;
    font-size: 15px;
  }
  
  .modal-content button {
    padding: 14px 24px;
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .modal-content {
    max-width: 95%;
    margin: 15% auto;
    padding: 25px 20px;
  }
  
  .modal-content h2 {
    font-size: 22px;
    letter-spacing: 1px;
  }
}


.footer {
  background-color: #1623c6;
  color: white;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 10px auto;
  padding: 0 20px;
}

.footer-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.footer-centered {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
  margin-left: 65px;
}

.footer-centered h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.footer-icons a {
  font-size: 1.5rem;
  background-color: #000;
  border-radius: 15px;
  padding: 5px 15px;
  color: white;
  transition: color 0.3s ease;
}

.footer-icons a:hover {
  color: #ccc;
}

.footer-info {
  align-self: flex-start;
  text-align: left;
}

.footer-info p {
  margin: 3px 0;
  font-size: 0.9rem;
  color: white;
}

.footer-img img {
  max-height: 180px;
  width: auto;
  margin-top: -80px;
}

@media (max-width: 991px) {
  .modal-content {
    max-width: 90%;
  }

  .modal-content input,
  .modal-content textarea {
    font-size: 14px;
  }

  .modal-content button {
    width: 100%;
    padding: 8px;
    font-size: 14px;
  }

  .close-modal {
    position: absolute;
    top: -8px;
    right: 5px;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
  }
}



@media (max-width: 768px) {
  .footer {
    margin-top: -70px;
  }

  .footer-contact-section {
    margin-bottom: -30px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
  }

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

  .footer-centered {
    margin-bottom: 15px;
    margin-left: 0px;
  }

  .footer-info {
    align-self: center;
    text-align: center;
  }

  .footer-img {
    margin-top: 80px;
  }

  .footer-img img {
    max-height: 130px;
  }
}

@media (max-width: 480px) {
  .contactanos-btn {
     padding: 13px 24px;
    font-size: 0.95rem;

  }

  .footer-icons a {
    font-size: 1.3rem;
    margin: 0 10px;
  }

  .footer-centered h4 {
    font-size: 1rem;
  }

  .footer-info p {
    font-size: 0.8rem;
  }
}

/* Carrusel responsive */
@media (min-width: 1173px) and (max-width: 1588px) {
  /* Estilos específicos para este rango problemático */
  .testimonial-slider .swiper-wrapper {
    height: 320px !important;
  }
  
  .testimonial-item img {
    height: 320px !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }
  
  .patron {
    margin: 0 !important;
    height: 40px;
    position: relative;
    top: -15px;
  }
  
  .testimonial-section {
    margin-top: -25px !important;
  }
}

@media (max-width: 1172px) and (min-width: 992px) {
  .testimonial-slider .swiper-wrapper {
    height: 240px !important;
  }
  
  .testimonial-item img {
    height: 240px;
    object-fit: cover;
  }
  
  .patron {
    margin: 1rem 0;
    height: 30px;
  }
}

/* Carrusel - Mantener tamaño fijo y eliminar separación */
@media (max-width: 1174px) and (min-width: 768px) {
  .testimonial-slider .swiper-wrapper {
    height: 285px !important; /* Mantener altura fija */
  }

  .footer-img {
    max-height: 130px;
    z-index: 1000;
  }
  
  .testimonial-item img {
    height: 285px !important; /* Altura fija */
    width: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }
  
  .patron {
    margin: 0 !important; /* Eliminar margen */
    height: 40px;
    position: relative;
    top: -15px; /* Acercar al carrusel */
    display: block !important;
  }
  
  .testimonial-section {
    margin-top: -25px !important;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .testimonial-slider .swiper-wrapper {
    height: 200px !important;
  }

  /* Estilo para el título "CHESS" */
  .about .about-content h2 {
    font-size: 4rem !important;
    height: auto !important;
    margin: 0px 0 20px 0 !important;
    line-height: 1.1;
    letter-spacing: -1px;
    font-family: 'Pricedown', sans-serif;
    color: white;
    text-align: center;
    display: block;
    width: 100%;
  }

  .about .about-content .lead {
    font-size: 1.8rem !important;
    color: white !important;
    font-weight: 600 !important;
    height: auto !important;
    padding: 0 !important;
    display: block;
    line-height: 1.2;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .testimonial-item img {
    height: 200px;
  }
  
  .patron {
    height: 40px;
  }
}

@media (max-width: 767px) and (min-width: 481px) {
  .testimonial-slider .swiper-wrapper {
    height: 180px !important;
  }
  
  .testimonial-item img {
    height: 180px;
  }
  
  .patron {
    margin: 0.5rem 0;
    height: 20px;
  }
  
  /* Ajuste específico para el espacio entre patrones y carrusel */
  .testimonial-section {
    margin-top: -10px !important;
    margin-bottom: -10px !important;
  }
}

@media (max-width: 992px) and (min-width: 480px) {
  .hero .content-col {
    padding-top: 10px;
  }
  
  .hero .main-heading h1 {
    margin-top: 20px; /* Espacio adicional para el título */
  }
}

@media (max-width: 993px) and (min-width: 768px) {
  .chess-pieces-section {
    height: 350px; /* Ajustamos la altura */
    margin-top: -5px;
    margin-bottom: 60px;
    padding: 30px 0;
    align-items: flex-start; /* Alineamos al inicio (izquierda) */
  }

  .chess-pieces-section .chess-piece {
    margin-left: 50px;
  }

  .chess-pieces-section .chess-pieces-wrapper {
    margin-top: 50px;
  }

  .chess-pieces-section .chess-text-container h4{
    margin-right: 40px;
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* Eliminar el margen inferior del último carousel */
  .mobile-gallery-carousel:last-of-type {
    margin-bottom: 0 !important;
  }
}

:root {
  --vh: 1vh;
}

/* Optimizaciones específicas para iOS */
@supports (-webkit-touch-callout: none) {
  .mobile-nav-active .navmenu ul {
    height: calc(var(--vh, 1vh) * 100);
    min-height: -webkit-fill-available;
  }
}


/* ... existing code ... */

/* Bootstrap Navbar Customization */
.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar-toggler:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.navbar-toggler i {
  color: white;
  font-size: 1.5rem;
}

.navbar-collapse {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  margin-top: 10px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar-nav {
  width: 100%;
}

.navbar-nav .nav-item {
  margin: 0.5rem 0;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
}

.navbar-nav .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.navbar-nav .nav-link.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white !important;
}

.navbar-nav .contactanos-btn {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white !important;
  margin-top: 1rem;
  border-radius: 25px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-nav .contactanos-btn:hover {
  background: linear-gradient(135deg, #ee5a24, #ff6b6b);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 190px;
  }
}

@media (min-width: 992px) {
  .navbar-collapse {
    background: none;
    backdrop-filter: none;
    border-radius: 0;
    margin-top: 0;
    padding: 0;
    box-shadow: none;
  }
  
  .navbar-nav {
    flex-direction: row;
    width: auto;
  }
  
  .navbar-nav .nav-item {
    margin: 0 0.5rem;
  }
  
  .navbar-nav .nav-link {
    text-align: left;
  }
  
  .navbar-nav .contactanos-btn {
    margin-top: 0;
  }
}

/* ... existing code ... */