/*
Theme Name: Gealsefin
Theme URI: https://example.com/
Author: Cristhian Aranzales
Author URI: https://example.com/
Description: Tema WordPress minimal inspirado en los bocetos proporcionados (hero a la izquierda, imágenes a la derecha, sección de servicios en octágonos y CTA).
Version: 1.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gealsefin
Tags: custom-logo, custom-menu, responsive, one-column
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

@font-face {
  font-family: 'Surgena';
  src: url('font/Surgena-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

:root{
  --blue: #8ad1ec;
  --nav-blue: #0b3b6b;
  --accent: #ffffff;
  --muted: #6b6b6b;
  --transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

html, body { height: 100%; margin: 0; padding: 0; overflow-x: hidden; }
body { 
  font-family: 'Montserrat', sans-serif; 
  background-color: #ffffff; /* Changed to white */
  color: var(--nav-blue); 
  position: relative;
}

h1, h2, h3, h4, h5, h6, .site-name, .hero-title-real {
  font-family: 'Surgena', sans-serif;
}

/* Modern Background */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: #ffffff; /* Changed to white */
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float 20s infinite ease-in-out alternate;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: #64b5f6;
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: #ffffff;
  bottom: -50px;
  right: -100px;
  animation-delay: -5s;
  opacity: 0.4;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: #4fc3f7;
  top: 40%;
  left: 40%;
  animation-delay: -10s;
  opacity: 0.3;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 50px) scale(1.1); }
  100% { transform: translate(-20px, -30px) scale(0.95); }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-sizing: border-box;
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  height: 80px;
  transition: padding 0.3s ease;
}

.header-logo img {
  max-height: 40px;
  width: auto;
}

.header-logo .site-name {
  font-weight: 800;
  font-size: 1.5rem;
  text-decoration: none;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
  align-items: center;
}

.header-menu li {
  position: relative;
}

.header-menu a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-menu a:hover {
  color: var(--blue);
}

/* Dropdown indicators */
.menu-item-has-children > a::after {
  content: '';
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 2px;
  transform: rotate(45deg);
  margin-bottom: 2px;
  margin-left: 4px;
}

/* Submenus */
.header-menu ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border-radius: 4px;
}

.header-menu li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-menu ul.sub-menu li {
  display: block;
}

.header-menu ul.sub-menu a {
  padding: 10px 20px;
  display: block;
  white-space: nowrap;
}

.header-menu ul.sub-menu a:hover {
  background: #f5f5f5;
}

/* Submenu personalizado (.submenu class) */
.header-menu .has-submenu {
  position: relative;
}

.header-menu .has-submenu > a::after {
  content: '';
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 2px;
  transform: rotate(45deg);
  margin-bottom: 2px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.header-menu .has-submenu:hover > a::after {
  transform: rotate(-135deg);
}

.header-menu .submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #ffffff;
  list-style: none;
  padding: 12px 0;
  margin: 0;
  box-shadow: 0 10px 40px rgba(11, 59, 107, 0.15);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  border-radius: 12px;
  z-index: 1000;
}

.header-menu .has-submenu:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.header-menu .submenu li {
  display: block;
}

.header-menu .submenu a {
  padding: 12px 24px;
  display: block;
  white-space: nowrap;
  font-size: 0.82rem;
  color: #0b3b6b;
  transition: all 0.25s ease;
}

.header-menu .submenu a:hover {
  background: linear-gradient(90deg, #f0f7ff 0%, #e8f4ff 100%);
  color: #1565c0;
  padding-left: 28px;
}

/* CTA Button */
.header-cta .btn-talk {
  background: #000;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.header-cta .btn-talk:hover {
  transform: translateY(-2px);
  background: #333;
}

.header-cta .btn-talk svg {
  transition: transform 0.3s ease;
}

.header-cta .btn-talk:hover svg {
  transform: translateX(4px);
}

.main-nav a { 
  color: var(--nav-blue); 
  text-decoration: none; 
  font-weight: 600; 
  font-size: 14px; 
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s;
  padding: 10px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--blue);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* Slider Container */
.site-content.full-height {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px; /* Header space */
  box-sizing: border-box;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.slide-content-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.slide-content-wrapper.centered-slide {
  justify-content: center;
  flex-direction: column;
}

/* Slide 1 Styles */
.hero-left {
  flex: 1;
  max-width: 600px;
  color: var(--nav-blue);
  z-index: 2;
  padding-right: 40px;
}

.hero-tagline {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--nav-blue);
  margin-bottom: 20px;
  position: relative;
  padding-left: 50px;
}

.hero-tagline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 2px;
  background: var(--nav-blue);
}

.hero-left h1 {
  font-size: 72px;
  line-height: 1.05;
  margin: 0 0 30px 0;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--nav-blue);
}

.text-highlight {
  color: #2196f3; /* Brighter blue for highlight */
  position: relative;
  z-index: 1;
  display: inline-block;
}

.text-highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 15px;
  background: rgba(138, 209, 236, 0.3);
  z-index: -1;
  transform: skewX(-10deg);
}

.hero-left p.lead {
  font-size: 20px;
  line-height: 1.6;
  opacity: 0.8;
  font-weight: 500;
  margin-bottom: 40px;
  max-width: 90%;
}

.btn-hero {
  background: transparent;
  border: 2px solid var(--nav-blue);
  color: var(--nav-blue);
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-hero:hover {
  background: var(--nav-blue);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(11, 59, 107, 0.2);
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
  height: 100%;
  align-items: center;
}

/* Modern Collage */
.modern-collage {
  display: flex;
  gap: 25px;
  height: 500px;
  align-items: center;
}

.collage-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.col-left { margin-top: 40px; }
.col-right { margin-top: -40px; }

.media {
  background-color: #ddd;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: transform 0.5s ease;
}

.media:hover { transform: scale(1.02); }

.media-tall {
  width: 280px;
  height: 420px;
  border-bottom-left-radius: 80px;
}

.media-square {
  width: 260px;
  height: 260px;
  border-top-right-radius: 80px;
}

.stat-card {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  width: 260px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 5px solid var(--nav-blue);
}

.stat-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--nav-blue);
  display: block;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
}

.floating-card {
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Slide 2 Styles (Services - Triangle Layout) */
.section-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.section-subtitle {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--muted);
  margin-bottom: 10px;
}

/* Slide 2 Background - Modern Grid Pattern */
#slide-2 {
  background-image: 
    radial-gradient(#e5e9f2 1px, transparent 1px),
    radial-gradient(#e5e9f2 1px, transparent 1px);
  background-position: 0 0, 25px 25px;
  background-size: 50px 50px;
  overflow: hidden; /* Prevent scrollbars from elements going out */
}

.section-header h2 {
  font-size: 42px; /* Slightly smaller to fit better */
  font-weight: 800;
  color: var(--nav-blue);
  margin: 0;
  letter-spacing: -1px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 0 20px; /* Prevent edge touching */
}

/* =========================================
   Bento Grid Layout (Reference Style)
   ========================================= */

.bento-grid-container {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 0.8fr;
  grid-template-rows: 280px 140px;
  gap: 25px;
  width: 100%;
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 0 20px;
  box-sizing: border-box;
}

.bento-item {
  border-radius: 35px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
  cursor: pointer;
}

.bento-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  z-index: 5;
}

