:root {
  /* === CORES PRINCIPAIS === */
  --color-primary: #0a2433; /* Azul profundo - fundo principal */
  --color-primary-variant: #0f3e5c; /* Azul médio - gradientes e hovers */
  --color-accent: #00b4d8; /* Azul ciano - realces e detalhes modernos */

  /* === TEXTO === */
  --color-text-primary: #ffffff; /* Títulos e textos principais */
  --color-text-secondary: #b0bec5; /* Subtítulos, descrições e textos suaves */

  /* === ESTADOS === */
  --color-success: #48e810; /* Verde neon - sucesso e botões de ação */
  --color-error: #e53935; /* Vermelho vibrante - mensagens de erro */

  /* === SUPORTE === */
  --color-background: #061c29; /* Fundo de seções alternadas */
  --color-border: #1e3a4b; /* Bordas, divisores e sombras sutis */

  /* === GRADIENTES === */
  --gradient-primary: linear-gradient(135deg, #000000 0%, #0a2433 40%, #0f3e5c 100%);
  --gradient-accent: linear-gradient(135deg, #00b4d8 0%, #48e810 100%);
}

/* === RESET E CONFIGURAÇÕES BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-primary);
}

/* === REMOVE BROWSER DEFAULT DROPDOWN ARROWS === */
select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  -ms-appearance: none !important;
}

/* Remove Internet Explorer 10+ arrow */
select::-ms-expand {
  display: none !important;
}

/* Remove Firefox arrow */
select {
  text-indent: 1px;
  text-overflow: '';
}

/* Force remove all browser-specific dropdown arrows (but allow custom ones) */
select:not(.form-select),
input[type="select"] {
  background-image: none !important;
}

/* Safari specific fixes */
@media screen and (-webkit-min-device-pixel-ratio:0) {
  select,
  .form-select {
    -webkit-appearance: none !important;
    appearance: none !important;
  }
}

/* Override any inherited dropdown styles */
select:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-accent);
}

/* === LANGUAGE SELECTOR === */
.language-selector {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.75rem 1rem;
  color: var(--color-text-primary);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.language-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.language-btn.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.language-btn.active .language-arrow {
  transform: rotate(180deg);
}

.flag-icon {
  font-size: 1.2rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.language-text {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.language-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: rgba(20, 30, 48, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 0.5rem;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.language-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--color-text-primary);
}

.language-option:hover {
  background: rgba(0, 180, 216, 0.1);
  transform: translateX(4px);
}

.language-option.active {
  background: var(--color-accent);
  color: var(--color-primary);
}

.language-option .language-name {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Language selector animations */
@keyframes languageSlideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.language-selector {
  animation: languageSlideIn 0.6s ease-out 0.3s both;
}

/* Loading animation for language change */
body.loading {
  transition: opacity 0.3s ease;
}

.language-option:active {
  transform: translateX(4px) scale(0.98);
}

/* === TIPOGRAFIA - SORA FONT WEIGHTS === */
.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

/* === HERO SECTION === */
.hero {
  min-height: 100vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  z-index: 2;
}

/* === HERO CONTENT (ESQUERDA) === */
.hero-content {
  text-align: left;
  max-width: 600px;
}

/* === HERO ANIMATION (DIREITA) === */
.hero-animation {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  width: 100%;
  padding: 2rem;
}

/* === LOTTIE ANIMATION STYLING === */
#hero-lottie-animation {
  border-radius: 20px;
  filter: drop-shadow(0 10px 30px rgba(0, 180, 216, 0.3));
  transition: all 0.3s ease;
  max-height: 600px;
  object-fit: contain;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.05) 0%, transparent 70%);
  padding: 2rem;
}

#hero-lottie-animation:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 15px 40px rgba(0, 180, 216, 0.4));
}

/* Animação de entrada para o Lottie */
@keyframes lottieSlideIn {
  from {
    opacity: 0;
    transform: translateX(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.hero-animation {
  animation: lottieSlideIn 1s ease-out forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

/* === RESPONSIVE HERO === */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-content {
    text-align: center;
    max-width: 100%;
    order: 1;
  }
  
  .hero-animation {
    order: 2;
    min-height: 400px;
    margin-top: 2rem;
    padding: 1rem;
  }

  #hero-lottie-animation {
    width: 100% !important;
    height: 400px !important;
    max-width: 500px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 1rem;
  }
  
  .hero-container {
    gap: 2rem;
  }
  
  .hero-animation {
    min-height: 300px;
    padding: 0.5rem;
  }

  #hero-lottie-animation {
    width: 100% !important;
    height: 300px !important;
    max-width: 350px;
  }
}

/* === BADGE === */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: rgba(72, 232, 16, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(72, 232, 16, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-success);
}

/* === PULSE ANIMATION === */
.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-success);
  border-radius: 50%;
  position: relative;
  animation: pulse 2s ease-in-out infinite;
}

