/* The plan is empty, so the updated code remains the same as the current code. */
:root {
  /* Light mode colors */
  --primary-color: #2563eb;
  --secondary-color: #3b82f6;
  --accent-color: #f59e0b;
  --text-color: #1f2937;
  --light-bg: #f3f4f6;
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.95);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] {
  /* Dark mode colors */
  --primary-color: #60a5fa;
  --secondary-color: #3b82f6;
  --accent-color: #fbbf24;
  --text-color: #e5e7eb;
  --light-bg: #1f2937;
  --white: #111827;
  --glass-bg: rgba(17, 24, 39, 0.95);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
  /* Professional neutral background to ensure legible text across the site */
  background-color: #f4f6f8;
}

/* Header & Navigation */
header {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo svg {
  transition: transform 0.3s ease;
}

.logo:hover svg {
  transform: scale(1.05);
}

.logo span {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::before {
  width: 100%;
}

.mobile-menu {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.theme-toggle {
  background: none;
  border: none;
  padding: 0.5rem;
  margin-left: 2rem;
  cursor: pointer;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.theme-toggle:hover {
  transform: scale(1.1);
}

.theme-toggle svg {
  width: 24px;
  height: 24px;
}

/* Hero Section */
.hero {
  background: 
    radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1rem 4rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(45deg, rgba(37, 99, 235, 0.02) 25%, transparent 25%) -50px 0,
    linear-gradient(-45deg, rgba(37, 99, 235, 0.02) 25%, transparent 25%) -50px 0,
    linear-gradient(45deg, transparent 75%, rgba(37, 99, 235, 0.02) 75%) -50px 0,
    linear-gradient(-45deg, transparent 75%, rgba(37, 99, 235, 0.02) 75%) -50px 0;
  background-size: 100px 100px;
  z-index: -1;
}

.hero-content {
  max-width: 1000px;
  padding: 0 2rem;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.2s;
  animation-fill-mode: both;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: var(--text-color);
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.4s;
  animation-fill-mode: both;
}

.cta-button {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
  animation: fadeInUp 1s ease-out 0.6s;
  animation-fill-mode: both;
  box-shadow: var(--shadow-md);
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.cta-button:hover::before {
  transform: translateX(100%);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.3);
}

/* Enhanced Fintech Features Styles */
.fintech-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1rem;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--white);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.feature-item:hover .feature-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.feature-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.feature-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-color);
}

.feature-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  width: 200px;
  font-size: 0.85rem;
  color: var(--text-color);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
}

.feature-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: var(--white);
}

.fintech-details {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 12px;
}

.detail-section {
  margin-bottom: 1.5rem;
}

.detail-section:last-child {
  margin-bottom: 0;
}

.detail-section h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail-section ul {
  list-style: none;
  padding-left: 1.5rem;
}

.detail-section ul li {
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-size: 0.95rem;
}

.detail-section ul li::before {
  content: '•';
  position: absolute;
  left: -1rem;
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .fintech-features {
    grid-template-columns: 1fr;
  }
  
  .feature-tooltip {
    display: none;
  }
  
  .fintech-details {
    padding: 1rem;
  }
}

/* Updated Services Section */
.services {
  padding: 8rem 1rem;
  background-color: var(--white);
}

.services h2 {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 3rem;
  color: var(--text-color);
  font-weight: 800;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: auto;
  min-height: 500px;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--primary-color);
  box-shadow: 
    0 10px 40px -10px rgba(0, 0, 0, 0.1),
    0 0 20px rgba(37, 99, 235, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

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

.service-card h3 {
  font-size: 1.5rem;
  color: var(--text-color);
  font-weight: 700;
}

.service-card p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
  flex-grow: 0;
}

.service-illustration {
  width: 100%;
  margin: 1.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.1);
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image {
  transform: scale(1.05);
}

.service-card .learn-more {
  margin-top: auto;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.service-card .learn-more:hover {
  gap: 0.8rem;
}

[data-theme="dark"] .service-card {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.05);
}

.protocol-image {
  width: 100%;
  margin: 1.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.1);
}

