/* ==========================================================================
   MODERN DESIGN SYSTEM - DIGITALIZACIÓN PERÚ
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Color Palette */
  --primary: #0075bb;
  --primary-dark: #005a91;
  --primary-light: #e0f2fe;
  --primary-gradient: linear-gradient(135deg, #0075bb 0%, #0284c7 100%);
  --secondary-gradient: linear-gradient(135deg, #0f766e 0%, #10b981 100%);
  --dark-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);

  --accent-green: #10b981;
  --accent-green-dark: #059669;
  
  --dark: #0f172a;
  --dark-surface: #1e293b;
  --slate-dark: #334155;
  --slate-medium: #64748b;
  --slate-light: #94a3b8;
  --bg-light: #f8fafc;
  --card-bg: #ffffff;
  --border-light: #e2e8f0;
  --border-subtle: rgba(226, 232, 240, 0.8);

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(15, 23, 42, 0.12), 0 10px 15px -5px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.2);
  --shadow-glow: 0 10px 30px rgba(0, 117, 187, 0.25);
  --shadow-green-glow: 0 10px 30px rgba(16, 185, 129, 0.25);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Base Resets & Typography */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--slate-dark);
  background-color: var(--bg-light);
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

a {
  color: var(--primary);
  transition: var(--transition-fast);
  text-decoration: none;
}

a:hover, a:focus {
  color: var(--primary-dark);
  text-decoration: none;
}

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

/* ==========================================================================
   BUTTONS & CTAS
   ========================================================================== */
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary-gradient) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(0, 117, 187, 0.3);
}

.btn-primary:hover, .btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: #ffffff !important;
}

.btn-transparent {
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-transparent:hover, .btn-transparent:focus {
  background: #ffffff !important;
  color: var(--dark) !important;
  border-color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  color: #ffffff !important;
}

.white-btn, .btn.white-btn {
  background: #ffffff !important;
  color: var(--dark) !important;
  border-radius: var(--radius-pill) !important;
  padding: 10px 22px !important;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.white-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background: #f8fafc !important;
  color: var(--primary) !important;
}

/* ==========================================================================
   TOP HEADER
   ========================================================================== */
.most-top-info-wrapper {
  background-color: var(--dark) !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.most-top-info-wrapper ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}

.most-top-info-wrapper ul li {
  color: var(--slate-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.most-top-info-wrapper ul li span, .most-top-info-wrapper ul li i {
  color: var(--accent-green);
  font-size: 14px;
}

.top-social-icon-list {
  display: flex;
  justify-content: flex-end;
  gap: 12px !important;
}

.top-social-icon-list li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 12px;
  transition: var(--transition-fast);
}

.top-social-icon-list li a:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.top-navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0 !important;
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 20px -5px rgba(15, 23, 42, 0.05);
  transition: var(--transition-normal);
  z-index: 1000;
}

.top-navbar.sticky, header#top.sticky .top-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: var(--shadow-md);
  padding: 10px 0 !important;
}

.navbar-brand img {
  max-height: 48px;
  width: auto;
  transition: var(--transition-fast);
}

.navbar-nav {
  align-items: center;
  gap: 6px;
}

.navbar-nav .nav-item .nav-link {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--slate-dark) !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-pill);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
  color: var(--primary) !important;
  background-color: var(--primary-light);
}

/* Dropdown Menu */
@media (min-width: 992px) {
  .navbar-nav .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

@media (max-width: 991.98px) {
  .navbar-nav .dropdown-menu {
    display: none;
    box-shadow: none;
    border: none;
    background: #f1f5f9;
    padding: 8px 12px;
    margin-top: 6px;
    margin-bottom: 8px;
    border-radius: var(--radius-sm);
  }
  .navbar-nav .dropdown-menu.show,
  .navbar-nav .nav-item.dropdown.show > .dropdown-menu {
    display: block !important;
  }
}

.navbar-nav .dropdown-menu {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 10px;
  min-width: 290px;
  background: #ffffff;
  margin-top: 10px;
  animation: fadeInDownMenu 0.25s ease-out;
}

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

.navbar-nav .dropdown-item {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--slate-dark);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-fast);
  white-space: normal;
  line-height: 1.4;
}

