:root {
  --navy: #0b1f3a;
  --navy-2: #102a4f;
  --navy-3: #173861;
  --gold: #f3a533;
  --gold-2: #ffd08a;
  --white: #ffffff;
  --ink: #16304b;
  --muted: #6e8096;
  --line: rgba(11, 31, 58, 0.1);
  --page: #f5f8fc;
  --card: rgba(255, 255, 255, 0.88);
  --shadow-lg: 0 28px 60px rgba(10, 26, 52, 0.14);
  --shadow-md: 0 18px 40px rgba(10, 26, 52, 0.12);
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --container: min(1180px, calc(100% - 32px));
  --ease: 260ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(243, 165, 51, 0.16), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
  line-height: 1.65;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gold);
}

h1,
h2,
h3,
h4,
strong {
  margin: 0;
  line-height: 1.14;
}

h1 {
  font-size: clamp(2.9rem, 6vw, 5.6rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.35rem);
  font-weight: 800;
}

h3 {
  font-size: 1.3rem;
  font-weight: 700;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  font-weight: 600;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), #ffc56e);
  box-shadow: 0 18px 34px rgba(243, 165, 51, 0.32);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
}

.site-loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(11, 31, 58, 0.98), rgba(16, 42, 79, 0.96));
  z-index: 2000;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.site-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-shell {
  display: flex;
  gap: 10px;
}

.loader-shell span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.1s infinite ease-in-out;
}

.loader-shell span:nth-child(2) { animation-delay: 0.14s; }
.loader-shell span:nth-child(3) { animation-delay: 0.28s; }

@keyframes pulse {
  0%, 100% { transform: scale(0.75); opacity: 0.4; }
  50% { transform: scale(1.2); opacity: 1; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  padding: 12px 0;
  transition: background var(--ease), box-shadow var(--ease), padding var(--ease);
}

.site-header.scrolled,
.site-header--solid {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(10, 26, 52, 0.08);
}

.homepage .site-header:not(.scrolled) .site-nav a {
  color: rgba(255, 255, 255, 0.92);
}

.homepage .site-header:not(.scrolled) .nav-toggle span {
  background: var(--white);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  max-width: min(40vw, 300px);
}

.brand__logo {
  width: 100%;
  max-width: 280px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  padding: 6px 10px;
  box-shadow: 0 12px 24px rgba(11, 31, 58, 0.12);
}

.brand__logo--footer {
  background: rgba(255, 255, 255, 0.98);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  flex: 1 1 auto;
  justify-content: flex-end;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -92px;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  background:
    linear-gradient(90deg, rgba(8, 18, 35, 0.28), rgba(8, 18, 35, 0.12)),
    url("../images/stock/hero-printing.jpg") center/cover no-repeat;
  transform: scale(1.03);
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(11, 31, 58, 0.88) 0%, rgba(11, 31, 58, 0.72) 42%, rgba(11, 31, 58, 0.32) 100%),
    linear-gradient(180deg, rgba(243, 165, 51, 0.08), transparent 35%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__copy {
  max-width: 660px;
  color: var(--white);
  padding: 160px 0 120px;
}

.hero__copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  max-width: 600px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__highlights span {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
}

.stats-band {
  margin-top: -56px;
  position: relative;
  z-index: 2;
}

.stats-grid,
.workflow-grid,
.service-grid,
.portfolio-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card,
.workflow-card,
.service-tile,
.portfolio-card,
.contact-card,
.contact-panel,
.map-card,
.value-pill,
.testimonial-slider,
.inner-hero .container,
.quote-modal__dialog {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}

.stat-card {
  padding: 30px;
  border-radius: 24px;
  text-align: center;
}

.stat-card__icon,
.workflow-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 700;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
}

.stat-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--navy);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 44px;
  align-items: center;
}

.split-layout__media {
  position: relative;
}

.media-frame {
  padding: 26px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(231, 239, 250, 0.92));
  box-shadow: var(--shadow-lg);
}

.media-frame img {
  width: 100%;
  border-radius: 24px;
}

.workflow-section {
  background: linear-gradient(180deg, rgba(11, 31, 58, 0.02), rgba(11, 31, 58, 0.05));
}

.portal-section {
  background: linear-gradient(180deg, rgba(243, 165, 51, 0.05), rgba(11, 31, 58, 0.02));
}

.workflow-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.workflow-card {
  position: relative;
  padding: 34px 28px;
  border-radius: 22px;
}

.workflow-card__step {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(11, 31, 58, 0.08);
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-section .service-grid {
  align-items: stretch;
}

.service-tile {
  border-radius: 22px;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}

.service-tile:hover,
.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(10, 26, 52, 0.18);
}

.service-tile__media {
  aspect-ratio: 1.18 / 0.84;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(243, 165, 51, 0.12), rgba(11, 31, 58, 0.04));
}

.service-tile__media img,
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-tile:hover .service-tile__media img,
.portfolio-card:hover img {
  transform: scale(1.06);
}

