/* =========================================================
   Dusons Medicare LLP — Export Landing Page
   style.css — all styling lives here (no inline CSS)
   ========================================================= */

:root {
  --color-primary: #0b4f8a;      /* deep medical blue */
  --color-primary-dark: #073a66;
  --color-accent: #ff6a1a;       /* CTA orange */
  --color-accent-dark: #e0570d;
  --color-text: #24303a;
  --color-text-light: #5b6b78;
  --color-bg: #ffffff;
  --color-bg-alt: #f4f8fb;
  --color-border: #e2e8ee;
  --font-heading: 'Poppins', Arial, Helvetica, sans-serif;
  --font-body: 'Inter', Arial, Helvetica, sans-serif;
  --container-width: 1180px;
  --radius: 8px;
  --shadow: 0 6px 24px rgba(11, 79, 138, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 16px;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-primary-dark);
  margin: 0 0 16px;
  line-height: 1.25;
}

section {
  padding: 72px 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-header h2 {
  font-size: 34px;
  font-weight: 700;
}

.section-header p {
  color: var(--color-text-light);
  font-size: 16px;
  margin: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 32px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 106, 26, 0.3);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--color-primary-dark);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.btn-center-wrap {
  text-align: center;
  margin-top: 40px;
}

/* ---------- Top Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.site-header__logo img {
  height: 56px;
  width: auto;
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header__contact {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-header__contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
}

.site-header__contact-item:hover {
  color: var(--color-primary);
}

.site-header__contact-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  fill: var(--color-primary);
}

.site-header__cta .btn {
  padding: 12px 26px;
  font-size: 14px;
  background: var(--color-primary);
  box-shadow: none;
}

.site-header__cta .btn:hover {
  background: var(--color-primary-dark);
}

@media (max-width: 860px) {
  .site-header__contact {
    display: none;
  }
}

/* ---------- Hero ---------- */
.hero {
  background-image: url('hero_banner_img.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  color: #fff;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 0 56px;
  text-align: center;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Product Category Grid (top) ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.category-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.category-card:hover {
  transform: translateY(-6px);
}

.category-card__img {
  height: 210px;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.category-card__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.category-card__body {
  padding: 22px 24px 26px;
}

.category-card__body h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.category-card__body p {
  color: var(--color-text-light);
  font-size: 14.5px;
  margin: 0;
}

/* ---------- Why Choose Us ---------- */
.why-us {
  background: var(--color-primary-dark);
  color: #fff;
}

.why-us .section-header h2 {
  color: #fff;
}

.why-us .section-header p {
  color: rgba(255, 255, 255, 0.75);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 28px 26px;
}

.why-item__check {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 16px;
}

.why-item h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
}

.why-item p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.5px;
  margin: 0;
}

.why-us .btn-center-wrap .btn-primary {
  background: var(--color-accent);
}

/* ---------- Contact / Get In Touch ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.contact__intro h2 {
  font-size: 32px;
}

.contact__intro p {
  color: var(--color-text-light);
}

.contact-form {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
  display: grid;
  gap: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--color-text);
  background: var(--color-bg-alt);
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.phone-field {
  display: flex;
  gap: 10px;
}

.phone-field__code {
  flex: 0 0 150px;
  padding: 13px 10px;
}

.phone-field__number {
  flex: 1;
}

@media (max-width: 600px) {
  .phone-field {
    flex-direction: column;
  }

  .phone-field__code {
    flex: 1;
  }
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
  background: #fff;
}

/* ---------- Product Sub-Sections (per category) ---------- */
.product-category {
  border-top: 1px solid var(--color-border);
}

.product-category__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.product-category__header .eyebrow {
  color: var(--color-primary);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow);
}

.product-card__img {
  height: 200px;
  background: var(--color-bg-alt);
}

.product-card__img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  padding: 14px;
}

.product-card__body {
  padding: 18px 20px 24px;
}

.product-card__tag {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.product-card__body h4 {
  font-size: 16.5px;
  margin: 0;
  color: var(--color-primary-dark);
}

/* ---------- Export Portfolio Lists ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.portfolio-col {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 26px 24px;
}

.portfolio-col h3 {
  font-size: 17px;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--color-accent);
}

.portfolio-col li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 14.5px;
  color: var(--color-text-light);
}

.portfolio-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

/* ---------- Buyer Segments ---------- */
.buyers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.buyer-card {
  background: var(--color-bg-alt);
  border-left: 4px solid var(--color-primary);
  border-radius: 6px;
  padding: 22px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--color-primary-dark);
}

/* ---------- Latest News / Mission Strip ---------- */
.mission-strip {
  background: var(--color-bg-alt);
  text-align: center;
}

.mission-strip img {
  margin: 0 auto 24px;
  max-height: 90px;
  width: auto;
}

.mission-strip p {
  max-width: 780px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--color-text);
  font-weight: 500;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.footer-col h3 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 14px;
}

.footer-col p {
  margin: 0 0 6px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-col a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 22px;
  text-align: center;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- WhatsApp Floating Widget ---------- */
.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-fab__btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease;
}

.whatsapp-fab__btn:hover {
  transform: translateY(-3px);
}

.whatsapp-fab__btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .category-grid,
  .why-grid,
  .portfolio-grid,
  .buyers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .hero {
    min-height: 340px;
    padding-bottom: 32px;
  }

  section {
    padding: 52px 0;
  }

  .category-grid,
  .why-grid,
  .portfolio-grid,
  .buyers-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-header__inner {
    flex-direction: column;
    gap: 12px;
  }
}
