/* ============================================
   ZUVAR CONTROL - Rediseño Profesional
   ============================================ */

/* --- Variables --- */
:root {
  --color-bg-primary: #0b1120;
  --color-bg-secondary: #111c2f;
  --color-bg-card: #162240;
  --color-bg-elevated: #1a2d4a;
  --color-accent: #f59e0b;
  --color-accent-hover: #d97706;
  --color-accent-soft: rgba(245, 158, 11, 0.12);
  --color-accent-glow: rgba(245, 158, 11, 0.25);
  --color-cyan: #06b6d4;
  --color-cyan-soft: rgba(6, 182, 212, 0.1);
  --color-green: #22c55e;
  --color-red: #ef4444;
  --color-text-primary: #f1f5f9;
  --color-text-secondary: #94a3b8;
  --color-text-muted: #64748b;
  --color-border: #1e3a5f;
  --color-border-light: rgba(30, 58, 95, 0.5);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
  --shadow-accent: 0 4px 24px rgba(245, 158, 11, 0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 80px;
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--color-accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-accent-hover); }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--color-text-primary) 0%, var(--color-text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  max-width: 640px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: var(--transition);
  background: transparent;
}

.nav.scrolled {
  background: rgba(11, 17, 32, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 42px;
  width: auto;
}

.nav-logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: var(--transition);
  border-radius: 2px;
}

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

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 34px;
  background: var(--color-accent);
  color: #000 !important;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 20px;
  transition: var(--transition);
  
}
.nav-cta {
  width: 90px;
  justify-content: center;
}
.nav-cta:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}

.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--color-bg-secondary);
  border-left: 1px solid var(--color-border-light);
  z-index: 999;
  padding: 100px 32px 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.mobile-menu a:hover { color: var(--color-accent); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-overlay.show {
  opacity: 1;
  pointer-events: all;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 17, 32, 0.92) 0%,
    rgba(11, 17, 32, 0.7) 50%,
    rgba(11, 17, 32, 0.4) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--color-accent-soft);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

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

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--color-text);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-accent);
  color: #000;
}

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

.btn-outline {
  background: transparent;
  color: var(--color-text-primary);
  border: 1.5px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-secondary);
  padding: 14px 24px;
}

.btn-ghost:hover {
  color: var(--color-text-primary);
  background: rgba(255,255,255,0.05);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}

/* --- Hero Scroll Indicator --- */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.scroll-indicator span {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* --- Section Base --- */
.section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 60px;
}
/*==================================================
  CAMARA 360 - LAYOUT DOS COLUMNAS
==================================================*/

.page-header{
  padding:120px 0 80px;
}

.page-header .container.page-layout{
  display:grid;
  grid-template-columns:55% 45%;
  gap:70px;
  align-items:center;
}

.page-text{
  width:100%;
}

.page-carousel{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
}

/* Carrusel 
///////////////////////////////////
////////////////////////////////////
////////////////////////////////////*/
/* CONTENEDOR DEL CARRUSEL */
.page-carousel{
  width:100%;
}

/* El carrusel toma la altura de la imagen */
.page-carousel .product-carousel{
  width:100%;
  height:auto;
}

/* Cada slide */
.page-carousel .item{
  height:auto !important;
}

/* Imagen */
.page-carousel .item img{
  display:block;
  width:100%;
  height:auto !important;
  border-radius:20px;
}

/* Elimina cualquier altura fija de Owl */
.page-carousel .owl-stage,
.page-carousel .owl-stage-outer,
.page-carousel .owl-item{
  height:auto !important;
}

/* Puntos */
.page-carousel .owl-dots{
  margin-top:12px;
}

/* ==========================================
   TABLETS
========================================== */

@media screen and (max-width:992px){

  .page-header .container.page-layout{
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:40px;
  }
  
  .page-text{
      width:100%;
      max-width:100%;
  }
  
  .page-carousel{
      width:100%;
      max-width:700px;
  }
  
  }
  
  /* ==========================================
     CELULARES
  ========================================== */
  
  @media screen and (max-width:768px){
  
  .page-header{
      padding:90px 0 60px;
  }
  
  .page-header .container.page-layout{
      display:flex;
      flex-direction:column;
      gap:30px;
  }
  
  .page-text{
      width:100%;
  }
  
  .page-carousel{
      width:100%;
      max-width:100%;
  }
  
  .page-header h1{
      font-size:2.3rem;
  }
  
  .page-carousel img{
      width:100%;
      height:auto;
  }
  
  .btn-primary{
      width:100%;
      justify-content:center;
  }
  
  }
  
  /* ==========================================
     CELULARES PEQUEÑOS
  ========================================== */
  
  @media screen and (max-width:480px){
  
  .page-header h1{
      font-size:2rem;
  }
  
  .page-header{
      padding:80px 0 50px;
  }
  
  }
