/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --primary-color: #2059A5;
  --primary-color-alt: #1a4a8c;
  --secondary-color: #3A3A3A;
  --accent-color: #FE7743;
  --dark-color: #2c3e50;
  --dark-color-alt: #34495e;
  --light-color: #ecf0f1;
  --white-color: #ffffff;
  --gray-color: #7f8c8d;
  --gray-light: #bdc3c7;
  --black-color: #000000;
  
  /* Typography */
  --body-font: 'Poppins', sans-serif;
  --big-font-size: 3.5rem;
  --h1-font-size: 2.5rem;
  --h2-font-size: 2rem;
  --h3-font-size: 1.5rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.75rem;
  
  /* Font Weight */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  --font-extra-bold: 800;
  
  /* Margins */
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-25: 1.25rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;
  
  /* Z-index */
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
  
  /* Transitions */
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadows */
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-dark: 0 8px 30px rgba(0, 0, 0, 0.2);
  
  /* Border Radius */
  --border-radius: 0.5rem;
  --border-radius-lg: 1rem;
}

/* ===== RESPONSIVE TYPOGRAPHY ===== */
@media screen and (max-width: 968px) {
  :root {
    --big-font-size: 2.5rem;
    --h1-font-size: 2rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 0.938rem;
    --small-font-size: 0.813rem;
    --smaller-font-size: 0.75rem;
  }
}

/* ===== BASE ===== */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--white-color);
  color: var(--dark-color);
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  color: var(--dark-color);
  font-weight: var(--font-semi-bold);
  line-height: 1.2;
}

h2 {
  font-size: 1.75rem;
  font-weight: var(--font-medium);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
}

/* ===== REUSABLE CSS CLASSES ===== */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.section {
  padding: 5rem 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: var(--mb-3);
}

.section-subtitle {
  display: inline-block;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--mb-0-5);
}

.section-title {
  font-size: 1.75rem;
  font-weight: var(--font-medium);
  color: var(--dark-color);
  margin-bottom: var(--mb-1);
}

.section-description {
  font-size: var(--normal-font-size);
  color: var(--gray-color);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--mb-0-5);
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: var(--font-medium);
  font-size: var(--normal-font-size);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white-color);
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
  background: var(--primary-color-alt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white-color);
  border-color: var(--white-color);
}

.btn-outline:hover {
  background: var(--white-color);
  color: var(--dark-color);
  transform: translateY(-2px);
}

.btn i {
  font-size: 1.2rem;
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: var(--z-modal);
  transition: opacity 0.5s ease;
}

.loader {
  text-align: center;
}

.loader-circle {
  width: 60px;
  height: 60px;
  border: 4px solid var(--light-color);
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto var(--mb-1);
}

.loader-text {
  font-size: var(--h3-font-size);
  font-weight: var(--font-bold);
  color: var(--primary-color);
  animation: pulse 1.5s ease-in-out infinite;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-fixed);
  transition: var(--transition);
}

/* Header Top */
.header-top {
  background: var(--primary-color);
  padding: 1rem 0;
  font-size: var(--small-font-size);
  display: flex;
  align-items: center;
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--mb-3);
  padding: 0 1rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.header-contact {
  display: flex;
  gap: var(--mb-2);
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--mb-0-25);
  color: var(--white-color);
  margin: 0;
  margin-bottom: 0 !important;
}

.contact-item span {
  margin: 0;
  margin-bottom: 0 !important;
  line-height: 1;
}

.contact-item i {
  font-size: 1rem;
  color: #ffa726;
}

.header-phone-link {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.header-phone-link:hover {
  color: #ffa726;
  text-decoration: underline;
}

.header-social {
  display: flex;
  gap: var(--mb-1);
}

.header-social .social-link {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 0.9rem;
  transition: var(--transition);
}

.header-social .social-link:hover {
  background: #ffa726;
  color: var(--white-color);
}

/* Header Main */
.header-main {
  background: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  padding: 1rem 0;
  position: relative;
  z-index: 10;
}

.header.scroll-header .header-main {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-medium);
}

