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

:root {
  --primary-color: #7c3aed; /* Violeta */
  --primary-hover: #6d28d9;
  --primary-glow: rgba(124, 58, 237, 0.35);
  
  --accent-color: #06b6d4; /* Celeste/Cian */
  --accent-hover: #0891b2;
  --accent-glow: rgba(6, 182, 212, 0.35);
  
  --bg-dark: #0a0b10;
  --bg-surface: rgba(18, 20, 30, 0.65);
  --bg-surface-hover: rgba(28, 30, 45, 0.85);
  --bg-surface-solid: #12141e;
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-glow: rgba(6, 182, 212, 0.2);
  
  --max-width: 1280px;
  --header-height: 80px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==========================================================================
   Resets and Base Styles
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(124, 58, 237, 0.3);
  border-radius: 5px;
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(6, 182, 212, 0.5);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

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

/* ==========================================================================
   Background Glows (Dynamic Blobs)
   ========================================================================== */
.glow-blob {
  position: absolute;
  width: 45vw;
  height: 45vw;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.22;
  pointer-events: none;
  animation: float-blob 12s infinite alternate ease-in-out;
}

.glow-blob-1 {
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  top: -10vw;
  right: -5vw;
}

.glow-blob-2 {
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
  top: 40vw;
  left: -10vw;
  animation-delay: -4s;
}

.glow-blob-3 {
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  bottom: 10vw;
  right: -10vw;
  animation-delay: -8s;
}

@keyframes float-blob {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(3vw, 5vh) scale(1.15);
  }
}

/* ==========================================================================
   Utility Classes & Layout
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  position: relative;
  padding: 7.5rem 0;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.25);
  color: var(--accent-color);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 50px;
  margin-bottom: 1rem;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.1);
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-primary) 30%, rgba(248, 250, 252, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
  color: #fff;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(124, 58, 237, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
  color: #0a0b10;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(6, 182, 212, 0.5);
}

/* ==========================================================================
   Header & Navbar (Glassmorphic)
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-normal);
  background: transparent;
}

header.scrolled {
  height: 70px;
  background: rgba(10, 11, 16, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-img {
  height: 48px;
  object-fit: contain;
  transition: var(--transition-normal);
}

header.scrolled .logo-img {
  height: 40px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transition: var(--transition-normal);
  border-radius: 4px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
}

.nav-cta .btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: currentColor;
  margin: 6px 0;
  transition: var(--transition-normal);
  border-radius: 2px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
  overflow: hidden;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 50px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  animation: float 4s ease-in-out infinite;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-color);
  box-shadow: 0 0 10px var(--accent-color);
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 40%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-bg-circle {
  position: absolute;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: rotate 60s linear infinite;
}

.hero-bg-circle-1 {
  width: 110%;
  height: 110%;
}

.hero-bg-circle-2 {
  width: 90%;
  height: 90%;
  animation-direction: reverse;
  animation-duration: 40s;
}

.hero-center-logo {
  position: relative;
  width: 85%;
  height: 85%;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
  animation: float 6s ease-in-out infinite;
}

/* Float Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

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

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
  align-items: center;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-features-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 1.75rem;
  border-radius: 16px;
  transition: var(--transition-normal);
  backdrop-filter: blur(10px);
}

.about-features-card:hover {
  transform: translateY(-5px);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  background: var(--bg-surface-hover);
}

.about-card-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary-color);
}

.about-features-card:nth-child(even) .about-card-icon-wrap {
  background: rgba(6, 182, 212, 0.08);
  border-color: rgba(6, 182, 212, 0.25);
  color: var(--accent-color);
}

.about-features-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.about-features-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.about-info-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.about-info-text p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.about-company-details {
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid var(--accent-color);
  padding: 1rem 1.5rem;
  margin-bottom: 2.5rem;
  border-radius: 0 12px 12px 0;
}

.about-company-details ul {
  list-style: none;
}

.about-company-details li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.about-company-details li:last-child {
  margin-bottom: 0;
}

.about-company-details strong {
  color: var(--text-primary);
}

/* Stats Counter Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 3.5rem;
}

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

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-title {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
}

/* ==========================================================================
   Product Categories Section
   ========================================================================== */
.products-section {
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 11, 16, 0.6) 50%, transparent 100%);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.product-category-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  backdrop-filter: blur(10px);
  transition: var(--transition-slow);
}

.product-category-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-color-glow);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(6, 182, 212, 0.05);
  background: var(--bg-surface-hover);
}

.product-card-top {
  position: relative;
  padding: 3rem 2.5rem 1.5rem;
}

.product-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.product-category-card:nth-child(1) .product-icon-box {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: var(--accent-color);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
}

.product-category-card:nth-child(2) .product-icon-box {
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: var(--primary-color);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.15);
}

