/* =====================
   RESET & BASE
===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow:  #FFE135;
  --orange:  #FF6B00;
  --blue:    #00C2FF;
  --dark:    #0A0A0F;
  --dark2:   #12121A;
  --white:   #FFFFFF;
  --gray:    #B0B0C0;
  --radius:  12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark);
  background-image: url('zici8k.png');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: var(--white);
  line-height: 1.7;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 15, 0.55);
  z-index: 0;
  pointer-events: none;
}

.navbar, section, footer {
  position: relative;
  z-index: 1;
}


.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.hidden { display: none !important; }

/* =====================
   NAVBAR
===================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,15,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,225,53,0.15);
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav-inner .nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-toggle {
  background: transparent;
  border: 1px solid rgba(0,194,255,0.4);
  color: var(--blue);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
}
.lang-toggle:hover { background: var(--blue); color: var(--dark); }

/* =====================
   BUTTONS
===================== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
  font-family: inherit;
}
.btn:hover { transform: translateY(-2px); }

.btn-nav {
  background: transparent;
  border: 2px solid var(--yellow);
  color: var(--yellow);
}
.btn-nav:hover { background: var(--yellow); color: var(--dark); }

.btn-primary {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(255,107,0,0.4);
}
.btn-primary:hover { box-shadow: 0 6px 30px rgba(255,107,0,0.6); }

.btn-secondary {
  background: linear-gradient(135deg, var(--blue), #0066aa);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,194,255,0.3);
}
.btn-secondary:hover { box-shadow: 0 6px 30px rgba(0,194,255,0.5); }

.btn-large { padding: 16px 36px; font-size: 1.05rem; }

/* =====================
   HERO
===================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 90px;
  text-align: center;
}

.hero-glow-bg {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,194,255,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-logo {
  width: 220px;
  max-width: 80%;
  margin-bottom: 28px;
  filter: drop-shadow(0 0 30px rgba(255,107,0,0.5));
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}

.glow {
  background: linear-gradient(90deg, var(--blue), var(--yellow), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 28px;
}

.hero-phones {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.phone-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,225,53,0.3);
  color: var(--yellow);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.phone-badge:hover { background: rgba(255,225,53,0.12); border-color: var(--yellow); }

/* =====================
   ABOUT
===================== */
.about { padding: 90px 0; background: transparent; }

.section-title {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 900;
  margin-bottom: 48px;
  color: var(--yellow);
}

.about-body {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.about-text {
  flex: 2;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-text p { color: var(--gray); font-size: 0.97rem; }

.about-slogan {
  color: var(--yellow) !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  margin-top: 8px;
}

.about-badges {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 4px;
}

.badge-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,225,53,0.15);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* =====================
   SERVICES
===================== */
.services { padding: 90px 0; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,225,53,0.12);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: var(--yellow); transform: translateY(-4px); }
.card-icon { font-size: 2.2rem; margin-bottom: 14px; }
.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--gray); font-size: 0.88rem; }

/* =====================
   QUOTE
===================== */
.quote { padding: 90px 0; background: transparent; text-align: center; }
.quote-inner h2 { font-size: 2rem; font-weight: 900; margin-bottom: 12px; }
.quote-inner > p { color: var(--gray); margin-bottom: 30px; }

.cta-phones {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 460px;
  margin: 0 auto;
}

.quote-form input {
  padding: 14px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
}
.quote-form input:focus { border-color: var(--yellow); }
.quote-form input::placeholder { color: var(--gray); }

.quote-select {
  padding: 14px 20px;
  padding-right: 44px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  background-color: rgba(255,255,255,0.06);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23FFE135' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s;
  width: 100%;
}
.quote-select:focus { border-color: var(--yellow); }
.quote-select option { background: #1a1a2e; color: var(--white); }

.form-success {
  margin-top: 20px;
  color: var(--yellow);
  font-weight: 700;
  font-size: 1.05rem;
}

/* =====================
   FOOTER
===================== */
.footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  color: var(--gray);
  font-size: 0.85rem;
}
.footer a { color: var(--yellow); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 640px) {
  .about-body { flex-direction: column; }
  .hero-logo { width: 170px; }

  /* On mobile, stack navbar vertically */
  .nav-inner {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .nav-inner .nav-logo {
    position: static;
    transform: none;
  }

  .nav-logo { height: 44px; }

  .nav-right { justify-content: center; }

  /* Hide the quote button on mobile to save space */
  .btn-nav { display: none; }
}