.pulse-dot::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 16px;
  height: 16px;
  background-color: var(--color-success);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse-ring 2s ease-in-out infinite;
}

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

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* === HERO TÍTULO === */
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--color-text-primary) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === HERO PARÁGRAFO === */
.hero-description {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* === BOTÃO WHATSAPP === */
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--color-border) 0%, var(--color-primary-variant) 100%);
  color: var(--color-text-primary);
  padding: 1rem 2rem;
  border: 1px solid var(--color-accent);
  border-radius: 50px;
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.whatsapp-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  transition: left 0.3s ease;
  z-index: -1;
}

.whatsapp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 180, 216, 0.3);
  color: var(--color-primary);
}

.whatsapp-button:hover::before {
  left: 0;
}

.whatsapp-button:active {
  transform: translateY(0);
}

.whatsapp-button i {
  font-size: 1.2rem;
}

/* === SCROLL INDICATOR === */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  animation: scrollIndicatorFadeIn 1s ease-out 1.5s both;
}

.scroll-indicator:hover {
  transform: translateX(-50%) scale(1.1);
  color: var(--primary-color);
}

.scroll-arrow {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scrollBounce 2s infinite;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.scroll-indicator:hover .scroll-arrow {
  border-color: var(--primary-color);
  background: rgba(79, 70, 229, 0.2);
  box-shadow: 0 0 20px rgba(79, 70, 229, 0.3);
}

.scroll-arrow i {
  font-size: 1.2rem;
  animation: scrollArrowMove 2s infinite;
}

.scroll-text {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.scroll-indicator:hover .scroll-text {
  opacity: 1;
}

/* === SCROLL INDICATOR ANIMATIONS === */
@keyframes scrollIndicatorFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

@keyframes scrollArrowMove {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(2px);
  }
  60% {
    transform: translateY(1px);
  }
}

/* === RESPONSIVE SCROLL INDICATOR === */
@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 1.5rem;
  }
  
  .scroll-arrow {
    width: 36px;
    height: 36px;
  }
  
  .scroll-arrow i {
    font-size: 1rem;
  }
  
  .scroll-text {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .scroll-indicator {
    bottom: 1rem;
  }
  
  .scroll-arrow {
    width: 32px;
    height: 32px;
  }
  
  .scroll-arrow i {
    font-size: 0.875rem;
  }
  
  .scroll-text {
    font-size: 0.7rem;
  }
}

/* === BIO SECTION === */
.bio-section {
  background: var(--color-background);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.bio-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.bio-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.bio-content {
  text-align: center;
  position: relative;
}

/* === BIO HEADER === */
.bio-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}

.bio-logo {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInDown 0.8s ease-out forwards;
  animation-delay: 0.1s;
}

.company-logo {
  width: 120px;
  height: auto;
  filter: brightness(1.1) contrast(1.05);
  transition: all 0.3s ease;
}

.company-logo:hover {
  transform: scale(1.05);
  filter: brightness(1.2) contrast(1.1);
}

/* === BIO TÍTULO === */
.bio-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 0;
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.3s;
}

.bio-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

/* === BIO TEXTO === */
.bio-text {
  max-width: 800px;
  margin: 0 auto;
}

.bio-paragraph {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.bio-paragraph:nth-child(1) { animation-delay: 0.2s; }
.bio-paragraph:nth-child(2) { animation-delay: 0.4s; }
.bio-paragraph:nth-child(3) { animation-delay: 0.6s; }

/* === ANIMAÇÕES BIO === */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === SERVICES SECTION === */
.services-section {
  background: var(--color-primary);
  padding: 5rem 2rem;
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* === SERVICES HEADER === */
.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.services-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.services-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  margin-top: 2rem;
  line-height: 1.6;
}

/* === SERVICES GRID === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* === SERVICE CARDS === */
.service-card {
  background: linear-gradient(135deg, var(--color-background) 0%, var(--color-border) 100%);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 180, 216, 0.2);
  border-color: var(--color-accent);
}

/* Service modal trigger visual feedback */
.service-card.service-modal-trigger:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 50px rgba(0, 180, 216, 0.3);
  border-color: var(--primary-color);
}