.product-category-card:nth-child(3) .product-icon-box {
  background: rgba(244, 63, 94, 0.1); /* Rosa/Rojo */
  border: 1px solid rgba(244, 63, 94, 0.3);
  color: #f43f5e;
  box-shadow: 0 0 20px rgba(244, 63, 94, 0.15);
}

.product-card-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.product-card-description {
  color: var(--text-secondary);
  font-size: 0.975rem;
  min-height: 75px;
}

.product-card-body {
  padding: 0 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.product-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.product-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.85rem;
}

.product-list li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--accent-color);
}

.product-category-card:nth-child(2) .product-list li svg {
  color: var(--primary-color);
}

.product-category-card:nth-child(3) .product-list li svg {
  color: #f43f5e;
}

/* ==========================================================================
   Gallery Section (Warehouse Infrastructure)
   ========================================================================== */
.gallery-section {
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  cursor: pointer;
}

.gallery-item-1 {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item-2 {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item-3 {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item-4 {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item-5 {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item-6 {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 11, 16, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 0.25rem 0.75rem;
  background: rgba(6, 182, 212, 0.2);
  border: 1px solid var(--accent-color);
  color: var(--text-primary);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.gallery-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 5, 8, 0.95);
  backdrop-filter: blur(8px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content-wrap {
  position: relative;
  max-width: 90%;
  max-height: 80vh;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--accent-color);
  transform: rotate(90deg);
}

.lightbox-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(10, 11, 16, 0.85);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 1rem;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.benefits-section {
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.03) 50%, transparent);
}

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

.benefit-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-color);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition-normal);
}

.benefit-card:hover {
  background: var(--bg-surface);
  border-color: rgba(6, 182, 212, 0.2);
  transform: translateY(-5px);
}

.benefit-icon-box {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent-color);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.benefit-card:hover .benefit-icon-box {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  border-color: transparent;
  box-shadow: 0 0 15px var(--accent-glow);
}

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

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

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: flex-start;
}

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

.contact-info-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact-info-subtitle {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.contact-method-card {
  display: flex;
  gap: 1.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 16px;
  align-items: center;
}

.contact-method-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  flex-shrink: 0;
}

.contact-method-info h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-method-info p {
  font-size: 1rem;
  font-weight: 500;
}

.contact-method-info a:hover {
  color: var(--accent-color);
}

.contact-brand-card {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  border: 1px solid var(--border-color-glow);
  padding: 2rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.contact-brand-card::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
  opacity: 0.15;
  top: -75px;
  right: -75px;
  pointer-events: none;
}

.contact-brand-card h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
}

.contact-brand-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Contact Form */
.contact-form-container {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 3rem;
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

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

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

.form-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 0.9rem 1.25rem;
  border-radius: 12px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition-normal);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.1);
}

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

.form-select option {
  background: var(--bg-surface-solid);
  color: var(--text-primary);
}

/* Form Success Modal */
.success-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(8px);
  z-index: 3000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.success-modal.active {
  display: flex;
  opacity: 1;
}

.success-card {
  background: var(--bg-surface-solid);
  border: 1px solid rgba(124, 58, 237, 0.2);
  padding: 3rem 2.5rem;
  border-radius: 24px;
  max-width: 450px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform var(--transition-bounce);
}

.success-modal.active .success-card {
  transform: scale(1);
}

.success-icon-wrap {
  width: 80px;
  height: 80px;
  background: rgba(6, 182, 212, 0.1);
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

.success-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.success-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
footer {
  background: #06070a;
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2.5rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  height: 45px;
  object-fit: contain;
  align-self: flex-start;
}

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

.footer-nit {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
}

.footer-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.85rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-contact-info {
  list-style: none;
}

.footer-contact-info li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.footer-contact-info svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.copyright {
  font-size: 0.875rem;
  color: var(--text-muted);
}

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

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.social-link:hover {
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-bounce);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* ==========================================================================
   Scroll Animation (Fade In)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .about-features {
    order: 2;
  }
  
  .about-info-text {
    order: 1;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .products-grid .product-category-card:last-child {
    grid-column: span 2;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  
  .gallery-item-1 {
    grid-column: span 2;
    grid-row: span 2;
  }
  
  .gallery-item-3 {
    grid-row: span 1;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .section {
    padding: 5rem 0;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .menu-toggle {
    display: block;
    z-index: 1001;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #0e0f15;
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2.5rem 2.5rem;
    transition: var(--transition-normal);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid var(--border-color);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-cta {
    width: 100%;
    margin-top: auto;
  }
  
  .nav-cta .btn {
    width: 100%;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-badge {
    margin-bottom: 1.25rem;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .hero-description {
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .products-grid .product-category-card:last-child {
    grid-column: span 1;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  
  .gallery-item-1 {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .gallery-item-3 {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container {
    padding: 2rem 1.5rem;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
  }
}
