:root {
  --navy: #071C35;
  --navy-2: #103B67;
  --gold: #C89B3C;
  --bg: #F7F5EE;
  --surface: #FFFFFF;
  --ink: #161616;
  --muted: #6E6E6E;
  --line: rgba(7, 28, 53, 0.12);
  --shadow: 0 16px 34px rgba(7, 28, 53, 0.05);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: clamp(15px, 0.8vw + 0.75rem, 18px); }
body {
  margin: 0;
  font-family: 'Cairo', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  color: var(--ink);
  line-height: 1.72;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
button, input, textarea { font: inherit; }
*:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    background: var(--navy);
    color: #fff;
    padding: 0.8rem 1rem;
    z-index: 9999;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    overflow: visible;
    border-radius: 6px;
}
.brand-block {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}
.brand-logo {
  width: clamp(60px, 7vw, 82px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.brand-name {
  margin: 0;
  font-weight: 700;
  color: var(--navy);
}
.brand-subtitle {
  margin: -0.15rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--navy-2);
  font-weight: 600;
}
.site-nav a {
  text-decoration: none;
  padding: 0.35rem 0.2rem;
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); }
.lang-switch {
  display: flex;
  gap: 0.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.2rem;
  background: rgba(255,255,255,0.8);
}
.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.lang-btn.active {
  background: var(--navy);
  color: #fff;
}

main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1rem 2rem 3.5rem;
}
.hero-content,
.section-heading,
.card,
.contact-card,
.content,
.contact-form,
.service-card {
  overflow-wrap: anywhere;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  padding: 2.8rem 0 2.2rem;
  min-height: 72vh;
}
.hero-content { max-width: 620px; }
.eyebrow, .section-label {
  margin: 0 0 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.82rem;
}
.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.14;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.hero-text, .card p, .value-list, .content p, .content li, .form-note {
  color: var(--muted);
  font-size: 1rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.4rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid transparent;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button.primary {
  background: var(--navy);
  color: white;
}
.button.secondary {
  background: var(--surface);
  color: var(--navy);
  border-color: var(--line);
}
.button.full { width: 100%; }
.hero-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.hero-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,28,53,0.2), rgba(7,28,53,0.06));
  pointer-events: none;
}
.hero-panel-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-panel-caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem 1.05rem;
  color: var(--muted);
  font-size: 0.94rem;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.92);
}

.section {
  margin-top: 1.4rem;
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
}

.not-found-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}

.not-found-card {
  max-width: 32rem;
  text-align: center;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 1.3rem;
}
.section-heading h2,
.section-heading h1 {
  margin: 0;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  color: var(--navy);
  line-height: 1.35;
}
.intro-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
  align-items: start;
}
.card,
.contact-card,
.content,
.contact-form,
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.35rem;
  box-shadow: var(--shadow);
}
.card-wide {
  grid-column: span 2;
}
.value-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.pill-grid span {
  border: 1px solid var(--line);
  color: var(--navy-2);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-size: 0.92rem;
}
.why-grid, .service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.card h3, .service-card h3, .contact-card h3 {
  margin-top: 0;
  color: var(--navy);
}
.service-card { min-height: 180px; }

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  gap: 0.9rem;
}
.contact-card ul li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.6rem;
  align-items: baseline;
  line-height: 1.7;
}
.contact-card ul strong {
  color: var(--navy);
  min-width: 6.4rem;
}
.contact-card a {
  color: var(--navy-2);
  text-decoration: none;
  display: inline-block;
}
.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-wrapper iframe {
  width: 100%;
  height: 240px;
  border: 0;
}
.contact-form {
  display: grid;
  gap: 1rem;
}
.form-row {
  display: grid;
  gap: 0.35rem;
}
.form-row label {
  color: var(--navy);
  font-weight: 600;
}
.form-row input, .form-row textarea {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  background: #fcfcfc;
  color: var(--ink);
}
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.form-row textarea { resize: vertical; }
.form-status {
  min-height: 1.3rem;
  margin: 0;
  color: var(--navy-2);
  font-weight: 600;
}
.site-footer {
  text-align: center;
  padding: 0 2rem 2.2rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  font-size: 0.95rem;
}

.footer-links a {
  color: var(--navy-2);
  text-decoration: none;
}
@media (max-width: 1180px) {
  .hero { gap: 1.4rem; }
  .hero-panel-image { height: 440px; }
}

@media (max-width: 960px) {
  .site-header { flex-wrap: wrap; justify-content: center; padding-top: 1rem; }
  .hero, .intro-grid, .contact-grid, .why-grid, .service-grid { grid-template-columns: 1fr; }
  .card-wide { grid-column: span 1; }
  .hero { padding: 1.4rem 0 1.4rem; min-height: auto; }
  .hero-panel-image { height: 360px; }
  .site-nav { gap: 0.9rem; }
}

@media (max-width: 768px) {
  .site-header { flex-direction: column; align-items: center; gap: 0.75rem; }
  .brand-block { justify-content: center; text-align: center; }
  .site-nav { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; }
  .lang-switch { margin-top: 0.1rem; }
  .hero-panel-caption { flex-direction: column; align-items: flex-start; gap: 0.2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
}

@media (max-width: 640px) {
  main { padding: 1rem 1rem 2.5rem; }
  .site-header { padding-inline: 1rem; }
  .hero-panel-image { height: 280px; }
  .card, .contact-card, .content, .contact-form, .service-card { padding: 1.05rem; }
  .site-footer { padding-inline: 1rem; }
  .form-row input, .form-row textarea { width: 100%; }
  .pill-grid span { font-size: 0.86rem; }
}

@media (max-width: 480px) {
  .site-nav { gap: 0.65rem; }
  .site-nav a { font-size: 0.95rem; }
  .hero h1 { font-size: clamp(1.7rem, 7vw, 2.3rem); }
  .hero-text, .card p, .value-list, .content p, .content li, .form-note { font-size: 0.96rem; }
  .hero-panel-image { height: 220px; }
  .brand-name { font-size: 0.95rem; }
  .brand-subtitle { font-size: 0.8rem; }
  .lang-btn { padding: 0.48rem 0.7rem; }
}

@media (max-width: 360px) {
  main { padding-inline: 0.8rem; }
  .site-header { padding-inline: 0.8rem; }
  .site-footer { padding-inline: 0.8rem; }
  .hero-panel-image { height: 200px; }
  .button { padding: 0.85rem 1rem; }
}

