/* Global */
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  margin: 0;
  color: #1e293b;
  line-height: 1.6;
  background-color: #ffffff;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #ffffffee;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.logo {
  height: 72px; /* increased logo prominence */
}

nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #1e293b;
  font-weight: 600;
  transition: color 0.3s;
}

nav a:hover {
  color: #0d6efd;
}

/* Hero */
.hero {
  height: 520px;
  background: url("../img/rekrasp_hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #e2e8f0;
}
.cta-buttons .btn {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}
.btn.primary {
  background-color: #0d6efd;
  color: #fff;
}
.btn.secondary {
  border: 2px solid #fff;
  color: #fff;
}

/* Sections */
.section {
  padding: 4rem 2rem;
  text-align: center;
  color: #1e293b;
  background-size: cover;
  background-position: center;
}

.about {
  background-image: url("../img/bg_about.jpg");
}
.services {
  background-image: url("../img/bg_services.jpg");
}
.mission {
  background-image: url("../img/bg_mission.jpg");
}

/* 🔹 UPDATED CONTACT SECTION 🔹 */
.contact {
  background: linear-gradient(to bottom, #f8fafc 0%, #e8f0ff 100%);
  /* Optional: soft background image overlay if you have bg_contact.jpg */
  /* background: url("../img/bg_contact_light.jpg") center/cover no-repeat, linear-gradient(to bottom, #f8fafc 0%, #e8f0ff 100%); */
  color: #0f172a;
}
.contact h2 {
  color: #0d6efd;
  margin-bottom: 1rem;
}
.contact a {
  color: #0d6efd;
  text-decoration: none;
  font-weight: 600;
}
.contact a:hover {
  text-decoration: underline;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 2rem auto 0;
}
.card {
  background: #ffffffcc;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  padding: 1.5rem;
  text-align: left;
  backdrop-filter: blur(8px);
}

/* Mission */
blockquote {
  font-style: italic;
  color: #0f172a;
  margin-top: 2rem;
  font-size: 1.1rem;
}

/* Footer */
footer {
  background: #1e293b;
  color: #fff;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.95rem;
}