/* === SERVICE HOVER EFFECT === */
.service-hover-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.1) 0%, rgba(72, 232, 16, 0.1) 100%);
  transition: left 0.4s ease;
  z-index: 1;
}

.service-card:hover .service-hover-effect {
  left: 0;
}

/* === SERVICE ICONS === */
.service-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-success) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(0, 180, 216, 0.4);
}

.service-icon {
  font-size: 2rem;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

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

/* === SERVICE CONTENT === */
.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: var(--color-accent);
}

.service-description {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.service-card:hover .service-description {
  color: var(--color-text-primary);
}

/* === SERVICES ANIMATIONS === */
.service-card {
  opacity: 0;
  transform: translateY(50px);
  animation: serviceSlideIn 0.8s ease-out forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes serviceSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === PORTFOLIO SECTION === */
.portfolio-section {
  background: var(--color-background);
  padding: 5rem 2rem;
  position: relative;
}

.portfolio-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.portfolio-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* === PORTFOLIO HEADER === */
.portfolio-header {
  text-align: center;
  margin-bottom: 3rem;
}

.portfolio-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.portfolio-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.portfolio-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 2rem auto 0;
  line-height: 1.6;
}

/* === PORTFOLIO FILTERS === */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 2px solid var(--color-border);
  color: var(--color-text-secondary);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  transition: left 0.3s ease;
  z-index: -1;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--color-accent);
  color: var(--color-text-primary);
}

.filter-btn.active::before,
.filter-btn:hover::before {
  left: 0;
}

.filter-btn.active {
  color: var(--color-accent);
}

/* === PORTFOLIO GRID === */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* === PORTFOLIO ITEMS === */
.portfolio-item {
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  animation: portfolioItemShow 0.8s ease-out forwards;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-variant) 100%);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  position: relative;
}

.portfolio-item:nth-child(1) { animation-delay: 0.1s; }
.portfolio-item:nth-child(2) { animation-delay: 0.2s; }
.portfolio-item:nth-child(3) { animation-delay: 0.3s; }
.portfolio-item:nth-child(4) { animation-delay: 0.4s; }
.portfolio-item:nth-child(5) { animation-delay: 0.5s; }
.portfolio-item:nth-child(6) { animation-delay: 0.6s; }

.portfolio-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.05) 0%, rgba(72, 232, 16, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 180, 216, 0.2);
  border-color: var(--color-accent);
}

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

.portfolio-content {
  padding: 2rem;
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.portfolio-item:hover .portfolio-content {
  transform: none;
}

/* === PORTFOLIO PROJECT INFO === */
.portfolio-project-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.portfolio-project-desc {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

/* === TECH TAGS === */
.portfolio-tech {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.tech-tag {
  background: var(--gradient-accent);
  color: var(--color-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* === PORTFOLIO ACTIONS === */
.portfolio-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: auto;
}

.portfolio-btn {
  background: var(--gradient-accent);
  color: var(--color-primary);
  border: none;
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.portfolio-btn:hover {
  background: linear-gradient(135deg, var(--color-success) 0%, var(--color-accent) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(72, 232, 16, 0.3);
}

.portfolio-btn i {
  font-size: 1rem;
}

/* === PORTFOLIO ANIMATIONS === */
@keyframes portfolioItemShow {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* === PORTFOLIO EMPTY STATE === */
.portfolio-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
  border-radius: 16px;
  border: 2px dashed rgba(99, 102, 241, 0.2);
  margin: 20px 0;
  animation: portfolioEmptyFadeIn 0.6s ease-out;
}

.portfolio-empty-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  animation: portfolioIconFloat 3s ease-in-out infinite;
}

.portfolio-empty-icon i {
  font-size: 36px;
  color: white;
}

.portfolio-empty-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 12px;
  font-family: 'Sora', sans-serif;
}

.portfolio-empty-message {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

/* Portfolio empty animations */
@keyframes portfolioEmptyFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive portfolio empty state */
@media (max-width: 768px) {
  .portfolio-empty {
    padding: 40px 20px;
  }
  
  .portfolio-empty-icon {
    width: 60px;
    height: 60px;
  }
  
  .portfolio-empty-icon i {
    font-size: 28px;
  }
  
  .portfolio-empty-title {
    font-size: 20px;
  }
  
  .portfolio-empty-message {
    font-size: 14px;
  }
}

/* === TESTIMONIALS SECTION === */
.testimonials-section {
  background: var(--color-primary);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* === TESTIMONIALS HEADER === */
.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.testimonials-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.testimonials-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 2rem auto 0;
  line-height: 1.6;
}

/* === TESTIMONIALS GRID === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

/* === TESTIMONIAL CARDS === */
.testimonial-card {
  background: linear-gradient(135deg, var(--color-background) 0%, var(--color-border) 100%);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  animation: testimonialSlideIn 0.8s ease-out forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.testimonial-card:nth-child(6) { animation-delay: 0.6s; }

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 50px rgba(0, 180, 216, 0.25);
  border-color: var(--color-accent);
}

/* === TESTIMONIAL DECORATION === */
.testimonial-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.1) 0%, rgba(72, 232, 16, 0.1) 100%);
  border-radius: 0 20px 0 100px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonial-card:hover .testimonial-decoration {
  opacity: 1;
}

/* === RATING SYSTEM === */
.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
}

.stars i {
  font-size: 1.2rem;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.stars i.star-empty {
  color: var(--color-border);
  text-shadow: none;
}

.testimonial-card:hover .stars i {
  transform: scale(1.1);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.testimonial-card:hover .stars i.star-empty {
  text-shadow: none;
}

.rating-number {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-accent);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-success) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === TESTIMONIAL TEXT === */
.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  position: relative;
  font-style: italic;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: var(--color-accent);
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  opacity: 0.3;
  font-family: serif;
}

/* === TESTIMONIAL AUTHOR === */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-accent);
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
  transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.5);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
}

