/* ==========================================================================
   W Tecnologías - Hoja de Estilos Principal (Dark & Gold Tech Theme)
   Inspirado en la identidad corporativa: Fondo Negro Mate / Slate & Oro Metálico
   ========================================================================== */

:root {
  /* Paleta Corporativa W-TECH (Negro Carbón, Slate Profundo & Oro Metálico) */
  --primary: #d4af37;           /* Oro Principal */
  --primary-hover: #f59e0b;     /* Oro Ámbar Vibrante */
  --primary-dark: #b45309;      /* Oro Profundo */
  --primary-light: rgba(212, 175, 55, 0.12); /* Brillo Dorado Translúcido */
  
  --accent-gold: #f59e0b;
  --accent-cyan: #38bdf8;
  --accent-emerald: #10b981;
  
  /* Fondos y Superficies Dark Tech */
  --bg-body: #080c16;           /* Fondo Negro Carbón Principal */
  --bg-surface: #0f172a;        /* Superficie de Contenedores */
  --bg-surface-alt: #0a0f1d;    /* Fondo Alternativo Oscuro */
  --bg-card: #131d33;           /* Tarjeta Elevada */
  --bg-card-hover: #182542;
  --bg-input: #0a0f1d;
  --bg-header: rgba(8, 12, 22, 0.92);
  
  /* Textos */
  --text-main: #f8fafc;         /* Blanco Nieve para títulos y legibilidad */
  --text-muted: #94a3b8;        /* Gris Plata Suave (sin brillo molesto) */
  --text-light: #64748b;        /* Gris Neutro Secundario */
  --text-white: #ffffff;
  
  /* Bordes y Sombras */
  --border-color: rgba(255, 255, 255, 0.08);
  --border-card: rgba(255, 255, 255, 0.07);
  --border-gold: rgba(212, 175, 55, 0.3);
  --border-gold-strong: rgba(245, 158, 11, 0.6);
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 20px 35px rgba(0, 0, 0, 0.7);
  --shadow-gold-glow: 0 0 25px rgba(212, 175, 55, 0.2);
  
  /* Tipografía y Transiciones */
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', 'Inter', system-ui, sans-serif;
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Dimensiones */
  --header-height: 76px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

button, input, textarea, select {
  font: inherit;
}

/* --------------------------------------------------------------------------
   Layout Containers
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

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

.section-alt {
  background-color: var(--bg-surface);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.95rem;
  font-size: 0.825rem;
  font-weight: 700;
  color: #facc15;
  background-color: rgba(234, 179, 8, 0.1);
  border: 1px solid rgba(234, 179, 8, 0.25);
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Brand Gold & Headings Styling
   -------------------------------------------------------------------------- */
.brand-gold-text {
  color: #facc15;
  background: linear-gradient(135deg, #fef08a 0%, #facc15 40%, #eab308 70%, #ca8a04 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  display: inline-block;
  letter-spacing: -0.01em;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1.2;
}

.btn-primary {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #080c16 !important;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(217, 119, 6, 0.35);
  border: 1px solid rgba(254, 240, 138, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #080c16 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(217, 119, 6, 0.5);
}

.btn-secondary {
  background-color: var(--bg-card);
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--bg-card-hover);
  color: #facc15;
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.btn-app-portal {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: var(--text-white) !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}

.btn-app-portal:hover {
  background: linear-gradient(135deg, #0369a1, #075985);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.45);
}

.btn-lg {
  padding: 0.9rem 1.8rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   Header & Navbar
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 72px;
  background-color: var(--bg-header);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
}

.header.scrolled {
  background-color: rgba(8, 12, 22, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(212, 175, 55, 0.15);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1.5rem;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.brand-logo-text {
  display: flex;
  flex-direction: column;
}

/* Navigation Links - Base */
.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.4rem 0.2rem;
  position: relative;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover, .nav-link:focus {
  color: #facc15;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #facc15;
  transition: width var(--transition-fast);
}

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

.nav-link-portal {
  color: #facc15 !important;
  font-weight: 700;
  padding: 0.4rem 0.85rem !important;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

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

.nav-link-portal:hover {
  background: rgba(212, 175, 55, 0.25);
  border-color: #facc15;
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   Desktop Navigation (Pantallas Grandes > 991px)
   -------------------------------------------------------------------------- */
@media (min-width: 992px) {
  .mobile-toggle-btn {
    display: none !important;
  }
  
  .nav-menu {
    display: flex !important;
    align-items: center;
    gap: 1.25rem;
    position: static !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    border: none !important;
  }
}

/* --------------------------------------------------------------------------
   Mobile Navigation (Celulares y Tablets <= 991px)
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .mobile-toggle-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    color: #facc15;
    cursor: pointer;
    transition: all var(--transition-fast);
    flex-shrink: 0;
  }

  .mobile-toggle-btn:hover, .mobile-toggle-btn:focus {
    background: rgba(212, 175, 55, 0.2);
    outline: none;
  }

  .nav-menu {
    display: none !important;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #0d1424;
    background: linear-gradient(180deg, #0f172a 0%, #080c16 100%);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.5rem 2rem 1.5rem;
    gap: 0.65rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9);
    border-bottom: 2px solid var(--primary);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 9999;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  .nav-menu.open {
    display: flex !important;
    animation: mobileMenuSlide 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .nav-menu .nav-link {
    display: flex;
    align-items: center;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #f8fafc;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition-fast);
  }

  .nav-menu .nav-link::after {
    display: none;
  }

  .nav-menu .nav-link:hover, .nav-menu .nav-link:active {
    background: rgba(212, 175, 55, 0.15);
    color: #facc15;
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateX(4px);
  }

  .nav-menu .nav-link-portal {
    margin-top: 0.5rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #080c16 !important;
    font-weight: 800;
    text-align: center;
    justify-content: center;
    border: none;
    padding: 0.9rem 1rem !important;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
  }
}

@keyframes mobileMenuSlide {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------------------------------
   Social Channels Bar (Debajo del Header)
   -------------------------------------------------------------------------- */
.social-channels-bar {
  background: #060913;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 0.85rem 0;
}

.social-channels-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-channels-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.social-channels-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-channel-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-white);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  transition: all var(--transition-fast);
}

.social-channel-item:hover {
  transform: translateY(-2px);
  color: #fff;
}

.social-channel-item.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
}

.social-channel-item.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.social-channel-item.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  padding: 5.5rem 0 6.5rem 0;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
              radial-gradient(circle at bottom left, rgba(2, 132, 199, 0.08) 0%, transparent 50%),
              var(--bg-body);
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

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

.hero-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #facc15;
  background-color: rgba(234, 179, 8, 0.1);
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(234, 179, 8, 0.25);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero-title .highlight {
  color: #38bdf8;
  display: inline-block;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.hero-description strong {
  color: var(--text-white);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-pill-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  background-color: var(--bg-card);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-sm);
}

.hero-pill-item svg {
  color: var(--accent-emerald);
}

/* Hero Visual Card */
.hero-visual {
  position: relative;
}

.hero-card-main {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-xl), var(--shadow-gold-glow);
  position: relative;
  z-index: 2;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

.hero-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.15);
  color: #facc15;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-card-header-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
}

.hero-card-header-text p {
  font-size: 0.85rem;
  color: #facc15;
}

.hero-services-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hero-service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.8rem;
  border-radius: var(--radius-md);
  background: rgba(8, 12, 22, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.hero-service-item:hover {
  background: rgba(8, 12, 22, 0.8);
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateX(4px);
}

.hero-service-icon {
  color: #facc15;
  margin-top: 2px;
  flex-shrink: 0;
}

.hero-service-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.15rem;
}

.hero-service-text p {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.hero-portal-callout {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #080c16, #111827);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero-portal-callout-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
}

.hero-portal-callout-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Services Grid Section
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f59e0b, #d4af37);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(212, 175, 55, 0.35);
  background: var(--bg-card-hover);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.12);
  color: #facc15;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
}

.service-feature-item {
  font-size: 0.88rem;
  color: var(--text-main);
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  line-height: 1.45;
}

.service-feature-item svg {
  color: #facc15;
  margin-top: 3px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Gamer & Inks Showcase Banner
   -------------------------------------------------------------------------- */
.products-showcase-banner {
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
              linear-gradient(145deg, #0d1424 0%, #151f33 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  color: var(--text-white);
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-xl);
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.products-showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.products-showcase-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-xl), var(--shadow-gold-glow);
  background: #000;
}

.products-showcase-img-wrap img {
  width: 100%;
  height: auto;
  max-height: 390px;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.products-showcase-img-wrap:hover img {
  transform: scale(1.03);
}

.product-tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.product-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f8fafc;
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius-full);
}

/* --------------------------------------------------------------------------
   Location & Map Showcase
   -------------------------------------------------------------------------- */
.location-card-container {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.location-photos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.location-photo-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
}

.location-photo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.location-photo-card:hover img {
  transform: scale(1.04);
}

.location-photo-tag {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(8, 12, 22, 0.9);
  color: #facc15;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.map-embed-wrap {
  width: 100%;
  height: 100%;
  min-height: 290px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-sm);
}

.map-embed-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 290px;
  border: none;
  display: block;
}

/* --------------------------------------------------------------------------
   Why Choose Us Section
   -------------------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}

.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.feature-box:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.35);
  background: var(--bg-card-hover);
}

.feature-box-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  color: #facc15;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.feature-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.feature-box p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   Contact Section
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

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

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast);
}

.contact-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.12);
  color: #facc15;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.contact-card-text h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.contact-card-text p, .contact-card-text a {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.contact-card-text a:hover {
  color: #facc15;
}

/* Contact Form */
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.78rem 1rem;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background-color: var(--bg-input);
  color: var(--text-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
}

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

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

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

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: #050810;
  color: var(--text-muted);
  padding: 4.5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: #facc15;
}

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

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-btn.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
  transform: translateY(-2px);
}

.social-btn.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  transform: translateY(-2px);
}

.social-btn.whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-light);
}

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

.whatsapp-float:hover {
  background-color: #20ba59;
  color: #ffffff;
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* --------------------------------------------------------------------------
   Responsive Media Queries (Layout General)
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .products-showcase-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.35rem;
  }
  
  .section {
    padding: 3.5rem 0;
  }

  .location-photos-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .social-channels-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .social-channels-list {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .social-channel-item {
    justify-content: center;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
