@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --blue:   #1A52C8;
  --blue2:  #0f3a96;
  --gold:   #F5C200;
  --gold2:  #c49a00;
  --black:  #080808;
  --dark:   #0f0f0f;
  --mid:    #141414;
  --card:   #181818;
  --border: #262626;
  --light:  #dde3ef;
  --muted:  #6b7590;
  --white:  #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--black);
  color: var(--light);
  line-height: 1.6;
}

h1, h2, h3, .nav-logo, .btn, .section-label, .service-title,
.page-header h1, .contact-info h3 {
  font-family: 'Barlow Condensed', 'Segoe UI', sans-serif;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 2.5rem;
  background: rgba(8,8,8,0.97);
  border-bottom: 1px solid rgba(26,82,200,0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-logo {
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  line-height: 1.15;
}

.nav-logo .to { color: var(--gold); }
.nav-logo .b2 { color: var(--blue); }
.nav-logo small {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 2px;
  display: block;
  margin-top: -1px;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav a:hover { color: var(--white); }
nav a.active { color: var(--gold); }

.nav-phone {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  transition: background 0.2s, box-shadow 0.2s !important;
  border-bottom: none !important;
  box-shadow: 0 0 0 0 rgba(26,82,200,0);
}

.nav-phone:hover {
  background: var(--blue2) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 16px rgba(26,82,200,0.5) !important;
}

/* ── BUTTONS ── */
.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,194,0,0.4);
  background: #ffd42a;
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(26,82,200,0.2);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(26,82,200,0.25);
}

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(180deg, #0d0d0d 0%, var(--black) 100%);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 1.5rem 3rem;
  text-align: center;
}

.page-header .section-label {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  opacity: 0.85;
}

.page-header h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 2px;
}

/* ── SECTION BASE ── */
section { padding: 5rem 1.5rem; scroll-margin-top: 70px; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  opacity: 0.85;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  border-radius: 99px;
  margin-bottom: 3rem;
}

/* ── SERVICES ── */
.services-section {
  background: radial-gradient(ellipse at top, #0f1520 0%, var(--black) 70%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  backdrop-filter: blur(4px);
}

.service-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.service-icon { font-size: 2rem; margin-bottom: 1rem; }

.service-title {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.service-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* ── WHY US ── */
.whyus-section { background: var(--mid); padding: 5rem 1.5rem; }

.whyus-inner {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 750px) {
  .whyus-inner { grid-template-columns: 1fr; }
}

@media (min-width: 1100px) {
  .whyus-section { padding: 0 1.5rem; }
  .whyus-inner {
    max-width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
  }
  .promo-img {
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }
  .whyus-inner > div:last-child {
    padding: 4rem 5rem;
    background: var(--mid);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.promo-img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.promo-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.promo-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--light);
  font-weight: 500;
}

.promo-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.promo-phone {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(26,82,200,0.1);
  border: 1px solid rgba(26,82,200,0.35);
  border-radius: 10px;
  padding: 1.1rem 1.4rem;
}

.promo-phone-icon { font-size: 1.5rem; }
.promo-phone-text { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; font-family: 'Inter', sans-serif; }
.promo-phone-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
}
.promo-phone-number:hover { color: var(--white); }

/* ── CONTACT ── */
.contact-section {
  background: radial-gradient(ellipse at bottom, #0a0f1c 0%, var(--black) 70%);
  padding: 5rem 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}

@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info h3 {
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 1.75rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.contact-item-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.15rem; }
.contact-item-text { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
.contact-item-text strong { display: block; color: var(--white); font-weight: 600; margin-bottom: 0.15rem; font-family: 'Inter', sans-serif; }
.contact-item-text a { color: var(--gold); text-decoration: none; font-weight: 700; font-size: 1.1rem; font-family: 'Barlow Condensed', sans-serif; letter-spacing: 1px; }
.contact-item-text a:hover { color: var(--white); }

.contact-form { display: flex; flex-direction: column; gap: 0.85rem; }

.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  color: var(--white);
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  background: rgba(26,82,200,0.06);
}

.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form ::placeholder { color: #3a3f4f; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.8rem;
  color: #3a3f4f;
  font-family: 'Inter', sans-serif;
}

footer .gold { color: var(--gold); }
footer .blue { color: var(--blue); }
footer a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  nav ul { gap: 1rem; }
  nav { flex-direction: column; gap: 0.6rem; padding: 0.75rem 1rem; }
}
