/* ===== GLOBAL ===== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b0f12;
  color: #e8dcc7;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

/* ===== TOP BAR ===== */
.topbar {
  background: #06080a;
  color: #bfc6cc;
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ===== HEADER ===== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: #111417;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: 16px;
}

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

.logo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
}

.header h1 {
  margin: 0;
  font-size: 34px;
  letter-spacing: 2px;
}

.header p {
  margin: 0;
  color: #1da7a1;
  font-size: 14px;
}

.header-contact {
  text-align: right;
}

.header-contact a {
  display: block;
  color: #bfc6cc;
  font-size: 15px;
}

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 100px 20px;
}

.hero h2 {
  font-size: 44px;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(29,167,161,0.15);
}

.hero-text {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #bfc6cc;
  font-size: 18px;
}

/* ===== BUTTON ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, #1da7a1, #17cfc8);
  color: #000;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(29,167,161,0.35);
}

/* ===== SECTIONS ===== */
.section {
  padding: 90px 20px;
  text-align: center;
}

.section.alt {
  background: #0f1418;
}

.section h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.section-text {
  max-width: 700px;
  margin: 0 auto;
  color: #aaa;
}

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 40px auto 0;
}

.card {
  background: #12181d;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  text-align: left;
}

.card:hover {
  transform: translateY(-6px);
  background: #161d23;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.card h3 {
  margin-top: 0;
  color: #e8dcc7;
}

.card p {
  color: #bfc6cc;
}

/* ===== CTA ===== */
.cta-section {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(180deg, rgba(29,167,161,0.15), rgba(0,0,0,0));
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 40px 20px;
  color: #8e959c;
  font-size: 14px;
  background: #0a0f12;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-contact {
    text-align: left;
  }

  .hero h2 {
    font-size: 34px;
  }
} .contact-form {

  max-width: 600px;

  margin: 40px auto 0;

  display: flex;

  flex-direction: column;

  gap: 14px;

}

.contact-form input,

.contact-form textarea {

  padding: 14px;

  background: #12181d;

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 6px;

  color: #fff;

  font-size: 15px;

}

.contact-form textarea {

  min-height: 120px;

}

.contact-form input:focus,

.contact-form textarea:focus {

  outline: none;

  border-color: #1da7a1;

}