/* ========== VARIABLES ========== */
:root {
  --black: #000000;
  --deep: #0a0a0a;
  --card: #111111;
  --border: #1e1e1e;
  --orange: #e07b00;
  --orange-bright: #ff8c00;
  --red: #ff4500;
  --steel: #b0bec5;
  --steel-dark: #607d8b;
  --white: #f0f0f0;
  --muted: #888;
  --font-display: 'Orbitron', monospace;
  --font-body: 'Exo 2', sans-serif;
  --glow: 0 0 20px rgba(224,123,0,0.4);
  --glow-red: 0 0 16px rgba(255,69,0,0.5);
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection { background: var(--orange); color: #000; }

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ========== NAV ========== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 68px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}

nav.scrolled { border-color: var(--orange); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo svg,
.nav-logo .logo-img {
  width: 38px;
  height: 38px;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
}

.nav-brand span { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-links a.active { color: var(--orange); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--orange);
  color: #000 !important;
  padding: 0.4rem 1.1rem;
  border-radius: 2px;
  font-weight: 700 !important;
  transition: background 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
  background: var(--orange-bright) !important;
  box-shadow: var(--glow) !important;
  color: #000 !important;
}

.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO (INDEX) ========== */
#inicio {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 2rem 2rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 80%, rgba(224,123,0,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(255,69,0,0.05) 0%, transparent 60%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(255,255,255,0.015) 39px,
      rgba(255,255,255,0.015) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      rgba(255,255,255,0.015) 39px,
      rgba(255,255,255,0.015) 40px
    );
}



.hero-inner {
  position: relative;
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text { animation: fadeUp 0.8s ease both; }

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 0.3rem 0.8rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.hero-badge::before {
  content: '';
  position: absolute;
  left: -4px; top: -4px;
  width: 6px; height: 6px;
  border-left: 2px solid var(--orange);
  border-top: 2px solid var(--orange);
}

.hero-badge::after {
  content: '';
  position: absolute;
  right: -4px; bottom: -4px;
  width: 6px; height: 6px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

h1 .brand-main { color: var(--orange); display: block; }
h1 .brand-sub { color: var(--steel); font-size: 0.55em; letter-spacing: 0.25em; font-weight: 400; display: block; }

.hero-desc {
  margin: 1.5rem 0 2.5rem;
  color: var(--muted);
  font-size: 1rem;
  max-width: 440px;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: #000;
  padding: 0.75rem 1.8rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn-primary:hover {
  background: var(--orange-bright);
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--steel);
  padding: 0.75rem 1.8rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--steel-dark);
  cursor: pointer;
  transition: all 0.2s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn-outline:hover {
  border-color: var(--steel);
  color: var(--white);
  box-shadow: 0 0 16px rgba(176,190,197,0.2);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-logo-wrap {
  position: relative;
  width: 340px;
  height: 340px;
}

.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(224,123,0,0.15);
  animation: rotateRing 12s linear infinite;
}

.hero-logo-wrap::after {
  content: '';
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  border: 1px dashed rgba(224,123,0,0.08);
  animation: rotateRing 20s linear infinite reverse;
}

.logo-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(224,123,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 30px rgba(224,123,0,0.3));
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
}

.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange);
  display: block;
}
.stat-label {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

/* ========== SECTIONS SHARED ========== */
section { padding: 6rem 2rem; }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.section-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--red));
  margin: 0 auto;
  position: relative;
}

.section-line::after {
  content: '';
  position: absolute;
  right: -8px; top: -2px;
  width: 7px; height: 7px;
  border-right: 2px solid var(--orange);
  border-top: 2px solid var(--orange);
  transform: rotate(45deg);
}

/* ========== SERVICIOS ========== */
#servicios { background: var(--deep); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--orange), var(--red));
  transition: height 0.4s;
}

.service-card:hover { 
  border-color: rgba(224,123,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), var(--glow);
}

.service-card:hover::before { height: 100%; }

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.5rem;
  color: var(--orange);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

.service-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.65rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  color: var(--orange);
  border: 1px solid rgba(224,123,0,0.3);
  padding: 0.2rem 0.6rem;
}

/* ========== NOSOTROS ========== */
#nosotros {
  background: var(--black);
  max-width: 1200px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-visual {
  position: relative;
}

.about-card-main {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
}

.about-card-main::before {
  content: 'JEMCOTECH';
  position: absolute;
  top: 1rem; right: 1rem;
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: rgba(224,123,0,0.2);
}

.about-circuit {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100px;
  height: 100px;
  opacity: 0.3;
}

.about-text h2 { text-align: left; margin-bottom: 1.5rem; }

.about-text .section-tag { text-align: left; }

.about-text .section-line { margin: 0 0 2rem; }