.header.scroll-header .nav-link {
  color: var(--primary-color);
  text-shadow: none;
}

.header.scroll-header .nav-link:hover,
.header.scroll-header .nav-link.active-link {
  color: #3A3A3A;
  transform: translateY(-2px);
  text-shadow: 0 2px 4px rgba(58, 58, 58, 0.3);
}

.header.scroll-header .nav-toggle {
  color: var(--primary-color);
  text-shadow: none;
}

.header.scroll-header .nav-toggle:hover {
  color: #3A3A3A;
  transform: translateY(-2px);
  text-shadow: 0 2px 4px rgba(58, 58, 58, 0.3);
}



.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  gap: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  flex: 1;
  max-width: 33.333%;
}

.nav-right {
  flex: 2;
  max-width: 66.667%;
  display: flex;
  justify-content: center;
}

.logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  background: var(--white-color);
  padding: 4rem 0 3rem;
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
}

.nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--mb-2);
}

.nav-link {
  font-weight: var(--font-medium);
  color: var(--primary-color);
  transition: var(--transition);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: var(--small-font-size);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.nav-link:hover,
.nav-link.active-link {
  color: #3A3A3A;
  transform: translateY(-2px);
  text-shadow: 0 2px 4px rgba(58, 58, 58, 0.3);
}



.nav-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--dark-color);
  cursor: pointer;
}

.nav-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}



.nav-toggle {
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.nav-toggle:hover {
  color: #3A3A3A;
  transform: translateY(-2px);
  text-shadow: 0 2px 4px rgba(58, 58, 58, 0.3);
}

/* Show menu */
.show-menu {
  top: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  max-width: none !important;
  overflow: visible !important;
  display: flex !important;
  z-index: 99999 !important;
  position: fixed !important;
  background: var(--white-color) !important;
  width: 100% !important;
  height: 100vh !important;
}

/* Hide hamburger when menu is open */
.nav-right.show-menu ~ .nav-actions .nav-toggle {
  display: none;
}

/* Desktop menu styles */
@media screen and (min-width: 969px) {
  .nav-right {
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 0;
    flex-direction: row;
    gap: var(--mb-2);
  }
  
  .nav-menu {
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin: 0;
  }
  
  .nav-list {
    flex-direction: row;
    gap: var(--mb-3);
    margin: 0;
    padding: 0;
  }
  
  .nav-close {
    display: none;
  }
  
  .nav-toggle {
    display: none !important;
  }

  /* Hide mobile menu elements in desktop */
  .mobile-menu-header,
  .mobile-social {
    display: none !important;
  }
}



/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: 0;
  width: 100%;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-title {
  font-size: var(--big-font-size);
  font-weight: var(--font-extra-bold);
  line-height: 1.1;
  margin-bottom: var(--mb-1);
  color: var(--white-color);
  opacity: 0;
  transform: translateY(30px);
}

.hero-slide.active .hero-title {
  animation: slideInUp 1.5s ease 0.5s forwards;
}

/* Removed hover effect for title to prevent it from looking like a link */

.hero-title span {
  color: #ffa726;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.hero-slide.active .hero-title span {
  opacity: 1;
  transform: translateY(0);
}

.hero-title span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ffa726;
  border-radius: 2px;
}

/* Removed hover effects for highlighted words to prevent them from looking like links */

.hero-description {
  font-size: var(--normal-font-size);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--mb-2);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(30px);
}

.hero-slide.active .hero-description {
  animation: slideInUp 1.5s ease 0.5s forwards;
}

/* Removed hover effect for description to prevent it from looking like a link */

/* RESET COMPLETO DE BOTONES DEL CARRUSEL */
.hero-buttons {
  display: flex !important;
  gap: var(--mb-1) !important;
  margin-bottom: var(--mb-3) !important;
  opacity: 1 !important;
  position: static !important;
  z-index: auto !important;
  pointer-events: auto !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
}

