/*
Theme Name: Media Junkies
Author: Media Junkies
Version: 6.9 - Refined
*/

/* =========================
   VARIABLES
========================= */

:root {
  --black: #0A0A0A;
  --white: #FFFFFF;
  --off-white: #F8F8F6;
  --muted: #6B6B6B;
  --border: #EAEAEA;
  --accent: #8B1E1E;
  --accent-soft: #F6EAEA;
}

/* =========================
   RESET + BASE
========================= */

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

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* =========================
   LAYOUT
========================= */

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 0.5px solid var(--border);
  z-index: 1000;
  padding: 22px 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}

.nav-logo img {
  height: 46px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 13.5px;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--black);
}

/* Hamburger */
.mobile-menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s ease;
}

/* =========================
   MOBILE NAV
========================= */

@media (max-width: 900px) {

  .hamburger { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    padding: 28px 24px;
    border-top: 0.5px solid var(--border);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    gap: 0;
    z-index: 999;
  }

  .mobile-menu-toggle:checked ~ .nav-links {
    display: flex;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    width: 100%;
  }

  .nav-links ul li {
    width: 100%;
    border-bottom: 0.5px solid var(--border);
  }

  .nav-links ul li:first-child {
    border-top: 0.5px solid var(--border);
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 14px 0;
    text-align: left;
    font-size: 15px;
    color: var(--black);
  }

  .nav-links .btn {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    padding: 14px 24px;
  }
}

/* =========================
   BUTTONS
========================= */

.btn {
  background: var(--black);
  color: #fff !important;
  padding: 12px 24px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  transition: all 0.25s ease;
  font-weight: 500;
}

.btn:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--black) !important;
  padding: 12px 24px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  border: 1px solid var(--black);
  transition: all 0.25s ease;
  font-weight: 500;
}

.btn-outline:hover {
  background: var(--black);
  color: #fff !important;
}

/* CTA buttons on dark background */
.cta-block .btn {
  background: var(--white);
  color: var(--black) !important;
}

.cta-block .btn:hover {
  background: var(--off-white);
  transform: translateY(-1px);
}

.cta-block .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: #fff !important;
}

.cta-block .btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  color: #fff !important;
}

.two-col .btn,
.two-col .btn-outline {
  margin-top: 40px;
}

/* =========================
   HERO
========================= */

.hero {
  padding: 110px 40px 90px;
  border-bottom: 0.5px solid var(--border);
  max-width: 1180px;
  margin: 0 auto;
  background: var(--white);
}

.hero-eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 500;
}

h1 {
  font-size: 52px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.03em;
  max-width: 720px;
  margin-bottom: 24px;
}

h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================
   NETWORK STRIP
   Off-white — first use of #F8F8F6
========================= */

.network-strip {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 28px 40px;
  border-bottom: 0.5px solid var(--border);
  border-top: 0.5px solid var(--border);
  flex-wrap: wrap;
  max-width: 1180px;
  margin: 0 auto;
  justify-content: center;
  background: var(--off-white);
}

.network-strip-label {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  font-weight: 500;
}

.network-strip-logos {
  display: flex;
  align-items: center;
  gap: 42px;
  flex-wrap: wrap;
  justify-content: center;
}

.network-strip-logos img {
  height: 30px;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.network-strip-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* =========================
   STATS ROW
========================= */

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 0.5px solid var(--border);
  max-width: 1180px;
  margin: 0 auto;
  background: var(--white);
}

.stat-block {
  padding: 52px 40px;
  border-right: 0.5px solid var(--border);
}

.stat-block:last-child {
  border-right: none;
}

.stat-number {
  font-size: 54px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.55;
}

/* =========================
   TWO COLUMN
   Off-white — second use of #F8F8F6
========================= */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
  background: var(--off-white);
  border-bottom: 0.5px solid var(--border);
}

.col-left,
.col-right {
  padding: 80px 40px;
}

.col-left {
  border-right: 0.5px solid var(--border);
}

