/* =============================================
   STRONGHOLD TELECOM — Custom Stylesheet
   ============================================= */

:root {
  --clr-bg:       #04091a;
  --clr-surface:  #0b1428;
  --clr-surface2: #0f1e3a;
  --clr-accent:   #0ea5e9;
  --clr-text:     #e2e8f0;
  --clr-muted:    #94a3b8;
  --clr-border:   rgba(255, 255, 255, 0.07);
}

/* =============================================
   BASE
   ============================================= */
body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: var(--clr-text);
  background: var(--clr-bg);
  scroll-behavior: smooth;
}

a {
  color: var(--clr-accent);
  transition: color 0.2s;
}

.z-1 { z-index: 1; }
.text-accent { color: var(--clr-accent) !important; }
.text-muted-light { color: var(--clr-muted); }

/* =============================================
   BUTTONS
   ============================================= */
.btn-accent {
  background: var(--clr-accent);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
}
.btn-accent:hover {
  background: #0284c7;
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
}

/* =============================================
   SECTION LABELS
   ============================================= */
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 12px;
}

.section-heading {
  font-family: 'Syne', sans-serif;
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 1rem;
  color: var(--clr-text);
}
.section-heading::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--clr-accent);
  border-radius: 2px;
}
.section-heading-center::after {
  left: 50%;
  transform: translateX(-50%);
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: #020814;
  border-bottom: 1px solid var(--clr-border);
}
.top-bar p { color: var(--clr-muted); }
.top-bar a { color: var(--clr-muted); text-decoration: none; }
.top-bar a:hover { color: var(--clr-accent); }

.topbar-social {
  color: var(--clr-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.topbar-social:hover { color: var(--clr-accent); }

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  background: rgba(4, 9, 26, 0.97);
  border-bottom: 1px solid var(--clr-border);
  backdrop-filter: blur(12px);
  z-index: 1030;
}

.navbar-brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-icon {
  font-size: 1.6rem;
  color: var(--clr-accent);
  line-height: 1;
}
.brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 1px;
  color: #fff;
}
.brand-sub {
  color: var(--clr-accent);
  font-weight: 600;
}

.nav-link {
  font-weight: 500;
  font-size: 0.825rem;
  letter-spacing: 0.8px;
  color: var(--clr-muted) !important;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--clr-accent) !important;
}

.btn-nav {
  background: var(--clr-accent) !important;
  color: #fff !important;
  border-radius: 4px;
  padding: 6px 18px !important;
  margin-left: 8px;
}
.btn-nav:hover {
  background: #0284c7 !important;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* =============================================
   HERO
   ============================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-color: var(--clr-bg);
  background-image:
    linear-gradient(120deg, rgba(4, 9, 26, 0.93) 0%, rgba(4, 9, 26, 0.65) 60%, rgba(14, 165, 233, 0.07) 100%),
    url('images/hero_1.jpg');
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 9, 26, 0.45);
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-accent);
}
.hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -1px;
  color: #fff;
}
.hero-word-strong {
  font-size: 0.75em;
}
.hero-srlt {
  font-size: 0.42em;
  letter-spacing: 5px;
  color: var(--clr-muted);
  font-weight: 600;
  display: block;
  margin-top: 6px;
}
.hero-lead {
  font-size: 1.05rem;
  color: var(--clr-muted);
  max-width: 520px;
  line-height: 1.75;
}

.hero-stats-col {
  position: relative;
  z-index: 10;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  padding: 24px 28px;
  border-left: 2px solid var(--clr-accent);
  background: rgba(4, 9, 26, 0.82);
  backdrop-filter: blur(6px);
  border-radius: 0 8px 8px 0;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-num sup { font-size: 1rem; }
.stat-label {
  font-size: 0.72rem;
  color: var(--clr-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 5px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}
.hero-scroll-indicator a {
  color: var(--clr-muted);
  font-size: 1.4rem;
  text-decoration: none;
}
.hero-scroll-indicator a:hover { color: var(--clr-accent); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   ABOUT
   ============================================= */
.about-dark-panel {
  background: var(--clr-surface);
  padding: 80px 0;
}
.about-dark-inner {
  padding: 0 60px 0 80px;
  max-width: 580px;
}
.about-img-panel {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}
.about-img-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.72) contrast(1.1);
}

/* =============================================
   PILLARS
   ============================================= */
.pillars-section {
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}
.pillar-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  padding: 36px 24px;
  transition: border-color 0.25s, transform 0.25s;
}
.pillar-card:hover {
  border-color: var(--clr-accent);
  transform: translateY(-4px);
}
.pillar-icon {
  font-size: 2rem;
  color: var(--clr-accent);
  margin-bottom: 16px;
}
.pillar-card h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

