/* ============================================================
   G S CREATIONS — Pharmaceutical Offset Printing
   Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* ---- Reset & Root Variables ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary:        #1B4F8A;
  --primary-dark:   #0F3260;
  --primary-light:  #2563B0;
  --accent:         #C8A951;
  --accent-light:   #E8CC7E;
  --accent-bg:      rgba(200,169,81,0.10);
  --bg-light:       #EEF4FC;
  --bg-white:       #FFFFFF;
  --dark:           #1A2740;
  --text:           #3D4F60;
  --text-light:     #6B7C8D;
  --border:         #D6E4F0;
  --green:          #2D8B4E;

  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 2px 8px  rgba(27,79,138,0.08);
  --shadow:     0 6px 24px rgba(27,79,138,0.12);
  --shadow-lg:  0 14px 50px rgba(27,79,138,0.18);

  --transition: all 0.3s ease;
}

html  { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

a       { color: inherit; text-decoration: none; transition: var(--transition); }
img     { max-width: 100%; height: auto; display: block; }
ul, ol  { list-style: none; }
button  { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Layout ---- */
.container    { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container-sm { max-width: 820px; margin: 0 auto; padding: 0 28px; }
.section-pad  { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

/* ---- Section Header ---- */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  height: 2px;
  width: 22px;
  background: var(--accent);
  border-radius: 1px;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 18px;
}
.section-title span { color: var(--primary); }

.section-desc {
  font-size: 16.5px;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 580px;
}

.section-header        { margin-bottom: 60px; }
.section-header-center { text-align: center; margin-bottom: 60px; }
.section-header-center .section-desc { margin: 0 auto; }

.divider        { width: 52px; height: 4px; background: linear-gradient(90deg, var(--accent), var(--accent-light)); border-radius: 2px; margin: 16px 0; }
.divider-center { margin: 16px auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary  { background: var(--accent); color: var(--dark); border-color: var(--accent); box-shadow: 0 4px 16px rgba(200,169,81,0.30); }
.btn-primary:hover { background: var(--dark); color: var(--accent); border-color: var(--dark); box-shadow: 0 8px 26px rgba(26,39,64,0.22); }

.btn-blue     { background: var(--primary); color: white; border-color: var(--primary); box-shadow: 0 4px 16px rgba(27,79,138,0.24); }
.btn-blue:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

.btn-outline-white { background: transparent; color: white; border-color: rgba(255,255,255,0.65); }
.btn-outline-white:hover { background: white; color: var(--primary); border-color: white; }

.btn-outline-blue { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-blue:hover { background: var(--primary); color: white; }

.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-lg { padding: 17px 44px; font-size: 15px; }

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0; width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* Brand / Logo */
.nav-brand   { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-brand svg, .nav-brand img { width: 54px; height: 54px; flex-shrink: 0; }
.brand-text  { display: flex; flex-direction: column; line-height: 1; }
.brand-name  { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 800; color: var(--primary); letter-spacing: 0.3px; }
.brand-sub   { font-family: 'Montserrat', sans-serif; font-size: 9.5px; font-weight: 600; color: var(--accent); letter-spacing: 2.5px; text-transform: uppercase; margin-top: 4px; }

/* Nav Menu */
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu a {
  display: block;
  padding: 8px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  border-radius: 8px;
  position: relative;
  transition: var(--transition);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); background: var(--bg-light); }
.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
}
.nav-cta-btn             { margin-left: 8px; background: var(--primary) !important; color: white !important; border-radius: 50px !important; padding: 10px 22px !important; }
.nav-cta-btn:hover       { background: var(--primary-dark) !important; }
.nav-cta-btn.active::after { display: none !important; }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border-radius: 6px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  padding: 150px 0 80px;
  background: linear-gradient(150deg, var(--primary-dark) 0%, var(--primary) 55%, #2F75C5 100%);
  position: relative;
  overflow: hidden;
  color: white;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,169,81,0.09) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 60%);
}
.page-hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.065) 1px, transparent 1px);
  background-size: 32px 32px;
}
.page-hero-content { position: relative; z-index: 2; text-align: center; }
.page-hero-content h1 { color: white; font-size: 50px; font-weight: 900; margin-bottom: 16px; text-shadow: 0 2px 20px rgba(0,0,0,0.18); }
.page-hero-content p  { font-size: 17.5px; opacity: 0.82; max-width: 620px; margin: 0 auto; line-height: 1.75; }

.breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 28px;
  font-size: 13px; opacity: 0.75;
  background: rgba(255,255,255,0.1);
  padding: 8px 20px;
  border-radius: 50px;
}
.breadcrumb a { color: var(--accent-light); }
.breadcrumb a:hover { color: white; }
.breadcrumb i { font-size: 9px; opacity: 0.5; }