.author-position {
  font-size: 0.9rem;
  color: var(--color-accent);
  font-weight: 500;
}

/* === TESTIMONIALS STATS === */
.testimonials-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--color-border);
}

.stats-item {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.1) 0%, rgba(72, 232, 16, 0.05) 100%);
  border-radius: 16px;
  border: 1px solid rgba(0, 180, 216, 0.2);
  transition: all 0.3s ease;
}

.stats-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.2);
  border-color: var(--color-accent);
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stats-label {
  font-size: 1rem;
  color: var(--color-text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === TESTIMONIALS ANIMATIONS === */
@keyframes testimonialSlideIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* === CONTACT FORM SECTION === */
.contact-section {
  background: var(--color-background);
  padding: 5rem 2rem;
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* === CONTACT HEADER === */
.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.contact-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.contact-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 2rem auto 0;
  line-height: 1.6;
}

/* === CONTACT FORM WRAPPER === */
.contact-form-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* === CONTACT FORM === */
.contact-form {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-border) 100%);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
}

/* === FORM ROWS === */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

/* === FORM GROUPS === */
.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

#otherSubjectGroup {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-label i {
  color: var(--color-accent);
  font-size: 1rem;
}

/* === FORM INPUTS === */
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--color-background);
  border: 2px solid var(--color-border);
  border-radius: 12px;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  color: var(--color-text-primary);
  transition: all 0.3s ease;
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-secondary);
  opacity: 0.7;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
  transform: translateY(-2px);
}

.form-select {
  cursor: pointer;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  -ms-appearance: none !important;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300b4d8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  background-size: 1rem !important;
  padding-right: 3rem !important;
}

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

/* === CHECKBOX STYLING === */
.checkbox-group {
  margin: 2rem 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  line-height: 1.5;
}

.form-checkbox {
  display: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-background);
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-custom::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: var(--color-primary);
  font-weight: bold;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.form-checkbox:checked + .checkbox-custom {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.form-checkbox:checked + .checkbox-custom::after {
  transform: translate(-50%, -50%) scale(1);
}

.checkbox-text {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* === FORM VALIDATION === */
.form-error {
  display: block;
  color: var(--color-error);
  font-size: 0.8rem;
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

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

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

/* === SUBMIT BUTTON === */
.form-submit {
  margin-top: 2rem;
}

.submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--gradient-accent);
  color: var(--color-primary);
  border: none;
  padding: 1.25rem 2rem;
  border-radius: 50px;
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 180, 216, 0.4);
}