/* =============================================
   SERVICES
   ============================================= */
.services-section {
  background: var(--clr-surface);
}
.service-card {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.service-card:hover {
  border-color: var(--clr-accent);
  transform: translateY(-4px);
}
.service-card-num {
  position: absolute;
  top: -12px;
  right: 20px;
  font-family: 'Syne', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(14, 165, 233, 0.06);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.service-card-icon {
  font-size: 1.8rem;
  color: var(--clr-accent);
  margin-bottom: 20px;
}
.service-card h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  font-size: 1.15rem;
}
.service-card p {
  color: var(--clr-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 0;
}
.service-card-line {
  width: 36px;
  height: 2px;
  background: var(--clr-accent);
  margin-top: 24px;
  border-radius: 2px;
  transition: width 0.3s;
}
.service-card:hover .service-card-line { width: 60px; }

/* =============================================
   CONTACT
   ============================================= */
.contact-section {
  background: var(--clr-bg);
}
.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--clr-border);
}
.map-wrapper iframe { display: block; }

.contact-info-panel {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  padding: 40px 36px;
}
.company-legal-block {
  display: flex;
  align-items: center;
  gap: 16px;
}
.company-badge {
  width: 52px;
  height: 52px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--clr-accent);
  flex-shrink: 0;
}
.company-legal-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  margin: 0;
  letter-spacing: 0.5px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(14, 165, 233, 0.10);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--clr-muted);
  margin-bottom: 2px;
  font-weight: 600;
}
.contact-item-value {
  color: var(--clr-text);
  font-weight: 500;
  font-size: 0.9rem;
  margin: 0;
  display: block;
}
.contact-link {
  text-decoration: none;
  color: var(--clr-text) !important;
}
.contact-link:hover { color: var(--clr-accent) !important; }

/* =============================================
   CTA STRIP
   ============================================= */
.cta-strip {
  background: var(--clr-surface2);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 52px 0;
}
.cta-strip h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #020814;
  padding: 64px 0 0;
  border-top: 1px solid var(--clr-border);
}
.footer-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-muted);
  margin-bottom: 20px;
}
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul li a {
  color: var(--clr-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.site-footer ul li a:hover { color: var(--clr-accent); }

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.footer-socials a:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding: 24px 0;
  margin-top: 48px;
}

/* =============================================
   LEGAL PAGES (privacy.html, cookies.html)
   ============================================= */
.legal-hero {
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
  padding: 64px 0 48px;
}
.legal-hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin-bottom: 8px;
}

.legal-body {
  background: var(--clr-bg);
}
.legal-section h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--clr-border);
}
.legal-section h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--clr-accent);
  margin: 24px 0 10px;
}
.legal-section p,
.legal-section li {
  color: var(--clr-muted);
  line-height: 1.8;
  font-size: 0.9rem;
}
.legal-section ul {
  padding-left: 20px;
}
.legal-section ul li { margin-bottom: 8px; }
.legal-section a { color: var(--clr-accent); }
.legal-section a:hover { color: #fff; }

.legal-info-box {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-left: 3px solid var(--clr-accent);
  border-radius: 6px;
  padding: 20px 24px;
  margin-top: 12px;
}
.legal-info-box p {
  color: var(--clr-muted);
  font-size: 0.875rem;
  margin-bottom: 4px;
}
.legal-info-box strong { color: var(--clr-text); }
.legal-info-box a { color: var(--clr-accent); }

.cookie-table-wrapper {
  overflow-x: auto;
  border-radius: 6px;
  border: 1px solid var(--clr-border);
}
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.cookie-table th {
  background: var(--clr-surface);
  color: var(--clr-text);
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--clr-border);
  white-space: nowrap;
}
.cookie-table td {
  padding: 10px 16px;
  color: var(--clr-muted);
  border-bottom: 1px solid var(--clr-border);
  vertical-align: top;
}
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991.98px) {
  .about-dark-inner {
    padding: 60px 40px;
    max-width: 100%;
  }
  .about-img-panel { min-height: 320px; }
}

@media (max-width: 767.98px) {
  .hero-title { font-size: 2.6rem; }
  .hero-lead { font-size: 0.95rem; }
  .about-dark-inner { padding: 48px 24px; }
  .contact-info-panel { padding: 28px 20px; }
}