.hero-buttons .btn {
  display: inline-flex !important;
  z-index: 99999 !important;
  position: relative !important;
}

.hero-row-buttons {
  opacity: 0;
  transform: translateY(30px);
  transition: none;
}
.hero-slide.active .hero-row-buttons {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1), transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* HOVER DIRECTO Y FORZADO */
.hero-buttons .btn-primary:hover {
  background: var(--primary-color-alt) !important;
  color: var(--white-color) !important;
  box-shadow: 0 6px 24px 0 rgba(32,89,165,0.25) !important;
  transform: translateY(-2px) scale(1.04) !important;
}

.hero-buttons .btn-outline:hover {
  background: var(--white-color) !important;
  color: var(--dark-color) !important;
  box-shadow: 0 6px 24px 0 rgba(32,89,165,0.15) !important;
  transform: translateY(-2px) scale(1.04) !important;
}

.hero-stats {
  display: flex;
  gap: var(--mb-2);
}

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

.stat-number {
  display: block;
  font-size: var(--h1-font-size);
  font-weight: var(--font-extra-bold);
  color: #ffa726;
}

.stat-text {
  font-size: var(--small-font-size);
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-images {
  position: relative;
}

.hero-slider {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 5s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
  transition: opacity 5s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  pointer-events: none;
}

.hero-content {
  color: var(--white-color);
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
  position: relative;
  z-index: 3;
}

.hero-slide.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 2rem;
  z-index: 10;
}

.hero-btn {
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  opacity: 1;
}

.hero-btn:hover {
  background: var(--primary-color) !important;
  color: var(--white-color) !important;
  transform: scale(1.1);
  opacity: 1;
}

.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--mb-0-5);
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.indicator::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--white-color);
  transition: left 0.3s ease;
}

.indicator.active {
  background: var(--white-color);
  transform: scale(1.2);
}

.indicator.active::before {
  left: 0;
}

/* ===== STATS SECTION ===== */
.stats {
  background: #626363;
  color: var(--white-color);
  padding: 4rem 0;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--mb-1);
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--mb-1);
  transition: var(--transition);
}

.stat-item:hover .stat-icon {
  transform: scale(1.1);
}

.stat-icon i {
  font-size: 2rem;
  color: var(--white-color);
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: var(--mb-0-5);
}

.stat-number {
  font-size: var(--h1-font-size);
  font-weight: var(--font-extra-bold);
  color: var(--accent-color);
  line-height: 1;
}

.stat-text {
  font-size: var(--normal-font-size);
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: var(--font-medium);
}



/* ===== FEATURES SECTION ===== */
.features {
  padding: 6rem 0;
  background: var(--white-color);
}

