/* ============================================================
   PharmaNew — Stylesheet
   Font: Montserrat
   Colors: #245293 navy · #519831 green · #0872c7 blue
           #f89600 orange · #fce422 yellow · #92cc49 lt-green
           #d2edfa sky · #dcf0a9 lt-lime · #db6204 dk-orange
   ============================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Montserrat', sans-serif;
  color: #1a2a3a;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---- UTILITY ---- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 32px 0; }
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #519831;
  margin-bottom: 14px;
}
.section h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1a2a3a;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: #5a6a7a;
  max-width: 600px;
  margin-bottom: 48px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}
.btn-hero {
  background: #0872c7;
  color: #fff;
  border-color: #0872c7;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}
.btn-hero:hover { background: #065fa8; border-color: #065fa8; }

.btn-primary {
  background: #519831;
  color: #fff;
  border-color: #519831;
}
.btn-primary:hover { background: #3e7827; border-color: #3e7827; }
.btn-full { width: 100%; justify-content: center; }

.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 20px;
  background: #db6204;
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  transition: background 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}
.btn-nav:hover { background: #b85203; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid #eef2f8;
  backdrop-filter: blur(8px);
  transition: box-shadow 0.2s;
}
.navbar.scrolled { box-shadow: 0 2px 16px rgba(36,82,147,0.1); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
.nav-logo-img { height: 90px; width: 250px; object-fit: fill; object-position: left center; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a:not(.btn-nav) {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a2a3a;
  transition: color 0.2s;
}
.nav-links a:not(.btn-nav):hover,
.nav-links a:not(.btn-nav).active { color: #519831; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a2a3a;
  border-radius: 2px;
}

/* ---- HERO ---- */
.hero {
  padding: 110px 0 24px;
  background: #f4f7fb;
  display: flex;
  align-items: center;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.hero-text h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #1a2a3a;
  line-height: 1.18;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1rem;
  color: #4a5a6a;
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-scroll-label {
  display: block;
  margin-top: 28px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #519831;
  transition: opacity 0.2s;
}
.hero-scroll-label:hover { opacity: 0.75; }

/* Hero info cards */
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.info-card {
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.info-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.75;
}
.info-card h3 {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}
.info-card p {
  font-size: 0.83rem;
  line-height: 1.55;
  opacity: 0.88;
}

.info-card--green { background: #519831; color: #fff; }
.info-card--blue  { background: #245293; color: #fff; }
.info-card--sky   { background: #d2edfa; color: #1a2a3a; }
.info-card--lime  { background: #dcf0a9; color: #1a2a3a; }

/* ---- ABOUT ---- */
.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-left h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: #1a2a3a;
  line-height: 1.2;
  margin-bottom: 16px;
}
.about-left p {
  font-size: 0.97rem;
  color: #4a5a6a;
  line-height: 1.7;
  margin-bottom: 28px;
}
.meet-team-link {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #519831;
  transition: opacity 0.2s;
}
.meet-team-link:hover { opacity: 0.7; }

.about-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.feature-block {
  padding: 24px 0;
  border-bottom: 1px solid #eef2f8;
}
.feature-block:first-child { padding-top: 0; }
.feature-block:last-child { border-bottom: none; }
.feature-block h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 6px;
}
.feature-block p {
  font-size: 0.92rem;
  color: #5a6a7a;
  line-height: 1.65;
}

/* ---- TEAM ---- */
.team { background: #f4f7fb; padding-bottom: 80px; }
.team .container { margin-bottom: 40px; }
.team .section-label { margin-bottom: 10px; }
.team h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #1a2a3a;
}

.team-carousel-wrapper {
  overflow: hidden;
  padding: 8px 32px 0;
  width: 100%;
  max-width: 100vw;
}

.team-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  padding-bottom: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d2edfa;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dot.active {
  background: #519831;
  transform: scale(1.3);
}

.team-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  width: 240px;
  flex-shrink: 0;
  border: 1px solid #e4edf8;
  transition: transform 0.2s, box-shadow 0.2s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(36,82,147,0.1);
}

.team-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  border: 3px solid #d2edfa;
  background: #eef5fc;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-card h3 {
  font-size: 0.97rem;
  font-weight: 800;
  color: #1a2a3a;
  text-align: center;
  margin-bottom: 4px;
}
.team-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #519831;
  text-align: center;
  margin-bottom: 14px;
}
.team-card p {
  font-size: 0.82rem;
  color: #5a6a7a;
  line-height: 1.65;
  text-align: center;
}