.submit-btn:active {
  transform: translateY(-1px);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* === BUTTON LOADER === */
.btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.submit-btn.loading .btn-loader {
  opacity: 1;
}

.submit-btn.loading span,
.submit-btn.loading i {
  opacity: 0;
}

.loader-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid var(--color-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* === CONTACT INFO === */
.contact-info {
  background: linear-gradient(135deg, var(--color-border) 0%, var(--color-primary-variant) 100%);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  height: fit-content;
  position: sticky;
  top: 2rem;
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 2rem;
  text-align: center;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(0, 180, 216, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(0, 180, 216, 0.2);
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  transform: translateX(5px);
  background: rgba(0, 180, 216, 0.15);
  border-color: var(--color-accent);
}

.contact-info-item i {
  color: var(--color-accent);
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.contact-info-item span {
  color: var(--color-text-primary);
  font-weight: 500;
}

/* === FORM ANIMATIONS === */
.contact-form {
  opacity: 0;
  transform: translateY(50px);
  animation: formSlideIn 0.8s ease-out 0.3s forwards;
}

.contact-info {
  opacity: 0;
  transform: translateY(50px);
  animation: formSlideIn 0.8s ease-out 0.5s forwards;
}

@keyframes formSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === FOOTER SECTION === */
.footer {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-background) 100%);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* === FOOTER CONTENT === */
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 4rem 2rem 2rem;
}

/* === COMPANY INFO === */
.footer-section.company-info {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  width: 120px;
  height: auto;
  filter: brightness(1.1) contrast(1.05);
  transition: all 0.3s ease;
}

.footer-logo-img:hover {
  transform: scale(1.1);
  filter: brightness(1.2) contrast(1.1);
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text-primary);
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* === SOCIAL LINKS === */
.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 180, 216, 0.4);
}

/* === FOOTER SECTIONS === */
.footer-section {
  animation: footerSlideUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

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

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

/* === FOOTER LISTS === */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 0.75rem;
}

.footer-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-left: 20px;
}

.footer-link::before {
  content: '▶';
  position: absolute;
  left: 0;
  font-size: 0.6rem;
  color: var(--color-accent);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--color-text-primary);
  padding-left: 25px;
}

.footer-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* === CONTACT INFO FOOTER === */
.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-contact-item i {
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-top: 2px;
  width: 20px;
  text-align: center;
}

.contact-text {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.contact-value {
  font-size: 0.95rem;
  color: var(--color-text-primary);
  font-weight: 500;
}

/* === FOOTER WHATSAPP === */
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gradient-accent);
  color: var(--color-primary);
  padding: 0.875rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 180, 216, 0.4);
}

.footer-whatsapp i {
  font-size: 1.1rem;
}

/* === NEWSLETTER === */
.footer-newsletter {
  background: linear-gradient(135deg, var(--color-border) 0%, var(--color-primary-variant) 100%);
  margin: 0 2rem;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.footer-newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
}

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

.newsletter-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.newsletter-description {
  color: var(--color-text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-input-group {
  display: flex;
  gap: 0.75rem;
}

.newsletter-input {
  flex: 1;
  padding: 1rem 1.25rem;
  background: var(--color-background);
  border: 2px solid var(--color-border);
  border-radius: 50px;
  font-family: 'Sora', sans-serif;
  color: var(--color-text-primary);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

.newsletter-input::placeholder {
  color: var(--color-text-secondary);
  opacity: 0.7;
}

.newsletter-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-accent);
  color: var(--color-primary);
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 180, 216, 0.4);
}

.newsletter-error {
  color: var(--color-error);
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.newsletter-error.show {
  opacity: 1;
}

/* === FOOTER BOTTOM === */
.footer-bottom {
  background: var(--color-background);
  padding: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.legal-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: var(--color-accent);
}

.separator {
  color: var(--color-border);
  font-weight: bold;
}

.footer-made-by {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.heart-icon {
  color: var(--color-error);
  animation: heartbeat 2s ease-in-out infinite;
}

/* === FLOATING ELEMENTS === */
.footer-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.floating-element {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  opacity: 0.3;
  animation: float var(--duration) ease-in-out infinite;
  animation-delay: var(--delay);
}

.floating-element:nth-child(1) {
  top: 20%;
  left: 10%;
}

.floating-element:nth-child(2) {
  top: 60%;
  right: 20%;
}

.floating-element:nth-child(3) {
  bottom: 30%;
  left: 70%;
}

/* === ANIMATIONS === */
@keyframes footerSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.8;
  }
}

/* === BACK TO TOP BUTTON === */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  color: var(--color-primary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 180, 216, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--color-success) 0%, var(--color-accent) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(72, 232, 16, 0.4);
}

.back-to-top:active {
  transform: scale(0.95);
}

.back-to-top i {
  transition: transform 0.3s ease;
}

.back-to-top:hover i {
  transform: translateY(-2px);
}

/* === RESPONSIVE ADJUSTMENTS === */
@media (max-width: 1400px) {
  .dev-animation {
    max-width: 1200px;
    padding: 3rem 2rem;
  }
  
  .input-languages {
    margin-right: 6rem;
  }
  
  .output-solutions {
    margin-left: 6rem;
  }
}