/* Item 1: Personas (Large Left - Purple/Blue) */
.item-personas {
  grid-column: 1;
  grid-row: 1 / span 2;
  background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%); /* Soft Purple-Blue Gradient */
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-content h3 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin: 20px 0 10px;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.bento-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
}

.bento-icon-3d img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  transform: rotate(-10deg);
  transition: transform 0.5s ease;
}

.item-personas:hover .bento-icon-3d img {
  transform: rotate(0deg) scale(1.1);
}

/* Item 2: Empresas (Wide Top Center - Brand Blue) */
.item-empresas {
  grid-column: 2;
  grid-row: 1;
  background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%); /* Light Blue Gradient */
  padding: 30px;
  display: flex;
  align-items: center;
}

.bento-content-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.bento-text h3 {
  font-size: 28px;
  font-weight: 800;
  color: #0b3b6b;
  margin: 0 0 5px;
}

.bento-text p {
  font-size: 14px;
  color: #0b3b6b;
  opacity: 0.8;
  margin: 0;
  max-width: 200px;
}

.bento-icon-3d-small img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* Item 3: CTA (Small Bottom Center - Yellow) */
.item-cta {
  grid-column: 2;
  grid-row: 2;
  background: #ffc107; /* Bright Yellow */
  border-radius: 35px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
}

.cta-text-bento span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.7;
  display: block;
  margin-bottom: 5px;
}

.cta-text-bento h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
}

.cta-arrow-bento {
  background: #000;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-left: auto;
  transition: transform 0.3s;
}

.item-cta:hover .cta-arrow-bento {
  transform: translateX(5px);
}

/* Item 4: Eficiencia (Tall Right - White/Light) */
.item-eficiencia {
  grid-column: 3;
  grid-row: 1 / span 2;
  background: #f8f9fa;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.item-eficiencia h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0b3b6b;
  margin: 20px 0 10px;
}

.item-eficiencia p {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

/* Responsive Bento */
@media (max-width: 900px) {
  .bento-grid-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    gap: 20px;
  }
  
  .item-personas, .item-empresas, .item-cta, .item-eficiencia {
    grid-column: 1;
    grid-row: auto;
    min-height: 200px;
  }
  
  .item-cta {
    min-height: 100px;
  }
}

/* Responsive adjustments for triangle layout */
@media(max-width: 768px) {
  .triangle-row {
    flex-direction: column;
    gap: 40px;
  }
  
  .bottom-row {
    margin-top: 40px;
  }
  
  .services-triangle-grid {
    gap: 40px;
  }
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navigation Dots */
.slider-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.slider-dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* CTA Fixed */
.cta-fixed {
  position: fixed;
  left: 60px;
  bottom: 60px;
  background: #0b3b6b; /* Brand Dark Blue */
  color: #fff;
  padding: 8px 24px 8px 8px; /* Less padding left for icon circle */
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(11, 59, 107, 0.4);
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  z-index: 50;
  transition: all 0.3s ease;
  border: none;
  height: 56px; /* Fixed height for pill shape */
  box-sizing: border-box;
}

.cta-fixed:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(11, 59, 107, 0.5);
  background: #092a4d; /* Slightly darker on hover */
}

.cta-icon { 
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b3b6b;
  flex-shrink: 0;
}

.cta-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.cta-text { 
  font-weight: 700; 
  font-size: 13px; 
  line-height: 1.2; 
  text-align: left; 
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
}

/* Footer */
.footer { display: none; } /* Hidden on full-screen slider layout usually, or minimal */

/* =========================================
   New Sections Styles
   ========================================= */

/* General Section Styles */
section {
  padding: 100px 0;
  position: relative;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header-center {
  text-align: center;
  margin-bottom: 60px;
}

/* About Section */
.section-about {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 42px;
  color: var(--nav-blue);
  margin-bottom: 25px;
  line-height: 1.1;
}

.about-text p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 35px;
}

.btn-text {
  color: var(--nav-blue);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #c5a47e;
  padding-bottom: 5px;
  transition: all 0.3s;
}

.btn-text:hover {
  color: #c5a47e;
}

.about-image .image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.about-image img {
  width: 100%;
  display: block;
  transition: transform 0.5s;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Features Section */
.section-features {
  background: #f8f9fa;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 5px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-top-color: var(--nav-blue);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(11, 59, 107, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--nav-blue);
}

.feature-icon svg {
  width: 30px;
  height: 30px;
}

.feature-card h3 {
  font-size: 22px;
  color: var(--nav-blue);
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.5;
}

/* CTA Section */
.section-cta {
  background: var(--nav-blue);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  background: #fff;
  color: var(--nav-blue);
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* =========================================
   Modern Footer Styles (Awwwards Style)
   ========================================= */
.site-footer {
  background: #051b33; /* Very dark blue */
  color: #fff;
  padding: 100px 0 40px;
  font-family: 'Inter', sans-serif; /* Ensure clean font */
}

.footer-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.footer-tagline {
  font-size: 18px;
  opacity: 0.7;
  line-height: 1.6;
}

.footer-cta-big h3 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.6;
  margin-bottom: 10px;
}

.footer-email {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid rgba(255,255,255,0.2);
  transition: all 0.3s;
}

.footer-email:hover {
  border-color: #fff;
  color: #c5a47e;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 60px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  opacity: 0.5;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #c5a47e;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-links a {
  color: #fff;
  text-decoration: none;
  transition: padding-left 0.3s;
}

.social-links a:hover {
  padding-left: 10px;
  color: #c5a47e;
}

address {
  font-style: normal;
  line-height: 1.6;
  opacity: 0.8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  font-size: 14px;
  opacity: 0.6;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }
  
  .footer-email {
    font-size: 28px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* Responsive */
@media(max-width: 1024px) {
  .hero-left h1 { font-size: 48px; }
  .collage-grid { width: 320px; }
  .media { height: 140px; }
  .oct-shape { width: 220px; height: 220px; }
}

@media(max-width: 768px) {
  .site-header { padding: 15px 20px; }
  .slide-content-wrapper { flex-direction: column; padding: 0 20px; justify-content: center; text-align: center; }
  .hero-left { margin-bottom: 40px; max-width: 100%; }
  .hero-left h1 { font-size: 36px; }
  .hero-right { width: 100%; justify-content: center; }
  .collage-grid { width: 100%; max-width: 300px; }
  
  .services-oct-grid { flex-direction: column; align-items: center; gap: 30px; margin-top: 0; }
  .service-item { width: 100%; display: flex; align-items: center; gap: 20px; text-align: left; }
  .oct-shape { width: 80px; height: 80px; margin: 0; }
  .service-item h3 { font-size: 18px; }
  
  .cta-fixed { left: 20px; bottom: 20px; padding: 10px 20px; }
}

/* Process Section */
.section-process {
  background: #fff;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.step-item {
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 80px;
  height: 80px;
  background: #fff;
  border: 2px solid var(--nav-blue);
  color: var(--nav-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 10px 20px rgba(11, 59, 107, 0.1);
  transition: all 0.3s;
}

.step-item:hover .step-number {
  background: var(--nav-blue);
  color: #fff;
  transform: scale(1.1);
}

.step-item h3 {
  font-size: 20px;
  color: var(--nav-blue);
  margin-bottom: 10px;
}

.step-item p {
  font-size: 15px;
  color: var(--muted);
  padding: 0 20px;
}

.step-connector {
  flex: 1;
  height: 2px;
  background: #e0e0e0;
  margin-top: 40px; /* Align with center of circle */
  position: relative;
  z-index: 1;
}

/* Testimonials Section */
.section-testimonials {
  background: #f5f7fa;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-text {
  font-size: 16px;
  font-style: italic;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--nav-blue);
  margin: 0;
}

.testimonial-author span {
  font-size: 13px;
  color: #888;
}

/* =========================================
   NEW MODERN HERO SECTION (Light Blue Gradient)
   ========================================= */
.modern-hero {
    position: relative;
    height: 75vh; /* Fixed height as requested */
    min-height: 600px;
    width: 100%;
    /* Light Blue Gradient (Sky Blue) */
    background: linear-gradient(135deg, #6CB4EE 0%, #4FA3D1 100%); 
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px; /* Header offset */
    padding-bottom: 0;
    overflow: hidden;
    color: #ffffff;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    z-index: 10;
}

/* Animated Background Blobs (Lighter on Blue) */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.blur-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: floatBlob 20s infinite ease-in-out alternate;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: #AED6F1; /* Very light blue */
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: #85C1E9; /* Light blue */
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: #5DADE2;
    top: 40%;
    left: 40%;
    animation-delay: -8s;
}

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, 60px) scale(1.1); }
    100% { transform: translate(-30px, -40px) scale(0.9); }
}

