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

:root {
  --navy: #0d1f4c;
  --navy-dark: #091538;
  --gold: #f8d99b;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-muted: #555e7a;
  --bg-light: #f5f6f9;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--navy);
}

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 70px;
}

nav .nav-logo img {
  height: 40px;
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

nav ul a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}

nav ul a:hover {
  opacity: 1;
  color: var(--gold);
}

/* ── MAIN ────────────────────────────────────────── */
main {
  padding-top: 70px;
  background: var(--navy);
}

/* ── HERO ────────────────────────────────────────── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem 2.5rem;
}

.hero .hero-logo {
  width: min(440px, 75vw);
  margin-bottom: 1.25rem;
}

.hero .hero-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  max-width: 420px;
  line-height: 1.7;
}

/* ── SERVICES ────────────────────────────────────── */
#services {
  background: var(--bg-light);
  padding: 5rem 2rem;
  text-align: center;
}

#services .section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 2.5rem;
}

.services-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  border-top: 4px solid var(--gold);
  padding: 2rem 1.75rem;
  flex: 1 1 280px;
  max-width: 360px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.service-card .card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── CONTACT ─────────────────────────────────────── */
.contact-row {
  text-align: center;
  padding: 1.5rem 2rem 3rem;
}

.contact-row p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.contact-row a {
  color: var(--gold);
  text-decoration: none;
}

.contact-row a:hover {
  text-decoration: underline;
}

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 2.25rem;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover {
  background: #ffe4a8;
  transform: translateY(-2px);
}

/* ── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--navy-dark);
  text-align: center;
  padding: 1.25rem 2rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 768px) {
  nav {
    padding: 0 1.25rem;
  }

  nav ul {
    gap: 1.5rem;
  }

  .services-grid {
    flex-direction: column;
    align-items: center;
    padding: 0 1.25rem 2rem;
  }

  .service-card {
    max-width: 100%;
  }
}