.navbar-nav .dropdown-item span, .navbar-nav .dropdown-item i {
  color: var(--primary);
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.navbar-nav .dropdown-item:hover {
  background-color: var(--bg-light);
  color: var(--primary);
  transform: translateX(4px);
}

.navbar-nav .dropdown-item:hover span {
  background: var(--primary);
  color: #ffffff;
}

/* FS Cloud Nav Button */
.navbar-nav .nav-item .btn-primary {
  padding: 8px 20px;
  font-size: 13.5px;
  margin-left: 8px;
}

/* ==========================================================================
   HERO CAROUSEL / SLIDER
   ========================================================================== */
#myCarousel {
  position: relative;
  overflow: hidden;
}

#myCarousel .carousel-item {
  height: 85vh;
  min-height: 560px;
  max-height: 720px;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
}

#myCarousel .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(0, 117, 187, 0.72) 100%) !important;
  display: flex;
  align-items: center;
}

#myCarousel .carousel-caption {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  top: auto;
  padding: 0;
  width: 100%;
  text-align: left;
  z-index: 10;
}

#myCarousel .carousel-caption.right-caption {
  text-align: right;
}

#myCarousel .carousel-caption h1 {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#myCarousel .btn-wrapper {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

#myCarousel .carousel-caption.right-caption .btn-wrapper {
  justify-content: flex-end;
}

#myCarousel .carousel-indicators {
  bottom: 25px;
}

#myCarousel .carousel-indicators li {
  width: 36px;
  height: 6px;
  border-radius: var(--radius-pill);
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  transition: var(--transition-fast);
  margin: 0 4px;
}

#myCarousel .carousel-indicators li.active {
  background-color: #ffffff;
  width: 48px;
}

#myCarousel .carousel-control-prev,
#myCarousel .carousel-control-next {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 24px;
  opacity: 0.8;
  transition: var(--transition-fast);
}

#myCarousel .carousel-control-prev:hover,
#myCarousel .carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

/* ==========================================================================
   SECTION TITLES
   ========================================================================== */
.section-title {
  text-align: center;
  margin-bottom: 45px;
  position: relative;
}

.section-title .title-bold, h2.title-bold, h3.title-bold {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
}

.section-title .sub-title, p.sub-title {
  font-size: 16px;
  color: var(--slate-medium);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==========================================================================
   3 FEATURE HIGHLIGHT BOXES (GREEN BOXES)
   ========================================================================== */
.green-box-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 15px auto 70px auto;
  padding: 0 15px;
  position: relative;
  z-index: 20;
}

.green-box-wrapper .float-left {
  float: none !important;
  width: 100% !important;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.green-box-wrapper .float-left:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.green-box-wrapper .darker-green {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
  color: #ffffff;
}

.green-box-wrapper .dark-green {
  background: linear-gradient(135deg, #0075bb 0%, #005a91 100%) !important;
  color: #ffffff;
}

.green-box-wrapper .light-green {
  background: linear-gradient(135deg, #0f766e 0%, #10b981 100%) !important;
  color: #ffffff;
}

.green-box-content {
  color: #ffffff;
}

.green-box-content span[class^="icon-"] {
  font-size: 38px;
  color: #ffffff;
  margin-bottom: 20px;
  display: inline-block;
  opacity: 0.95;
}

.green-box-content h4 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 4px;
  font-weight: 700;
}

.green-box-content i {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-style: normal;
  display: block;
  margin-bottom: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.green-box-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ==========================================================================
   SERVICES SECTION & CARDS
   ========================================================================== */
section.services {
  padding: 70px 0 80px 0;
  background-color: #f8fafc;
}

section.services .row > [class*="col-"] {
  margin-bottom: 28px;
}

.service-content-wrapper {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: var(--transition-fast);
}

.service-content-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.service-content-wrapper:hover::before {
  opacity: 1;
}

.service-content-wrapper a {
  text-decoration: none;
  display: block;
}

.service-content-wrapper span[class^="icon-"] {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  font-size: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-fast);
}

.service-content-wrapper:hover span[class^="icon-"] {
  background: var(--primary-gradient);
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: var(--shadow-glow);
}

.service-content-wrapper h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.35;
  transition: var(--transition-fast);
}

.service-content-wrapper:hover h3 {
  color: var(--primary);
}

.service-content-wrapper p {
  color: var(--slate-medium);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}

/* ==========================================================================
   ENHANCED SERVICE CARDS WITH IMAGES (PAGE SERVICIOS)
   ========================================================================== */
.service-card-modern {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-bounce);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.service-card-img-box {
  position: relative;
  height: 210px;
  overflow: hidden;
  background-color: var(--dark);
}

.service-card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.service-card-modern:hover .service-card-img-box img {
  transform: scale(1.08);
}

.service-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.service-card-icon-overlay {
  position: absolute;
  bottom: -22px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-glow);
  z-index: 3;
  transition: var(--transition-fast);
}