.features-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.feature-block {
  text-align: center;
  position: relative;
  background: var(--white-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.feature-block:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.feature-block:hover .feature-icon {
  background: #3A3A3A;
}

.feature-img {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.feature-img.placeholder-img {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 3rem;
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.feature-block:hover .feature-image {
  transform: scale(1.05);
}

.feature-icon {
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: var(--shadow-medium);
}

.feature-icon i {
  font-size: 2rem;
  color: var(--white-color);
}

.feature-title {
  font-size: var(--h3-font-size);
  color: var(--dark-color);
  margin: 3rem 0 1rem 0;
  font-weight: var(--font-bold);
}

.feature-description {
  color: var(--gray-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}

.feature-link {
  color: var(--primary-color);
  font-weight: var(--font-medium);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.feature-link:hover {
  color: var(--primary-color-alt);
  transform: translateX(5px);
}

.feature-link i {
  font-size: 1.2rem;
}

/* ===== OUR FEATURE SUBSECTION ===== */
.our-feature-subsection {
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 1px solid var(--gray-light);
}

.our-feature-subsection .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.our-feature-subsection .section-title {
  font-size: 1.75rem;
  color: var(--dark-color);
  margin-bottom: var(--mb-1);
  font-weight: var(--font-medium);
}

.our-feature-subsection .section-description {
  color: var(--gray-color);
  max-width: 600px;
  margin: 0 auto var(--mb-2);
  line-height: 1.6;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--mb-2);
  position: relative;
  height: 80px;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  transform: translateY(-50%);
}

.section-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 20px solid var(--primary-color);
  filter: drop-shadow(0 4px 8px rgba(32, 89, 165, 0.3));
}

.section-divider i {
  font-size: 1.8rem;
  color: var(--primary-color);
  background: var(--white-color);
  padding: 0.6rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid var(--primary-color);
}

.section-divider:hover i {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 8px 25px rgba(32, 89, 165, 0.3);
  background: var(--primary-color);
  color: var(--white-color);
}

.section-divider:hover::after {
  border-top-color: var(--primary-color);
  filter: drop-shadow(0 6px 12px rgba(32, 89, 165, 0.5));
}

.feature-three-columns {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 600px;
}

.feature-column-left,
.feature-column-right {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.feature-column-center {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.feature-center-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-worker-img {
  width: 100%;
  max-width: 1200px;
  height: 800px;
  object-fit: cover;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.feature-item-center {
  text-align: center;
  padding: 2rem;
  background: var(--white-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease !important;
  position: relative;
  transform: translateY(0);
}

.feature-item-center:hover {
  transform: translateY(-5px) !important;
  box-shadow: var(--shadow-medium) !important;
  transition: all 0.3s ease !important;
}

.feature-item-center:hover .feature-hex-icon {
  background: #3A3A3A !important;
}

.feature-item-center:hover .feature-item-title {
  color: #3A3A3A !important;
}

.feature-hex-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--mb-1);
  transition: var(--transition);
}

.feature-item-center:hover .feature-hex-icon {
  transform: scale(1.1) !important;
  background: #3A3A3A !important;
}

.feature-hex-icon i {
  font-size: 2rem;
  color: var(--white-color);
}

.feature-item-title {
  font-size: var(--normal-font-size);
  color: var(--primary-color);
  margin-bottom: var(--mb-1);
  font-weight: var(--font-medium);
}

.feature-item-description {
  color: var(--gray-color);
  line-height: 1.6;
  font-size: var(--small-font-size);
}

/* ===== SERVICES SECTION ===== */
.services {
  background: var(--light-color);
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: var(--mb-3);
}

.service-card {
  background: var(--white-color);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}



.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-dark);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--mb-1-5);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: #3A3A3A;
}

.service-card:hover .service-title {
  color: #3A3A3A;
}

.service-icon i {
  font-size: 2rem;
  color: var(--white-color);
}

.service-title {
  font-size: var(--normal-font-size);
  color: var(--primary-color);
  margin-bottom: var(--mb-1);
  font-weight: var(--font-medium);
  transition: var(--transition);
}

.service-description {
  color: var(--gray-color);
  line-height: 1.6;
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-1-5);
}

.service-features {
  text-align: left;
  margin-bottom: var(--mb-1-5);
}

.service-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--mb-0-5);
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: var(--primary-color);
  font-weight: var(--font-medium);
  text-align: left;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: var(--font-bold);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--mb-0-25);
  color: var(--primary-color);
  font-weight: var(--font-medium);
  transition: var(--transition);
}

.service-link:hover {
  gap: var(--mb-0-5);
}

/* ===== PROJECTS SECTION ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.project-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.project-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-dark);
}

.project-image-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-item:hover .project-image {
  transform: scale(1.1);
}

.project-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white-color);
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.project-item:hover .project-hover {
  transform: translateY(0);
}

.project-hover-content {
  text-align: center;
}

.project-hover-title {
  font-size: 1.25rem;
  font-weight: var(--font-semi-bold);
  margin-bottom: 0.5rem;
  color: var(--white-color);
}

.project-hover-subtitle {
  font-size: 0.9rem;
  color: var(--accent-color);
  font-weight: var(--font-medium);
}

/* ===== TEAM SECTION ===== */
.team {
  background: var(--light-color);
}