.hero-container {
    width: 90%;
    max-width: 1400px; /* Wider container for bigger cards */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* More space for cards */
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
    height: 100%;
}

/* Left Content */
.hero-content-left {
    max-width: 600px;
    padding-left: 5%;
}

.hero-title-real {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 500;
    max-width: 480px;
}

/* CTA Pill (Refined to match reference) */
.hero-cta-pill {
    background: #ffffff;
    padding: 6px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    max-width: 480px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    position: relative;
    border: 4px solid rgba(255,255,255,0.3); /* Outer glow effect */
    background-clip: padding-box;
}

.hero-input-pill {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 25px;
    color: #333;
    font-size: 1rem;
    outline: none;
}

.hero-input-pill::placeholder {
    color: #aaa;
}

.hero-btn-pill {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-btn-pill:hover {
    transform: scale(1.05);
}

/* Right Content: Cards Layout */
.hero-content-right {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-cards-layout {
    display: flex;
    gap: 30px;
    align-items: center;
    transform: scale(1.1); /* Make everything bigger */
}

.hero-cards-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-card {
    background: #ffffff;
    border-radius: 30px; /* More rounded */
    /* No padding, full image */
    padding: 0; 
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    overflow: hidden; /* Clip image */
    transition: transform 0.3s ease;
    position: relative;
}

.hero-card:hover {
    transform: translateY(-5px);
}

.card-photo-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Center Card Size - Bigger */
.card-center {
    width: 280px;
    height: 400px;
}

/* Right Cards Size - Bigger */
.card-right-top, .card-right-bottom {
    width: 240px;
    height: 240px;
}

/* Partners Strip (Below Hero) */
.partners-strip {
    background: #ffffff;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 5;
}

.partners-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-item {
    flex-shrink: 0;
}

.partner-text {
    font-weight: 800;
    font-size: 0.8rem;
    color: #000000; /* Black text */
    line-height: 1.4;
    letter-spacing: 0.5px;
    opacity: 1;
    display: block;
}

.partner-logo img {
    height: 30px;
    opacity: 0.6;
    filter: grayscale(100%); /* Black/Gray logos */
    transition: all 0.3s ease;
}

.partner-logo img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Section Services Adjustment */
.section-services {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    z-index: 1;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 3rem;
    color: #0b3b6b;
    margin: 0;
}

.section-header-center .section-subtitle {
    display: block;
    color: #764ba2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/* Services Page Styles */
.services-page {
    background-color: #8ad1ec; /* Light Blue Background */
    padding-top: 80px;
}

.service-hero {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
    color: #fff;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.hero-sub {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    color: #fff;
}

/* Services Page Styles - Award Winning Design (Modern V2) */
.services-page-modern {
    background: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* Modern Hero */
.services-hero-modern {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(138, 209, 236, 0.2), rgba(255, 255, 255, 0) 70%),
                radial-gradient(circle at 80% 20%, rgba(253, 216, 53, 0.1), rgba(255, 255, 255, 0) 50%);
    animation: rotateBg 20s linear infinite;
    z-index: 1;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content-centered {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content-centered h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #0b3b6b;
    letter-spacing: -2px;
}

.text-gradient {
    background: linear-gradient(135deg, #0b3b6b 0%, #2196f3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content-centered p {
    font-size: 1.5rem;
    color: #666;
    font-weight: 500;
}

/* Flip Cards Navigation Section */
.services-flip-nav {
    position: relative;
    z-index: 10;
    margin-top: -100px; /* Overlap Hero */
    padding-bottom: 80px;
}

.flip-cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.flip-card {
    background-color: transparent;
    width: 220px;
    height: 320px;
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-radius: 20px;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.flip-card-front {
    background-color: #fff;
    color: #0b3b6b;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.flip-card:hover .icon-circle {
    transform: scale(1.1);
}

.icon-circle img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.flip-card-front h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.flip-card-back {
    background: linear-gradient(135deg, #0b3b6b 0%, #1e88e5 100%);
    color: white;
    transform: rotateY(180deg);
}

.flip-card-back h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 10px;
    width: 100%;
}

.flip-card-back ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: left;
}

.flip-card-back li {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 5px;
}

.flip-card-back a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: block;
    transition: padding-left 0.2s;
}

.flip-card-back a:hover {
    padding-left: 5px;
    color: #ffd54f;
}

/* Detailed Sections */
.services-details-container {
    padding-bottom: 100px;
}

.detail-section {
    padding: 100px 0;
}

.bg-light-alt {
    background: #f0f4f8;
    border-radius: 50px;
    margin: 0 20px;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 80px;
}

.badge-pill {
    background: #e3f2fd;
    color: #1976d2;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.section-header-modern h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #0b3b6b;
    margin: 0;
}

/* Feature Row (Zig Zag) */
.feature-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0b3b6b;
    margin-bottom: 20px;
}

.feature-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #666;
    border-left: 4px solid #ffd54f;
    padding-left: 20px;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.feature-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    font-size: 1.1rem;
    color: #444;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 800;
    background: #e8f5e9;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.feature-image {
    flex: 1;
    position: relative;
}

.feature-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}

.feature-image:hover img {
    transform: scale(1.02);
}

/* Modern Cards Grid */
.cards-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.modern-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    border-color: #e3f2fd;
}

.modern-card.featured {
    background: #0b3b6b;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(11, 59, 107, 0.2);
}

.modern-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.card-badge {
    background: #ffd54f;
    color: #0b3b6b;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.card-icon-top img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.modern-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.modern-card.featured h3 {
    color: #fff;
}

.modern-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.modern-card.featured p {
    color: rgba(255,255,255,0.8);
}