.about-text p {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-text p strong { color: var(--orange); font-weight: 600; }

.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.value-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  margin-top: 6px;
  flex-shrink: 0;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.value-item span {
  font-size: 0.85rem;
  color: var(--steel);
}

/* ========== CÓMO LLEGAR ========== */
#llegar {
  background: var(--deep);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.location-info h3 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.location-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.location-icon {
  width: 40px;
  height: 40px;
  background: rgba(224,123,0,0.1);
  border: 1px solid rgba(224,123,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}

.location-item-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.location-item-text span {
  font-size: 0.85rem;
  color: var(--muted);
}

.map-wrap {
  position: relative;
  border: 1px solid var(--border);
  overflow: hidden;
  height: 420px;
}

@media (max-width: 768px) {
  .map-wrap {
    display: none;
  }
}

.map-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  background: linear-gradient(var(--card), var(--card)) padding-box,
              linear-gradient(135deg, var(--orange), transparent, var(--red)) border-box;
  z-index: 1;
  pointer-events: none;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.3) contrast(1.05);
}

/* ========== CONTACTO ========== */
#contacto {
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.contact-info p {
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.2s;
}

.social-link:hover {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: var(--glow);
}

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--steel-dark);
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(136,136,136,0.5); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(224,123,0,0.15);
}

.form-group select { appearance: none; cursor: pointer; }

.form-group select option { background: var(--card); }

.form-success {
  display: none;
  background: rgba(224,123,0,0.1);
  border: 1px solid var(--orange);
  padding: 1rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--orange);
}

/* ========== FOOTER ========== */
footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 1.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand svg,
.footer-brand .logo-footer {
  width: 36px;
  height: 36px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand-name span { color: var(--orange); }

.footer-col p { color: var(--muted); font-size: 0.85rem; line-height: 1.7; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(136,136,136,0.6);
}

.footer-copy span { color: var(--orange); }

/* ========== FLOATING WHATSAPP ========== */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse-wa 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.6);
  animation: none;
}

/* ========== SCROLL PROGRESS ========== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--red));
  z-index: 2000;
  width: 0%;
  transition: width 0.1s;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes rotateRing {
  to { transform: rotate(360deg); }
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== MIS REPARACIONES PAGE ========== */
.hero-reparaciones {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 2rem 4rem;
  background: 
    radial-gradient(ellipse 60% 60% at 20% 80%, rgba(224,123,0,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(255,69,0,0.05) 0%, transparent 60%),
    var(--black);
}

.hero-reparaciones h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-align: center;
}

.hero-reparaciones h1 span { color: var(--orange); }

.hero-reparaciones p {
  text-align: center;
  color: var(--muted);
  margin-top: 1rem;
  font-size: 1.1rem;
}

.gallery-section {
  background: var(--deep);
  padding: 4rem 2rem;
}

.gallery-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.gallery-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.gallery-header svg {
  width: 40px;
  height: 40px;
  color: var(--orange);
  flex-shrink: 0;
}

.gallery-header h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.gallery-header span {
  font-size: 0.75rem;
  color: var(--muted);
  margin-left: auto;
}

.gallery-container {
  position: relative;
  padding: 1.5rem 0;
}

.gallery-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 2rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-slider::-webkit-scrollbar { display: none; }

.gallery-item {
  flex: 0 0 200px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  border: 2px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}

.gallery-item:hover {
  border-color: var(--orange);
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  font-size: 0.75rem;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
  color: var(--white);
}

.gallery-nav:hover {
  background: var(--orange);
  color: #000;
  border-color: var(--orange);
}

.gallery-nav.prev { left: 0.5rem; }
.gallery-nav.next { right: 0.5rem; }

@media (max-width: 768px) {
  .gallery-nav { display: none; }
}

.no-images {
  padding: 3rem;
  text-align: center;
  color: var(--muted);
}

.no-images svg {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active { display: flex; }

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
}

.lightbox-caption {
  text-align: center;
  color: var(--steel);
  margin-top: 1rem;
  font-size: 0.9rem;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.lightbox-nav:hover { background: var(--orange); color: #000; }
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-logo-wrap { width: 240px; height: 240px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .location-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.97);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--orange);
  }

  .nav-links.open { display: flex; }
  
  .hamburger { display: flex; }
  
  .gallery-item { flex: 0 0 160px; }
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-nav svg { width: 20px; height: 20px; }
}

@media (max-width: 600px) {
  nav { padding: 0 1rem; }
  section { padding: 4rem 1rem; }
  .hero-inner { padding: 0 1rem; }
  .hero-stats { gap: 1rem; }
  .stat-num { font-size: 1.4rem; }
  .btn-primary, .btn-outline { padding: 0.6rem 1.2rem; font-size: 0.7rem; }
  .gallery-item { flex: 0 0 140px; }
  .gallery-header { flex-wrap: wrap; }
  .gallery-header span { margin-left: 0; width: 100%; margin-top: 0.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}