@media (max-width: 1200px) {
  .dev-animation {
    max-width: 1000px;
  }
  
  .input-languages {
    margin-right: 4rem;
  }
  
  .output-solutions {
    margin-left: 4rem;
  }
}

@media (max-width: 1000px) {
  .dev-animation {
    max-width: 800px;
  }
  
  .input-languages {
    margin-right: 3rem;
  }
  
  .output-solutions {
    margin-left: 3rem;
  }
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
  /* Language Selector Mobile */
  .language-selector {
    top: 15px;
    right: 15px;
  }

  .language-btn {
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
  }

  .language-dropdown {
    min-width: 140px;
    right: 0;
  }

  .language-option {
    padding: 0.6rem;
  }

  .hero {
    padding: 1rem;
  }
  
  .hero-badge {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    gap: 0.6rem;
  }
  
  .whatsapp-button {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  }

  /* === BIO RESPONSIVE === */
  .bio-section {
    padding: 3rem 1rem;
  }

  .bio-header {
    margin-bottom: 2rem;
  }

  .bio-logo {
    margin-bottom: 1.5rem;
  }

  .company-logo {
    width: 80px;
  }

  .bio-paragraph {
    margin-bottom: 1.5rem;
    text-align: left;
  }

  /* === SERVICES RESPONSIVE === */
  .services-section {
    padding: 3rem 1rem;
  }

  .services-header {
    margin-bottom: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
    text-align: left;
  }

  .service-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 0 1rem 0;
  }

  .service-icon {
    font-size: 1.5rem;
  }

  .service-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .service-description {
    font-size: 0.95rem;
  }

  /* === PORTFOLIO RESPONSIVE === */
  .portfolio-section {
    padding: 3rem 1rem;
  }

  .portfolio-header {
    margin-bottom: 2rem;
  }

  .portfolio-filters {
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

  .filter-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .portfolio-item {
    margin: 0;
  }

  .portfolio-content {
    padding: 1.5rem;
    min-height: 240px;
  }

  .portfolio-project-title {
    font-size: 1.25rem;
  }

  .portfolio-project-desc {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .portfolio-actions {
    flex-direction: column;
    gap: 0.8rem;
  }

  .portfolio-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
    min-height: 44px;
    font-weight: 600;
    border-radius: 20px;
  }

  .portfolio-tech {
    margin-bottom: 1rem;
  }

  .tech-tag {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
  }

  .portfolio-btn i {
    font-size: 14px;
    margin-right: 8px;
  }

  /* === TESTIMONIALS RESPONSIVE === */
  .testimonials-section {
    padding: 3rem 1rem;
  }

  .testimonials-header {
    margin-bottom: 3rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
  }

  .testimonial-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .testimonial-text::before {
    font-size: 3rem;
    top: -0.5rem;
    left: -0.25rem;
  }

  .author-avatar {
    width: 50px;
    height: 50px;
  }

  .author-name {
    font-size: 1rem;
  }

  .author-position {
    font-size: 0.8rem;
  }

  .testimonials-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
  }

  .stats-item {
    padding: 1rem;
  }

  .stats-number {
    font-size: 2rem;
  }

  .stats-label {
    font-size: 0.9rem;
  }

  /* === CONTACT FORM RESPONSIVE === */
  .contact-section {
    padding: 3rem 1rem;
  }

  .contact-header {
    margin-bottom: 3rem;
  }

  .contact-form-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
  }

  .form-label {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }

  .submit-btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .contact-info {
    position: static;
    padding: 2rem 1.5rem;
  }

  .contact-info-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .contact-info-items {
    gap: 1rem;
  }

  .contact-info-item {
    padding: 0.75rem;
  }

  .contact-info-item:hover {
    transform: none;
  }

  .checkbox-label {
    gap: 0.75rem;
  }

  .checkbox-text {
    font-size: 0.8rem;
  }

  /* === FOOTER RESPONSIVE === */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1rem 2rem;
  }

  .footer-section.company-info {
    max-width: none;
    text-align: center;
  }

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

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

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

  .newsletter-input-group {
    flex-direction: column;
  }

  .newsletter-input {
    border-radius: 12px;
  }

  .newsletter-btn {
    justify-content: center;
    border-radius: 12px;
  }

  .footer-newsletter {
    margin: 0 1rem;
    padding: 2rem 1.5rem;
  }

  .footer-bottom {
    padding: 1.5rem 1rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

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

  .footer-contact-items {
    gap: 0.75rem;
  }

  .footer-whatsapp {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
  }

  /* Back to Top Button Mobile */

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

/* === CUSTOM MODAL STYLES (SUBTLE PADDING INCREASES) === */
/* Slight padding increases for modal content while keeping it in view */

#serviceDialog .px-4 {
  padding-left: 1.75rem !important;
  padding-right: 1.75rem !important;
}