.service-tile__body {
  padding: 24px;
}

.values-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.value-pill {
  padding: 26px;
  border-radius: 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.value-pill span {
  min-width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold), #ffbf5d);
  font-weight: 700;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.filter-btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  color: var(--navy);
  font-weight: 600;
}

.filter-btn.active {
  background: var(--navy);
  color: var(--white);
}

.portfolio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portfolio-card {
  border-radius: 22px;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}

.portfolio-card.hidden {
  display: none;
}

.portfolio-card__button {
  padding: 0;
  border: 0;
  width: 100%;
  background: transparent;
  aspect-ratio: 1 / 0.9;
}

.cta-panel {
  padding: 20px 0 0;
}

.cta-panel__inner {
  padding: 42px 48px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  box-shadow: 0 26px 56px rgba(10, 26, 52, 0.24);
}

.cta-panel__inner h2,
.cta-panel__inner p {
  color: var(--white);
}

.testimonials-section {
  overflow: hidden;
}

.testimonial-slider {
  padding: 36px;
  border-radius: 26px;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.45s ease;
}

.testimonial-slide {
  min-width: 100%;
}

.testimonial-slide p {
  font-size: 1.08rem;
  color: var(--ink);
  max-width: 860px;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.testimonial-meta img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-meta span {
  color: var(--muted);
  display: block;
}

.slider-dots {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(11, 31, 58, 0.15);
}

.slider-dot.active {
  background: var(--gold);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
}

.contact-panel,
.contact-card {
  border-radius: 24px;
  padding: 34px;
}

.contact-aside {
  display: grid;
  gap: 24px;
}

.map-card {
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.form,
.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--navy);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(11, 31, 58, 0.14);
  border-radius: 14px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.94);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(243, 165, 51, 0.16);
}

.field .invalid,
.field input.invalid,
.field textarea.invalid,
.field select.invalid {
  border-color: #d44b43;
  box-shadow: 0 0 0 4px rgba(212, 75, 67, 0.12);
}

.form-status {
  min-height: 24px;
  font-weight: 600;
}

.site-footer {
  margin-top: 100px;
  padding: 90px 0 24px;
  background: linear-gradient(180deg, #09172b, #0b1f3a);
  color: rgba(255, 255, 255, 0.85);
}

.brand-footer {
  max-width: 300px;
}

.footer-grid {
  grid-template-columns: 1.3fr 0.8fr 0.8fr 0.9fr;
}

.site-footer p,
.site-footer a,
.site-footer small,
.site-footer strong,
.site-footer h3 {
  color: inherit;
}

.site-footer h3 {
  margin-bottom: 18px;
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
}

.social-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-modal,
.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(6, 16, 31, 0.72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--ease), visibility var(--ease);
  z-index: 1500;
}

.quote-modal.is-open,
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.quote-modal__dialog {
  position: relative;
  width: min(720px, 100%);
  padding: 34px;
  border-radius: 28px;
}

.quote-modal__close,
.lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: rgba(11, 31, 58, 0.08);
  color: var(--navy);
  font-size: 1.45rem;
}

.lightbox img {
  width: min(900px, 100%);
  max-height: 84vh;
  border-radius: 20px;
  box-shadow: 0 34px 66px rgba(0, 0, 0, 0.3);
  background: var(--white);
}

.lightbox__close {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.floating-whatsapp,
.back-to-top {
  position: fixed;
  right: 18px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  z-index: 1100;
  box-shadow: var(--shadow-md);
}

.floating-whatsapp {
  bottom: 18px;
  background: linear-gradient(135deg, #24d366, #1ea754);
  color: var(--white);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  display: block;
}

.back-to-top {
  bottom: 86px;
  border: 0;
  background: var(--white);
  color: var(--navy);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ease), visibility var(--ease), transform var(--ease);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.inner-page {
  padding-top: 36px;
}

.inner-hero {
  padding: 70px 0 10px;
}

.inner-hero .container {
  border-radius: 32px;
  padding: 52px;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-grid,
  .values-strip,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    top: 88px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity var(--ease), visibility var(--ease), transform var(--ease);
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .btn-nav {
    width: 100%;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    margin-top: -88px;
  }

  .hero__copy {
    padding: 170px 0 100px;
  }

  .brand__logo {
    max-width: 220px;
    height: 56px;
  }

  .stats-grid,
  .workflow-grid,
  .contact-layout,
  .split-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 84px 0;
  }

  .hero__copy p {
    font-size: 1rem;
  }

  .form-grid,
  .service-grid,
  .portfolio-grid,
  .values-strip,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel__inner,
  .value-pill {
    flex-direction: column;
    align-items: flex-start;
  }

  .inner-hero .container,
  .quote-modal__dialog,
  .contact-panel,
  .contact-card {
    padding: 24px;
  }

  .brand__logo {
    max-width: 180px;
    height: 48px;
  }
}
