:root {
  --bg:#0b0e14;
  --panel:#192131;
  --text:#e6e8ee;
  --muted:#9aa4bf;
  --accent:#4da3ff;
  --line:#1f2638;
}

* { box-sizing:border-box; }

body {
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

a { color:var(--accent); text-decoration:none; }

.container {
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
}

/* === EU BAR === */
.eu-bar {
  display:block;
  width:100%;
  background:#fff;
  border-bottom:1px solid var(--line);
}

.eu-bar-inner {
  max-width:1100px;
  margin:0 auto;
  padding:10px 20px;
  display:flex;
  justify-content:center;
}

.eu-bar img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  display: block;
}

@media (max-width: 600px) {
  .eu-bar-inner {
    padding: 8px 12px;
  }

  .eu-bar img {
    max-height: 60px;
  }
}

/* === HEADER === */
.hero {
  padding:40px 0;
  border-bottom:1px solid var(--line);
}

.hero img {
  height:60px;
}

.hero p {
  max-width:700px;
  color:var(--muted);
  font-size:18px;
}

/* Reduce gap between EU bar and header */
.eu-bar + header {
  padding-top: 40px; /* was effectively 80px */
}

/* === CONTENT === */
section {
  padding: 0px 20px;
  padding-top: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

section h2 {
  margin-top: 0;
}

.grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.card {
  background:var(--panel);
  padding:30px;
  border-radius:6px;
  border:1px solid var(--line);
}

.cta {
  display:inline-block;
  margin-top:20px;
  padding:12px 24px;
  border:1px solid var(--accent);
  border-radius:4px;
}

/* === FOOTER === */
footer {
  padding:40px 20px;
  text-align:center;
  color:var(--muted);
  font-size:14px;
}

/* === CONTACT FORM === */
form {
  display: grid;
  gap: 15px;
}

input,
textarea {
  background: #0f1422;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 12px;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input::placeholder,
textarea::placeholder {
  color: var(--muted);
}

button {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 12px;
  font-size: 15px;
  cursor: pointer;
  border-radius: 4px;
}

button:hover {
  background: rgba(77, 163, 255, 0.1);
}

/* Optional helper text */
.form-hint {
  margin-top: 15px;
  font-size: 13px;
  color: var(--muted);
}

/* ============================= */
/* Company Info Card Enhancements */
/* ============================= */

.company-info {
  background: #192131; /* slightly lighter than panel for depth */
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.company-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.company-info h2 {
  margin-bottom: 15px;
  font-size: 22px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

.company-name {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}

.company-address {
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 10px;
}

/* Highlight email with custom color outside palette */
.company-email a {
  color: #4da3ff; /* warm coral, stands out against dark bg */
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.company-email a:hover {
  color: #4da3ff;
}
