:root{
  /* pulled from your logo vibe (navy/red/steel) */
  --navy: #102040;
  --navy-2: #162a55;
  --red: #c03030;
  --red-2: #e14545;
  --steel: #6b7280;

  --bg: #f7f8fb;
  --panel: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, .12);

  --radius: 16px;
  --shadow: 0 18px 50px rgba(15,23,42,.10);
  --shadow-soft: 0 10px 24px rgba(15,23,42,.08);
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--text);
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(192,48,48,.08), transparent 55%),
    radial-gradient(800px 500px at 95% 10%, rgba(16,32,64,.10), transparent 55%),
    var(--bg);
  line-height: 1.5;
}

a{ color: inherit; text-decoration: none; }
img{ display: block; max-width: 100%; }

.container{
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

/* Top bar */
.topbar{
  background: var(--navy);
  color: rgba(255,255,255,.92);
}
.topbar-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .55rem 0;
  gap: 1rem;
}
.topbar-left{
  display: flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  letter-spacing: .2px;
}
.dot{
  width: 9px; height: 9px;
  background: var(--red-2);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(225,69,69,.18);
}
.topbar-right{
  display: flex;
  gap: .6rem;
  align-items: center;
}
.topbar-right a{ opacity: .92; }
.topbar-right a:hover{ opacity: 1; text-decoration: underline; }
.sep{ opacity: .5; }
.strong{ font-weight: 900; }

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247,248,251,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 0;
  gap: 1rem;
}

.brand{
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 260px;
}
.brand-logo{
  width: 92px;
  height: 92px;
  object-fit: contain;     /* IMPORTANT: no cropping */
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 6px;            /* gives the logo breathing room */
  image-rendering: auto;
}
.brand-text{ display: grid; }
.brand-name{
  font-weight: 1000;
  letter-spacing: .2px;
  color: var(--navy);
}
.brand-tag{
  margin-top: -2px;
  color: var(--steel);
  font-weight: 700;
  font-size: .92rem;
}

.nav{
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav a{
  color: var(--muted);
  padding: .45rem .6rem;
  border-radius: 12px;
  font-weight: 800;
}
.nav a:hover{
  background: rgba(16,32,64,.06);
  color: var(--navy);
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 1.05rem;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--red-2), var(--red));
  border: 1px solid rgba(0,0,0,.08);
  color: #fff;
  font-weight: 900;
  letter-spacing: .2px;
  box-shadow: 0 16px 30px rgba(192,48,48,.18);
}
.btn:hover{ transform: translateY(-1px); filter: brightness(1.01); }
.btn:active{ transform: translateY(0); }
.btn-small{ padding: .65rem .9rem; border-radius: 12px; }
.btn-full{ width: 100%; }

.btn-ghost{
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.btn-ghost:hover{ background: rgba(16,32,64,.04); }

/* Hero */
.hero{ padding: 3.25rem 0 1.75rem; }
.hero-inner{
  display: grid;
  grid-template-columns: 1.15fr .9fr;
  gap: 2rem;
  align-items: start;
}
.pill{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(16,32,64,.14);
  background: rgba(255,255,255,.75);
  color: var(--navy);
  font-weight: 900;
  letter-spacing: .2px;
  margin-bottom: .9rem;
}
.hero-copy h1{
  margin: 0 0 .85rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -.6px;
  color: var(--navy);
}
.hero-copy p{
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 1.05rem;
}
.hero-logo{
  width: min(440px, 100%);
  height: auto;
  display: block;
  margin: 0 auto 1rem;   /* centers it */
  filter: drop-shadow(0 16px 24px rgba(15,23,42,.12));
}

.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.1rem;
}

.hero-stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  margin-top: .25rem;
}
.stat{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: .75rem .85rem;
  box-shadow: var(--shadow-soft);
}
.stat-top{
  font-weight: 1000;
  color: var(--navy);
}
.stat-bot{
  color: var(--steel);
  font-weight: 800;
  margin-top: -2px;
}

/* Cards / sections */
.card{
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}
.muted{ color: var(--muted); }