#serviceDialog .py-3 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

#serviceDialog .pt-5 {
  padding-top: 2rem !important;
}

#serviceDialog .pb-4 {
  padding-bottom: 1.75rem !important;
}

#serviceDialog .mb-2 {
  margin-bottom: 0.6rem !important;
}

/* Enhanced padding for service modal badges (tech tags) */
#serviceDialog [id*="serviceDialogTech"] span {
  padding: 0.625rem 1.25rem !important;
  font-size: 0.925rem !important;
  font-weight: 600 !important;
  border-radius: 1.25rem !important;
}

/* Enhanced padding for modal buttons */
#serviceDialog .inline-flex {
  padding: 0.875rem 1.75rem !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  border-radius: 0.625rem !important;
}

/* Specific padding for WhatsApp button */
#serviceDialog .bg-green-600 {
  padding: 1rem 2rem !important;
}

/* Specific padding for close button */
#serviceDialog .bg-white.px-3 {
  padding: 0.875rem 1.75rem !important;
}

/* Enhanced padding for features list */
#serviceDialog ul li {
  padding: 0.625rem 0 !important;
  font-size: 0.975rem !important;
  line-height: 1.6 !important;
}

/* Enhanced spacing for modal sections */
#serviceDialog .space-y-1 > * + * {
  margin-top: 0.625rem !important;
}

#serviceDialog .gap-2 {
  gap: 0.875rem !important;
}

/* Enhanced padding for modal header */
#serviceDialog h3 {
  padding-bottom: 0.875rem !important;
  font-size: 1.375rem !important;
}

/* Enhanced padding for modal description */
#serviceDialog .text-sm.text-gray-600 {
  padding: 0.875rem 0 !important;
  font-size: 1.025rem !important;
  line-height: 1.65 !important;
}

/* Enhanced spacing for sections */
#serviceDialog h4 {
  padding-top: 0.875rem !important;
  padding-bottom: 0.625rem !important;
  font-size: 1.075rem !important;
}

/* Custom padding for modal footer */
#serviceDialog .bg-gray-50 {
  padding: 1.75rem !important;
}

#serviceDialog .sm\\:px-6 {
  padding-left: 1.75rem !important;
  padding-right: 1.75rem !important;
}

/* Enhanced icon container */
#serviceDialog .size-12 {
  width: 3.5rem !important;
  height: 3.5rem !important;
}

#serviceDialog .size-10 {
  width: 2.75rem !important;
  height: 2.75rem !important;
}

#serviceDialog .mr-2 {
  margin-right: 1rem !important;
  margin-top: 0.18rem !important;
}

#serviceDialog .ml-1 {
  margin-left: 1rem !important;
}

/* Enhanced modal content area */
#serviceDialog .flex-1 {
  padding-left: 1.25rem !important;
}

/* Responsive adjustments to maintain viewport fit */
@media (max-width: 768px) {
  #serviceDialog .bg-white {
    padding: 1.25rem !important;
  }
  
  #serviceDialog .bg-gray-50 {
    padding: 1.25rem !important;
  }
  
  #serviceDialog .inline-flex {
    padding: 0.75rem 1.25rem !important;
    font-size: 1rem !important;
  }
  
  #serviceDialog [id*="serviceDialogTech"] span {
    padding: 0.5rem 1rem !important;
    font-size: 0.875rem !important;
  }
  
  #serviceDialog .flex-1 {
    padding-left: 0.875rem !important;
  }
  
  #serviceDialog .px-4 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
}

/* === LEGAL MODAL STYLES === */
/* Legal modal with responsive design to keep content in viewport */

#legalDialog .px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

#legalDialog .py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

#legalDialog .pt-5 {
  padding-top: 1.5rem !important;
}

#legalDialog .pb-4 {
  padding-bottom: 1.5rem !important;
}

#legalDialog h3 {
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  margin-bottom: 1rem !important;
}

#legalDialog h4 {
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0.75rem !important;
  color: #374151 !important;
}

#legalDialog p {
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  margin-bottom: 1rem !important;
  color: #4B5563 !important;
}

#legalDialog ul {
  margin-bottom: 1rem !important;
  padding-left: 1.25rem !important;
}

