/*
Theme Name: Printulk Limited
Theme URI: https://example.com/printulk-limited
Author: OpenAI
Author URI: https://openai.com
Description: A complete commercial WordPress theme for Printulk Limited.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: printulk-limited
*/

:root {
  --ink: #07131f;
  --ink-2: #102437;
  --panel: #0d1c2b;
  --paper: #f4f7f8;
  --white: #ffffff;
  --line: rgba(7, 19, 31, 0.14);
  --soft: #e6edf0;
  --cyan: #00aee8;
  --magenta: #e20c7d;
  --yellow: #f5d10a;
  --green: #63c7a4;
  --muted: #617080;
  --radius: 8px;
  --shadow: 0 22px 50px rgba(7, 19, 31, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-shell {
  overflow: hidden;
}

.container {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 247, 248, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(7, 19, 31, 0.08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 196px;
  max-height: 46px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  padding: 10px 12px;
  font-weight: 800;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #203247;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
  background: var(--ink);
  color: var(--white);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow));
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(0, 174, 232, 0.18);
}

.hero {
  position: relative;
  background:
    linear-gradient(125deg, rgba(7, 19, 31, 0.94), rgba(10, 33, 50, 0.86)),
    url("assets/img/printulk-unit.png") center / cover no-repeat;
  color: var(--white);
  min-height: 680px;
  display: flex;
  align-items: stretch;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 9px;
  background: linear-gradient(90deg, var(--cyan) 0 24%, var(--magenta) 24% 48%, var(--yellow) 48% 72%, var(--green) 72% 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: 50px;
  align-items: center;
  padding: 90px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #087294;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow));
}

.hero .eyebrow,
.page-hero .eyebrow,
.band-dark .eyebrow {
  color: #b9f2ff;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  max-width: 770px;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 900;
}

.hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  margin: 22px 0 0;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--white);
  color: var(--ink);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-line {
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--white);
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-card strong {
  display: block;
  font-size: 20px;
  margin-bottom: 12px;
}

.hero-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-list li {
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--cyan);
}

.band {
  padding: 84px 0;
}

.band-white {
  background: var(--white);
}

.band-dark {
  background: var(--ink);
  color: var(--white);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.45fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2 {
  font-size: clamp(32px, 4vw, 52px);
}

.section-head p,
.lead {
  color: var(--muted);
  margin: 0;
  font-size: 17px;
}

.band-dark .section-head p,
.band-dark .lead {
  color: rgba(255, 255, 255, 0.72);
}

.service-grid,
.reason-grid,
.trade-grid,
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 100%;
  box-shadow: 0 1px 0 rgba(7, 19, 31, 0.04);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 174, 232, 0.45);
  box-shadow: 0 18px 38px rgba(7, 19, 31, 0.1);
}

.card h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  margin: 0;
}

.band-dark .card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

.band-dark .card p {
  color: rgba(255, 255, 255, 0.7);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: center;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #c8d3d8;
}

.media-frame::after,
.protected-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: auto;
  background: transparent;
}

.media-frame img {
  width: 100%;
  aspect-ratio: 5 / 3.25;
  object-fit: cover;
}

.label-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.7fr 0.6fr;
  min-height: 10px;
  margin: 18px 0;
}

.label-strip span:nth-child(1) { background: var(--ink); }
.label-strip span:nth-child(2) { background: var(--cyan); }
.label-strip span:nth-child(3) { background: var(--magenta); }
.label-strip span:nth-child(4) { background: var(--yellow); }

.process-list {
  display: grid;
  gap: 14px;
  counter-reset: step;
  margin-top: 22px;
}

.process-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
}

.process-item::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.process-item h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.process-item p {
  color: var(--muted);
  margin: 0;
}

.operations {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
  gap: 38px;
  align-items: center;
}

.van-card {
  padding: 12px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.van-card img {
  border-radius: 6px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 11px;
  align-items: start;
}

.feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  border-radius: 50%;
}

.page-hero {
  background:
    radial-gradient(circle at 85% 10%, rgba(0, 174, 232, 0.18), transparent 28%),
    linear-gradient(135deg, var(--ink), var(--ink-2));
  color: var(--white);
  padding: 86px 0 70px;
}

.page-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  margin: 18px 0 0;
}

.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 22px;
}

.filter-bar input,
.filter-bar select,
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 13px;
  font: inherit;
  background: var(--white);
  color: var(--ink);
}

.filter-bar input {
  flex: 1 1 280px;
}

.filter-bar select {
  flex: 0 1 250px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pill {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 174, 232, 0.12);
  color: #055b78;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.contact-panel {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px;
}

.contact-panel a {
  color: var(--white);
  font-weight: 800;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.map-frame {
  margin-top: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0a0f17;
}

.map-frame iframe {
  width: 100%;
  height: 270px;
  border: 0;
  display: block;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

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

.form-field.full {
  grid-column: 1 / -1;
}

.contact-form label {
  display: block;
  font-weight: 800;
  margin-bottom: 6px;
}

.contact-form textarea {
  min-height: 150px;
  padding-top: 12px;
  resize: vertical;
}

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

.notice {
  padding: 12px 14px;
  border-radius: var(--radius);
  margin-bottom: 14px;
  font-weight: 800;
}

.notice-success {
  background: #e9fbf4;
  color: #0d5c43;
}

.notice-error {
  background: #fff0f3;
  color: #8d1231;
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  font-size: 28px;
  margin-top: 32px;
}

.legal-content p,
.legal-content li {
  color: #4e5e6c;
}

.cta-panel {
  background:
    linear-gradient(135deg, rgba(7, 19, 31, 0.96), rgba(16, 36, 55, 0.96)),
    url("assets/img/printulk-unit.png") center / cover no-repeat;
  color: var(--white);
  border-radius: var(--radius);
  padding: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.cta-panel p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer {
  background: #050b11;
  color: var(--white);
  padding: 54px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr;
  gap: 34px;
}

.footer-logo {
  width: 196px;
  margin-bottom: 14px;
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.site-footer a:hover {
  color: var(--cyan);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.protected-image,
.protected-image-wrap {
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    inset: 78px 18px auto 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 12px;
    display: none;
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav ul {
    display: grid;
    gap: 4px;
  }

  .primary-nav a {
    width: 100%;
    border-radius: var(--radius);
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .section-head,
  .split,
  .operations,
  .contact-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 80px 0;
  }

  .service-grid,
  .reason-grid,
  .trade-grid,
  .legal-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-panel {
    padding: 30px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .brand img {
    width: 168px;
  }

  .hero-grid {
    padding: 64px 0;
  }

  h1 {
    font-size: 40px;
  }

  .band {
    padding: 58px 0;
  }

  .service-grid,
  .reason-grid,
  .trade-grid,
  .legal-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field.full {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }
}