.service-card-modern:hover .service-card-icon-overlay {
  transform: scale(1.1) rotate(5deg);
}

.service-card-body {
  padding: 32px 24px 24px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.35;
}

.service-card-body h3 a {
  color: var(--dark);
  transition: var(--transition-fast);
}

.service-card-body h3 a:hover {
  color: var(--primary);
}

.service-card-body p {
  color: var(--slate-medium);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 18px;
  flex-grow: 1;
}

.service-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

.service-card-features li {
  font-size: 13px;
  color: var(--slate-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.service-card-features li i {
  color: var(--accent-green);
  font-size: 14px;
  flex-shrink: 0;
}

.service-card-footer {
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.service-card-footer .btn-details {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.service-card-footer .btn-details:hover {
  color: var(--primary-dark);
  transform: translateX(4px);
}

.service-card-footer .btn-quote {
  font-size: 12.5px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: var(--primary-light);
  color: var(--primary) !important;
  font-weight: 700;
  transition: var(--transition-fast);
}

.service-card-footer .btn-quote:hover {
  background: var(--primary);
  color: #ffffff !important;
}

/* Service Workflow Process */
.service-workflow-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.workflow-step-card {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  height: 100%;
  position: relative;
  transition: var(--transition-bounce);
  text-align: center;
}

.workflow-step-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.workflow-step-number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: #ffffff;
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  box-shadow: var(--shadow-glow);
}

.workflow-step-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.workflow-step-card p {
  font-size: 13.5px;
  color: var(--slate-medium);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ==========================================================================
   INFINITE LOGO MARQUEE (CARRUSEL INFINITO CONTINUO)
   ========================================================================== */
.clients-infinite-section {
  padding: 45px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Efecto degradado a los extremos */
.clients-infinite-section::before,
.clients-infinite-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.clients-infinite-section::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.clients-infinite-section::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-marquee-slider {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 50px;
  width: 100%;
  position: relative;
}

.logo-marquee-group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 50px;
  min-width: 100%;
  animation: scrollInfiniteMarquee 28s linear infinite;
  will-change: transform;
}

.logo-marquee-slider:hover .logo-marquee-group {
  animation-play-state: paused;
}

.logo-slide {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
}

.logo-slide img {
  max-height: 48px;
  max-width: 140px;
  width: auto;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: var(--transition-fast);
  object-fit: contain;
  display: block;
}

.logo-slide:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

@keyframes scrollInfiniteMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 50px));
  }
}

/* ==========================================================================
   INNER BANNER / HERO (NOSOTROS, CONTACTO, SERVICIOS)
   ========================================================================== */
.inner-banner-wrapper {
  position: relative !important;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed;
  background-color: var(--dark) !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  color: #ffffff;
}

.inner-banner-wrapper .overlay {
  position: relative !important;
  width: 100%;
  height: auto !important;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(0, 117, 187, 0.82) 100%) !important;
  padding: 70px 0 65px 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.inner-banner-wrapper .banner-text {
  position: relative;
  z-index: 5;
  text-align: center;
  width: 100%;
}

.inner-banner-wrapper .banner-text h1 {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff !important;
  margin-bottom: 12px;
  line-height: 1.35;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.inner-banner-wrapper .banner-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9) !important;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==========================================================================
   SERVICE DETAILS & INNER PAGES CONTENT
   ========================================================================== */
.service-details-container {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  padding: 40px;
  margin: 40px 0;
  display: flex;
  gap: 40px;
  align-items: center;
}

.service-left-img-wrapper {
  flex: 0 0 45%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-left-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-normal);
}

.service-left-img-wrapper:hover img {
  transform: scale(1.04);
}

.service-details-content {
  flex: 1;
}

.service-details-content h2, .service-details-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.35;
}