.mini-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 15px;
}

.modern-card.featured .mini-list {
    background: rgba(255,255,255,0.1);
}

.mini-list li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modern-card.featured .mini-list li {
    color: #fff;
}

.mini-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #2196f3;
    border-radius: 50%;
}

.modern-card.featured .mini-list li::before {
    background: #ffd54f;
}

/* Buttons */
.btn-arrow {
    color: #0b3b6b;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    transition: gap 0.3s ease;
}

.btn-arrow:hover {
    gap: 15px;
    color: #2196f3;
}

.btn-outline {
    border: 2px solid #0b3b6b;
    color: #0b3b6b;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #0b3b6b;
    color: #fff;
}

.btn-solid {
    background: #ffd54f;
    color: #0b3b6b;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-solid:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* Stats Row */
.stats-row {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2196f3;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Footer */
.cta-modern-footer {
    padding: 100px 0;
    background: #fff;
}

.cta-box {
    background: linear-gradient(135deg, #0b3b6b 0%, #1565c0 100%);
    border-radius: 40px;
    padding: 80px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjIiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4xKSIvPjwvc3ZnPg==');
    opacity: 0.3;
}

.cta-box h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white-glow {
    background: #fff;
    color: #0b3b6b;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}

.btn-white-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255,255,255,0.8);
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.delay-1 { animation-delay: 0.2s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .feature-row { flex-direction: column; text-align: center; gap: 40px; }
    .feature-row.reverse { flex-direction: column; }
    .feature-list li { text-align: left; display: inline-block; }
    .cards-grid-modern { grid-template-columns: repeat(2, 1fr); }
    .modern-card.featured { transform: none; }
    .modern-card.featured:hover { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .hero-content-centered h1 { font-size: 3rem; }
    .cards-grid-modern { grid-template-columns: 1fr; }
    .cta-box { padding: 40px 20px; }
    .cta-box h2 { font-size: 2rem; }
    .flip-cards-wrapper { gap: 10px; }
    .flip-card { width: 100%; max-width: 300px; height: 250px; }
    .flip-card-inner { display: flex; flex-direction: column; }
    /* On mobile, maybe disable flip or make it click based? Hover works on some mobile but click is better. 
       For now, we keep hover as requested but ensure it fits. */
}

/* =========================================
   IMPROVED HERO TITLE STYLES
   ========================================= */
.hero-title-real {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-title-real .title-line {
    display: block;
    line-height: 1.1;
}

.hero-title-real .title-accent {
    color: #ffffff;
    position: relative;
    display: inline;
}

.hero-title-real .title-accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(255,255,255,0.25);
    z-index: -1;
    border-radius: 4px;
}

.btn-arrow-icon {
    transition: transform 0.3s ease;
}

.hero-btn-pill:hover .btn-arrow-icon {
    transform: translateX(4px);
}

/* =========================================
   STATS STRIP (Replaces Partners)
   ========================================= */
.stats-strip {
    background: #ffffff;
    padding: 50px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 5;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-block {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.stat-number-big {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--nav-blue);
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Surgena', sans-serif;
}

.stat-label-text {
    display: block;
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: #e0e0e0;
}

.stat-block.highlight {
    background: var(--nav-blue);
    padding: 25px 35px;
    border-radius: 20px;
}

.stat-tagline {
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .stats-grid {
        flex-direction: column;
        gap: 25px;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .stat-number-big {
        font-size: 2.5rem;
    }
}

/* =========================================
   CONTACT FORM SECTION
   ========================================= */
.section-contact {
    background: #f8f9fa;
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--nav-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-info > p {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(11, 59, 107, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nav-blue);
    flex-shrink: 0;
}

.contact-item div strong {
    display: block;
    color: var(--nav-blue);
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-item div span {
    color: var(--muted);
}

/* Form Wrapper */
.contact-form-wrapper {
    background: #ffffff;
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: var(--nav-blue);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fafafa;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--nav-blue);
    box-shadow: 0 0 0 4px rgba(11, 59, 107, 0.1);
    background: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: var(--nav-blue);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-submit:hover {
    background: #092a4d;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(11, 59, 107, 0.3);
}

.btn-submit span {
    transition: transform 0.3s ease;
}

.btn-submit:hover span {
    transform: translateX(5px);
}

.form-disclaimer {
    font-size: 0.8rem;
    color: #999;
    margin-top: 15px;
    text-align: center;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
}

/* =========================================
   WHATSAPP FLOATING BUTTON
   ========================================= */
.whatsapp-float {
    position: fixed;
    left: 30px;
    bottom: 30px;
    background: #25D366;
    color: #fff;
    padding: 12px 20px 12px 12px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-icon svg {
    width: 24px;
    height: 24px;
    fill: #25D366;
}

.whatsapp-text {
    font-size: 0.85rem;
    line-height: 1.3;
    color: #ffffff;
}

.whatsapp-text strong {
    font-weight: 700;
}

@media (max-width: 600px) {
    .whatsapp-float {
        padding: 10px;
        border-radius: 50%;
        left: 20px;
        bottom: 20px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-icon {
        width: 50px;
        height: 50px;
    }
}

/* Hide old CTA fixed */
.whatsapp-float {
    display: none;
}

/* CTA Fixed - Restored */
.cta-fixed {
  position: fixed;
  left: 30px;
  bottom: 30px;
  background: #0b3b6b;
  color: #fff;
  padding: 12px 24px 12px 12px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(11, 59, 107, 0.4);
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  z-index: 1000;
  transition: all 0.3s ease;
  border: none;
}

.cta-fixed:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(11, 59, 107, 0.5);
  background: #092a4d;
}

.cta-fixed .cta-icon { 
  width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b3b6b;
  flex-shrink: 0;
}

.cta-fixed .cta-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.cta-fixed .cta-text { 
  font-weight: 700; 
  font-size: 12px; 
  line-height: 1.3; 
  text-align: left; 
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
}

@media (max-width: 600px) {
    .cta-fixed {
        padding: 10px;
        border-radius: 50%;
        left: 20px;
        bottom: 20px;
    }
    
    .cta-fixed .cta-text {
        display: none;
    }
    
    .cta-fixed .cta-icon {
        width: 50px;
        height: 50px;
    }
}

/* =========================================
   PARTNERS / ALIADOS SECTION
   ========================================= */
.partners-section {
    background: #ffffff;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.partners-header {
    text-align: center;
    margin-bottom: 40px;
}

.partners-tagline {
    display: inline-block;
    background: var(--nav-blue);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.partners-header h3 {
    font-size: 1.5rem;
    color: var(--nav-blue);
    font-weight: 600;
    margin: 0;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.partners-logos.large {
    gap: 50px;
}

.partner-logo-item {
    flex: 0 0 auto;
    transition: all 0.3s ease;
}

.partner-logo-item img {
    height: 50px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.partners-logos.large .partner-logo-item img {
    height: 60px;
    max-width: 180px;
}

.partner-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .partners-logos {
        gap: 25px;
    }
    
    .partner-logo-item img {
        height: 35px;
        max-width: 120px;
    }
    
    .partners-header h3 {
        font-size: 1.2rem;
    }
}

/* =========================================
   TRABAJA CON NOSOTROS PAGE
   ========================================= */
.trabaja-page {
    background: #f8f9fa;
}

.trabaja-hero {
    background: linear-gradient(135deg, #6CB4EE 0%, #4FA3D1 100%);
    padding: 140px 0 80px;
    color: #fff;
    text-align: center;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
}

.trabaja-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.trabaja-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.trabaja-hero .hero-lead {
    font-size: 1.25rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Benefits Grid */
.trabaja-benefits {
    padding: 80px 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6CB4EE 0%, #4FA3D1 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #fff;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--nav-blue);
    margin-bottom: 15px;
}

.benefit-card p {
    color: #ffffff;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Trabaja Partners */
.trabaja-partners {
    padding: 80px 0;
    background: #fff;
}

/* Trabaja Form */
.trabaja-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #6CB4EE 0%, #4FA3D1 100%);
}

.form-container-centered {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.95);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2rem;
    color: var(--nav-blue);
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    font-size: 1rem;
}

.trabaja-form .form-group {
    margin-bottom: 20px;
}

.trabaja-form label {
    display: block;
    font-weight: 600;
    color: var(--nav-blue);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.trabaja-form input,
.trabaja-form select,
.trabaja-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fafafa;
    box-sizing: border-box;
}

.trabaja-form input:focus,
.trabaja-form select:focus,
.trabaja-form textarea:focus {
    outline: none;
    border-color: #4FA3D1;
    box-shadow: 0 0 0 4px rgba(79, 163, 209, 0.15);
    background: #fff;
}

.btn-submit-large {
    width: 100%;
    background: var(--nav-blue);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit-large:hover {
    background: #092a4d;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(11, 59, 107, 0.3);
}

@media (max-width: 768px) {
    .trabaja-hero h1 {
        font-size: 2.2rem;
    }
    
    .form-container-centered {
        padding: 30px 20px;
        margin: 0 15px;
    }
}

/* =========================================
   SERVICES NAV CARDS (New Professional Design)
   ========================================= */
.services-nav-section {
    position: relative;
    z-index: 10;
    margin-top: -80px;
    padding-bottom: 80px;
}

.services-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-nav-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-nav-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: var(--nav-blue);
}

.service-nav-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-nav-card:hover .service-nav-icon {
    background: linear-gradient(135deg, #6CB4EE 0%, #4FA3D1 100%);
}

.service-nav-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.service-nav-card:hover .service-nav-icon img {
    filter: brightness(0) invert(1);
}

.service-nav-content {
    flex: 1;
}

.service-nav-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--nav-blue);
    margin: 0 0 5px 0;
}

.service-nav-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.service-nav-arrow {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--nav-blue);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-nav-card:hover .service-nav-arrow {
    background: var(--nav-blue);
    color: #fff;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .services-nav-section {
        margin-top: -40px;
    }
    
    .service-nav-card {
        padding: 20px;
    }
    
    .service-nav-icon {
        width: 55px;
        height: 55px;
    }
    
    .service-nav-icon img {
        width: 28px;
        height: 28px;
    }
    
    .service-nav-content h3 {
        font-size: 1rem;
    }
    
    .service-nav-arrow {
        display: none;
    }
}

/* Hide old flip cards */
.services-flip-nav,
.flip-cards-wrapper,
.flip-card {
    display: none;
}

/* =========================================
   ELEGANT FLIP CARDS (New Professional Design)
   ========================================= */
.services-flip-section {
    position: relative;
    z-index: 10;
    margin-top: -80px;
    padding-bottom: 80px;
}

.flip-cards-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
}

.flip-card-elegant {
    width: 220px;
    height: 300px;
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-inner-elegant {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
}

.flip-card-elegant:hover .flip-card-inner-elegant {
    transform: rotateY(180deg);
}

.flip-card-front-elegant,
.flip-card-back-elegant {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 25px;
    box-sizing: border-box;
}

/* Front Card - Clean White */
.flip-card-front-elegant {
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08), 0 5px 15px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
}

.front-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(145deg, #f8fbff 0%, #eef5fc 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(11, 59, 107, 0.08);
    transition: all 0.3s ease;
}

.flip-card-elegant:hover .front-icon-wrapper {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(11, 59, 107, 0.12);
}

.front-icon-wrapper img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.flip-card-front-elegant h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--nav-blue);
    margin: 0 0 15px 0;
    letter-spacing: -0.3px;
}

.flip-hint {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s ease;
}

.flip-card-elegant:hover .flip-hint {
    opacity: 1;
    transform: translateY(0);
}

/* Back Card - Dark Gradient */
.flip-card-back-elegant {
    background: linear-gradient(145deg, #0b3b6b 0%, #154d85 100%);
    transform: rotateY(180deg);
    justify-content: flex-start;
    padding-top: 35px;
}

.flip-card-back-elegant h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255,255,255,0.15);
    width: 100%;
}

.flip-card-back-elegant ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    width: 100%;
    text-align: left;
}

.flip-card-back-elegant li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.flip-card-back-elegant li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #6CB4EE;
    border-radius: 50%;
}

.flip-card-back-elegant a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: block;
}

.flip-card-back-elegant a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.back-cta {
    margin-top: auto;
    background: rgba(255,255,255,0.15);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.back-cta:hover {
    background: rgba(255,255,255,0.25) !important;
    padding-left: 20px !important;
}

/* Responsive Flip Cards */
@media (max-width: 1100px) {
    .flip-cards-grid {
        gap: 20px;
    }
    
    .flip-card-elegant {
        width: 200px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .services-flip-section {
        margin-top: -50px;
    }
    
    .flip-cards-grid {
        gap: 15px;
    }
    
    .flip-card-elegant {
        width: calc(50% - 15px);
        max-width: 180px;
        height: 240px;
    }
    
    .front-icon-wrapper {
        width: 65px;
        height: 65px;
        margin-bottom: 15px;
    }
    
    .front-icon-wrapper img {
        width: 32px;
        height: 32px;
    }
    
    .flip-card-front-elegant h3 {
        font-size: 0.95rem;
    }
    
    .flip-card-back-elegant {
        padding: 20px 15px;
        padding-top: 25px;
    }
    
    .flip-card-back-elegant h3 {
        font-size: 1rem;
        margin-bottom: 12px;
        padding-bottom: 10px;
    }
    
    .flip-card-back-elegant li {
        margin-bottom: 6px;
    }
    
    .flip-card-back-elegant a {
        font-size: 0.8rem;
    }
    
    .back-cta {
        padding: 8px 15px;
        font-size: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    .flip-card-elegant {
        width: 100%;
        max-width: 280px;
        height: 260px;
    }
}

/* =========================================
   SERVICIOS PAGE - AWARD WINNING DESIGN
   Blowmind Style: Immersive, Bold, Premium
   ========================================= */

.servicios-award {
    background: #ffffff;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* =============================================
   BLOQUE FULL - HERO SECTIONS (Full Width)
   ============================================= */
.bloque-full {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.bloque-full--sky {
    background: linear-gradient(135deg, #6CB4EE 0%, #4A9FD4 100%);
}

.bloque-full--ocean {
    background: linear-gradient(135deg, #3B8DBD 0%, #2980B9 100%);
}

.bloque-full--navy {
    background: linear-gradient(145deg, #0f3460 0%, #16213e 100%);
}

.bloque-full__inner {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 40px;
    align-items: center;
}

.bloque-full__inner--reverse {
    grid-template-columns: 1.05fr 1fr;
    direction: rtl;
}

.bloque-full__inner--reverse > * {
    direction: ltr;
}

/* Text Content */
.bloque-full__text {
    color: #ffffff;
    position: relative;
    z-index: 5;
}

.tag-label {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    color: #ffffff;
}

.tag-label--gold {
    background: rgba(255, 193, 7, 0.25);
    border-color: rgba(255, 193, 7, 0.5);
    color: #ffd54f;
}

.display-title {
    font-family: 'Surgena', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1;
    margin: 0 0 30px 0;
    letter-spacing: -2px;
}

.lead-text {
    font-size: clamp(1rem, 1.5vw, 1.35rem);
    line-height: 1.7;
    opacity: 0.92;
    margin-bottom: 45px;
    max-width: 500px;
    font-weight: 400;
}

/* CTA Button - Capsule Style */
.btn-capsule {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    color: #0b3b6b;
    padding: 18px 35px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

.btn-capsule span,
.btn-capsule i {
    color: inherit !important;
}

.btn-capsule::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.btn-capsule:hover::before {
    left: 100%;
}

.btn-capsule:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.btn-capsule--white {
    background: rgba(255,255,255,0.95);
    color: #0b3b6b !important;
}

.btn-capsule--gold {
    background: #ffc107;
    color: #0a1628 !important;
}

.arrow-icon {
    font-style: normal;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-capsule:hover .arrow-icon {
    transform: translateX(5px);
}

/* Media Frame */
.bloque-full__media {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.media-frame {
    position: relative;
    width: 100%;
    max-width: 720px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.22);
    transition: transform 0.45s ease;
}

.media-frame:hover {
    transform: scale(1.02);
}

.media-frame--rounded {
    border-radius: 30px;
    overflow: hidden;
}

.media-frame--organic {
    border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
    overflow: hidden;
}

.media-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Modal for per-apartado details */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6,15,28,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 30px;
}

.modal-overlay.active {
    display: flex;
}

.modal-window {
    width: 100%;
    max-width: 920px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(3,15,40,0.25);
    overflow: hidden;
}

.modal-body {
    padding: 28px 36px;
    max-height: calc(100vh - 160px);
    overflow: auto;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #223;
    cursor: pointer;
}

/* Reduce large page paddings to avoid double-scrollbar */
@media (max-width: 992px) {
    .bloque-full__inner {
        padding: 40px 24px;
        gap: 28px;
    }

    .media-frame {
        max-width: 520px;
    }
}

@media (max-width: 768px) {
    .bloque-full__inner {
        padding: 36px 18px;
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .bloque-full__media {
        justify-content: center;
        order: -1;
    }

    .media-frame {
        max-width: 88vw;
    }
}

/* =============================================
   BENTO GRID - PRODUCTOS
   ============================================= */
.bento-section {
    padding: 100px 60px;
    background: #ffffff;
}

.bento-grid {
    display: grid;
    gap: 25px;
    max-width: 1500px;
    margin: 0 auto;
}

.bento-grid--vivienda {
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-template-rows: 280px 280px;
}

.bento-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    cursor: pointer;
}

.bento-card--lg {
    grid-row: span 2;
}

.bento-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bento-card__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.bento-card:hover .bento-card__bg img {
    transform: scale(1.08);
}

.bento-card__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 2;
}

.bento-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px;
    z-index: 3;
    color: #ffffff;
}

.bento-card__content h3 {
    font-family: 'Surgena', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.bento-card--lg .bento-card__content h3 {
    font-size: 2.2rem;
}

.bento-card__content p {
    font-size: 0.95rem;
    opacity: 0.85;
    margin: 0 0 20px 0;
    font-style: italic;
    line-height: 1.5;
}

.bento-card__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-mini {
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-mini--light {
    background: #ffffff;
    color: #0b3b6b;
}

.btn-mini--light:hover {
    background: #ffc107;
    transform: translateY(-2px);
}

.btn-mini--outline {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-mini--outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: #ffffff;
}

/* =============================================
   GLASS SECTION - BENEFICIOS
   ============================================= */
.glass-section {
    padding: 120px 60px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5fc 100%);
    position: relative;
}

.glass-section__header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-family: 'Surgena', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #0b3b6b;
    margin: 0;
    letter-spacing: -1px;
}

.section-title--center {
    text-align: center;
}

.section-title--dark {
    text-align: center;
    margin-bottom: 60px;
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.glass-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 24px;
    padding: 35px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6CB4EE, #2980B9);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.glass-card:hover::before {
    transform: scaleX(1);
}

.glass-card:hover {
    background: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(11, 59, 107, 0.12);
}

.glass-card__number {
    font-family: 'Surgena', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(108, 180, 238, 0.3);
    margin-bottom: 15px;
    line-height: 1;
}

.glass-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0b3b6b;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.glass-card p {
    font-size: 0.9rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
}

/* =============================================
   REQUISITOS SECTION
   ============================================= */
.req-section {
    padding: 120px 60px;
    background: #ffffff;
}

.req-section__container {
    max-width: 1400px;
    margin: 0 auto;
}

.req-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.req-item {
    background: #f8fbff;
    border-radius: 24px;
    padding: 35px 30px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.req-item:hover {
    background: #ffffff;
    border-color: #6CB4EE;
    box-shadow: 0 20px 50px rgba(11, 59, 107, 0.1);
    transform: translateY(-5px);
}

.req-item__header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8eef5;
}

.req-item__icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #6CB4EE 0%, #4A9FD4 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.req-item__icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.req-item__header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b3b6b;
    margin: 0;
    line-height: 1.3;
}

.req-item__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.req-item__list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.5;
}

.req-item__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #6CB4EE, #4A9FD4);
    border-radius: 50%;
}

/* =============================================
   CARDS SHOWCASE - CONSUMO
   ============================================= */
.cards-showcase {
    padding: 100px 60px;
    background: #f8fbff;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

.showcase-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
}

.showcase-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

.showcase-card--featured {
    border: 3px solid #2980B9;
    transform: scale(1.03);
}

.showcase-card--featured:hover {
    transform: scale(1.03) translateY(-12px);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffc107;
    color: #0a1628;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

.showcase-card__image {
    height: 280px;
    overflow: hidden;
}

.showcase-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-card:hover .showcase-card__image img {
    transform: scale(1.08);
}

.showcase-card__body {
    padding: 35px;
}

.showcase-card__body h3 {
    font-family: 'Surgena', sans-serif;
    font-size: 1.5rem;
    color: #0b3b6b;
    margin: 0 0 12px 0;
}

.showcase-card__quote {
    font-size: 0.95rem;
    font-style: italic;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 25px;
    padding-left: 18px;
    border-left: 3px solid #6CB4EE;
}

.showcase-card__btns {
    display: flex;
    gap: 12px;
}

.btn-pill-sm {
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    background: #0b3b6b;
    color: #ffffff;
    transition: all 0.3s ease;
}

.btn-pill-sm:hover {
    background: #092a4d;
    transform: translateY(-2px);
}

.btn-pill-sm--ghost {
    background: transparent;
    color: #0b3b6b;
    border: 2px solid #d0dae5;
}

.btn-pill-sm--ghost:hover {
    background: #0b3b6b;
    color: #ffffff;
    border-color: #0b3b6b;
}

/* =============================================
   EMPRESAS SECTION
   ============================================= */
.empresas-section {
    padding: 100px 60px;
    background: #f0f4f8;
}

.empresas-container {
    max-width: 1400px;
    margin: 0 auto;
}

.empresas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.empresa-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}

.empresa-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.empresa-card__visual {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.empresa-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.empresa-card:hover .empresa-card__visual img {
    transform: scale(1.08);
}

.empresa-card__info {
    padding: 30px;
}

.empresa-card__info h3 {
    font-family: 'Surgena', sans-serif;
    font-size: 1.35rem;
    color: #0b3b6b;
    margin: 0 0 10px 0;
}

.empresa-card__info p {
    font-size: 0.9rem;
    font-style: italic;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-empresa {
    display: inline-block;
    background: #0b3b6b;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-empresa:hover {
    background: #ffc107;
    color: #0a1628;
    transform: translateX(5px);
}

/* =============================================
   CTA MEGA - FINAL
   ============================================= */
.cta-mega {
    position: relative;
    padding: 150px 60px;
    background: linear-gradient(145deg, #0b3b6b 0%, #1565c0 100%);
    overflow: hidden;
}

.cta-mega__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%);
}

.cta-mega__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: #ffffff;
}

.cta-mega__content h2 {
    font-family: 'Surgena', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 0 0 25px 0;
    line-height: 1.1;
}

.cta-mega__content p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 45px;
}

.btn-mega {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    color: #0b3b6b;
    padding: 22px 50px;
    border-radius: 100px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 0 40px rgba(255,255,255,0.3);
    transition: all 0.4s ease;
}

.btn-mega:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(255,255,255,0.5);
}

.btn-mega svg {
    transition: transform 0.3s ease;
}

.btn-mega:hover svg {
    transform: translateX(5px);
}

/* =============================================
   RESPONSIVE DESIGN - AWARD
   ============================================= */
@media (max-width: 1200px) {
    .bloque-full__inner {
        padding: 100px 50px;
        gap: 50px;
    }
    
    .bento-grid--vivienda {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .bento-card--lg {
        grid-row: auto;
        grid-column: span 2;
    }
    
    .glass-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .req-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .bloque-full {
        min-height: auto;
    }
    
    .bloque-full__inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 100px 30px;
    }
    
    .bloque-full__inner--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .lead-text {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .bloque-full__media {
        justify-content: center;
        order: -1;
    }
    
    .media-frame {
        max-width: 450px;
    }
    
    .showcase-grid,
    .empresas-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .showcase-card--featured {
        transform: none;
    }
    
    .showcase-card--featured:hover {
        transform: translateY(-12px);
    }
}

@media (max-width: 768px) {
    .bento-section,
    .glass-section,
    .req-section,
    .cards-showcase,
    .empresas-section,
    .cta-mega {
        padding: 70px 25px;
    }
    
    .bento-grid--vivienda {
        grid-template-columns: 1fr;
    }
    
    .bento-card--lg {
        grid-column: auto;
    }
    
    .bento-card {
        min-height: 300px;
    }
    
    .glass-grid,
    .req-grid {
        grid-template-columns: 1fr;
    }
    
    .display-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .bloque-full__inner {
        padding: 80px 25px;
    }
    
    .btn-capsule {
        padding: 15px 28px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .display-title {
        font-size: 2rem;
    }
    
    .bento-card__content {
        padding: 25px;
    }
    
    .bento-card__content h3 {
        font-size: 1.3rem;
    }
    
    .glass-card,
    .req-item {
        padding: 28px 22px;
    }
    
    .showcase-card__body {
        padding: 25px;
    }
    
    .cta-mega__content h2 {
        font-size: 2rem;
    }

    .btn-mega {
        padding: 18px 35px;
        font-size: 1rem;
    }
}

/* =============================================
   PRODUCTO CARDS - CON TABS INLINE
   Diseño elegante con info expandible
   ============================================= */

.productos-section {
    padding: 80px 50px;
    background: #ffffff;
}

.productos-section--alt {
    background: #f8fbff;
}

.productos-section--dark {
    background: linear-gradient(180deg, #0d2d4d 0%, #0b3b6b 100%);
}

.productos-grid {
    display: grid;
    gap: 30px;
    max-width: 1500px;
    margin: 0 auto;
}

.productos-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.productos-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Card Principal */
.producto-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(11, 59, 107, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
}

.producto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(11, 59, 107, 0.15);
}

.producto-card--featured {
    border: 3px solid #2980B9;
    transform: scale(1.02);
}

.producto-card--featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.producto-card__badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffc107 0%, #ffab00 100%);
    color: #0a1628;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.producto-card__imagen {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.producto-card__imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.producto-card:hover .producto-card__imagen img {
    transform: scale(1.08);
}

.producto-card__info {
    padding: 24px;
}

.producto-card__info h3 {
    font-family: 'Surgena', sans-serif;
    font-size: 1.25rem;
    color: #0b3b6b;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.producto-card__frase {
    font-size: 0.85rem;
    font-style: italic;
    color: #5a6c7d;
    line-height: 1.5;
    margin: 0 0 18px 0;
    padding-left: 12px;
    border-left: 3px solid #6CB4EE;
}

/* Tabs dentro de la tarjeta */
.producto-card__tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    border-bottom: 2px solid #e8eef5;
    padding-bottom: 12px;
}

.tab-btn {
    flex: 1;
    padding: 10px 12px;
    border: none;
    background: #f0f4f8;
    color: #5a6c7d;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: #e0e8f0;
}

.tab-btn.active {
    background: linear-gradient(135deg, #0b3b6b 0%, #1565c0 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(11, 59, 107, 0.25);
}

/* Paneles de contenido */
.producto-card__panel {
    display: none;
    animation: fadeSlideIn 0.35s ease;
}

.producto-card__panel.active {
    display: block;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.producto-card__panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.producto-card__panel ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    font-size: 0.82rem;
    color: #4a5568;
    line-height: 1.5;
}

.producto-card__panel ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 7px;
    height: 7px;
    background: linear-gradient(135deg, #6CB4EE, #2980B9);
    border-radius: 50%;
}

/* Variante Empresa */
.producto-card--empresa {
    background: rgba(255, 255, 255, 0.95);
}

.productos-section--dark .producto-card--empresa {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* CTA al final de cada sección */
.productos-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
    padding: 30px 40px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
    border-radius: 100px;
    flex-wrap: wrap;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.productos-cta span {
    font-size: 1rem;
    font-weight: 600;
    color: #0b3b6b;
}

.productos-cta--light {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.productos-cta--light span {
    color: #ffffff;
}

.btn-capsule--dark {
    background: #0b3b6b;
    color: #ffffff;
}

.btn-capsule--dark:hover {
    background: #092a4d;
}

/* =============================================
   RESPONSIVE - PRODUCTO CARDS
   ============================================= */
@media (max-width: 1200px) {
    .productos-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .productos-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .productos-section {
        padding: 50px 25px;
    }
    
    .productos-grid--4,
    .productos-grid--3 {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    
    .producto-card--featured {
        transform: none;
    }
    
    .producto-card--featured:hover {
        transform: translateY(-8px);
    }
    
    .productos-cta {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .productos-cta span {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .producto-card__info {
        padding: 18px;
    }
    
    .producto-card__info h3 {
        font-size: 1.1rem;
    }
    
    .tab-btn {
        padding: 8px 10px;
        font-size: 0.7rem;
    }

    .producto-card__panel ul li {
        font-size: 0.78rem;
    }
}

/* =============================================
   PAGE: QUIÉNES SOMOS
   ============================================= */
.page-about {
    background: #ffffff;
}

/* Hero */
.about-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #0b3b6b 0%, #1565c0 100%);
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.about-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%);
}

.about-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero__tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 10px 25px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.about-hero__title {
    font-family: 'Surgena', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin: 0 0 25px;
    line-height: 1.1;
}

.about-hero__lead {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto;
}

/* Mission Section */
.about-mission {
    padding: 100px 0;
    background: #f8fbff;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-card {
    padding: 50px 45px;
    border-radius: 24px;
    text-align: center;
}

.mission-card--primary {
    background: linear-gradient(135deg, #0b3b6b 0%, #1565c0 100%);
    color: #ffffff;
}

.mission-card--secondary {
    background: #ffffff;
    color: #0b3b6b;
    box-shadow: 0 15px 50px rgba(11, 59, 107, 0.1);
}

.mission-card__icon {
    width: 90px;
    height: 90px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mission-card--secondary .mission-card__icon {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.mission-card h2 {
    font-family: 'Surgena', sans-serif;
    font-size: 1.8rem;
    margin: 0 0 20px;
}

.mission-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    opacity: 0.9;
}

/* Values Section */
.about-values {
    padding: 100px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Surgena', sans-serif;
    font-size: 2.5rem;
    color: #0b3b6b;
    margin: 0 0 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
    padding: 40px 30px;
    background: #f8fbff;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.value-item:hover {
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(11, 59, 107, 0.12);
    transform: translateY(-8px);
}

.value-item__number {
    font-family: 'Surgena', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(108, 180, 238, 0.3);
    margin-bottom: 15px;
    line-height: 1;
}

.value-item h3 {
    font-size: 1.2rem;
    color: #0b3b6b;
    margin: 0 0 12px;
}

.value-item p {
    font-size: 0.9rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
}

/* Why Section */
.about-why {
    padding: 100px 0;
    background: #f8fbff;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.why-text h2 {
    font-family: 'Surgena', sans-serif;
    font-size: 2.5rem;
    color: #0b3b6b;
    margin: 0 0 40px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.why-list__check {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6CB4EE 0%, #2980B9 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.why-list li strong {
    display: block;
    font-size: 1.05rem;
    color: #0b3b6b;
    margin-bottom: 5px;
}

.why-list li p {
    font-size: 0.9rem;
    color: #5a6c7d;
    margin: 0;
    line-height: 1.5;
}

.why-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(11, 59, 107, 0.15);
}

.why-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* About CTA */
.about-cta {
    padding: 100px 0;
    background: #ffffff;
}

.about-cta__box {
    background: linear-gradient(135deg, #0b3b6b 0%, #1565c0 100%);
    border-radius: 30px;
    padding: 80px 60px;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

.about-cta__box h2 {
    font-family: 'Surgena', sans-serif;
    font-size: 2.5rem;
    margin: 0 0 20px;
}

.about-cta__box p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0 0 35px;
}

/* =============================================
   PAGE: ALIADOS
   ============================================= */
.page-aliados {
    background: #ffffff;
}

/* Hero Aliados */
.aliados-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: #ffffff;
    text-align: center;
}

.aliados-hero__tag {
    display: inline-block;
    background: rgba(255, 193, 7, 0.2);
    border: 1px solid rgba(255, 193, 7, 0.4);
    color: #ffc107;
    padding: 10px 25px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.aliados-hero__title {
    font-family: 'Surgena', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin: 0 0 25px;
    line-height: 1.1;
}

.aliados-hero__lead {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid Section */
.aliados-grid-section {
    padding: 100px 0;
    background: #f8fbff;
}

.aliados-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.aliados-intro h2 {
    font-family: 'Surgena', sans-serif;
    font-size: 2.2rem;
    color: #0b3b6b;
    margin: 0 0 15px;
}

.aliados-intro p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin: 0;
}

.aliados-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

.aliado-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(11, 59, 107, 0.08);
    transition: all 0.4s ease;
}

.aliado-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(11, 59, 107, 0.15);
}

.aliado-card__logo {
    padding: 40px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    border-bottom: 1px solid #eef3f8;
}

.aliado-card__logo img {
    max-width: 180px;
    max-height: 70px;
    object-fit: contain;
}

.aliado-card__info {
    padding: 30px;
}

.aliado-card__info h3 {
    font-family: 'Surgena', sans-serif;
    font-size: 1.3rem;
    color: #0b3b6b;
    margin: 0 0 12px;
}

.aliado-card__info > p {
    font-size: 0.9rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0 0 20px;
}

.aliado-card__productos {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.aliado-card__productos li {
    background: #e8f4fc;
    color: #0b3b6b;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Benefits Section */
.aliados-benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, #0b3b6b 0%, #1565c0 100%);
}

.section-header--light {
    color: #ffffff;
}

.section-header--light h2 {
    color: #ffffff;
}

.section-header--light p {
    color: rgba(255,255,255,0.8);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    color: #ffffff;
    transition: all 0.4s ease;
}

.benefit-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.benefit-card__icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-card h3 {
    font-size: 1.1rem;
    margin: 0 0 12px;
}

.benefit-card p {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.6;
    margin: 0;
}

/* Logos Row */
.aliados-logos {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.aliados-logos__text {
    font-size: 1rem;
    color: #5a6c7d;
    margin: 0 0 40px;
}

.logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-item {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item img {
    max-width: 140px;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
}

/* Aliados CTA */
.aliados-cta {
    padding: 100px 0;
    background: #f8fbff;
}

.aliados-cta__box {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    border-radius: 30px;
    padding: 80px 60px;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

.aliados-cta__box h2 {
    font-family: 'Surgena', sans-serif;
    font-size: 2.2rem;
    margin: 0 0 20px;
}

.aliados-cta__box p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0 0 35px;
}

/* Container utility */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* =============================================
   RESPONSIVE - ABOUT & ALIADOS
   ============================================= */
@media (max-width: 1200px) {
    .values-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .aliados-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .why-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .why-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-hero,
    .aliados-hero {
        padding: 140px 0 70px;
    }
    
    .about-mission,
    .about-values,
    .about-why,
    .about-cta,
    .aliados-grid-section,
    .aliados-benefits,
    .aliados-cta {
        padding: 70px 0;
    }
    
    .container {
        padding: 0 25px;
    }
    
    .values-grid,
    .benefits-grid,
    .aliados-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .about-cta__box,
    .aliados-cta__box {
        padding: 50px 30px;
        border-radius: 20px;
    }
    
    .logos-row {
        gap: 30px;
    }
    
    .logo-item img {
        max-width: 100px;
    }
}