.section-label {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
  font-weight: 500;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 20px;
}

p:last-child {
  margin-bottom: 0;
}

/* =========================
   SERVICES GRID
========================= */

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.service-item {
  background: var(--white);
  padding: 32px;
}

.service-num {
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 500;
  display: block;
}

.service-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black);
}

.service-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* =========================
   PROCESS SECTION
   White — contrast after off-white
========================= */

.process-section {
  padding: 100px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-kicker {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  display: block;
  margin-bottom: 14px;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  max-width: 1180px;
  margin: 0 auto;
}

.process-step {
  background: var(--white);
  padding: 42px 36px;
}

.process-num {
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 500;
  display: block;
}

.process-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--black);
  line-height: 1.3;
}

.process-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* =========================
   IMPACT / CASE STUDIES
   Off-white — third use of #F8F8F6
========================= */

.impact-section {
  padding: 100px 0;
  background: var(--off-white);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  max-width: 1180px;
  margin: 0 auto;
}

.case-item {
  background: var(--white);
  padding: 52px 40px;
}

.case-tag {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.case-stat {
  font-size: 42px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  line-height: 1;
}

.case-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* =========================
   CTA SECTION
   Dark — strong page close
========================= */

.cta-section {
  background: var(--black);
  padding: 100px 40px;
}

.cta-block {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.cta-block .section-label {
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.cta-block h2 {
  font-size: 36px;
  color: var(--white);
  max-width: 520px;
  margin: 0 auto 20px;
}

.cta-block p {
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 0 auto 36px;
  font-size: 16px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  padding: 60px 40px 48px;
  background: var(--white);
  border-top: 0.5px solid var(--border);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  margin-bottom: 28px;
}

.footer-logo img {
  height: 36px;
  display: block;
  opacity: 0.8;
}

.footer-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin-bottom: 28px;
}

.footer-badge {
  margin-bottom: 28px;
}

.footer-badge img {
  height: 52px;
  display: block;
  opacity: 0.85;
}

.footer-copy {
  font-size: 12.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .container { padding: 0 24px; }
  .nav-logo img { height: 36px; }
  .hero { padding: 70px 24px 56px; }

  h1 { font-size: 36px; }
  h2 { font-size: 26px; }

  .network-strip { padding: 28px 24px; gap: 24px; }

  .stats-row,
  .two-col {
    grid-template-columns: 1fr;
  }

  .stat-block {
    border-right: none;
    border-bottom: 0.5px solid var(--border);
    padding: 36px 24px;
  }

  .stat-block:last-child { border-bottom: none; }

  .col-left,
  .col-right {
    padding: 48px 24px;
    border-right: none;
  }

  .col-left { border-bottom: 0.5px solid var(--border); }

  .two-col .btn,
  .two-col .btn-outline {
    margin-top: 28px;
  }

  .process-section,
  .impact-section {
    padding: 60px 0;
  }

  .process-strip {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: transparent;
  }

  .process-step {
    border-bottom: 0.5px solid var(--border);
    border-right: 0.5px solid var(--border);
    padding: 32px 24px;
  }

  .process-step:nth-child(even) { border-right: none; }
  .process-step:nth-last-child(-n+2) { border-bottom: none; }

  .case-grid {
    grid-template-columns: 1fr;
    gap: 0;
    background: transparent;
  }

  .case-item {
    padding: 40px 24px;
    border-bottom: 0.5px solid var(--border);
  }

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

  .cta-section { padding: 70px 24px; }
  .cta-block h2 { font-size: 28px; }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn,
  .cta-actions .btn-outline {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .site-footer { padding: 48px 24px 40px; }
  .section-header { padding: 0 24px; }
}

@media (max-width: 480px) {
  h1 { font-size: 30px; }
  .process-strip { grid-template-columns: 1fr; }
  .process-step { border-right: none !important; }
  .process-step:nth-last-child(-n+2) { border-bottom: 0.5px solid var(--border) !important; }
  .process-step:last-child { border-bottom: none !important; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn,
  .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }
}
/* =========================
   CONTACT PAGE
   Append to style.css
========================= */

/* Hero */
.contact-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 0.5px solid var(--border);
  max-width: 1180px;
  margin: 0 auto;
  background: var(--white);
}

.contact-hero-inner {
  padding: 90px 40px 80px;
  border-right: 0.5px solid var(--border);
}

.contact-hero-inner h1 {
  font-size: 46px;
  margin-bottom: 20px;
}

.contact-hero-inner .hero-lead {
  font-size: 15px;
  max-width: 420px;
}

.contact-meta {
  padding: 90px 40px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
}

.contact-meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-meta-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.contact-meta-item a,
.contact-meta-item span:last-child {
  font-size: 15px;
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
}

.contact-meta-item a:hover {
  color: var(--accent);
}

/* Form + Side layout */
.contact-form-section {
  display: grid;
  grid-template-columns: 1fr 380px;
  max-width: 1180px;
  margin: 0 auto;
  border-bottom: 0.5px solid var(--border);
  align-items: start;
}

.contact-form-wrap {
  padding: 70px 40px;
  border-right: 0.5px solid var(--border);
  background: var(--white);
}

/* Form elements */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--black);
  text-transform: uppercase;
}

