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

html, body {
  background: #0d0d0d;
  color: #e6e6e6;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

/* ------------------------------
   LAYOUT WRAPPER
------------------------------ */
.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ------------------------------
   HEADER
------------------------------ */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 0;
  z-index: 1000;
  transition: background 0.25s ease, box-shadow 0.25s ease;
  background: transparent;
}

.site-header--scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.header-inner {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  width: 90px;
}

.brand-name {
  font-size: 1.1rem;
  margin-left: 10px;
  opacity: 0.85;
}

.brand-block {
  display: flex;
  align-items: center;
}

/* ------------------------------
   NAVIGATION
------------------------------ */
.nav {
  display: flex;
  gap: 28px;
}

.nav-link {
  color: #e6e6e6;
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  opacity: 1;
}

/* ------------------------------
   HERO SECTION
------------------------------ */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
}

.hero-inner {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-label {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 18px;
  max-width: 700px;
}

.hero-subtitle {
  max-width: 650px;
  opacity: 0.75;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

/* ------------------------------
   BUTTONS
------------------------------ */
.btn {
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
}

.btn-primary {
  background: #0078ff;
  color: white;
}

.btn-ghost {
  border: 1px solid #444;
  color: #e6e6e6;
}

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

.section-header {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto 40px;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 8px;
}

.section-subtitle {
  opacity: 0.7;
  max-width: 600px;
}

/* ------------------------------
   GRID SYSTEM
------------------------------ */
.grid {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

/* Mobile/tablet: 2 columns */
.grid-3 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Desktop: 3 columns */
@media (min-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ------------------------------
   CARDS
------------------------------ */
.card {
  background: #141414;
  padding: 28px;
  border-radius: 10px;
  border: 1px solid #1f1f1f;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #2a2a2a;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.card-body {
  opacity: 0.75;
  margin-bottom: 14px;
}

.card-meta {
  font-size: 0.85rem;
  opacity: 0.55;
}

/* ------------------------------
   FOOTER
------------------------------ */
.site-footer {
  margin-top: auto;
  padding: 40px 0;
  background: #0b0b0b;
  border-top: 1px solid #1a1a1a;
}

.footer-inner {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  width: 70px;
  margin-bottom: 12px;
}

.footer-text {
  opacity: 0.6;
  margin-bottom: 6px;
}

.footer-link {
  color: #e6e6e6;
  text-decoration: none;
  opacity: 0.75;
}

.footer-link:hover {
  opacity: 1;
}

/* ------------------------------
   FORM CARD
------------------------------ */
.form-card {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  background: #141414;
  padding: 32px;
  border-radius: 10px;
  border: 1px solid #1f1f1f;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
/* ------------------------------
   FORM CARD
------------------------------ */
.form-card {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  background: #141414;
  padding: 32px;
  border-radius: 10px;
  border: 1px solid #1f1f1f;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

/* ------------------------------
   FORM ELEMENTS
------------------------------ */
.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

.form-label {
  font-size: 0.95rem;
  margin-bottom: 6px;
  opacity: 0.8;
}

.input,
.textarea {
  background: #0f0f0f;
  border: 1px solid #2a2a2a;
  padding: 12px 14px;
  border-radius: 6px;
  color: #e6e6e6;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.input:focus,
.textarea:focus {
  outline: none;
  border-color: #0078ff;
  background: #111;
}

.textarea {
  min-height: 140px;
  resize: vertical;
}

/* Full-width submit button for better UX */
.form-card .btn-primary {
  margin-top: 10px;
  width: 100%;
  text-align: center;
}
/* ------------------------------
   INLINE LIST (PILLS)
------------------------------ */
.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.inline-pill {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  opacity: 0.85;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.inline-pill:hover {
  background: #222;
  border-color: #3a3a3a;
  opacity: 1;
}
.map-wrapper {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}