/* Forms */
.form{
  display: grid;
  gap: .85rem;
  margin-top: 1rem;
}
label{
  display: grid;
  gap: .35rem;
  font-weight: 900;
  color: var(--navy);
  font-size: .95rem;
}
input, select, textarea{
  width: 100%;
  padding: .8rem .85rem;
  border-radius: 14px;
  border: 1px solid rgba(16,32,64,.18);
  background: #fff;
  color: var(--text);
  outline: none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(192,48,48,.45);
  box-shadow: 0 0 0 4px rgba(192,48,48,.14);
}
textarea{ resize: vertical; }

.fineprint{
  margin: .55rem 0 0;
  color: rgba(71,85,105,.9);
  font-size: .86rem;
}

/* Sections */
.section{ padding: 3rem 0; }
.section-alt{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(16,32,64,.03);
}
.section-head{
  margin-bottom: 1.25rem;
}
.section-head h2{
  margin: 0 0 .25rem;
  font-size: 2rem;
  color: var(--navy);
}
.section-head p{ margin: 0; }

/* Services grid */
.grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.service{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.05rem;
  box-shadow: var(--shadow-soft);
}
.service h3{
  margin: 0 0 .35rem;
  color: var(--navy);
  font-weight: 1000;
}
.service p{
  margin: 0 0 .75rem;
  color: var(--muted);
}
.service ul{
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(15,23,42,.92);
}
.service li{ margin: .25rem 0; }

/* Steps */
.steps{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.step{
  display: flex;
  gap: .85rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.05rem;
  box-shadow: var(--shadow-soft);
}
.step-num{
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(192,48,48,.10);
  border: 1px solid rgba(192,48,48,.25);
  color: var(--red);
  font-weight: 1000;
}
.step h3{ margin: 0 0 .25rem; color: var(--navy); }
.step p{ margin: 0; }

/* Area */
.area{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1rem;
}
.area-card h3{ margin: 0 0 .25rem; color: var(--navy); }
.pill-list{
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  list-style: none;
  padding: 0;
  margin: .85rem 0 0;
}
.pill-list li{
  padding: .45rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(16,32,64,.16);
  background: rgba(16,32,64,.03);
  color: var(--navy);
  font-weight: 900;
}

/* Contact */
.split{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1.25rem;
  align-items: start;
}
.contact-cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
  margin-top: 1.25rem;
}
.contact-card{
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}
.contact-card:hover{ background: rgba(16,32,64,.02); }
.contact-title{ font-weight: 1000; color: var(--navy); }
.contact-sub{ color: var(--muted); margin-top: .15rem; }

.notice{
  margin-top: 1rem;
  padding: .9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(16,32,64,.14);
  background: rgba(255,255,255,.75);
  box-shadow: var(--shadow-soft);
}
/* Contact card image section */
.media-card{
  display: grid;
  gap: 1rem;
  align-items: center;
  justify-items: center;
}

.media-img{
  width: min(980px, 100%);
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.media-actions{
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.status-banner{
  width: min(1100px, calc(100% - 2rem));
  margin: 1rem auto 0;
  padding: .9rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  font-weight: 900;
}

.status-success{
  background: rgba(34,197,94,.12);
  border-color: rgba(34,197,94,.35);
  color: #14532d;
}

.status-error{
  background: rgba(239,68,68,.12);
  border-color: rgba(239,68,68,.35);
  color: #7f1d1d;
}
/* Footer */
.footer{
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 1.5rem 0;
}
.footer-inner{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
  align-items: center;
}
.footer-left{
  display: flex;
  align-items: center;
  gap: .75rem;
}
.footer-logo{
  width: 74px;
  height: 74px;
  object-fit: contain;     /* IMPORTANT: no cropping */
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: #fff;
  padding: 6px;
}
.footer-title{
  font-weight: 1000;
  color: var(--navy);
}
.footer-links{
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a{
  color: var(--muted);
  font-weight: 900;
}
.footer-links a:hover{ color: var(--navy); text-decoration: underline; }
.footer-right{ text-align: right; }

/* Responsive */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps{ grid-template-columns: 1fr; }
  .area{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr; text-align: center; }
  .footer-links{ justify-content: center; }
  .footer-right{ text-align: center; }
}

@media (max-width: 620px){
  .nav{ display: none;}
  .hero-stats{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
  .contact-cards{ grid-template-columns: 1fr; }
}
