:root {
  --font-heading: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;

  /* Logo-based blues */
  --blue-main: #009edf; /* main logo blue */
  --blue-main-dark: #007bb5; /* slightly deeper */
  --blue-main-soft: #e0f6ff; /* light tint */
  --blue-main-soft-2: #c4ecff;

  --page-bg: #f5f9ff;

  --accent-gold: #fbbf24;
  --accent-red: #e11d48;

  --text-main: #062034;
  --text-muted: #5b6a79;

  --surface: #ffffff;
}

/* RESET & BASE ----------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--page-bg);

  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  margin: 0;
}

p {
  margin: 0;
  line-height: 1.6;
}

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

.container {
  width: min(1120px, 100% - 3rem);
  margin: 0 auto;
}

/* HEADER ----------------------------------------------------------------- */

#site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: all 0.3s ease;
}

/* top bar */

.header-top {
  background: linear-gradient(90deg, #007bb5, #009edf);
  color: #f9fafb;

  font-size: 0.8rem;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.4rem 0;
}

.header-top a {
  color: #f9fafb;
}

.header-top a:hover {
  text-decoration: underline;
}

.header-top-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.header-top-cta {
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.7);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  transition: all 0.2s ease;
}

.header-top-cta:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* main header band - GLASS EFFECT */

.header-main {
  /*background: rgba(255, 255, 255, 0.85);*/
  background: transparent;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
}

/* Make it more opaque on scroll (optional enhancement) */
#site-header.scrolled .header-main {
  /*background: rgba(255, 255, 255, 0.95);*/
  background: transparent;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.15rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  align-items: flex-start;
  position: relative;
  z-index: 60;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo img {
  height: 64px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 158, 223, 0.2));
}

.logo-rc {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b7280;
}

/* desktop nav */

.nav-links-desktop {
  display: none;
  align-items: center;
  gap: 1.8rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-links-desktop a {
  position: relative;
  color: #1f2937;
  transition: color 0.2s ease;
}

.nav-links-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-main), var(--accent-gold));
  border-radius: 999px;
  transition: width 0.2s ease;
}

.nav-links-desktop a:hover {
  color: var(--blue-main);
}

.nav-links-desktop a:hover::after {
  width: 100%;
}

.nav-desktop-cta {
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #009edf, #007bb5);
  color: #ffffff !important;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 158, 223, 0.3);
  transition: all 0.2s ease;
}

.nav-desktop-cta::after {
  display: none;
}

.nav-desktop-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 158, 223, 0.4);
}

/* hamburger */

.nav-toggle {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.22rem;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.1);
  transition: all 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.15);
}

.nav-toggle span {
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: #0f172a;

  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}
.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

/* mobile overlay nav */

/*.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(8px);
  color: #e5e7eb;

  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 40;
}*/

.nav-overlay {
  position: fixed;
  inset: 0;
  /* make the left area fully transparent */
  background: transparent;
  /* no global blur – we’ll move blur to the panel only */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;

  color: #e5e7eb;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 40;
}

.nav-overlay.nav-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-overlay-inner {
  width: 280px;
  max-width: 85%;
  height: 100vh;
  position: relative;
  background: linear-gradient(
      135deg,
      rgba(0, 158, 223, 0.1) 0%,
      transparent 60%
    ),
    #020617;
  padding: 4.5rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);

  /* add blur only behind the menu panel */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-close:hover {
  background: rgba(15, 23, 42, 0.95);
  border-color: rgba(148, 163, 184, 0.8);
}

.nav-close span {
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  position: absolute;
}

.nav-close span:nth-child(1) {
  transform: rotate(45deg);
}
.nav-close span:nth-child(2) {
  transform: rotate(-45deg);
}

.nav-link {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #009edf, #fbbf24);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #009edf;
  padding-left: 0.5rem;
}

.nav-link:hover::after {
  width: 80%;
}

body.no-scroll {
  overflow: hidden;
}
/* HERO ------------------------------------------------------------------- */

.hero {
  position: relative;
  padding: 3.8rem 0 3.6rem;
  overflow: hidden;
  min-height: 600px;
}

/* SLIDESHOW BACKGROUND (full screen behind content) */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: slowZoom 10s ease-out infinite alternate;
}

@keyframes slowZoom {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.15);
  }
}

/* Dark overlay so text is readable */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 32, 52, 0.45) 0%,
    rgba(0, 123, 181, 0.35) 50%,
    rgba(0, 158, 223, 0.25) 100%
  );
  z-index: 1;
}

/* CONTENT LAYER (on top of slideshow) */
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 3rem;
  align-items: center;
}

.hero-left h1 {
  font-size: 2.7rem;
  line-height: 1.08;
  margin-top: 0.35rem;
  color: #ffffff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-left h1 span {
  display: block;
  color: #fbbf24;
}

.hero-sub {
  margin-top: 0.8rem;
  max-width: 32rem;
  color: #f1f5f9;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
}