.service-details-content p {
  color: var(--slate-dark);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-details-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 26px 0;
}

.service-details-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--slate-dark);
  font-size: 14.5px;
}

.service-details-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-green);
  font-weight: 800;
  font-size: 16px;
}

.service-details-content .btn-wrapper {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==========================================================================
   PROCESS / PRINCIPLES STEPS
   ========================================================================== */
/* ==========================================================================
   SERVICE BENEFITS & FEATURE CARDS (DISEÑO MODERNO DE ALTO IMPACTO)
   ========================================================================== */
.service-process-wrapper,
.service-benefits-section {
  padding: 75px 0 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.service-process-wrapper .section-title,
.service-benefits-section .section-title {
  margin-bottom: 48px;
}

.service-process-wrapper .section-title .title-bold,
.service-benefits-section .section-title .title-bold {
  font-size: 26px !important;
  font-weight: 800 !important;
  color: var(--dark) !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.35 !important;
  max-width: 860px;
  margin: 0 auto 12px auto;
}

.benefit-feature-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 30px 24px;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.benefit-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px -4px rgba(15, 23, 42, 0.12);
  border-color: rgba(0, 117, 187, 0.35);
}

.benefit-feature-card:hover::before {
  opacity: 1;
}

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

.benefit-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 6px 16px rgba(0, 117, 187, 0.3);
  transition: transform 0.3s ease;
}

.benefit-feature-card:hover .benefit-icon-box {
  transform: scale(1.08) rotate(3deg);
}

.benefit-step-badge {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  background: rgba(0, 117, 187, 0.08);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
}

.benefit-feature-card h3,
.benefit-feature-card h4 {
  font-family: var(--font-heading);
  font-size: 17px !important;
  font-weight: 700 !important;
  color: var(--dark) !important;
  line-height: 1.4 !important;
  margin: 0 0 10px 0 !important;
  transition: color 0.2s ease;
}

.benefit-feature-card:hover h3,
.benefit-feature-card:hover h4 {
  color: var(--primary) !important;
}

.benefit-feature-card p {
  font-size: 13.5px;
  color: var(--slate-medium);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   ABOUT / TEAM SECTION & ENHANCED COMPONENTS
   ========================================================================== */
.our-team-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.about-badge {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.about-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0 32px 0;
}

.about-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--slate-dark);
  font-weight: 500;
}

.about-check-item i {
  color: var(--accent-green);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* About Collage */
.about-collage-wrapper {
  position: relative;
  padding: 15px;
}

.about-collage-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
}

.about-collage-main img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
}

.about-collage-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-collage-side img {
  width: 100%;
  height: 182px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.about-collage-grid img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

/* Floating badge */
.about-floating-badge {
  position: absolute;
  bottom: 0px;
  left: -15px;
  background: var(--dark-gradient);
  color: #ffffff;
  padding: 18px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10;
  animation: floatBadge 3.5s ease-in-out infinite alternate;
}

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

.about-floating-badge .badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow);
}

.about-floating-badge .badge-number {
  font-size: 24px;
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1.1;
  display: block;
  color: #ffffff;
}

.about-floating-badge .badge-text {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.3;
}

/* ==========================================================================
   STRATEGIC PILLARS SECTION (MISIÓN, VISIÓN, VALORES, EQUIPO)
   ========================================================================== */
.about-pillars-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.pillar-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition-bounce);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: var(--transition-fast);
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
  transition: var(--transition-fast);
}

.pillar-card:hover .pillar-icon-box {
  background: var(--primary-gradient);
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: var(--shadow-glow);
}

.pillar-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.pillar-card p {
  color: var(--slate-medium);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 0;
  flex-grow: 1;
}

/* ==========================================================================
   WHY CHOOSE US SECTION (VENTAJAS COMPETITIVAS)
   ========================================================================== */
.why-choose-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.why-feature-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-bounce);
  height: 100%;
  display: flex;
  gap: 20px;
}

.why-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.why-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow);
}

.why-feature-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.why-feature-content p {
  font-size: 14px;
  color: var(--slate-medium);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ==========================================================================
   METRICS / COUNTER SECTION
   ========================================================================== */
.paralaxbg {
  background-color: var(--dark) !important;
  padding: 60px 0;
}

.paralaxbg .overlay {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(0, 117, 187, 0.9) 100%) !important;
}