.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: var(--mb-3);
}

.team-card {
  background: var(--white-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-dark);
}

.team-img-container {
  position: relative;
  overflow: hidden;
}

.team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  /* Imagen estática - sin animación de zoom */
}

.team-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(58, 58, 58, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover .team-hover {
  opacity: 1;
}

.team-hover-content {
  text-align: center;
  color: var(--white-color);
  padding: 1.5rem;
}

.team-hover-name {
  font-size: 1.25rem;
  font-weight: var(--font-semi-bold);
  margin-bottom: 0.5rem;
  color: var(--white-color);
}

.team-hover-role {
  color: var(--accent-color);
  font-weight: var(--font-medium);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.team-hover-description {
  color: var(--white-color);
  line-height: 1.6;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.team-hover-social {
  display: flex;
  justify-content: center;
  gap: var(--mb-0-5);
}

.team-hover-social .social-link {
  width: 35px;
  height: 35px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 1rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.team-hover-social .social-link:hover {
  background: var(--white-color);
  color: var(--primary-color);
  transform: scale(1.1);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-two-columns {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

/* Partner Column */
.partner-column {
  text-align: center;
}

.partner-column .section-title {
  font-size: 1.75rem;
  font-weight: var(--font-medium);
  margin-bottom: 4rem;
  color: var(--dark-color);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.partner-logo {
  background: var(--white-color);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-dark);
}

.partner-img {
  max-width: 100%;
  max-height: 60px;
  filter: grayscale(100%);
  transition: var(--transition);
}

.partner-logo:hover .partner-img {
  filter: grayscale(0%);
}

/* Clients Column */
.clients-column {
  text-align: center;
}

.clients-column .section-title {
  font-size: 1.75rem;
  font-weight: var(--font-medium);
  margin-bottom: 4rem;
  color: var(--dark-color);
}

.clients-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 3rem;
}

.clients-slider {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 2rem;
}

.clients-slide {
  display: none;
  background: var(--white-color);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
  flex: 1;
  min-width: 0;
}

.clients-slide.active {
  display: flex;
}

.client-testimonial {
  text-align: left;
}

.client-text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--gray-color);
  margin-bottom: 1.5rem;
  font-style: italic;
  background: #f8f9fa;
  padding: 1.25rem;
  border-radius: var(--border-radius);
}



.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gray-light);
}

.client-details {
  flex: 1;
}

.client-name {
  font-size: var(--h4-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 0.25rem;
  color: var(--dark-color);
}

.client-role {
  color: var(--accent-color);
  font-size: var(--small-font-size);
  margin-bottom: 0.5rem;
}

.client-rating {
  display: flex;
  gap: 0.25rem;
}

.client-rating i {
  color: #ffd700;
  font-size: 1rem;
}

.client-rating i.bx-star {
  color: var(--gray-light);
}

.clients-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.clients-carousel:hover .clients-controls {
  opacity: 1;
}

.client-btn {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white-color);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  pointer-events: auto;
  margin: 0 1rem;
}

.client-btn:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
}

.clients-indicators {
  display: flex;
  justify-content: center;
  gap: var(--mb-0-5);
  margin-top: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.clients-carousel:hover .clients-indicators {
  opacity: 1;
}

.client-indicator {
  width: 12px;
  height: 12px;
  background: #b5b5b5;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.client-indicator.active {
  background: var(--primary-color);
}

/* ===== CONTACT SECTION ===== */
.contact {
  background: var(--light-color);
}

.contact-container {
  display: grid;
  grid-template-columns: 4fr 1fr;
  gap: 4rem;
  margin-top: var(--mb-3);
}

.contact-map {
  width: 100%;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  text-align: left;
  align-items: flex-start;
}

.contact-info .section-title {
  font-size: 24px;
  margin-bottom: 4rem;
}

.contact-title {
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 12rem;
}

.contact-description {
  color: var(--gray-color);
  margin-bottom: var(--mb-2-5);
  line-height: 1.6;
}

.contact-items {
  margin-bottom: var(--mb-2-5);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-items .contact-item {
  margin-bottom: 50px !important;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--mb-1);
  margin-bottom: 50px !important;
  text-align: left;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.2rem;
  color: var(--white-color);
}

.contact-item-title {
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-25);
  text-align: left;
}

