:root {
  --brand: #043166;
  --brand-600: #226CA4;
  --brand-light: #6395B6;
  --brand-lighter: #9EBCCD;
  --text: #222;
  --muted: #5f5f5f;
  --bg: #ffffff;
  --surface: #f7f8fa;
  --radius: 10px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body { margin: 0; font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }

.container { width: min(1120px, 92%); margin: 0 auto; }

.skip-link { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { position: static; width: auto; height: auto; padding: 8px 12px; background: #000; color: #fff; }

.site-header { position: sticky; top: 0; z-index: 50; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }

.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav a { text-decoration: none; color: var(--brand); font-weight: 600; }
.site-nav a:hover { color: var(--brand-600); }
.nav-toggle { display: none; background: transparent; border: 1px solid #e1e5ea; padding: 8px 12px; border-radius: 8px; }

@media (max-width: 840px) {
  .site-nav { position: absolute; right: 4%; top: 64px; background: #fff; padding: 14px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,.1); display: none; flex-direction: column; min-width: 220px; }
  .site-nav.open { display: flex; }
  .nav-toggle { display: inline-block; }
}

.hero { color: #fff; background: linear-gradient(120deg, rgba(4,49,102,0.85), rgba(34,108,164,0.6)); }
.hero .container { padding: 120px 0; text-align: center; }
.hero h1 { font-size: clamp(28px, 4vw, 44px); line-height: 1.15; margin: 0 0 10px; }
.hero p { font-size: clamp(16px, 2.2vw, 20px); margin: 0 0 22px; color: #e9eef6; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn { display: inline-block; text-decoration: none; padding: 12px 18px; border-radius: 8px; font-weight: 600; border: 1px solid transparent; }
.btn.primary { background: var(--brand); color: #fff; }
.btn.primary:hover { background: var(--brand-600); }
.btn.ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn.ghost:hover { border-color: #fff; }

.section { padding: 64px 0; }
.section h2 { color: var(--brand); margin: 0 0 18px; font-size: clamp(22px, 3vw, 30px); }
.section p { margin: 0 0 18px; text-align: justify; line-height: 1.7; }
.section p:last-child { margin-bottom: 0; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.card { background: var(--surface); border-radius: var(--radius); padding: 18px; box-shadow: 0 2px 10px rgba(0,0,0,.06); }
.card h3 { margin-top: 0; }

.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.gallery img { width: 100%; height: 220px; object-fit: cover; border-radius: 10px; display: block; }

.contact-list { list-style: none; padding: 0; margin: 0 0 16px; }
.contact-list li { margin: 6px 0; }
.contact-list a { color: var(--brand); text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

.site-footer { background: var(--brand); color: #fff; }
.site-footer .container { padding: 26px 0; text-align: center; }

/* --- Contact form (Zoho embed minimal styling) --- */
.crmWebToEntityForm {
  background: #fff;
  border: 1px solid #e6e9ef;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  max-width: 800px;
}
.crmWebToEntityForm label {
  display: block;
  margin: 10px 0 6px;
  font-weight: 600;
  color: var(--brand);
}
.crmWebToEntityForm input[type="text"],
.crmWebToEntityForm input[type="email"],
.crmWebToEntityForm textarea {
  display: block;
  width: 100%;
  padding: 12px 12px;
  border: 1px solid #d7dde5;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  background: #fff;
}
.crmWebToEntityForm input[type="text"],
.crmWebToEntityForm input[type="email"],
.crmWebToEntityForm textarea { float: none !important; }
.crmWebToEntityForm textarea { min-height: 120px; resize: vertical; }
.crmWebToEntityForm input[type="text"]:focus,
.crmWebToEntityForm input[type="email"]:focus,
.crmWebToEntityForm textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(4,49,102,.12);
}
.crmWebToEntityForm button[type="submit"] {
  display: inline-block;
  margin-top: 14px;
  padding: 12px 18px;
  background: var(--brand);
  color: #fff;
  border: 0;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}
.crmWebToEntityForm button[type="submit"]:hover { background: var(--brand-600); }
.crmWebToEntityForm .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .crmWebToEntityForm .row { grid-template-columns: 1fr; } }

/* Override to exactly match requested design for the specific form instance */
#crmWebToEntityForm {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid #ccc;
}
#crmWebToEntityForm form { display: flex; flex-direction: column; }
#crmWebToEntityForm label { margin-top: 15px; margin-bottom: 5px; font-weight: 600; color: var(--brand); }
#crmWebToEntityForm input,
#crmWebToEntityForm textarea { padding: 10px; border: 1px solid #ccc; border-radius: 6px; font-size: 1rem; }
#crmWebToEntityForm textarea { min-height: 120px; resize: vertical; }
#crmWebToEntityForm button { margin-top: 20px; background: var(--brand); color: #fff; border: none; padding: 12px 20px; border-radius: 6px; cursor: pointer; font-size: 1rem; }
#crmWebToEntityForm button:hover { background: var(--brand-600); }