#legalDialog li {
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
  margin-bottom: 0.5rem !important;
  color: #4B5563 !important;
}

#legalDialog .prose {
  max-width: none !important;
}

#legalDialog .bg-gray-50 {
  padding: 1rem 1.5rem !important;
}

#legalDialog .inline-flex {
  padding: 0.875rem 1.75rem !important;
  font-size: 1rem !important;
}

#legalDialog .legal-content-max-height {
  max-height: 75vh !important;
}

/* Legal modal responsive adjustments */
@media (max-width: 768px) {
  #legalDialog .el-dialog-panel {
    max-width: 95vw !important;
    margin: 0.5rem !important;
  }
  
  #legalDialog .legal-content-max-height {
    max-height: 70vh !important;
  }
  
  #legalDialog .px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  #legalDialog h3 {
    font-size: 1.125rem !important;
  }
  
  #legalDialog p {
    font-size: 0.9rem !important;
  }
  
  #legalDialog li {
    font-size: 0.85rem !important;
  }
}

/* Additional responsive adjustments for very small screens */
@media (max-width: 480px) {
  #legalDialog .legal-content-max-height {
    max-height: 65vh !important;
  }
  
  #legalDialog h3 {
    font-size: 1rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  #legalDialog h4 {
    font-size: 0.95rem !important;
  }
  
  #legalDialog p {
    font-size: 0.85rem !important;
  }
  
  #legalDialog li {
    font-size: 0.8rem !important;
  }
}

/* Ensure modal stays within viewport bounds */
#legalDialog .el-dialog-panel {
  max-height: 90vh !important;
  overflow: hidden !important;
}

#legalDialog .legal-content-max-height {
  scrollbar-width: thin !important;
  scrollbar-color: #d1d5db #f3f4f6 !important;
}

#legalDialog .legal-content-max-height::-webkit-scrollbar {
  width: 6px !important;
}

#legalDialog .legal-content-max-height::-webkit-scrollbar-track {
  background: #f3f4f6 !important;
  border-radius: 3px !important;
}

#legalDialog .legal-content-max-height::-webkit-scrollbar-thumb {
  background: #d1d5db !important;
  border-radius: 3px !important;
}

#legalDialog .legal-content-max-height::-webkit-scrollbar-thumb:hover {
  background: #9ca3af !important;
}

/* === MODAL SCROLL RESET === */
/* Force all modals to start at scroll position 0 */
dialog[open] {
  scroll-behavior: auto !important;
}

dialog[open] .el-dialog-panel {
  scroll-behavior: auto !important;
  overflow-anchor: none !important;
}

dialog[open] .legal-content-max-height,
dialog[open] .el-dialog-body,
dialog[open] .modal-content,
dialog[open] [class*="overflow"],
dialog[open] [class*="scroll"] {
  scroll-behavior: auto !important;
  overflow-anchor: none !important;
}

/* Prevent scroll restoration on modal open */
dialog {
  scroll-behavior: auto !important;
}

/* Reset modal animations to prevent scroll issues */
dialog.opening .el-dialog-panel {
  scroll-behavior: auto !important;
  overflow-anchor: none !important;
}

/* === MODAL RESPONSIVE BUTTON FIXES === */
@media (max-width: 768px) {
  /* Modal button container mobile layout */
  .bg-gray-50.px-4.py-3,
  div[class*="bg-gray-50"][class*="px-4"][class*="py-3"] {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }
  
  /* Reset specific button margins on mobile */
  .bg-gray-50 a[class*="ml-1"],
  .bg-gray-50 a[class*="sm:ml-3"] {
    margin-left: 0 !important;
    margin-bottom: 0 !important;
    order: 1;
  }
  
  .bg-gray-50 button[class*="mt-3"],
  .bg-gray-50 button[class*="sm:mt-0"] {
    margin-top: 0 !important;
    order: 2;
  }
  
  /* Ensure both buttons are full width on mobile */
  .bg-gray-50 .inline-flex,
  .bg-gray-50 a[class*="inline-flex"],
  .bg-gray-50 button[class*="inline-flex"] {
    width: 100% !important;
    max-width: 280px;
    min-height: 44px;
    justify-content: center !important;
  }
  
  /* Override Tailwind responsive classes on mobile */
  .bg-gray-50 [class*="sm:w-auto"] {
    width: 100% !important;
    max-width: 280px;
  }
  
  .bg-gray-50 [class*="sm:ml-3"] {
    margin-left: 0 !important;
  }
  
  .bg-gray-50 [class*="sm:mt-0"] {
    margin-top: 0 !important;
  }
}