.contact-item-text {
  color: var(--gray-color);
  line-height: 1.5;
  text-align: left;
}

.contact-phone-link {
  color: var(--gray-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact-phone-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.contact-social {
  margin-top: var(--mb-2);
}

.social-title {
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-1);
}

.social-links {
  display: flex;
  gap: var(--mb-0-75);
}

.contact-form-container {
  background: var(--white-color);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--mb-1-5);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-label {
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-0-5);
  color: var(--dark-color);
}

.form-input {
  padding: 1rem;
  border: 2px solid var(--gray-light);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: var(--normal-font-size);
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(32, 89, 165, 0.1);
}

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

.form-submit {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: var(--mb-1);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--secondary-color);
  color: var(--white-color);
  padding: 1.5rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.footer-brand {
  font-size: 1.2rem;
  font-weight: var(--font-bold);
  color: var(--white-color);
  text-align: left;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-link {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--white-color);
}

.footer-copyright {
  color: #cccccc;
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.footer-social-link {
  color: #cccccc;
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social-link:hover {
  color: var(--white-color);
}

.footer-support {
  color: #cccccc;
  font-size: 0.8rem;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  right: 1.5rem;
  bottom: -100%;
  background: #cccccc;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 1.2rem;
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
  z-index: var(--z-tooltip);
}

.scroll-top:hover {
  background: var(--primary-color);
  transform: scale(1.1);
}

.show-scroll {
  bottom: 3rem;
}

/* ===== IMAGE MODAL ===== */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.image-modal.show-modal {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.modal-close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 40px;
  height: 40px;
  background: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-color);
  font-size: 1.5rem;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.modal-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--border-radius);
}

/* ===== MEDIA QUERIES ===== */
/* Large devices */
@media screen and (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  
  .hero-container,
  .about-container,
  .contact-container {
    gap: 2rem;
  }
}

