/* ================================
   ROOT / VARIABLES
================================ */
:root {
  --gx-black: #0b0f18;
  --gx-white: #ffffff;
  --gx-blue: #2457ff;
  --gx-gold: #d4af37;

  --gx-text-light: #0b0f18;
  --gx-text-dark: #e6e9f0;

  --gx-border-light: rgba(0,0,0,0.1);
  --gx-border-dark: rgba(255,255,255,0.1);

  --gx-shadow-dark: 0 10px 30px rgba(0,0,0,0.6);
  --gx-shadow-light: 0 10px 30px rgba(0,0,0,0.1);
}

/* ================================
   BASE
================================ */
body {
  font-family: 'Inter', sans-serif;
  background: var(--gx-black);
  color: var(--gx-text-dark);
  margin: 0;
}

.display-font {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
}

/* ================================
   NAVBAR FULL WIDTH
================================ */
.navbar-wrap {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.glass-nav {
  width: 100%;
  background: rgba(15, 20, 35, 0.9);
  backdrop-filter: blur(12px);
  padding: 0.8rem 1.5rem;
}

/* ================================
   LOGO
================================ */
.logo-frame img {
  height: 50px;
}

/* ================================
   HERO
================================ */
.hero {
  padding: 100px 0;
  background: linear-gradient(120deg, #0b0f18, #12192c);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
}

.accent {
  color: var(--gx-gold);
}

/* ================================
   BUTTONS
================================ */
.gx-btn-primary {
  background: var(--gx-blue);
  color: white;
  border: none;
}

.gx-btn-primary:hover {
  background: #1c44d6;
}

.gx-btn-outline {
  border: 1px solid var(--gx-border-dark);
  color: var(--gx-text-dark);
}

.gx-btn-outline:hover {
  background: rgba(255,255,255,0.05);
}

/* ================================
   SECTIONS
================================ */
.section-space {
  padding: 80px 0;
}

.section-space-tight {
  padding: 50px 0;
}

.section-divider {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gx-blue), transparent);
  border: none;
}

/* ================================
   CARDS
================================ */
.panel-card,
.service-card,
.ref-card,
.contact-card,
.availability-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--gx-border-dark);
  padding: 20px;
  border-radius: 12px;
}

/* ================================
   SIDEBAR (CUSTOM FIXED)
================================ */
.sidebar-panel {
  position: fixed;
  top: 0;
  right: -360px;
  width: 320px;
  height: 100%;
  background: #0f1425;
  z-index: 2000;
  transition: 0.3s;
  padding: 20px;
}

.sidebar-panel.open {
  right: 0;
}

.sidebar-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 1990;
}

.sidebar-backdrop.show {
  display: block;
}

.sidebar-links a {
  display: block;
  padding: 10px;
  color: white;
  text-decoration: none;
}

.sidebar-links a:hover {
  color: var(--gx-blue);
}

/* ================================
   SEARCH
================================ */
.search-input-wrap {
  position: relative;
}

.search-input-wrap input {
  padding-left: 35px;
}

.search-input-wrap i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

/* ================================
   FOOTER
================================ */
.footer-panel {
  background: #05080f;
  padding: 60px 0;
}

.copyright-bar {
  margin-top: 30px;
  border-top: 1px solid var(--gx-border-dark);
  padding-top: 15px;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ================================
   COOKIE
================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #111;
  padding: 15px;
  z-index: 3000;
}

/* ================================
   ANIMATIONS
================================ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
}