.paralaxbg [class*="col-"] > div {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-fast);
}

.paralaxbg [class*="col-"] > div:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.paralaxbg [class*="col-"] span[class^="icon-"] {
  font-size: 34px;
  color: var(--accent-green);
  margin-bottom: 12px;
  display: inline-block;
}

.paralaxbg [class*="col-"] .counter {
  font-size: 38px;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #ffffff;
  display: block;
  line-height: 1.1;
  margin-bottom: 8px;
}

.paralaxbg [class*="col-"] p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13.5px;
  margin: 0;
}

/* ==========================================================================
   CONTACT US SECTION & FORM
   ========================================================================== */
.contact-us-section {
  padding: 70px 0;
  background-color: #ffffff;
}

.left-info-contact .row > div {
  margin-bottom: 24px;
}

.left-info-contact h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.left-info-contact p {
  color: var(--slate-medium);
  font-size: 14.5px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.left-info-contact p span[class^="icon-"] {
  color: var(--primary);
  font-size: 18px;
  margin-top: 3px;
}

.google-map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  margin-top: 15px;
}

.contact-us-section .seo-audit-section {
  background: var(--dark-surface);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  box-shadow: var(--shadow-xl);
}

.contact-us-section .seo-audit-section h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.contact-us-section .input-group {
  margin-bottom: 18px;
  width: 100%;
  display: flex;
}

/* ==========================================================================
   CONTACT PAGE MODERN COMPONENTS
   ========================================================================== */
.contact-us-section {
  padding: 70px 0 85px 0;
  background-color: #f8fafc;
}

/* Contact Hub 4 Cards */
.contact-hub-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 4px 18px -2px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-hub-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px -4px rgba(15, 23, 42, 0.1);
  border-color: rgba(0, 117, 187, 0.35);
}

.contact-hub-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.contact-hub-icon-wrapper.icon-whatsapp {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
}

.contact-hub-icon-wrapper.icon-phone {
  background: rgba(0, 117, 187, 0.12);
  color: #0075bb;
}

.contact-hub-icon-wrapper.icon-email {
  background: rgba(2, 132, 199, 0.12);
  color: #0284c7;
}

.contact-hub-icon-wrapper.icon-location {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
}

.contact-hub-card h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.contact-hub-card p {
  font-size: 13.5px;
  color: var(--slate-medium);
  line-height: 1.5;
  margin-bottom: 12px;
  flex-grow: 1;
}

.contact-hub-card a.hub-action-link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.contact-hub-card a.hub-action-link:hover {
  color: var(--primary-hover);
  transform: translateX(3px);
}

/* Contact Form Card */
.contact-form-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.08);
}

.contact-form-header {
  margin-bottom: 28px;
}

.contact-form-header h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-form-header p {
  font-size: 14.5px;
  color: var(--slate-medium);
  margin-bottom: 0;
}

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

.contact-input-wrapper label {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--slate-dark);
  margin-bottom: 6px;
  display: block;
}

.contact-input-group {
  position: relative;
  display: flex;
  align-items: stretch;
}

.contact-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate-light);
  font-size: 15px;
  z-index: 4;
  pointer-events: none;
}

.contact-input-group textarea + .contact-input-icon {
  top: 20px;
  transform: none;
}

.contact-form-card .form-control {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: var(--dark);
  padding: 12px 16px 12px 44px;
  border-radius: 10px;
  font-size: 14.5px;
  transition: all 0.25s ease;
  width: 100%;
}

.contact-form-card select.form-control {
  padding: 12px 16px 12px 44px;
  height: 48px;
  cursor: pointer;
}

.contact-form-card textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.contact-form-card .form-control:focus {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3.5px rgba(0, 117, 187, 0.15);
  color: var(--dark);
  outline: none;
}

.contact-form-card .form-control::placeholder {
  color: #94a3b8;
}

.btn-contact-submit {
  background: var(--primary-gradient) !important;
  color: #ffffff !important;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15.5px;
  padding: 14px 28px;
  border: none;
  box-shadow: 0 8px 20px rgba(0, 117, 187, 0.3);
  transition: var(--transition-bounce);
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.btn-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 117, 187, 0.4);
  color: #ffffff !important;
}

#form-alert-response.alert {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid transparent;
}

#form-alert-response.alert-success {
  background-color: #ecfdf5;
  border-color: #a7f3d0;
  color: #065f46;
}