/* ---- Card ---- */
.card { background: white; border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; transition: var(--transition); }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }

/* ---- Tag / Badge ---- */
.tag { display: inline-flex; align-items: center; gap: 6px; padding: 5px 14px; border-radius: 50px; font-size: 12px; font-weight: 600; background: var(--bg-light); color: var(--primary); border: 1px solid var(--border); }
.tag-accent  { background: var(--accent-bg); color: #8B6914; border-color: rgba(200,169,81,0.3); }
.tag-green   { background: rgba(45,139,78,0.09); color: var(--green); border-color: rgba(45,139,78,0.2); }

/* ---- Icon Box ---- */
.icon-box { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.icon-box-blue   { background: rgba(27,79,138,0.1);  color: var(--primary); }
.icon-box-accent { background: var(--accent-bg); color: var(--accent); }
.icon-box-green  { background: rgba(45,139,78,0.1);  color: var(--green); }
.icon-box-lg { width: 72px; height: 72px; border-radius: 18px; font-size: 28px; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #2F75C5 100%);
  padding: 76px 60px;
  border-radius: var(--radius-xl);
  color: white; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px); background-size: 28px 28px; }
.cta-inner   { position: relative; z-index: 1; }
.cta-banner h2 { color: white; font-size: 34px; font-weight: 800; margin-bottom: 14px; }
.cta-banner p  { font-size: 17px; opacity: 0.82; max-width: 540px; margin: 0 auto 36px; line-height: 1.8; }
.cta-buttons   { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---- Footer ---- */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.62); }
.footer-top { padding: 76px 0 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }

.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.7fr; gap: 48px; }

.footer-brand-name { font-family: 'Montserrat', sans-serif; font-size: 21px; font-weight: 800; color: white; }
.footer-brand-sub  { display: block; font-size: 9.5px; font-weight: 600; color: var(--accent); letter-spacing: 2.5px; text-transform: uppercase; margin-top: 4px; margin-bottom: 14px; }
.footer-brand p    { font-size: 14px; line-height: 1.85; color: rgba(255,255,255,0.52); margin-top: 12px; }

.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.social-link { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); font-size: 15px; transition: var(--transition); }
.social-link:hover { background: var(--accent); color: var(--dark); }

.footer-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: white;
  margin-bottom: 24px;
  padding-bottom: 12px;
  position: relative;
}
.footer-col h5::after { content: ''; position: absolute; bottom: 0; left: 0; width: 26px; height: 2px; background: var(--accent); border-radius: 1px; }

.footer-col ul { display: flex; flex-direction: column; gap: 10px; list-style: none; }

/* Quick Links — vertical list with chevron arrows */
.footer-col ul li:has(a) { display: flex; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.52); display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer-col ul a:hover { color: var(--accent); padding-left: 4px; }
.footer-col ul a i { font-size: 8px; color: var(--accent); opacity: 0.55; }

/* Services — pill / tag badges */
.footer-col ul li:has(span) { display: inline-flex; }
.footer-col ul:has(span) { flex-direction: row; flex-wrap: wrap; gap: 8px; }
.footer-col ul span {
  display: inline-block;
  font-size: 12.5px; font-weight: 500;
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 50px;
  padding: 5px 13px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-col ul span:hover {
  background: rgba(200,169,81,0.18);
  border-color: rgba(200,169,81,0.45);
  color: var(--accent);
}

.footer-contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.footer-contact-item .fc-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(200,169,81,0.12); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item p { font-size: 13.5px; color: rgba(255,255,255,0.52); line-height: 1.55; }
.footer-contact-item p strong { display: block; color: rgba(255,255,255,0.82); margin-bottom: 2px; font-size: 13px; }

.footer-bottom       { padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.32); flex-wrap: wrap; gap: 8px; }
.footer-bottom-inner a:hover { color: var(--accent); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .section-title { font-size: 32px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section-pad    { padding: 64px 0; }
  .section-title  { font-size: 27px; }
  .page-hero-content h1 { font-size: 33px; }

  .nav-menu {
    display: none;
    position: absolute; top: 76px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 12px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    gap: 2px;
  }
  .nav-menu.open  { display: flex; }
  .nav-menu a     { width: 100%; }
  .nav-cta-btn    { margin-left: 0 !important; margin-top: 6px; }
  .nav-hamburger  { display: flex; }

  .footer-grid    { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner     { padding: 48px 24px; }
  .cta-banner h2  { font-size: 26px; }
}

@media (max-width: 480px) {
  .container     { padding: 0 16px; }
  .page-hero-content h1 { font-size: 27px; }
  .btn           { padding: 12px 24px; }
  .btn-lg        { padding: 14px 30px; font-size: 14px; }
}

/* ---- Nav-bar script helper ---- */
/* JS adds .scrolled to .navbar on scroll */