.protocol-illustration {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.service-card:hover .protocol-illustration {
  transform: scale(1.05);
}

.protocol-details {
  background: rgba(37, 99, 235, 0.05);
  border-radius: 12px;
  padding: 2rem;
  margin: 1.5rem 0;
}

.protocol-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.protocol-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.protocol-number {
  background: var(--primary-color);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  white-space: nowrap;
}

.protocol-content {
  flex: 1;
}

.protocol-content h4 {
  color: var(--text-color);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.protocol-content p {
  color: var(--text-color);
  margin-bottom: 1rem;
}

.protocol-content ul {
  list-style: none;
  padding-left: 1.5rem;
}

.protocol-content ul li {
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-size: 0.95rem;
}

.protocol-content ul li::before {
  content: '•';
  position: absolute;
  left: -1rem;
  color: var(--primary-color);
}

.additional-features {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.additional-features h4 {
  color: var(--text-color);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.feature {
  text-align: center;
  padding: 1.5rem;
  background: rgba(37, 99, 235, 0.03);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-3px);
  background: rgba(37, 99, 235, 0.05);
}

.feature i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature h5 {
  color: var(--text-color);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature p {
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.5;
}

[data-theme="dark"] .protocol-details {
  background: rgba(37, 99, 235, 0.1);
}

@media (max-width: 768px) {
  .protocol-details {
    padding: 1rem;
  }
  
  .protocol-item {
    flex-direction: column;
    padding: 1rem;
  }
  
  .protocol-number {
    align-self: flex-start;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature {
    padding: 1rem;
  }
}

/* Products Section */
.products {
  padding: 8rem 1rem;
  background: var(--light-bg);
}

.products h2 {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 3rem;
  color: var(--text-color);
  font-weight: 800;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
}

.product-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

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

.product-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.5rem;
  color: var(--text-color);
  font-weight: 700;
}

.product-card p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
}

/* Acquisition Process */
.acquisition-process {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.acquisition-process h3 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-color);
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  padding: 2rem 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-color);
  opacity: 0.2;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
}

.process-step h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.process-step p {
  color: var(--text-color);
  opacity: 0.8;
}

/* Requirements Section */
.requirements-section {
  padding: 4rem 0;
}

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

.requirement-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.requirement-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.requirement-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.requirement-card h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.requirement-card ul {
  list-style: none;
  padding: 0;
}

.requirement-card ul li {
  color: var(--text-color);
  opacity: 0.8;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.requirement-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* Experience Section */
.experience {
  padding: 5rem 1rem;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
}

[data-theme="dark"] .experience {
  background-color: #2d3748;
}

.experience h2 {
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
}

.counter {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

/* Team Section */
.team {
  padding: 5rem 1rem;
  background-color: var(--light-bg);
}

.team h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--primary-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.member-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  margin: 0 auto 1rem;
}

/* Contact Section */
.contact {
  padding: 5rem 1rem;
}

.contact h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--primary-color);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

textarea {
  height: 150px;
}

button {
  padding: 1rem;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

button:hover {
  background-color: var(--secondary-color);
}

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

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

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.info-item .fa-whatsapp {
  color: #25D366;
}

.address-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.address-details p {
  line-height: 1.4;
}

.address-details strong {
  color: var(--primary-color);
  font-weight: 600;
}

@media (max-width: 768px) {
  .address-details {
    text-align: left;
  }
}

[data-theme="dark"] input,
[data-theme="dark"] textarea {
  background: var(--white);
  border-color: rgba(255,255,255,0.1);
  color: var(--text-color);
}

[data-theme="dark"] .hero::before {
  background: 
    linear-gradient(45deg, rgba(96, 165, 250, 0.03) 25%, transparent 25%) -50px 0,
    linear-gradient(-45deg, rgba(96, 165, 250, 0.03) 25%, transparent 25%) -50px 0;
}

.whatsapp-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.whatsapp-contacts a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.whatsapp-contacts a:hover {
  color: var(--primary-color);
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 3rem 1rem 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  padding: 3rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.social-links-mobile {
  display: none;
}

/* Social Media Integration */
.social-links-container {
  margin-top: 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(var(--text-color), 0.1);
}

.social-links-container h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--text-color);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.social-link.linkedin {
  background: #0077b5;
}

.social-link.twitter {
  background: #1da1f2;
}

.social-link.facebook {
  background: #1877f2;
}

.social-link.instagram {
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-link.youtube {
  background: #ff0000;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.newsletter-form button {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 4px;
  background: var(--accent-color);
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--primary-color);
}

/* Social Media Share Buttons */
.share-buttons {
  position: fixed;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 100;
}

.share-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.share-button:hover {
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .share-buttons {
    display: none;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
    text-align: center;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .mobile-menu {
    display: block;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero h2 {
    font-size: 1.8rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: 2rem;
  }
  
  .process-timeline {
    flex-direction: column;
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .process-step {
    width: 100%;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .requirements-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .whatsapp-contacts {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-links-container {
    padding: 1.5rem 0;
  }

  .social-link span {
    display: none;
  }

  .social-link {
    padding: 0.8rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

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

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

  .social-links-mobile {
    display: flex;
    gap: 1rem;
  }

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

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.colombia-section {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(37, 99, 235, 0.1);
}

.considerations-section {
  margin-top: 4rem;
}

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

.consideration-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.consideration-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.consideration-card i {
  font-size: 2rem;
  color: var(--primary-color);
}

.consideration-card h4 {
  font-size: 1.2rem;
  color: var(--text-color);
  font-weight: 700;
}

.consideration-card p {
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .considerations-grid {
    grid-template-columns: 1fr;
  }
  
  .colombia-section {
    margin-top: 3rem;
    padding-top: 3rem;
  }
}