/* ---- EXPERTISE ---- */
.expertise { background: #fff; }
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.expertise-card {
  background: #f4f7fb;
  border-radius: 14px;
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.expertise-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(36,82,147,0.1);
}
.expertise-icon {
  width: 44px;
  height: 44px;
  color: #0872c7;
  margin-bottom: 18px;
}
.expertise-icon svg { width: 100%; height: 100%; }
.expertise-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 10px;
}
.expertise-card p {
  font-size: 0.88rem;
  color: #5a6a7a;
  line-height: 1.65;
}

/* ---- PARTNERS ---- */
.partners { background: #f4f7fb; }
.partners-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.partner-card {
  background: #fff;
  border: 1.5px solid #e4edf8;
  border-radius: 14px;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  min-height: 110px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.partner-card:hover {
  border-color: #0872c7;
  box-shadow: 0 4px 16px rgba(8,114,199,0.1);
}
.partner-card img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}

/* ---- PORTFOLIO ---- */
.portfolio { background: #fff; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.portfolio-card {
  background: #f4f7fb;
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  border-top: 4px solid #519831;
  transition: transform 0.2s, box-shadow 0.2s;
}
.portfolio-card--vaccine {
  border-top-color: #0872c7;
}
.portfolio-card--vaccine .portfolio-tag {
  background: #d2edfa;
  color: #0872c7;
}
.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(36,82,147,0.1);
}
.brand-logo {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.brand-logo img {
  width: 100%;
  height: 60px;
  object-fit: contain;
  object-position: center;
}
.brand-logo--text {
  align-items: center;
  justify-content: center;
}
.brand-name-text {
  font-size: 1.6rem;
  font-weight: 800;
  color: #245293;
  letter-spacing: 0.04em;
}
.portfolio-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  background: #d2edfa;
  color: #0872c7;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.portfolio-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #1a2a3a;
  margin-bottom: 8px;
}
.portfolio-card p {
  font-size: 0.84rem;
  color: #5a6a7a;
  line-height: 1.6;
}

/* ---- CONTACT ---- */
.contact { background: #f4f7fb; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 40px; height: 40px;
  background: #d2edfa;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #0872c7;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1a2a3a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.contact-item p { color: #5a6a7a; font-size: 0.92rem; }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1a2a3a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  padding: 12px 16px;
  border: 1.5px solid #dde6f0;
  border-radius: 8px;
  color: #1a2a3a;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0872c7;
  box-shadow: 0 0 0 3px rgba(8,114,199,0.1);
}
.form-group textarea { resize: vertical; }
.form-group select { appearance: none; cursor: pointer; }

/* ---- FOOTER ---- */
.footer { background: #fff; border-top: 1px solid #e4edf8; padding: 40px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo-wrap { display: inline-flex; align-items: center; }
.footer-logo { height: 72px; width: auto; }
.footer-copy { font-size: 0.8rem; color: #8a9aaa; }
.footer-nav { display: flex; gap: 24px; }
.footer-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  color: #4a5a6a;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #519831; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero { min-height: auto; padding: 110px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-carousel-wrapper { padding: 8px 24px 0; }
}

@media (max-width: 640px) {
  .section { padding: 32px 0; }
  .container { padding: 0 20px; }
  .hero-cards { grid-template-columns: 1fr; }
  .info-card { padding: 20px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: #fff;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid #eef2f8;
    box-shadow: 0 8px 24px rgba(36,82,147,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; flex-wrap: wrap; }
  .portfolio-grid { grid-template-columns: 1fr; }
}
