/* =============================================
   CS GLOBAL MANAGEMENT — MAIN STYLESHEET
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:   #0089CF;
  --red:    #d2232a;
  --orange: #f58220;
  --light-bg: #eef4f8;
  --dark-text: #2b2b2b;
  --font: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  color: var(--dark-text);
  line-height: 1.65;
  background: #fff;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
strong { font-weight: 700; }

/* ---- HEADER / NAV ---- */
header {
  background: var(--blue);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 5px 40px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  height: 80px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 60px;
  width: auto;
}

.logo-name {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.1;
}

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

nav a {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

nav a:hover { text-decoration: none; opacity: 0.85; }

/* Dropdown */
.dropdown { position: relative; padding-bottom: 20px; margin-bottom: -20px; }

.dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown > a::after {
  content: '▾';
  font-size: 11px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  min-width: 220px;
  border-top: 3px solid var(--blue);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  z-index: 200;
  padding-top: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--dark-text);
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu a:first-child { color: var(--red); font-weight: 700; }

.dropdown-menu a:hover {
  background: var(--light-bg);
  text-decoration: none;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu { display: block; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}

.btn:hover {
  background: #d96f10;
  text-decoration: none;
  color: #fff;
  transform: translateY(-1px);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: url('../assets/images/vecteezy_industrial-printing-scaled.jpg') center center / cover no-repeat;
  padding: 60px 40px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,60,120,0.75) 0%, rgba(0,60,120,0.4) 50%, rgba(0,0,0,0) 100%);
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--orange);
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero h2 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: #fff;
  padding: 60px 40px 0;
  border-bottom: 4px solid #eee;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 8px;
}

.page-hero h2 {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

/* ---- SECTION CONTAINERS ---- */
section { padding: 64px 40px; }

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

/* ---- INTRO SECTION (2-col with image) ---- */
.intro-section { background: #fff; padding-top: 40px; }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-text p { margin-bottom: 20px; font-size: 15px; }

.intro-image img {
  border-radius: 8px;
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  object-position: center;
}

.intro-image.large img {
  max-height: 380px;
}

/* ---- PROMISE / FEATURES SECTION ---- */
.features-section { background: #ffffff; }

.features-section h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 36px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  background: #fdf0e6;
  border-radius: 8px;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-card .check-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.feature-card p { font-size: 14px; line-height: 1.55; margin: 0; }
.feature-card strong { color: var(--dark-text); }

/* ---- SERVICES SECTION ---- */
.services-section { background: var(--light-bg); }

.services-section h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 32px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 60px;
}

.services-grid a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: var(--blue);
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid #dce8f0;
  text-decoration: none;
}

.services-grid a svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: var(--blue);
  transition: stroke 0.2s;
}

.services-grid a:hover { color: var(--orange); text-decoration: none; }
.services-grid a:hover svg { stroke: var(--orange); }

/* ---- TABLE/GRID for inner service pages ---- */
.capability-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  margin-top: 22px;
}

.capability-table tr {
  /* spacing handled by border-spacing */
}

.capability-table td:first-child {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  padding: 18px 20px;
  width: 200px;
  vertical-align: middle;
  border: 2px solid var(--blue);
  border-right: none;
  border-radius: 6px 0 0 6px;
}

.capability-table td:last-child {
  padding: 18px 24px;
  font-size: 14px;
  line-height: 1.6;
  background: #fff;
  border: 2px solid var(--blue);
  border-left: none;
  border-radius: 0 6px 6px 0;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--orange);
  padding: 56px 40px;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
}

/* Pharma page has orange CTA */
.cta-banner.orange { background: var(--orange); }
/* Fulfillment page has purple CTA */
.cta-banner.purple { background: #6b2d8b; }

/* ---- PRODUCT LIST (General Printing) ---- */
.product-lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 40px;
  margin-top: 24px;
}

.product-lists ul {
  list-style: none;
  padding: 0;
}

.product-lists ul li {
  padding: 8px 0;
  font-size: 15px;
  border-bottom: 1px solid #dce8f0;
  color: var(--dark-text);
}

/* ---- CONTACT PAGE ---- */
.contact-section { background: #fff; }

.contact-intro {
  text-align: center;
  margin-bottom: 48px;
}

.contact-intro h1 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 12px;
}

.contact-intro p { font-size: 16px; color: #555; }

.contact-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #dce8f0;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.contact-form-wrap h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark-text);
}

.contact-form-wrap p.note {
  font-size: 13px;
  color: #888;
  margin-bottom: 28px;
}

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

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #444;
}

.form-group input,
.form-group textarea,
.form-group select {
  border: 2px solid var(--blue);
  border-radius: 6px;
  padding: 10px 14px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--dark-text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--orange); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; text-align: center; font-size: 16px; }

/* ---- FOOTER ---- */
footer {
  background: #f0f0f0;
  padding: 48px 40px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  padding-top: 20px;
  border-top: 1px solid #f0c090;
  text-align: center;
  font-size: 13px;
  color: #555;
}

.footer-logo img {
  height: 120px;
  width: auto;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
}

.footer-address {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}

.footer-address a { color: #333; }

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 4px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  width: auto;
  height: auto;
  text-decoration: none;
  border-radius: 0;
}

.footer-social a:hover { opacity: 0.8; background: none; }

.linkedin-label {
  font-size: 13px;
  font-weight: 400;
  color: #333;
  text-decoration: none;
}

.linkedin-label:hover { text-decoration: underline; }

/* ---- DIVIDER LINE ---- */
.section-divider {
  border: none;
  border-top: 3px solid #e0e8ef;
  margin: 0;
}

/* ---- PHARMA INTRO SPLIT ---- */
.pharma-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
}

.pharma-logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px;
  border: 2px solid #dce8f0;
  border-radius: 10px;
  min-width: 220px;
  background: #f8fbfd;
}

.pharma-logo-box img { width: 180px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .product-lists { grid-template-columns: 1fr 1fr; }
  .pharma-intro { grid-template-columns: 1fr; }
  .pharma-logo-box { flex-direction: row; min-width: auto; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-right { text-align: center; }
  .footer-social { justify-content: center; }
}

@media (max-width: 640px) {
  header { padding: 0 20px; }
  .header-inner { height: 64px; }
  section { padding: 48px 20px; }
  .page-hero { padding: 48px 20px 0; }
  .hero { padding: 48px 20px; }
  .cta-banner { padding: 48px 20px; }
  footer { padding: 40px 20px 24px; }
  .product-lists { grid-template-columns: 1fr; }
  nav ul { display: none; }
  nav ul.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--blue); padding: 20px; gap: 16px; }
  .hamburger { display: flex; }
  .capability-table td:first-child { width: 130px; font-size: 12px; padding: 14px 12px; }
  .contact-form-wrap { padding: 24px 16px; }
}
