<!-- styles.css -->
:root {
  --primary: #5b7c99;
  --primary-dark: #4a6a85;
  --text: #4a5d6e;
  --text-light: #6b7c8a;
  --bg: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --accent: #7ba3c4;
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

/* Header */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: left;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--primary);
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: left;
  justify-content: left;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
}

.menu-btn {
  background: var(--primary);
  color: blue;
  border: none;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.menu-btn:hover {
  background: var(--primary-dark);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #e8f0f7 0%, #f5f8fb 100%);
  padding: 4rem 2rem 3rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23d4e4f0" width="1200" height="400"/><path d="M0 280 Q300 200 600 260 T1200 220 V400 H0Z" fill="%23c5d8e8" opacity="0.6"/></svg>') center/cover;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 0.8rem;
  letter-spacing: -0.5px;
}

.hero .subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(180deg,#7aa0df,#5f87cc);
  color: blue;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.35),
        0 8px 18px rgba(0,0,0,0.2);
}

/* Sections */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--primary);
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-text {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-align: left;
  color: var(--text-light);
  font-size: 1.05rem;
}

/* Cards grid */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.8rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: left;
  justify-content: left;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.card-icon.blue { background: #e0eef8; color: var(--primary); }
.card-icon.teal { background: #e0f4f4; color: #3a8a8a; }
.card-icon.purple { background: #ebe4f5; color: #6b5b95; }
.card-icon.orange { background: #f5ebe0; color: #b87a4a; }

.card h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.7rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* About section */
.about {
  background: var(--white);
  padding: 4rem 2rem;
  text-align: center;
}

.about p {
  max-width: 720px;
  margin: 0 auto 1.2rem;
  color: var(--text-light);
  font-size: 1.05rem;
}

.about-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.about-link {
  text-align: center;
  max-width: 220px;
}

.about-link .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.8rem;
  border: 2px solid var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
}

.about-link h4 {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.about-link p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Visa / Talent specific */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 2.1rem;
  }
}

.service-block h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: left;
  gap: 0.6rem;
}

.service-block h3 .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.7;
}

.service-block p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
  line-height: 1.55;
}

.service-block strong {
  color: var(--text);
  font-weight: 500;
}

/* Contact form */
.contact-hero {
  padding: 3.5rem 2rem 2rem;
  text-align: center;
}

.contact-hero h1 {
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 400;
  margin-bottom: 1rem;
}

.contact-hero p {
  max-width: 600px;
  margin: 0 auto 0.8rem;
  color: var(--text-light);
}

.form-section {
  max-width: 700px;
  margin: 0 auto 4rem;
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.form-section h2 {
  color: var(--primary);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.form-section .form-sub {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  border: 2px solid #4A90E2;
  margin-bottom: 1.2rem;
}

.form-group label {
  display: grid;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.btn-send {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.75rem 2.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  float: right;
  transition: background 0.2s;
}

.btn-send:hover {
  background: var(--primary-dark);
}

/* Footer */
.footer {
  background: #f0f4f8;
  padding: 2.5rem 2rem 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-left {
  font-size: 0.9rem;
  color: var(--text-light);
}

.footer-badges {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.badge {
  background: #2d3748;
  color: white;
  padding: 0.6rem 0.9rem;
  border-radius: 6px;
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.3;
}

.badge.mia {
  background: #1a365d;
}

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: left;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-pill {
  background: #e8f0f7;
  color: var(--primary);
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-weight: 500;
  transition: background 0.2s;
}

.contact-pill:hover {
  background: #d4e4f0;
}

/* Nav overlay (simple) */
.nav-links {
  display: none;
  position: absolute;
  top: 100%;
  right: 2rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  padding: 0.8rem 0;
  min-width: 180px;
}

.nav-links a {
  display: block;
  padding: 0.6rem 1.4rem;
  color: var(--text);
  font-size: 0.95rem;
}

.nav-links a:hover {
  background: #f0f4f8;
  color: var(--primary);
}

.header {
  position: relative;
}