:root {
  --blue-dark: #0A2342;
  --blue-dark-2: #12497A;
  --blue: #2A7CCF;
  --blue-light: #A8D7FF;
  --gold: #D9A441;
  --text-dark: #0f2540;
  --text-muted: #51606A;
  --bg: #F6F9FB;
  --card-bg: #FFFFFF;
  --radius: 14px;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-dark);
}

/* HEADER */
.header {
  background: linear-gradient(90deg, var(--blue-dark), var(--blue-dark-2));
  color: white;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.header-container {
  max-width: 1150px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
}

.brand h1 { margin: 0; font-size: 22px; font-weight: 800; }
.brand span { font-size: 12px; opacity: 0.9; }

.nav { display: flex; gap: 22px; align-items: center; }
.nav a { color: white; text-decoration: none; font-weight: 600; }
.nav a:hover { color: var(--blue-light); }

.btn-contact {
  background: var(--gold);
  padding: 10px 16px;
  border-radius: 12px;
  color: #0f2540 !important;
  font-weight: 700;
  text-decoration: none;
}

/* HERO SECTION */
.hero {
  max-width: 1150px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
}

.hero-left h2 {
  font-size: 36px;
  margin: 0 0 14px;
  color: var(--text-dark);
}

.hero-text {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 17px;
}

.btn-primary {
  background: var(--blue);
  color: white;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
}

.btn-secondary {
  background: #E9F2FF;
  color: var(--text-dark);
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
}

.hero-buttons { display: flex; gap: 14px; margin-top: 20px; }

/* ⭐ NEW CARDS SECTION ⭐ */
.features-section {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.feature-card {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 22px;
  width: 32%;
  min-height: 150px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
}

.feature-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* HERO RIGHT */
.hero-right { text-align: center; }
.hero-logo { width: 220px; margin-bottom: 8px; }
.hero-brand-title { font-size: 28px; font-weight: 800; }

/* RESPONSIVE */
@media(max-width:980px){
  .hero { grid-template-columns: 1fr; text-align: center; }
  .features-section { flex-direction: column; }
  .feature-card { width: 100%; }
}

@media(max-width:560px){
  .brand h1 { font-size: 18px; }
  .logo { width: 50px; height: 50px; }
}
