/* MOTHa Fly – Global Styles */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #0b0c10;
  color: #f5f5f5;
  line-height: 1.6;
}

/* Layout */

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
}

/* Header & Navigation */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  background: rgba(11, 12, 16, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 1000;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1rem;
  color: #00e5ff;
}

.nav {
  display: flex;
  gap: 1.25rem;
}

.nav a {
  font-size: 0.9rem;
  text-decoration: none;
  color: #d0d0d0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav a:hover {
  color: #00e5ff;
  transform: translateY(-1px);
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero-content h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1rem;
  color: #c7c7c7;
  max-width: 520px;
  margin-bottom: 1.75rem;
}

.hero img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

/* Sections */

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: radial-gradient(circle at top left, #1f2833 0%, #0b0c10 55%);
  border-radius: 18px;
  padding: 3.5rem 2rem;
  margin: 2rem -1.5rem;
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.section p {
  color: #c7c7c7;
}

/* Cards */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
  margin-top: 1.5rem;
}

.card {
  background: #11141b;
  border-radius: 14px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 0.75rem;
}

.card h3 {
  font-size: 1.1rem;
}

.card p {
  font-size: 0.95rem;
  color: #c7c7c7;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  border-color: rgba(0, 229, 255, 0.5);
}

/* Lists */

.about-list {
  list-style: none;
  margin: 1.5rem 0;
  padding-left: 0;
}

.about-list li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: #d0d0d0;
}

/* Buttons */

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #00e5ff, #00bcd4);
  color: #0b0c10;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 229, 255, 0.35);
  background: linear-gradient(135deg, #00bcd4, #00e5ff);
}

/* Forms */

.consultation-form {
  margin-top: 1.5rem;
  max-width: 520px;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-row label {
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  color: #d0d0d0;
}

.form-row input,
.form-row select,
.form-row textarea {
  background: #0b0c10;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  color: #f5f5f5;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #777;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: #00e5ff;
  box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.4);
}

.form-status {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #00e5ff;
}

.note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #a5a5a5;
}

/* Footer */

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #8f8f8f;
}

/* Animations */

.fade-up {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.6s ease forwards;
}

.hero.fade-up,
.section.fade-up {
  animation-delay: 0.1s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 6rem;
  }

  .section-alt {
    margin: 2rem 0;
    padding: 3rem 1.5rem;
  }

  main {
    padding: 6rem 1rem 4rem;
  }
}

@media (max-width: 640px) {
  .header {
    flex-direction: row;
    justify-content: space-between;
  }

  .nav {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.1rem;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}