.required {
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  color: var(--black);
  background: var(--off-white);
  border: 0.5px solid var(--border);
  border-radius: 2px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #ADADAD;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--black);
  background: var(--white);
}

/* Custom select arrow */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.65;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

.form-footer .btn {
  padding: 14px 32px;
  font-size: 13px;
}

/* Error banner */
.form-error-banner {
  background: #FEF2F2;
  border: 0.5px solid #FECACA;
  color: #991B1B;
  padding: 14px 18px;
  font-size: 13px;
  border-radius: 2px;
  margin-bottom: 28px;
  line-height: 1.5;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 60px 20px;
}

.form-success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--off-white);
  border: 0.5px solid var(--border);
  font-size: 22px;
  color: var(--accent);
  margin: 0 auto 24px;
}

.form-success h2 {
  margin-bottom: 12px;
}

.form-success p {
  max-width: 360px;
  margin: 0 auto 28px;
}

/* Side panel */
.contact-side {
  background: var(--off-white);
  display: flex;
  flex-direction: column;
}

.contact-side-block {
  padding: 48px 36px;
  border-bottom: 0.5px solid var(--border);
}

.contact-side-block:last-child {
  border-bottom: none;
}

/* Steps list */
.contact-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 20px;
}

.contact-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.08em;
  padding-top: 2px;
  white-space: nowrap;
}

.contact-steps strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  display: block;
  margin-bottom: 4px;
}

.contact-steps p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Side network logos */
.contact-side-networks .section-label {
  margin-bottom: 20px;
}

.side-network-logos {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.side-network-logos img {
  height: 24px;
  max-width: 110px;
  object-fit: contain;
  opacity: 0.45;
  filter: grayscale(100%);
  transition: all 0.25s ease;
}

.side-network-logos img:hover {
  opacity: 0.9;
  filter: grayscale(0%);
}

/* =========================
   CONTACT RESPONSIVE
========================= */

@media (max-width: 900px) {

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

  .contact-hero-inner {
    padding: 60px 24px 48px;
    border-right: none;
    border-bottom: 0.5px solid var(--border);
  }

  .contact-hero-inner h1 {
    font-size: 34px;
  }

  .contact-meta {
    padding: 40px 24px;
    gap: 28px;
  }

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

  .contact-form-wrap {
    padding: 48px 24px;
    border-right: none;
    border-bottom: 0.5px solid var(--border);
  }

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

  .contact-side {
    border-top: 0.5px solid var(--border);
  }

  .contact-side-block {
    padding: 36px 24px;
  }

  .side-network-logos {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }

  .side-network-logos img {
    height: 22px;
  }
}