#form-alert-response.alert-danger {
  background-color: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

.contact-security-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--slate-medium);
}

/* Contact Side Card & Map */
.contact-side-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.contact-map-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 28px -8px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 450px;
}

.contact-map-card iframe {
  width: 100%;
  height: 100%;
  flex: 1 1 auto;
  min-height: 100%;
  border: none;
  display: block;
}

.contact-guarantee-box {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 12px 28px -8px rgba(15, 23, 42, 0.06);
}

.contact-guarantee-box h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 18px;
}

.guarantee-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
}

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

.guarantee-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 117, 187, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.guarantee-content h5 {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}

.guarantee-content p {
  font-size: 13px;
  color: var(--slate-medium);
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   CTA / GET IN TOUCH SECTION BEFORE FOOTER
   ========================================================================== */
.get-in-touch-section {
  background: linear-gradient(135deg, #0f172a 0%, #0075bb 100%) !important;
  padding: 60px 0;
  color: #ffffff;
  position: relative;
}

.seo-audit-title h3 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
}

.seo-audit-title p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin-bottom: 24px;
}

.get-in-touch-section .btn-transparent {
  background: #25D366 !important;
  border-color: #25D366 !important;
  color: #ffffff !important;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.get-in-touch-section .btn-transparent:hover {
  background: #128C7E !important;
  border-color: #128C7E !important;
  transform: translateY(-2px);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background-color: var(--dark) !important;
  color: var(--slate-light);
  padding: 70px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer .brand img {
  max-height: 46px;
  margin-bottom: 18px;
}

footer p {
  color: var(--slate-light);
  font-size: 14px;
  line-height: 1.65;
}

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

footer ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

footer ul li h4 {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

footer ul li h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--accent-green);
  border-radius: var(--radius-pill);
}

footer ul li a {
  color: var(--slate-light);
  transition: var(--transition-fast);
}

footer ul li a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-social-icon-list {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social-icon-list li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 15px;
  transition: var(--transition-fast);
}

.footer-social-icon-list li a:hover {
  background: var(--primary-gradient);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

footer .copy-info {
  text-align: center;
  font-size: 13.5px;
  color: var(--slate-medium);
  margin-top: 15px;
}

/* Scroll to top button */
.top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  z-index: 99;
  transition: var(--transition-fast);
}

.top-btn span {
  color: #ffffff !important;
}

.top-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (DIRECT & MODERN)
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #ffffff !important;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: var(--transition-bounce);
  text-decoration: none;
  animation: pulseWhatsApp 2.5s infinite;
}

.floating-whatsapp i, .floating-whatsapp span {
  font-size: 20px;
}

.floating-whatsapp:hover {
  transform: scale(1.06) translateY(-2px);
  background: #1eb956;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  color: #ffffff !important;
}

@keyframes pulseWhatsApp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN ADAPTATIONS
   ========================================================================== */
@media (max-width: 991px) {
  .green-box-wrapper {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  #myCarousel .carousel-item {
    height: 70vh;
    min-height: 480px;
  }

  #myCarousel .carousel-caption h1 {
    font-size: 28px;
  }

  .service-details-container {
    flex-direction: column;
    padding: 24px;
  }

  .service-left-img-wrapper {
    flex: 1 1 100%;
    width: 100%;
  }

  .navbar-nav {
    padding: 16px 0;
    align-items: flex-start;
  }

  .navbar-nav .nav-item .btn-primary {
    margin-left: 0;
    margin-top: 10px;
  }

  .about-collage-wrapper {
    margin-top: 40px;
    padding: 0;
  }

  .about-floating-badge {
    position: static;
    margin-top: 20px;
    animation: none;
  }
}

@media (max-width: 767px) {
  .most-top-info-wrapper {
    display: none;
  }

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

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

  .about-collage-main img {
    min-height: 240px;
  }

  .why-feature-card {
    flex-direction: column;
    align-items: flex-start;
  }

  #myCarousel .carousel-item {
    height: 60vh;
    min-height: 420px;
  }

  #myCarousel .carousel-caption h1 {
    font-size: 24px;
  }

  .section-title .title-bold, h2.title-bold, h3.title-bold {
    font-size: 26px;
  }

  .floating-whatsapp span.text {
    display: none;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}