/*////////////////////////
//////////////////////////
//////////////////////////
//////////////////////////
--- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  font-size: 1rem;
}

.about-text p:last-of-type {
  margin-bottom: 32px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card .icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
}

.feature-card:nth-child(2) .icon {
  background: var(--color-cyan-soft);
  color: var(--color-cyan);
}

.feature-card:nth-child(3) .icon {
  background: rgba(34, 197, 94, 0.1);
  color: var(--color-green);
}

.feature-card:nth-child(4) .icon {
  background: rgba(239, 68, 68, 0.1);
  color: var(--color-red);
}

.feature-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* --- Minerguard Section --- */
.minerguard-section {
  background: linear-gradient(135deg, #0f1729 0%, #162240 100%);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.minerguard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.minerguard-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.minerguard-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.minerguard-content p {
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* --- Ops Section --- */
.ops-section {
  background: var(--color-bg-secondary);
}

.ops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ops-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ops-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ops-item .check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.ops-item h5 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.ops-item p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.ops-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.ops-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Solutions Section --- */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.solution-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 158, 11, 0.2);
}

.solution-card-image {
  height: 220px;
  overflow: hidden;
}

.solution-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.solution-card-body {
  padding: 28px 24px;
}

.solution-card-body h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.solution-card-body p {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.solution-card-body .btn {
  width: 100%;
  justify-content: center;
}

/* --- Team Section --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 158, 11, 0.2);
}

.team-card-image {
  height: 280px;
  overflow: hidden;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.team-card-body {
  padding: 24px;
}

.team-card-body h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.team-card-body .role {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 16px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  transition: var(--transition);
}

.team-social a:hover {
  background: #0077b5;
  color: #fff;
  transform: translateY(-2px);
}

/* --- Exponor / News Section --- */
.exponor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.exponor-content p {
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.exponor-carousel-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.exponor-carousel .item {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.exponor-carousel .item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.exponor-carousel .owl-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.exponor-carousel .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.exponor-carousel .owl-dot.active {
  background: var(--color-accent);
  width: 28px;
  border-radius: 5px;
}

/* --- Request/Contact Form Section --- */
.request-section {
  background: var(--color-bg-secondary);
}

.request-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.request-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.request-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--color-text-secondary);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-primary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}

.form-control::placeholder {
  color: var(--color-text-muted);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-control.submitting {
  opacity: 0.6;
  pointer-events: none;
}

.form-result {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 0.88rem;
  display: none;
}

.form-result.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--color-green);
}

.form-result.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: var(--color-red);
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item .icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-accent-soft);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.contact-item h5 {
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.contact-item p,
.contact-item a {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
}

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

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 320px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: none;
}

.contact-social {
  display: flex;
  gap: 12px;
  padding-top: 8px;
}

.contact-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  font-size: 1rem;
  transition: var(--transition);
  border: 1px solid var(--color-border-light);
}

.contact-social a:hover {
  background: #0077b5;
  color: #fff;
  border-color: #0077b5;
  transform: translateY(-2px);
}

/* --- Footer --- */
.footer {
  background: #070b14;
  border-top: 1px solid var(--color-border-light);
  padding: 48px 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  height: 32px;
  width: auto;
}

.footer-logo span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* --- Page Header (subpages) --- */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #0f1729 0%, #162240 100%);
  border-bottom: 1px solid var(--color-border-light);
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.page-header p {
  font-size: 1rem;
  color: var(--color-text-secondary);
  max-width: 600px;
}

/* --- Product Page Styles --- */
.product-content {
  padding: 80px 0;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-carousel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.product-carousel .item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.product-carousel .owl-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.product-carousel .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.product-carousel .owl-dot.active {
  background: var(--color-accent);
  width: 28px;
  border-radius: 5px;
}

.product-info p {
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.product-features {
  margin: 24px 0;
}

.product-features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.product-features li:last-child {
  border-bottom: none;
}

.product-features li .icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-top: 2px;
}

.product-features li span {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.product-features li span b {
  color: var(--color-text-primary);
}

/* --- News/Exponor Page --- */
.news-content {
  padding: 80px 0;
}

.news-article p {
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
}

.news-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.news-video-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.news-video-card video {
  width: 100%;
  display: block;
  background: #000;
}

.news-video-card .caption {
  padding: 16px 20px;
}

.news-video-card .caption h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

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

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

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* --- Owl Carousel Overrides --- */
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 16px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .about-grid,
  .minerguard-grid,
  .ops-grid,
  .exponor-grid,
  .request-grid,
  .contact-grid,
  .product-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .minerguard-image {
    order: -1;
  }

  .request-image {
    order: -1;
    max-height: 300px;
  }

  .ops-image {
    order: -1;
    max-height: 300px;
  }

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .exponor-carousel .item img {
    height: 280px;
  }

  .product-carousel .item img {
    height: 320px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .section {
    padding: 64px 0;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .news-videos {
    grid-template-columns: 1fr;
  }

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

  .footer-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .page-header {
    padding: 110px 0 40px;
  }

  .product-layout {
    gap: 32px;
  }

  .exponor-carousel .item img {
    height: 220px;
  }

  .product-carousel .item img {
    height: 260px;
  }

  .contact-map {
    min-height: 250px;
  }

  .contact-map iframe {
    min-height: 250px;
  }
}
