/* ===== MINTAKA LLC — Main Stylesheet ===== */

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

:root {
  --navy: #0D1B2A;
  --navy-light: #112236;
  --navy-border: rgba(245, 240, 232, 0.1);
  --cream: #F5F0E8;
  --cream-muted: rgba(245, 240, 232, 0.6);
  --cream-dim: rgba(245, 240, 232, 0.35);
  --accent: #7EB8FF;
  --accent-bg: rgba(126, 184, 255, 0.1);
  --card-bg: rgba(245, 240, 232, 0.04);
  --card-border: rgba(245, 240, 232, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--navy);
  color: var(--cream);
  line-height: 1.7;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--navy-border);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.navbar-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.navbar-links {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
}

.navbar-links a {
  color: var(--cream-muted);
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--cream);
}

.lang-switcher {
  display: flex;
  border: 1px solid rgba(245, 240, 232, 0.25);
  border-radius: 5px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 500;
}

.lang-switcher button {
  background: transparent;
  border: none;
  color: var(--cream-muted);
  padding: 5px 12px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
}

.lang-switcher button.active {
  background: var(--cream);
  color: var(--navy);
}

/* ===== HERO ===== */
.hero {
  padding: 100px 5% 80px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  border: 1px solid rgba(126, 184, 255, 0.4);
  border-radius: 20px;
  padding: 5px 16px;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 20px;
}

.hero p {
  font-size: 17px;
  color: var(--cream-muted);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--cream);
  color: var(--navy);
  border: none;
  border-radius: 7px;
  padding: 13px 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: 'Inter', sans-serif;
  display: inline-block;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 240, 232, 0.35);
  border-radius: 7px;
  padding: 13px 30px;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s;
  font-family: 'Inter', sans-serif;
  display: inline-block;
}

.btn-outline:hover {
  border-color: rgba(245, 240, 232, 0.6);
}

/* ===== SECTION ===== */
.section {
  padding: 80px 5%;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  text-align: center;
  color: var(--cream-dim);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.section-title {
  text-align: center;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--cream-muted);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto 52px;
  line-height: 1.7;
}

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.2s, background 0.2s;
}

.card:hover {
  border-color: rgba(245, 240, 232, 0.2);
  background: rgba(245, 240, 232, 0.07);
}

.card-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
  color: var(--accent);
}

.card h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: var(--cream-muted);
  line-height: 1.65;
}

/* ===== DIVIDER ===== */
.divider {
  border: none;
  border-top: 1px solid var(--navy-border);
  margin: 0 5%;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 80px 5% 60px;
  text-align: center;
  border-bottom: 1px solid var(--navy-border);
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 16px;
  color: var(--cream-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: rgba(245, 240, 232, 0.05);
  border: 1px solid var(--navy-border);
  border-radius: 16px;
  padding: 56px 40px;
  text-align: center;
  margin: 0 5% 80px;
}

.cta-banner h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 14px;
}

.cta-banner p {
  color: var(--cream-muted);
  font-size: 15px;
  margin-bottom: 28px;
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--navy-border);
  padding: 32px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-left img {
  height: 32px;
  width: auto;
  opacity: 0.5;
}

.footer-left span {
  color: var(--cream-dim);
  font-size: 12px;
}

.footer-right {
  display: flex;
  gap: 24px;
}

.footer-right a {
  color: var(--cream-dim);
  font-size: 12px;
  transition: color 0.2s;
}

.footer-right a:hover {
  color: var(--cream-muted);
}

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.team-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
}

.team-card h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 5px;
}

.team-card p {
  font-size: 13px;
  color: var(--cream-muted);
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 38px;
  height: 38px;
  background: var(--accent-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--accent);
}

.contact-info-text p:first-child {
  font-size: 13px;
  color: var(--cream-dim);
  margin-bottom: 2px;
}

.contact-info-text p:last-child {
  font-size: 14px;
  color: var(--cream);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

form input,
form textarea,
form select {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  width: 100%;
  transition: border-color 0.2s;
  outline: none;
}

form input::placeholder,
form textarea::placeholder {
  color: var(--cream-dim);
}

form input:focus,
form textarea:focus {
  border-color: rgba(126, 184, 255, 0.5);
}

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

/* ===== VALUES ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.value-card {
  padding: 24px;
  border-left: 2px solid var(--accent);
  background: var(--card-bg);
  border-radius: 0 10px 10px 0;
}

.value-card h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 13px;
  color: var(--cream-muted);
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 40px 24px;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
}