/* Medium devices */
@media screen and (max-width: 968px) {
  .container {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .hero-container,
  .about-container,
  .contact-container {
    gap: 1.5rem;
  }
}

/* Tablet devices - Our Partner and Happy Clients vertical layout */
@media screen and (min-width: 577px) and (max-width: 968px) {
  .testimonials-two-columns {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .partner-column,
  .clients-column {
    text-align: center;
  }
  
  .partner-column .section-title,
  .clients-column .section-title {
    margin-bottom: 2rem;
  }
  
  /* Team section - 2x2 grid for tablet */
  .team-container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
  }
}

/* Medium devices */
@media screen and (max-width: 968px) {
  /* Header responsive */
  /* Hide header top completely in mobile */
  .header-top {
    display: none !important;
  }
  
  /* Hide header top content in mobile */
  .header-top-content {
    display: none !important;
  }
  
  .header-contact {
    flex-direction: column;
    gap: var(--mb-0-5);
  }
  
  .nav-logo .logo-img {
    height: 97.5px;
  }
  
  .navbar {
    padding: 0 1rem;
    justify-content: space-between;
  }
  
  .nav-logo {
    flex: 1;
    max-width: 60%;
  }
  
  .nav-right {
    position: fixed !important;
    top: -100%;
    left: 0;
    width: 100% !important;
    height: 100vh !important;
    background: var(--white-color);
    padding: 2rem 0;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    flex-direction: column !important;
    gap: var(--mb-2);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    flex: 0;
    max-width: 0;
    overflow: hidden;
    display: none;
    justify-content: center;
    align-items: center;
  }
  
  .nav-menu {
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-align: center;
    width: 100%;
    height: 100%;
    z-index: 99999;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: center;
    width: 100%;
    margin-bottom: 6rem;
    max-width: 400px;
    z-index: 99999;
    position: relative;
  }

  .nav-list .nav-link {
    font-size: 1.04rem;
    color: var(--dark-color) !important;
    z-index: 99999;
    position: relative;
  }

  /* Mobile Account */
  .mobile-account {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 0 2rem;
    width: 100%;
    max-width: 400px;
  }

  .account-link {
    color: var(--dark-color);
    text-decoration: none;
    font-size: 0.9rem;
    text-align: left;
    transition: var(--transition);
  }

  .account-link:hover {
    color: var(--primary-color);
  }

  /* Mobile Social */
  .mobile-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 400px;
  }

  .social-icon {
    color: var(--dark-color);
    font-size: 1.2rem;
    transition: var(--transition);
  }

  .social-icon:hover {
    color: var(--primary-color);
  }

  /* Mobile Search */
  .mobile-search {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin: 0 2rem;
    width: 100%;
    max-width: 400px;
  }

  .search-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.9rem;
    color: var(--dark-color);
  }

  .search-input::placeholder {
    color: #999;
  }

  .search-btn {
    background: none;
    border: none;
    color: var(--dark-color);
    font-size: 1rem;
    cursor: pointer;
    padding: 0;
    margin-left: 0.5rem;
  }
  
  .nav-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 99999;
    width: auto;
    flex-shrink: 0;
  }
  
  .nav-toggle {
    display: flex !important;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    z-index: 99999;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
  }
  
  .nav-toggle:hover {
    color: #3A3A3A;
  }
  
  /* Mobile Menu Header */
  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 400px;
    z-index: 99999;
    position: relative;
  }

  .mobile-brand {
    font-size: 1.2rem;
    font-weight: var(--font-bold);
    color: var(--dark-color);
    text-transform: uppercase;
    text-align: center;
    flex: 1;
  }

  .mobile-cart {
    font-size: 1.2rem;
    color: var(--primary-color);
    cursor: pointer;
  }

  .nav-close {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
  }
  
  .nav-close:hover {
    color: #3A3A3A;
  }
  
  .hero {
    height: 80vh;
  }
  
  .hero-content {
    text-align: center;
    max-width: 100%;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .map-container {
    height: 300px;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .features-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

  .feature-three-columns {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .feature-column-left,
  .feature-column-right {
    gap: 2rem;
  }

  .feature-column-center {
    order: -1;
    margin-bottom: 2rem;
  }

  .center-worker-img {
    width: 280px;
  }

  .services-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .team-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

/* Small devices */
@media screen and (max-width: 576px) {
  /* Header small devices */
  .header-contact {
    display: none;
  }
  
  .header-social {
    gap: var(--mb-0-5);
  }
  
  .nav-logo .logo-img {
    height: 82.5px;
  }
  
  .navbar {
    padding: 0 1rem;
  }
  
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .hero {
    height: 70vh;
  }
  
  .hero-title {
    font-size: var(--h1-font-size);
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: var(--mb-1);
  }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--mb-1);
  }
  
  .features-container,
  .feature-three-columns,
  .services-container,
  .stats-container,
  .projects-grid,
  .team-container,
  .testimonials-two-columns {
    grid-template-columns: 1fr;
  }
  
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .clients-controls {
    display: none;
  }
  
  .partner-logo {
    padding: 1rem;
    min-height: 80px;
  }
  
  .partner-img {
    max-height: 40px;
  }
  
  .clients-carousel {
    max-width: 100%;
  }
  
  .clients-slider {
    flex-direction: column;
    gap: 1rem;
  }
  
  .clients-slide {
    flex: none;
  }
  
  .client-text {
    padding: 1rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  /* Footer mobile responsive */
  .footer {
    padding: 1rem 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
    font-size: 1rem;
  }

  .footer-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

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

  .footer-copyright,
  .footer-support {
    text-align: center;
  }
} 