.hero-tags span {
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* hero right */

.hero-right {
  display: flex;
  justify-content: flex-end;
}

.hero-panel {
  background: linear-gradient(
    135deg,
    rgba(0, 123, 181, 0.95),
    rgba(0, 158, 223, 0.95)
  );
  backdrop-filter: blur(16px);
  color: #f9f9ff;
  border-radius: 1.7rem;
  padding: 1.8rem 1.7rem 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-panel-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e0f6ff;
  margin-bottom: 0.7rem;
}

.hero-panel h3 {
  color: #ffffff;
}

.hero-panel ul {
  padding-left: 1.1rem;
  margin: 0.6rem 0 0.8rem;
  font-size: 0.9rem;
}

.hero-panel li + li {
  margin-top: 0.35rem;
}

.hero-panel-foot {
  font-size: 0.85rem;
  color: #f5f9ff;
}
/* BUTTONS ---------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.7rem;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #f97316, #fb923c, #009edf);
  color: #0f172a;
  box-shadow: 0 12px 30px rgba(0, 91, 134, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 91, 134, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--blue-main-dark);
  border-color: rgba(37, 99, 235, 0.4);
}

.btn-outline:hover {
  background: #eff6ff;
}

/* STRIP ------------------------------------------------------------------ */

.strip {
  background: linear-gradient(90deg, #007bb5, #009edf);
  color: #f9fafb;
  padding: 1.9rem 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.strip-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #e0f6ff;
  margin-bottom: 0.32rem;
}

.strip-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.strip-text {
  font-size: 0.9rem;
  color: #f1f5f9;
}

/* SECTIONS --------------------------------------------------------------- */

.section {
  padding: 3.5rem 0;
  background: var(--surface);
}

.section-alt {
  padding: 3.5rem 0;
  background: linear-gradient(
    135deg,
    var(--blue-main-soft) 0%,
    #f9fafb 45%,
    var(--blue-main-soft-2) 100%
  );
}

.section-contact {
  background: #edf5ff;
}

/* section heads */

.section-head {
  max-width: 640px;
  margin: 0 auto 2rem;
  text-align: center;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6b7280;
  margin-bottom: 0.3rem;
}

.section-head h2 {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}

.section-head p {
  color: var(--text-muted);
}

/* layouts */

.section-layout-two {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 2rem;
  align-items: flex-start;
}

.lead {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.text-block-two p + p {
  margin-top: 0.7rem;
}

/* cards */

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 1.5rem 1.6rem 1.7rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.16s ease, box-shadow 0.16s ease,
    border-color 0.16s ease;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.6);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.13);
}

.card-list {
  margin-top: 0.7rem;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.card-list li + li {
  margin-top: 0.25rem;
}

/* industries pill cards */

.industries {
  margin-top: 1.4rem;
}

.pill-card {
  background: radial-gradient(
    circle at top left,
    rgba(0, 158, 223, 0.25),
    #007bb5 70%
  );
  color: #f9fafb;
  border-radius: 1.3rem;
  padding: 1.4rem 1.5rem 1.6rem;
  box-shadow: 0 14px 32px rgba(0, 91, 134, 0.4);
}

.pill-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.4rem;
}

.pill-card p {
  font-size: 0.9rem;
  color: #e6f6ff;
}

/* project cards */

.project-card .badge {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  background: var(--blue-main-soft);
  color: #005a86;
  margin-bottom: 0.6rem;
}

.project-meta {
  font-size: 0.86rem;
  color: #6b7280;
  margin: 0.2rem 0 0.45rem;
}

.project-image {
  border-radius: 0.9rem;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.project-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* ABOUT – right side photo card */
.about-photo-panel {
  background: #ffffff;
  border-radius: 1.25rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: auto; /* <-- was 100%: now only as tall as content */
}

.about-photo {
  position: relative;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 260px; /* nicer aspect ratio */
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition: transform 0.5s ease;
}

.about-photo-panel:hover .about-photo img {
  transform: scale(1.07);
}

.about-photo-meta {
  padding: 1.1rem 1.5rem 1.2rem;
  /* lighter logo-based gradient instead of very dark navy */
  background: linear-gradient(
    135deg,
    var(--blue-main-dark) 0%,
    var(--blue-main) 55%,
    #33c4ff 100%
  );
  color: #eef6ff;
}

.about-photo-meta h3 {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
  color: #f9fafb;
}

.about-photo-meta ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.about-photo-meta li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.35rem;
}

.about-photo-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #f97316; /* warm accent dot */
}

/* keep it neat on mobile */
@media (max-width: 768px) {
  .about-photo img {
    height: 220px;
  }
}

/* CONTACT --------------------------------------------------------------- */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 2.8fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.contact-intro-block .lead {
  margin-top: 0.6rem;
}

.contact-details {
  margin-top: 1.4rem;
  font-size: 0.93rem;
}

