/* ============================================
   SATELLITE TEAM ALBANIA — styles.css
   ============================================ */

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

:root {
  --bg:         #0A0C10;
  --surface:    #111318;
  --surface2:   #181B22;
  --border:     rgba(255, 255, 255, 0.08);
  --orange:     #FF5C00;
  --orange-dim: rgba(255, 92, 0, 0.12);
  --text:       #F0EDE8;
  --muted:      #7A7F8E;
  --mono:       'Space Mono', monospace;
  --sans:       'Space Grotesk', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── HEADER BANNER ── */
.site-header-banner {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.site-header-banner .container {
  padding: 0 2.5rem;
}
.site-header-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── NAV ── */
nav {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(10, 12, 16, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
}

.logo {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--orange);
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-decoration: none;
}
.logo span {
  display: block;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.2em;
  margin-top: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  font-family: var(--mono) !important;
  font-size: 11px !important;
  color: var(--orange) !important;
  border: 1px solid rgba(255, 92, 0, 0.4);
  padding: 0.4rem 0.9rem;
  letter-spacing: 0.1em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover {
  background: var(--orange-dim) !important;
  color: var(--orange) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--muted);
  transition: all 0.2s;
}

/* ── HERO ── */
.hero {
  border-bottom: 1px solid var(--border);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  align-items: center;
  padding: 3rem 2.5rem;
  gap: 2rem;
  overflow: hidden;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--orange);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}

h1 {
  font-family: var(--sans);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}
h1 em { font-style: normal; color: var(--orange); }

.hero-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 2.25rem;
}

.btn-group {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #0A0C10;
  background: var(--orange);
  border: none;
  padding: 0.8rem 1.6rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.85; }

.btn-ghost {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--muted);
  background: none;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--text); }

/* signal art */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.signal-art {
  position: relative;
  width: 280px;
  height: 280px;
  flex-shrink: 0;
}

.pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--orange);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 3s ease-out infinite;
}
.pulse-ring:nth-child(2) { animation-delay: 1s; }
.pulse-ring:nth-child(3) { animation-delay: 2s; }

@keyframes pulse {
  0%   { width: 64px;  height: 64px;  opacity: 0.8; }
  100% { width: 280px; height: 280px; opacity: 0; }
}

.dish-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: var(--surface2);
  border: 1px solid rgba(255, 92, 0, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.signal-line {
  position: absolute;
  background: linear-gradient(to right, transparent, rgba(255, 92, 0, 0.3));
  height: 1px;
  width: 56px;
  top: 50%;
  left: 50%;
  transform-origin: left center;
  animation: linepulse 3s ease-in-out infinite;
}
.signal-line:nth-child(5) { transform: rotate(40deg);  animation-delay: 0.4s; }
.signal-line:nth-child(6) { transform: rotate(-40deg); animation-delay: 1s; }
.signal-line:nth-child(7) { transform: rotate(140deg); animation-delay: 1.6s; }
.signal-line:nth-child(8) { transform: rotate(220deg); animation-delay: 2.2s; }

@keyframes linepulse {
  0%, 100% { opacity: 0.2; }
  50%       { opacity: 0.85; }
}

.coverage-tag {
  position: absolute;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--orange);
  letter-spacing: 0.15em;
  opacity: 0.8;
}
.tag-al { top: 18%;  left:  8%; }
.tag-xk { top: 14%;  right: 6%; }
.tag-me { bottom: 20%; left:  6%; }
.tag-mk { bottom: 16%; right: 8%; }

/* ── STATS BAR ── */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-bar .container {
  padding: 1.5rem 2.5rem;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  overflow-x: auto;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
}
.stat-num {
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
.stat-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── SECTIONS ── */
.section {
  border-top: 1px solid var(--border);
}

.section .container {
  padding: 5rem 2.5rem;
}

.section-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--orange);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.section-sub {
  color: var(--muted);
  font-size: 14px;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--surface);
  padding: 1.75rem 1.5rem;
  transition: background 0.2s;
}
.service-card:hover { background: var(--surface2); }

.service-icon {
  width: 36px;
  height: 36px;
  background: var(--orange-dim);
  border: 1px solid rgba(255, 92, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--orange);
}

.service-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0.5rem;
}
.service-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* ── CAPABILITIES ── */
.capabilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.cap-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.cap-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
}
.cap-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--orange);
  flex-shrink: 0;
}

.tech-spec {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.75rem;
  margin-top: 3rem;
}
.spec-heading {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--orange);
  letter-spacing: 0.18em;
  margin-bottom: 1.25rem;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.spec-row:last-child { border-bottom: none; }
.spec-key {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
}
.spec-val { color: var(--text); font-weight: 500; }

/* ── COVERAGE ── */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.country-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: border-color 0.2s, background 0.2s;
}
.country-card:hover {
  border-color: rgba(255, 92, 0, 0.35);
  background: var(--surface2);
}
.country-code {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--orange);
  letter-spacing: 0.18em;
  margin-bottom: 0.6rem;
}
.country-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.country-cap {
  font-size: 12px;
  color: var(--muted);
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.1rem;
}
.contact-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  margin-top: 5px;
  flex-shrink: 0;
}
.contact-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-val { font-size: 14px; color: var(--text); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-field label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  padding: 0.65rem 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--muted); opacity: 0.7; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: rgba(255, 92, 0, 0.5); }
.form-field select { cursor: pointer; }
.form-field textarea { resize: vertical; min-height: 110px; }

.form-submit {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #0A0C10;
  background: var(--orange);
  border: none;
  padding: 0.85rem 1.75rem;
  cursor: pointer;
  align-self: flex-start;
  transition: opacity 0.2s;
  margin-top: 0.25rem;
}
.form-submit:hover { opacity: 0.88; }

.form-success {
  display: none;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 0.06em;
  margin-top: 0.5rem;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
}

footer .container {
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.footer-links { display: flex; gap: 1.75rem; }
.footer-links a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .capabilities { grid-template-columns: 1fr; gap: 2rem; }
  .tech-spec { margin-top: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  nav .container { padding: 1rem 1.25rem; }
  .nav-links { display: none; flex-direction: column; gap: 1rem; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    z-index: 99;
  }
  .nav-toggle { display: flex; }

  .hero .container { grid-template-columns: 1fr; padding: 2.5rem 1.25rem; min-height: auto; }
  .hero-right { display: none; }
  .section .container { padding: 3rem 1.25rem; }
  .stats-bar .container { padding: 1.25rem; gap: 1.5rem; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  footer .container { flex-direction: column; align-items: flex-start; padding: 1.5rem 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .pulse-ring, .signal-line { animation: none; }
}
