/* DPW Solutions — Corporate Stylesheet */

:root {
  --navy:   #285F6F;  /* dark teal — outlines/dark in logo */
  --blue:   #2F95A5;  /* mid teal — DPW letters */
  --teal:   #37B8C6;  /* light teal — DPW letters highlight */
  --yellow: #F6BB14;  /* golden yellow — logo background */
  --orange: #D44E27;  /* orange-red — SOLUTIONS text */
  --grey:   #EAF5F7;  /* teal-tinted light background */
  --text:   #3A4A50;  /* dark teal-grey for body text */
  --white:  #FFFFFF;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--orange); }

/* ── Navigation ── */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.logo-text {
  line-height: 1.2;
}

.logo-text .brand { font-size: 1.05rem; font-weight: 700; color: var(--white); }
.logo-text .tagline { font-size: .7rem; color: #9FD4DC; letter-spacing: .05em; }

nav ul {
  list-style: none;
  display: flex;
  gap: .25rem;
}

nav a {
  color: #9FD4DC;
  font-size: .9rem;
  padding: .45rem .85rem;
  border-radius: 4px;
  transition: background .2s, color .2s;
}

nav a:hover, nav a.active {
  background: var(--blue);
  color: var(--white);
}

/* Hamburger (mobile) */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0; border-radius: 2px; transition: .3s;
}

/* ── Construction Banner ── */
.construction-banner {
  background: var(--yellow);
  color: var(--navy);
  text-align: center;
  padding: .55rem 1.5rem;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.construction-banner span {
  margin: 0 .5rem;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 6rem 1.5rem 5rem;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero h1 span { color: var(--yellow); }

.hero p {
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 2rem;
  color: #9FD4DC;
}

.btn {
  display: inline-block;
  padding: .8rem 2rem;
  border-radius: 5px;
  font-weight: 700;
  font-size: .95rem;
  transition: background .2s, transform .15s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--yellow);
  color: var(--navy);
}

.btn-primary:hover {
  background: #D9A810;
  color: var(--navy);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  margin-left: .75rem;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-1px);
}

/* ── Sections ── */
section { padding: 4.5rem 1.5rem; }

.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .5rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-intro {
  max-width: 680px;
  margin-bottom: 3rem;
  color: var(--text);
}

/* ── Cards ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--white);
  border: 1px solid #B8DDE2;
  border-radius: 8px;
  padding: 2rem 1.75rem;
  transition: box-shadow .2s, transform .2s;
}

.card:hover {
  box-shadow: 0 6px 24px rgba(40,95,111,.12);
  transform: translateY(-3px);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: #DCF0F3;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.card-icon svg { width: 26px; height: 26px; stroke: var(--blue); fill: none; stroke-width: 2; }

.card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: .6rem; }
.card p  { font-size: .93rem; line-height: 1.6; }

/* ── Alt background ── */
.bg-grey { background: var(--grey); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy .section-title { color: var(--white); }
.bg-navy .section-intro  { color: #9FD4DC; }

/* ── Process steps ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }

.step { text-align: center; }

.step-num {
  width: 52px; height: 52px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 50%;
  font-size: 1.3rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}

.step h4 { color: var(--navy); font-size: 1rem; margin-bottom: .4rem; }
.step p  { font-size: .9rem; }

/* ── Page hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 4rem 1.5rem 3.5rem;
  text-align: center;
}

.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.75rem); margin-bottom: .75rem; }
.page-hero p  { color: #9FD4DC; max-width: 560px; margin: 0 auto; }

/* ── Services list ── */
.service-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid #B8DDE2;
}

.service-item:last-child { border-bottom: none; }

.service-icon {
  width: 52px; height: 52px;
  background: #DCF0F3;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.service-icon svg { width: 28px; height: 28px; stroke: var(--blue); fill: none; stroke-width: 2; }

.service-item h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: .5rem; }
.service-item p  { font-size: .93rem; margin-bottom: .75rem; }

.tag-list { display: flex; flex-wrap: wrap; gap: .4rem; }
.tag {
  background: #DCF0F3;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 600;
  padding: .2rem .65rem;
  border-radius: 20px;
}

/* ── About stats ── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.stat-num { font-size: 2.5rem; font-weight: 700; color: var(--yellow); }
.stat-lbl { font-size: .9rem; color: #9FD4DC; margin-top: .25rem; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 { color: var(--navy); font-size: 1.2rem; margin-bottom: 1.25rem; }

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.contact-detail svg {
  width: 22px; height: 22px;
  stroke: var(--orange); fill: none; stroke-width: 2;
  flex-shrink: 0; margin-top: 2px;
}

.contact-detail p { font-size: .93rem; }
.contact-detail strong { display: block; color: var(--navy); margin-bottom: .15rem; }

/* Form */
.contact-form { background: var(--white); border: 1px solid #B8DDE2; border-radius: 8px; padding: 2.25rem; }

.form-group { margin-bottom: 1.25rem; }

label { display: block; font-size: .85rem; font-weight: 700; color: var(--navy); margin-bottom: .35rem; }

input, textarea, select {
  width: 100%;
  padding: .7rem 1rem;
  border: 1px solid #B8DDE2;
  border-radius: 5px;
  font-family: inherit;
  font-size: .93rem;
  color: var(--text);
  transition: border-color .2s;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47,149,165,.15);
}

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

/* ── CTA Banner ── */
.cta-banner {
  background: var(--yellow);
  color: var(--navy);
  text-align: center;
  padding: 3.5rem 1.5rem;
}

.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .75rem; }
.cta-banner p  { margin-bottom: 1.75rem; max-width: 560px; margin-left: auto; margin-right: auto; opacity: .85; }

.btn-white {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
}

.btn-white:hover { background: var(--blue); color: var(--white); }

/* ── Footer ── */
footer {
  background: var(--navy);
  color: #9FD4DC;
  padding: 3rem 1.5rem 1.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(2, 1fr);
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #1C4A57;
}

.footer-brand .brand { color: var(--white); font-weight: 700; font-size: 1.1rem; }
.footer-brand p { font-size: .87rem; margin-top: .6rem; line-height: 1.6; }

footer h4 { color: var(--white); font-size: .9rem; margin-bottom: .9rem; }
footer ul { list-style: none; }
footer li { margin-bottom: .45rem; }
footer a { color: #9FD4DC; font-size: .87rem; }
footer a:hover { color: var(--orange); }

.footer-bottom {
  max-width: 1100px;
  margin: 1.25rem auto 0;
  font-size: .82rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-toggle { display: block; }

  nav {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--navy);
    padding: 1rem 1.5rem;
    border-top: 1px solid #1C4A57;
  }

  nav.open { display: block; }
  nav ul { flex-direction: column; gap: .25rem; }
  nav a { display: block; padding: .65rem .85rem; }

  .contact-grid  { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .btn-outline   { margin-left: 0; margin-top: .75rem; }
}
