/* GWN Marketing Management — reconstructed plain-HTML stylesheet
   Brand colors: green #2bb77f · navy #1a3665 · cyan #39c6f2 */

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: #444;
  line-height: 1.6;
  font-size: 16px;
  background: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #2bb77f; text-decoration: none; }
a:hover { color: #39c6f2; }
h1, h2, h3, h4 {
  font-family: "Poppins", Arial, sans-serif;
  color: #0a0a0a;
  margin: 0 0 .6em;
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  background: #1a3665;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}
.site-header .logo img { max-height: 60px; }
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 32px;
}
.site-nav a {
  color: #fff;
  font-weight: 500;
  letter-spacing: .3px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}
.site-nav a:hover,
.site-nav a.active {
  color: #39c6f2;
  border-bottom-color: #2bb77f;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 600px;
  background: linear-gradient(rgba(26,54,101,.55), rgba(26,54,101,.55)),
              url("../images/hero-agency.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 80px 24px;
}
.hero h1 {
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin: 0 0 18px;
}
.hero .eyebrow {
  font-size: 22px;
  letter-spacing: 3px;
  font-weight: 400;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.hero .lead {
  font-size: 20px;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto 32px;
}
@media (max-width: 720px) {
  .hero h1 { font-size: 36px; }
  .hero .eyebrow { font-size: 16px; letter-spacing: 2px; }
  .hero .lead { font-size: 16px; }
}

/* ---------- Page banner (sub-pages) ---------- */
.page-banner {
  background: linear-gradient(135deg, #1a3665 0%, #2bb77f 100%);
  color: #fff;
  padding: 80px 24px 60px;
  text-align: center;
}
.page-banner h1 { color: #fff; font-size: 44px; margin: 0; }
.page-banner p  { color: rgba(255,255,255,.85); margin: 12px 0 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: #2bb77f;
  color: #fff;
  padding: 14px 36px;
  font-weight: 500;
  border-radius: 2px;
  border: 2px solid #2bb77f;
  transition: background .2s, border-color .2s, color .2s;
}
.btn:hover { background: #39c6f2; border-color: #39c6f2; color: #fff; }
.btn-secondary {
  background: #1a3665;
  border-color: #1a3665;
}
.btn-secondary:hover { background: #2bb77f; border-color: #2bb77f; }

/* ---------- Section heading ---------- */
.section {
  padding: 90px 0;
}
.section.alt { background: #f7f9fc; }
.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-head .eyebrow {
  display: block;
  color: #2bb77f;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 10px;
}
.section-head h2 {
  font-size: 38px;
  margin: 0;
}

/* ---------- Feature grid (Why Choose Us) ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 28px;
}
@media (max-width: 980px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }
.feature {
  text-align: left;
}
.feature .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(43,183,127,.1);
  color: #2bb77f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
}
.feature h4 { font-size: 18px; color: #0a0a0a; margin: 0 0 8px; }
.feature p  { margin: 0; color: #555; font-size: 15px; }

/* ---------- Two-column (About row) ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }
.two-col .eyebrow {
  color: #2bb77f;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}
.two-col h2 { font-size: 36px; margin: 8px 0 20px; }
.two-col .image-panel {
  height: 420px;
  background: linear-gradient(135deg, #1a3665 0%, #2bb77f 100%);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.two-col .image-panel::before {
  content: "";
  position: absolute; inset: 0;
  background: url("../images/hero-agency.jpg") center/cover no-repeat;
  opacity: .35;
}

/* ---------- CTA banner ---------- */
.cta {
  background: #f1f4f8;
  padding: 70px 24px;
  text-align: center;
}
.cta h2 {
  font-size: 32px;
  max-width: 800px;
  margin: 0 auto 12px;
}
.cta p { margin: 0 0 28px; font-size: 17px; color: #444; }

/* ---------- Service grid ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 940px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .service-grid { grid-template-columns: 1fr; } }
.service-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #1a3665;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  transition: transform .25s;
}
.service-card:hover { transform: translateY(-4px); }
.service-card .bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.service-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,54,101,.2) 0%, rgba(26,54,101,.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.service-card h3 {
  color: #fff;
  font-size: 22px;
  margin: 0;
}

/* ---------- Mission / Vision / Values ---------- */
.mvv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
@media (max-width: 860px) { .mvv { grid-template-columns: 1fr; } }
.mvv-item {
  padding: 36px 30px;
  background: #fff;
  border: 1px solid #e7ecf3;
  border-radius: 6px;
  transition: transform .25s, box-shadow .25s;
}
.mvv-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(26,54,101,.1);
}
.mvv-item .num {
  font-size: 48px;
  font-weight: 700;
  color: #2bb77f;
  line-height: 1;
  margin-bottom: 18px;
}
.mvv-item h3 {
  font-size: 24px;
  color: #1a3665;
  margin: 0 0 12px;
}
.mvv-item p { margin: 0; color: #555; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.contact-info li {
  margin-bottom: 18px;
  padding-left: 36px;
  position: relative;
}
.contact-info li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 22px; height: 22px;
  background: #2bb77f;
  border-radius: 50%;
}
.contact-info li.icon-map::before    { background: #2bb77f url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/></svg>") center/14px no-repeat; }
.contact-info li.icon-phone::before  { background: #2bb77f url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.05-.24 11.36 11.36 0 0 0 3.58.57 1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.49a1 1 0 0 1 1 1 11.36 11.36 0 0 0 .57 3.58 1 1 0 0 1-.25 1.05z'/></svg>") center/14px no-repeat; }
.contact-info li.icon-mail::before   { background: #2bb77f url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm0 4-8 5-8-5V6l8 5 8-5z'/></svg>") center/14px no-repeat; }

.contact-form label {
  display: block;
  margin-bottom: 14px;
  font-size: 14px;
  color: #1a3665;
  font-weight: 500;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d6dde6;
  border-radius: 4px;
  font: inherit;
  margin-top: 4px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2bb77f;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0e1f3a linear-gradient(135deg, #0e1f3a 0%, #1a3665 100%);
  color: #c9d3e2;
  padding: 70px 0 0;
}
.site-footer .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 760px) { .site-footer .container { grid-template-columns: 1fr; } }
.site-footer h3 {
  color: #fff;
  font-size: 18px;
  margin: 0 0 20px;
  position: relative;
  padding-bottom: 12px;
}
.site-footer h3::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 40px; height: 3px;
  background: #2bb77f;
}
.site-footer p, .site-footer li { color: #c9d3e2; }
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li { margin-bottom: 12px; }
.site-footer a { color: #c9d3e2; }
.site-footer a:hover { color: #39c6f2; }
.footer-bottom {
  text-align: center;
  padding: 22px 0;
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 14px;
}