.contact-details p + p {
  margin-top: 0.4rem;
}

.contact-card {
  background: #ffffff;
  border-radius: 1.4rem;
  padding: 1.8rem 1.7rem 2rem;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

/* form */

.contact-form {
  margin-top: 0.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-field label {
  font-size: 0.84rem;
  font-weight: 500;
  color: #111827;
}

.form-field input,
.form-field textarea {
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0.65rem 0.75rem;
  font-size: 0.93rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--blue-main);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.15);
  background-color: #f9fafb;
}

.contact-status {
  margin-top: 0.8rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* FOOTER ----------------------------------------------------------------- */

.site-footer {
  background: linear-gradient(135deg, #005a86, #007bb5);
  color: #e5e7eb;
  padding-top: 2.3rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(2, minmax(0, 1fr));
  gap: 2rem;
  padding-bottom: 1.4rem;
}

.footer-logo {
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 0.4rem;
}

.footer-text {
  font-size: 0.88rem;
}

.footer-text a {
  color: #f9fafb;
}

.footer-text a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(226, 232, 240, 0.4);
  padding: 0.8rem 0 1.2rem;
  font-size: 0.8rem;
  color: #e2e8f0;
}

/* RESPONSIVE ------------------------------------------------------------ */

@media (min-width: 900px) {
  .nav-links-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 2rem, 100%);
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-right {
    justify-content: flex-start;
  }

  .section-layout-two {
    grid-template-columns: 1fr;
  }

  .cards-3,
  .strip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .cards-3,
  .strip-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-left h1 {
    font-size: 2.1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-top-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* overall background for the section */
.section-contact {
  background: linear-gradient(135deg, #f3f7fb 0%, #edf4fb 60%, #f7fafc 100%);
  padding: 4rem 0;
}

/* two columns */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 4fr);
  gap: 2.75rem;
  align-items: flex-start;
}

/* LEFT SIDE TEXT -------------------------------------------------- */

.contact-copy {
  max-width: 32rem;
}

.contact-copy .eyebrow,
.contact-copy > p:first-of-type {
  margin-top: 0;
}

.contact-copy .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: #6b7280;
  margin-bottom: 0.4rem;
}

.contact-copy h2 {
  font-size: 1.8rem;
  line-height: 1.25;
  margin: 0 0 0.75rem;
  color: #0f172a;
}

.contact-copy > p {
  margin: 0 0 1rem;
  color: #4b5563;
  line-height: 1.7;
}

/* email / phone / address block */
.contact-details p {
  margin: 0.18rem 0;
  font-size: 0.93rem;
  color: #374151;
}

.contact-details strong {
  font-weight: 600;
  color: #111827;
}

/* RIGHT SIDE – FORM CARD ------------------------------------------ */

.contact-panel {
  /* soft “card” behind the form */
  background: #ffffff;
  border-radius: 24px;
  padding: 2rem 2.2rem 2.3rem;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(148, 163, 184, 0.22);
}

/* if your form already has .contact-form, this just spaces content nicely */
.contact-form {
  margin: 0;
}

.contact-form-title,
.contact-panel h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.2rem;
  color: #0f172a;
}

.contact-form-subtitle,
.contact-panel > p {
  margin: 0 0 1.4rem;
  font-size: 0.9rem;
  color: #6b7280;
}

/* grid rows for Name/Company & Email/Phone */
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.9rem;
}

/* labels: small, crisp, engineered */
.form-field label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b7280;
}

/* inputs + textarea */
.form-field input,
.form-field textarea {
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  padding: 0.78rem 1rem;
  font-size: 0.92rem;
  color: #111827;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease,
    background 0.16s ease, transform 0.08s ease;
}

.form-field textarea {
  border-radius: 18px;
  min-height: 150px;
  resize: vertical;
}

/* placeholders */
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9ca3af;
}

/* focus = Dyelkyen blue ring, subtle lift */
.form-field input:focus,
.form-field textarea:focus {
  border-color: #009edf;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 158, 223, 0.55),
    0 14px 36px rgba(15, 23, 42, 0.18);
  transform: translateY(-1px);
}

/* submit button spacing */
.contact-submit {
  margin-top: 0.5rem;
}

/* status text under button (if you show messages there) */
.contact-status {
  margin-top: 0.75rem;
  font-size: 0.85rem;
}

.contact-status--success {
  color: #166534;
}

.contact-status--error {
  color: #b91c1c;
}

/* MOBILE --------------------------------------------------------- */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: 1.7rem 1.5rem 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 2rem, 100%);
  }

  .hero {
    min-height: 500px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-right {
    justify-content: flex-start;
  }

  .hero-left h1 {
    font-size: 2.2rem;
  }

  /* ... rest of your mobile CSS ... */
}

@media (max-width: 640px) {
  .hero {
    min-height: 450px;
  }

  .hero-left h1 {
    font-size: 2.1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  /* ... rest of your mobile CSS ... */
}
