@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

/* ==================== COLOR VARIABLES ==================== */
:root {
  --primary-dark-blue: #1d3e61;
  --primary-green: #70b236;
  --secondary-green: #70b236e6;
  --primary-yellow: #e7cd04;
  --text-gray: #6b7280;
  --text-dark: #374151;
  --border-gray: #e5e7eb;
  --bg-light: #f9fafb;
}

/* ==================== GLOBAL STYLES ==================== */
a {
  text-decoration: none;
}

/* ==================== HEADER STYLES ==================== */

/* Top Bar */
.header-sticky {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.top-bar {
  background: var(--primary-dark-blue);
  color: white;
  padding: 0.5rem 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.top-bar-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.top-bar-link:hover {
  color: var(--primary-yellow);
}

.top-bar .icon-wrapper {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem;
  border-radius: 50%;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.top-bar-text {
  color: rgba(255, 255, 255, 0.9);
}

.gap-4 {
  gap: 1.5rem;
}

/* Main Header */
.main-header {
  background: white;
}

.header-content {
  height: 80px;
}

/* Logo */
.logo-wrapper {
  position: relative;
  display: inline-block;
}

.logo-container {
  position: relative;
}

.logo-glow {
  position: absolute;
  inset: 0;
  background: rgba(29, 62, 97, 0.2);
  border-radius: 0.75rem;
  filter: blur(16px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.logo-wrapper:hover .logo-glow {
  opacity: 1;
}

.logo-img {
  position: relative;
  height: 4.8rem;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-wrapper:hover .logo-img {
  transform: scale(1.05);
}

/* Desktop Navigation */
.desktop-nav {
  gap: 0.5rem;
}

.nav-link-custom {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  overflow: hidden;
  border-radius: 0.5rem;
  transition: color 0.3s ease;
}

.nav-link-custom:hover {
  color: var(--primary-dark-blue);
}

.nav-text {
  position: relative;
  z-index: 10;
}

.nav-bg {
  position: absolute;
  inset: 0;
  background: rgba(30, 58, 95, 0.05);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 0.5rem;
}

.nav-link-custom:hover .nav-bg {
  transform: scaleX(1);
}

.nav-underline {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-dark-blue);
  transition: width 0.3s ease;
}

.nav-link-custom:hover .nav-underline {
  width: 100%;
}

/* Buttons */
.btn-ghost {
  background: transparent;
  border: none;
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 0.375rem;
}

.btn-ghost:hover {
  background: rgba(30, 58, 95, 0.1);
  color: var(--primary-dark-blue);
}

.btn-partner {
  background: var(--primary-green);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  border-radius: 0.375rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.btn-partner:hover {
  background: var(--secondary-green);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.btn-icon {
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu */
.mobile-menu {
  background: white;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.mobile-nav-link {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  display: block;
}

.mobile-nav-link:hover {
  color: var(--primary-dark-blue);
  background: rgba(30, 58, 95, 0.05);
}

/* ==================== FOOTER STYLES ==================== */

.footer-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
}

/* Decorative Elements */
.footer-bg-decoration {
  position: absolute;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
}

.decoration-left {
  top: 0;
  left: 25%;
  background: rgba(30, 58, 95, 0.05);
}

.decoration-right {
  bottom: 0;
  right: 25%;
  background: rgba(74, 222, 128, 0.05);
}

.footer-content {
  position: relative;
  padding: 2rem 0;
}

/* Footer Logo & Description */
.footer-logo {
  height: 5.5rem;
  width: auto;
}

.footer-description {
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.625;
}

/* Newsletter */
.newsletter-title {
  color: var(--primary-dark-blue);
  font-weight: 600;
  font-size: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 2px solid var(--border-gray);
  font-size: 0.875rem;
  background: white;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary-dark-blue);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
}

.btn-newsletter {
  background: var(--primary-green);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn-newsletter:hover {
  background: var(--secondary-green);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Social Buttons */
.btn-social {
  width: 40px;
  height: 40px;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn-social-primary {
  background: var(--primary-dark-blue);
}

.btn-social-primary:hover {
  background: #2d4a6f;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-social-secondary {
  background: var(--primary-green);
}

.btn-social-secondary:hover {
  background: var(--secondary-green);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Footer Headings */
.footer-heading {
  color: var(--primary-dark-blue);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.heading-line {
  height: 4px;
  width: 2rem;
  border-radius: 9999px;
}

.heading-line-primary {
  background: var(--primary-dark-blue);
}

.heading-line-secondary {
  background: var(--primary-green);
}

.heading-line-accent {
  background: #facc15;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-links a.link-primary:hover {
  color: var(--primary-dark-blue) !important;
}

/* .footer-links a.link-secondary:hover {
  color: var(--primary-green);
} */

.footer-links a.link-accent:hover {
  color: #facc15;
}

/* Contact Cards */
.contact-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 2px solid var(--border-gray);
  transition: all 0.3s ease;
}

.contact-card-primary:hover {
  border-color: var(--primary-dark-blue);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.contact-card-secondary:hover {
  border-color: var(--primary-green);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.contact-card-accent:hover {
  border-color: #facc15;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  padding: 0.75rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  color: white;
}

.contact-icon-primary {
  background: var(--primary-dark-blue);
}

.contact-icon-secondary {
  background: var(--primary-green);
}

.contact-icon-accent {
  background: #facc15;
}

.contact-title {
  color: var(--primary-dark-blue);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-title-secondary {
  color: var(--primary-green);
}

.contact-title-accent {
  color: #facc15;
}

.contact-link {
  font-size: 0.875rem;
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--primary-dark-blue);
}

.contact-link-secondary:hover {
  color: var(--primary-green);
}

.contact-address {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin: 0;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 1rem;
  border-top: 2px solid var(--border-gray);
}

.footer-copyright {
  color: var(--text-gray);
  font-size: 0.875rem;
  margin: 0;
}

.brand-name {
  color: var(--primary-dark-blue);
  font-weight: 600;
}

.footer-legal-links {
  display: flex;
  justify-content: center;
  justify-content: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: var(--primary-dark-blue);
}

.footer-legal-links a.link-secondary:hover {
  color: var(--primary-green);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .footer-legal-links {
    justify-content: center;
  }
}

/* Homepage */
/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(
    135deg,
    #dbeafe 0%,
    #ffffff 50%,
    rgba(220, 252, 231, 0.3) 100%
  );
  padding: 5rem 0;
  border-bottom: 1px solid var(--border-gray);
  overflow: hidden;
}

/* Animated Background Orbs */
.hero-bg-orb-1 {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  width: 288px;
  height: 288px;
  background: rgba(29, 62, 97, 0.1);
  border-radius: 50%;
  filter: blur(64px);
  animation: pulse 3s ease-in-out infinite;
}

.hero-bg-orb-2 {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 384px;
  height: 384px;
  background: rgba(112, 178, 54, 0.1);
  border-radius: 50%;
  filter: blur(64px);
  animation: pulse 3s ease-in-out infinite;
  animation-delay: 1s;
}

.hero-bg-orb-3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: rgba(231, 205, 4, 0.05);
  border-radius: 50%;
  filter: blur(64px);
}

/* Pulse Animation */
@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.5;
  }
}

/* Hero Title */
.hero-title {
  font-size: 2.5rem;
  color: var(--primary-dark-blue);
  font-weight: normal;
  margin: 0;
  text-align: center;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

/* Sparkle Icons */
.hero-sparkle {
  font-size: 1.5rem;
  color: var(--primary-yellow);
  animation-name: sparklePulse;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes sparklePulse {
  0% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.35;
  }
}

/* Hero Subtitle */
.hero-subtitle {
  text-align: center;
  color: var(--text-gray);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.hero-highlight {
  color: var(--primary-green);
  font-weight: 600;
}

/* Search Wrapper */
.hero-search-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.hero-search-shadow {
  position: absolute;
  inset: 0;
  background: rgba(29, 62, 97, 0.2);
  border-radius: 50rem;
  filter: blur(24px);
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.hero-search-wrapper:hover .hero-search-shadow {
  opacity: 0.5;
}

/* Search Input */
.hero-search-input {
  height: 4rem;
  padding-left: 4rem;
  padding-right: 9rem;
  border-radius: 50rem;
  border: 2px solid rgba(29, 62, 97, 0.3);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.hero-search-input:focus {
  outline: none;
  border-color: var(--primary-dark-blue);
  box-shadow: 0 0 0 4px rgba(29, 62, 97, 0.1),
    0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-search-input:hover {
  border-color: var(--primary-dark-blue);
  box-shadow: 0 25px 50px -12px rgba(29, 62, 97, 0.2);
}

.hero-search-input::placeholder {
  color: #9ca3af;
}

/* Search Icon */
.hero-search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  inset-inline-start: 1.25rem;
  translate: 0 -50%;
  z-index: 10;
  font-size: 1.5rem;
  color: var(--primary-dark-blue);
  /* animation: pulse 2s ease-in-out infinite; */
}

.bi.bi-search.hero-search-icon {
  animation: hero-search-pulse 2s ease-in-out infinite;
}

@keyframes hero-search-pulse {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.3;
  }
}

/* Search Button */
.hero-search-btn {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50rem;
  background: var(--primary-green);
  color: white;
  border: none;
  padding: 0.75rem 2.5rem;
  height: 3rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  font-weight: 500;
}

.hero-search-btn:hover {
  background: var(--secondary-green);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  color: white;
}

/* Popular Label */
.hero-popular-label {
  color: var(--text-gray);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-fire-icon {
  font-size: 1.5rem;
}

/* Quick Links */
.hero-quick-link {
  color: var(--primary-dark-blue);
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 50rem;
  background: white;
  border: 2px solid rgba(29, 62, 97, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-weight: 500;
}

.hero-quick-link:hover {
  color: white;
  background: var(--primary-dark-blue);
  border-color: var(--primary-dark-blue);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* CSS for search box listing */
/* CSS for search box dropdown */
.search-dropdown {
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 12px; /* Increased for more rounded corners */
  box-shadow: 0 8px 24px rgba(29, 62, 97, 0.12); /* Using primary-dark-blue with opacity */
  border: 1px solid var(--border-gray);
  margin-top: 4px;
  max-height: 138px; /* Increased for more results */
  overflow-y: auto !important;
  overflow-x: hidden;
  margin-bottom: -50px;

  /* Force scrolling to work even inside clipped parents */
  z-index: 9999;

  /* Mobile + trackpad scroll fix */
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

/* Removed the arrow pointer for cleaner design */

.search-item {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  color: var(--text-dark);
  text-decoration: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s ease;
  border-bottom: 1px solid var(--bg-light);
}

.search-item:first-child {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.search-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.search-item:hover {
  background: linear-gradient(
    90deg,
    rgba(112, 178, 54, 0.08) 0%,
    rgba(112, 178, 54, 0.04) 100%
  ); /* Subtle green gradient on hover */
  color: var(--primary-dark-blue);
}

.search-item:active {
  background: rgba(
    112,
    178,
    54,
    0.12
  ); /* More prominent green for active state */
}

/* Category headers for grouped results */
.search-category {
  display: block;
  padding: 12px 20px;
  background: var(--bg-light);
  color: var(--primary-dark-blue);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border-gray);
}

.search-category:first-child {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

/* Result counter for multiple results */
.result-count {
  display: block;
  padding: 10px 20px;
  background: rgba(29, 62, 97, 0.05);
  color: var(--text-gray);
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid var(--border-gray);
  text-align: center;
}

/* Popular tag for featured items */
.search-item.popular {
  position: relative;
}

.search-item.popular::after {
  content: "Popular";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-yellow);
  color: var(--primary-dark-blue);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.3px;
}

/* Sub-info for medications (dosage, type, etc.) */
.search-subtext {
  font-size: 13px;
  color: var(--text-gray);
  margin-top: 2px;
  font-weight: 400;
}

/* Highlight matching search text */
.highlight {
  color: var(--primary-green);
  font-weight: 600;
}

/* No results state */
.no-results {
  padding: 24px 20px;
  text-align: center;
  color: var(--text-gray);
  font-style: italic;
}

/* Loading state */
.loading-results {
  padding: 20px;
  text-align: center;
  color: var(--text-gray);
}

.loading-results::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  border: 2px solid var(--border-gray);
  border-top-color: var(--primary-green);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Scrollbar styling */
.search-dropdown::-webkit-scrollbar {
  width: 8px;
}

.search-dropdown::-webkit-scrollbar-track {
  background: var(--bg-light);
  border-radius: 4px;
  margin: 8px 0;
}

.search-dropdown::-webkit-scrollbar-thumb {
  background: var(--text-gray);
  border-radius: 4px;
}

.search-dropdown::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark-blue);
}

/* Animation for dropdown appearance */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.search-dropdown {
  animation: slideDown 0.2s ease-out;
}
/* CSS for search box listing end */

/* Responsive Adjustments */
@media (max-width: 767px) {
  .hero-section {
    padding: 3rem 0;
  }

  .hero-title {
    font-size: 2.25rem; /* 36px */
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1.125rem; /* 18px */
    margin-bottom: 1.5rem;
  }

  .hero-search-wrapper {
    margin-bottom: 1rem;
  }

  .hero-search-input {
    height: 3.5rem;
    padding-left: 3.5rem;
    padding-right: 6.5rem;
    font-size: 1rem;
    border-width: 1px;
  }

  .hero-search-icon {
    font-size: 1.25rem;
    left: 1.125rem;
  }

  .hero-search-btn {
    padding: 0.625rem 1.5rem;
    height: 2.75rem;
    font-size: 1rem;
    right: 0.375rem;
  }

  .hero-bg-orb-1,
  .hero-bg-orb-2 {
    width: 200px;
    height: 200px;
  }

  .hero-bg-orb-3 {
    width: 400px;
    height: 400px;
  }

  .hero-quick-link {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }

  .hero-popular-label {
    font-size: 0.875rem;
  }

  .hero-fire-icon {
    font-size: 1.5rem;
  }

  .hero-sparkle {
    font-size: 1.5rem;
  }
}

@media (max-width: 575px) {
  .hero-section {
    padding: 2.5rem 0;
  }

  .hero-title {
    font-size: 2.25rem; /* 36px */
  }

  .hero-subtitle {
    font-size: 1.125rem; /* 18px */
  }

  .hero-search-input {
    height: 3.55rem;
    font-size: 0.9375rem;
    padding-right: 10rem;
  }

  .hero-search-btn {
    height: 2.5rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.9375rem;
    width: 140px;
  }

  .hero-quick-link {
    font-size: 0.8125rem;
    padding: 0.5rem 0.875rem;
  }
}

/* How It Works Section */
.how-it-works-section {
  padding: 2.5rem 0;
  background: white;
  position: relative;
  overflow: hidden;
}

/* Background Decorations */
.how-it-works-bg-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 256px;
  height: 256px;
  background: rgba(29, 62, 97, 0.05);
  border-radius: 50%;
  filter: blur(64px);
}

.how-it-works-bg-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 256px;
  height: 256px;
  background: rgba(112, 178, 54, 0.05);
  border-radius: 50%;
  filter: blur(64px);
}

/* Title and Subtitle */
.how-it-works-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--primary-dark-blue);
  font-weight: normal;
}

.how-it-works-subtitle {
  text-align: center;
  color: var(--text-gray);
  margin-bottom: 4rem;
  font-size: 1.125rem;
}

/* Step Card */
.step-card {
  text-align: center;
}

/* Icon Wrapper */
.step-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

/* Icon Glow Effect */
.step-icon-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.2;
  transition: opacity 0.3s ease;
}

.step-card:hover .step-icon-glow {
  opacity: 0.4;
}

.step-glow-primary {
  background: var(--primary-dark-blue);
}

.step-glow-secondary {
  background: var(--primary-green);
}

.step-glow-accent {
  background: var(--primary-yellow);
}

/* Icon Circle */
.step-icon-circle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.step-card:hover .step-icon-circle {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}

.step-icon-primary {
  background: var(--primary-dark-blue);
}

.step-icon-secondary {
  background: var(--primary-green);
}

.step-icon-accent {
  background: var(--primary-yellow);
}

/* Icon */
.step-icon {
  font-size: 3rem;
  color: white;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

/* Step Badge (Number) */
.step-badge {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  height: 2rem;
  width: 2rem;
  background: var(--primary-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-weight: 700;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  font-size: 1rem;
}

.step-card:hover .step-badge {
  transform: scale(1.1);
}

/* Step Title */
.step-title {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Step Description */
.step-description {
  color: var(--text-gray);
  line-height: 1.625;
  font-size: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .how-it-works-section {
    padding: 2rem 0;
  }

  .how-it-works-title {
    font-size: 1.25rem;
    margin-bottom: 0.375rem;
  }

  .how-it-works-subtitle {
    font-size: 0.8125rem;
    margin-bottom: 1.5rem;
  }

  .step-icon-wrapper {
    margin-bottom: 0.75rem;
  }

  .step-icon-circle {
    height: 4rem;
    width: 4rem;
  }

  .step-icon {
    font-size: 2rem;
  }

  .step-badge {
    height: 1.5rem;
    width: 1.5rem;
    font-size: 0.75rem;
    top: -0.25rem;
    right: -0.25rem;
  }

  .step-title {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }

  .step-description {
    font-size: 0.75rem;
    line-height: 1.4;
    padding: 0 0.5rem;
  }

  .row.g-5 {
    row-gap: 1.75rem !important;
  }
}

@media (max-width: 575px) {
  .how-it-works-section {
    padding: 1.75rem 0;
  }

  .how-it-works-title {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
  }

  .how-it-works-subtitle {
    font-size: 0.75rem;
    margin-bottom: 1.25rem;
  }

  .step-icon-wrapper {
    margin-bottom: 0.625rem;
  }

  .step-icon-circle {
    height: 3.75rem;
    width: 3.75rem;
  }

  .step-icon {
    font-size: 1.875rem;
  }

  .step-badge {
    height: 1.375rem;
    width: 1.375rem;
    font-size: 0.6875rem;
    top: -0.125rem;
    right: -0.125rem;
  }

  .step-title {
    font-size: 0.875rem;
    margin-bottom: 0.375rem;
    font-weight: 600;
  }

  .step-description {
    font-size: 0.6875rem;
    line-height: 1.35;
    padding: 0 1rem;
  }

  .row.g-5 {
    row-gap: 1.5rem !important;
  }

  .row.works > * {
    margin-top: 0;
  }
}

/* New and Now Section */
.new-and-now-section {
  padding: 3rem 0;
  background: linear-gradient(to bottom, var(--bg-light) 0%, white 100%);
  position: relative;
  overflow: hidden;
}

/* Background Elements */
.new-and-now-bg-1 {
  position: absolute;
  top: 2.5rem;
  right: 5rem;
  width: 160px;
  height: 160px;
  background: rgba(29, 62, 97, 0.1);
  border-radius: 50%;
  filter: blur(64px);
  animation: pulse 3s ease-in-out infinite;
}

.new-and-now-bg-2 {
  position: absolute;
  bottom: 5rem;
  left: 5rem;
  width: 160px;
  height: 160px;
  background: rgba(231, 205, 4, 0.1);
  border-radius: 50%;
  filter: blur(64px);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

/* Section Header */
.new-and-now-title {
  font-size: 2.5rem;
  color: var(--primary-dark-blue);
  font-weight: normal;
  margin: 0;
}

.new-and-now-subtitle {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-top: 0.25rem;
  margin-bottom: 0;
}

.new-and-now-badge {
  font-size: 0.875rem;
  color: var(--text-gray);
}

/* Category Card */
.category-card {
  border: none;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s ease;
  border-radius: 0.5rem;
  background: white;
}

.category-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}

/* Category Header */
.category-header {
  padding: 1.5rem;
  position: relative;
  color: white;
}

.category-header-blue {
  background: #2563eb;
}

.category-header-teal {
  background: #0d9488;
}

.category-header-gray {
  background: #111827;
}

/* Category Badge */
.category-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-yellow);
  color: var(--text-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 50rem;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  animation: pulse 2s ease-in-out infinite;
  border: none;
}

/* Category Title */
.category-title {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.3;
}

.category-subtitle {
  font-size: 0.75rem;
  opacity: 0.9;
  margin: 0;
}

/* Decorative Element */
.category-decorative {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 6rem;
  height: 6rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(24px);
}

/* Category Body */
.category-body {
  padding: 1rem;
  background: white;
}

/* Medication Item */
.medication-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  background: var(--bg-light);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  margin-bottom: 0.75rem;
}

.medication-item:last-child {
  margin-bottom: 0;
}

.medication-item:hover {
  background: rgba(29, 62, 97, 0.05);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Medication Icon */
.medication-icon {
  font-size: 1.875rem;
  line-height: 1;
}

/* Medication Name and Dosage */
.medication-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}

.medication-dosage {
  font-size: 0.75rem;
  color: var(--text-gray);
  line-height: 1.2;
  margin-top: 0.125rem;
}

/* Medication Link */
.medication-link {
  color: var(--primary-dark-blue);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}

.medication-link:hover {
  color: var(--primary-green);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .new-and-now-section {
    padding: 2.5rem 0;
  }

  .new-and-now-title {
    font-size: 1.5rem;
  }

  .new-and-now-subtitle {
    font-size: 0.8125rem;
  }

  .category-header {
    padding: 1.25rem;
  }

  .category-title {
    font-size: 0.8125rem;
    margin-bottom: 0.375rem;
  }

  .category-subtitle {
    font-size: 0.6875rem;
  }

  .category-badge {
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.1875rem 0.625rem;
    font-size: 0.6875rem;
  }

  .category-body {
    padding: 0.875rem;
  }

  .medication-item {
    padding: 0.625rem;
    margin-bottom: 0.625rem;
  }

  .medication-icon {
    font-size: 1.5rem;
  }

  .medication-name {
    font-size: 0.8125rem;
  }

  .medication-dosage {
    font-size: 0.6875rem;
  }

  .medication-link {
    font-size: 0.75rem;
  }

  .new-and-now-bg-1,
  .new-and-now-bg-2 {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 575px) {
  .new-and-now-section {
    padding: 2rem 0;
  }

  .new-and-now-title {
    font-size: 1.25rem;
  }

  .new-and-now-subtitle {
    font-size: 0.75rem;
  }

  .category-header {
    padding: 1rem;
  }

  .category-title {
    font-size: 0.75rem;
    line-height: 1.25;
  }

  .category-subtitle {
    font-size: 0.625rem;
  }

  .medication-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .medication-link {
    align-self: flex-end;
    font-size: 0.6875rem;
  }
}

/* Hero Banner Section */
.hero-banner {
  padding: 3rem 0;
  background: linear-gradient(to bottom right, #fbbf24, #fcd34d, #fde68a);
  position: relative;
  overflow: hidden;
}

/* .hero-banner .container {
  max-width: 1400px;
} */

/* Partnership Badge */
.partnership-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #ffffff;
  color: var(--primary-dark-blue);
  border: none;
  border-radius: 0.375rem;
  font-weight: 500;
  font-size: 0.875rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

/* Hero Banner Heading */
.hero-banner-heading {
  font-size: 2.5rem;
  font-weight: normal;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-banner-heading {
    font-size: 2.5rem;
  }
}

/* Hero Banner Description */
.hero-banner-description {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #1f2937;
  margin-bottom: 2rem;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 576px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
  background-color: var(--primary-dark-blue);
  color: #ffffff;
  border: none;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hero-buttons .btn-primary:hover {
  background-color: #152d46;
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hero-buttons .btn-outline {
  background-color: #ffffff;
  color: var(--primary-dark-blue);
  border: 2px solid var(--primary-dark-blue);
}

.hero-buttons .btn-outline:hover {
  background-color: #f9fafb;
}

.arrow-icon {
  margin-left: 0.5rem;
  font-size: 1.25rem;
  font-style: normal;
}

/* Hero Image Section */
.hero-image-wrapper {
  position: relative;
  width: 100%;
}

.hero-image-container {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background-color: #ffffff;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  height: auto;
  aspect-ratio: 500 / 440;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
  .hero-image-container {
    max-width: 450px;
  }
}

@media (max-width: 991px) {
  .hero-image-container {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .hero-image-container {
    max-width: 100%;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 575px) {
  .hero-image-container {
    aspect-ratio: 4 / 3;
    border-radius: 1rem;
  }
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Decorative Circles */
.decorative-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
}

.decorative-circle-top {
  top: -1.5rem;
  right: 4.5rem;
  width: 8rem;
  height: 8rem;
  background-color: #4ade80;
  opacity: 0.5;
}

.decorative-circle-bottom {
  bottom: -1.5rem;
  left: -1.5rem;
  width: 10rem;
  height: 10rem;
  background-color: #60a5fa;
  opacity: 0.5;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .hero-banner {
    padding: 3rem 0;
  }

  .hero-banner-heading {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .hero-banner {
    padding: 2.5rem 0;
  }

  .hero-banner-heading {
    font-size: 1.75rem;
  }

  .hero-banner-description {
    font-size: 1rem;
  }

  .decorative-circle-top {
    right: -1.5rem;
  }
}

/* How Can We Help Section */
.how-can-we-help {
  padding: 3rem 0;
  background-color: #ffffff;
}

.how-can-we-help .container {
  max-width: 900px;
}

/* Section Title */
.help-section-title {
  font-size: 2rem;
  font-weight: normal;
  color: #111827;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .help-section-title {
    font-size: 2.5rem;
  }
}

/* Help Card Link */
.help-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Help Card */
.help-card {
  padding: 2rem;
  background-color: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
}

.help-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: var(--primary-dark-blue);
}

/* Card Content Layout */
.help-card-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.help-card-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

/* Icon Wrapper */
.help-icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}

.help-card:hover .help-icon-wrapper {
  background-color: rgba(29, 62, 97, 0.1);
}

.help-icon {
  color: #374151;
  transition: color 0.3s ease;
}

.help-card:hover .help-icon {
  color: var(--primary-dark-blue);
}

/* Text Content */
.help-text {
  flex: 1;
}

.help-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.help-card:hover .help-card-title {
  color: var(--primary-dark-blue);
}

.help-card-description {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

/* Arrow Icon */
.help-arrow {
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.help-arrow svg {
  color: #9ca3af;
  transition: all 0.3s ease;
}

.help-card:hover .help-arrow {
  transform: translateX(0.25rem);
}

.help-card:hover .help-arrow svg {
  color: var(--primary-dark-blue);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .how-can-we-help {
    padding: 3rem 0;
  }

  .help-section-title {
    font-size: 1.75rem;
  }

  .help-card {
    padding: 1.5rem;
  }

  .help-card-content {
    gap: 0.75rem;
  }

  .help-icon-wrapper {
    width: 3rem;
    height: 3rem;
  }

  .help-icon {
    width: 24px;
    height: 24px;
  }

  .help-card-title {
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .help-card-left {
    gap: 0.75rem;
  }

  .help-arrow {
    display: none;
  }
}

/* Savings Showcase Section */
.savings-showcase {
  position: relative;
  padding: 3rem 0;
  background: linear-gradient(
    to bottom right,
    #111827,
    var(--primary-dark-blue),
    #111827
  );
  overflow: hidden;
}

.savings-showcase .container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
}

/* Animated Background Orbs */
.savings-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.savings-orb-1 {
  top: 0;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background-color: rgba(231, 205, 4, 0.2);
  animation: savings-pulse 3s ease-in-out infinite;
}

.savings-orb-2 {
  bottom: 0;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background-color: rgba(112, 178, 54, 0.2);
  animation: savings-pulse 3s ease-in-out infinite;
  animation-delay: 1s;
}

.savings-orb-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 31.25rem;
  height: 31.25rem;
  background-color: rgba(29, 62, 97, 0.3);
  filter: blur(80px);
}

@keyframes savings-pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

/* Section Header */
.savings-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.savings-badge-icon {
  color: var(--primary-green);
}

.savings-badge span {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
}

.savings-main-title {
  font-size: 2.5rem;
  font-weight: normal;
  color: #ffffff;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .savings-main-title {
    font-size: 2.5rem;
  }
}

.savings-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.75;
}

/* Stats Cards */
.savings-card-wrapper {
  position: relative;
  margin-bottom: 1rem;
}

.savings-card-glow {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  filter: blur(32px);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.savings-card-wrapper:hover .savings-card-glow {
  opacity: 0.7;
}

.savings-glow-yellow {
  background-color: rgba(231, 205, 4, 0.3);
}

.savings-glow-green {
  background-color: rgba(112, 178, 54, 0.3);
}

.savings-glow-blue {
  background-color: rgba(29, 62, 97, 0.3);
}

.savings-card {
  position: relative;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.savings-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
}

/* Icon Container */
.savings-icon-container {
  margin-bottom: 1.5rem;
  position: relative;
  display: flex;
  justify-content: center;
}

.savings-icon-blur {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  filter: blur(64px);
  opacity: 0.3;
}

.savings-icon-box {
  position: relative;
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.savings-card:hover .savings-icon-box {
  transform: scale(1.1) rotate(6deg);
}

.savings-bg-yellow {
  background-color: var(--primary-yellow);
}

.savings-bg-green {
  background-color: var(--primary-green);
}

.savings-bg-blue {
  background-color: var(--primary-dark-blue);
}

.savings-icon {
  color: #ffffff;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

/* Stats Value */
.savings-value {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.savings-gradient-text {
  background: linear-gradient(
    to bottom right,
    var(--primary-dark-blue),
    var(--primary-green),
    var(--primary-yellow)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.savings-label {
  color: #374151;
  font-weight: 500;
  margin: 0;
  font-size: 1rem;
}

/* Decorative Dots */
.savings-dots {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 1rem;
}

.savings-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.savings-dot-1 {
  opacity: 0.5;
}

.savings-dot-2 {
  opacity: 0.3;
}

.savings-dot-3 {
  opacity: 0.2;
}

/* Bottom CTA */
.savings-cta-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.savings-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.savings-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.savings-pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  animation: savings-pulse-dot 2s ease-in-out infinite;
}

.savings-pulse-green {
  background-color: var(--primary-green);
}

.savings-pulse-yellow {
  background-color: var(--primary-yellow);
  animation-delay: 0.5s;
}

.savings-pulse-blue {
  background-color: var(--bg-light);
  animation-delay: 1s;
}

@keyframes savings-pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .savings-showcase {
    padding: 3.5rem 0;
  }

  .savings-main-title {
    font-size: 2rem;
  }

  .savings-subtitle {
    font-size: 1rem;
  }

  .savings-value {
    font-size: 2.5rem;
  }

  .savings-card {
    padding: 1.5rem;
  }

  .savings-icon-box {
    width: 4rem;
    height: 4rem;
  }

  .savings-icon {
    width: 32px;
    height: 32px;
  }

  .savings-features {
    gap: 1rem;
  }
}

@media (max-width: 575px) {
  .savings-main-title {
    font-size: 1.75rem;
  }

  .savings-features {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* Subscriptions Section */
.subscriptions-section {
  padding: 3rem 0;
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
}

.subscriptions-section .container {
  max-width: 1280px;
}

/* Section Header */
.subscriptions-header {
  margin-bottom: 3rem;
}

.subscriptions-title {
  font-size: 2.25rem;
  font-weight: normal;
  color: #111827;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .subscriptions-title {
    font-size: 2.5rem;
  }
}

.subscriptions-subtitle {
  font-size: 1.125rem;
  color: var(--text-gray);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.75;
}

/* Plans Row */
.subscriptions-row {
  margin-bottom: 2rem;
}

/* Subscription Card */
.subscription-card {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.subscription-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}

/* Popular Card */
.subscription-card-popular {
  border: 2px solid var(--primary-dark-blue);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.subscription-card-popular:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Popular Badge */
.subscription-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-dark-blue);
  color: #ffffff;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

/* Card Header */
.subscription-header {
  text-align: center;
  margin-bottom: 2rem;
}

.subscription-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.subscription-plan-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.subscription-description {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.5;
}

/* Features List */
.subscription-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex-grow: 1;
}

.subscription-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.subscription-feature:not(:last-child) {
  border-bottom: 1px solid #f3f4f6;
}

.feature-check {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--primary-green);
}

.subscription-feature span {
  flex: 1;
}

/* Buttons */
.subscription-btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin-top: auto;
}

.subscription-btn-primary {
  background-color: var(--primary-dark-blue);
  color: #ffffff;
  border: none;
}

.subscription-btn-primary:hover {
  background-color: #152d46;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.subscription-btn-outline {
  background-color: #ffffff;
  color: var(--primary-dark-blue);
  border: 2px solid var(--primary-dark-blue);
}

.subscription-btn-outline:hover {
  background-color: #f9fafb;
  color: var(--primary-dark-blue);
  transform: translateY(-2px);
}

/* Footer Note */
.subscriptions-footer-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-top: 2rem;
  margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .subscriptions-section {
    padding: 4rem 0;
  }

  .subscriptions-title {
    font-size: 2rem;
  }

  .subscription-card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 767px) {
  .subscriptions-section {
    padding: 3rem 0;
  }

  .subscriptions-title {
    font-size: 1.75rem;
  }

  .subscriptions-subtitle {
    font-size: 1rem;
  }

  .subscription-card {
    padding: 1.75rem 1.5rem;
  }

  .subscription-emoji {
    font-size: 2.5rem;
  }

  .subscription-plan-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 575px) {
  .subscriptions-section {
    padding: 2.5rem 0;
  }

  .subscriptions-header {
    margin-bottom: 2rem;
  }

  .subscription-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.875rem;
  }
}

/* Ensure equal card heights on desktop */
@media (min-width: 992px) {
  .subscriptions-row {
    display: flex;
    align-items: stretch;
  }

  .subscriptions-row > [class*="col-"] {
    display: flex;
  }
}

/* Featured Medications Section */
.featured-medications-section {
  padding: 3rem 0;
  background: linear-gradient(
    to bottom right,
    #111827,
    var(--primary-dark-blue),
    #111827
  );
  position: relative;
  overflow: hidden;
}

/* Background Orbs */
.featured-bg-orb-1 {
  position: absolute;
  top: 0;
  left: 25%;
  width: 384px;
  height: 384px;
  background: rgba(29, 62, 97, 0.1);
  border-radius: 50%;
  filter: blur(64px);
  animation: pulse 3s ease-in-out infinite;
}

.featured-bg-orb-2 {
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 384px;
  height: 384px;
  background: rgba(112, 178, 54, 0.1);
  border-radius: 50%;
  filter: blur(64px);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.5;
  }
}

/* Section Title */
.featured-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
  font-weight: normal;
}

.featured-subtitle {
  color: whitesmoke;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 1rem;
}

.featured-star-icon {
  color: var(--primary-yellow);
  font-size: 1rem;
}

/* Scroll Controls */
.scroll-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(29, 62, 97, 0.2);
  background: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dark);
}

.scroll-btn:hover {
  border-color: var(--primary-green);
  background: var(--primary-green);
  color: white;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Medication Scroll Container */
.medication-scroll-container {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.medication-scroll-container::-webkit-scrollbar {
  display: none;
}

/* Medication Card */
.medication-card {
  flex-shrink: 0;
  /* width: 288px; */
  padding: 1.5rem;
  border: none;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-radius: 0.5rem;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.medication-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}

/* Card Color Variants */
.medication-card-red {
  background: #fef2f2;
}

.medication-card-blue {
  background: #eff6ff;
}

.medication-card-green {
  background: #f0fdf4;
}

.medication-card-purple {
  background: #faf5ff;
}

.medication-card-pink {
  background: #fdf2f8;
}

.medication-card-yellow {
  background: #fefce8;
}

.medication-card-orange {
  background: #fff7ed;
}

.medication-card-cyan {
  background: #ecfeff;
}

/* Decorative Elements */
.medication-decorative-1 {
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 6rem;
  height: 6rem;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  filter: blur(24px);
}

.pill-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.medication-decorative-2 {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 6rem;
  height: 6rem;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  filter: blur(24px);
}

/* Pill Icon */
.medication-pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12rem;
  height: 12rem;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.medication-card:hover .medication-pill-icon {
  transform: scale(1.1) rotate(6deg);
}

.pill-emoji {
  font-size: 2.5rem;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

/* Pill Icon Colors */
.medication-pill-red {
  /* background: #ef4444; */
}

.medication-pill-blue {
  background: #3b82f6;
}

.medication-pill-green {
  background: #22c55e;
}

.medication-pill-purple {
  background: #a855f7;
}

.medication-pill-pink {
  background: #ec4899;
}

.medication-pill-yellow {
  background: #eab308;
}

.medication-pill-orange {
  background: #f97316;
}

.medication-pill-cyan {
  background: #06b6d4;
}

/* Medication Info */
.medication-name {
  margin-bottom: 0.25rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text-dark);
}

.medication-dosage {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-bottom: 0.25rem;
}

.medication-condition-badge {
  font-size: 0.75rem;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
  padding: 0.25rem 1rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50rem;
  display: inline-block;
  backdrop-filter: blur(4px);
}

/* Medication Button */
.medication-btn {
  background: var(--primary-dark-blue);
  color: white;
  border: none;
  padding: 0.625rem 1rem;
  font-weight: 500;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.medication-btn:hover {
  background: var(--primary-dark-blue);
  opacity: 0.9;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .featured-medications-section {
    padding: 3rem 0;
  }

  .featured-title {
    font-size: 1.5rem;
  }

  .featured-subtitle {
    font-size: 0.875rem;
  }

  .medication-card {
    width: 260px;
    padding: 1.25rem;
  }

  .medication-pill-icon {
    width: 8.5rem;
    height: 8.5rem;
  }

  .pill-emoji {
    font-size: 2.25rem;
  }

  .medication-name {
    font-size: 1rem;
  }

  .medication-dosage {
    font-size: 0.8125rem;
  }

  .medication-condition-badge {
    font-size: 0.6875rem;
    padding: 0.1875rem 0.875rem;
  }

  .medication-btn {
    font-size: 0.875rem;
    padding: 0.5rem 0.875rem;
  }
}

@media (max-width: 575px) {
  .featured-medications-section {
    padding: 2.5rem 0;
  }

  .featured-title {
    font-size: 1.25rem;
  }

  .featured-subtitle {
    font-size: 0.8125rem;
  }

  .medication-card {
    width: 240px;
    padding: 1rem;
  }

  .medication-pill-icon {
    width: 8rem;
    height: 8rem;
  }

  .pill-emoji {
    font-size: 2rem;
  }

  .medication-name {
    font-size: 0.9375rem;
  }

  .medication-dosage {
    font-size: 0.75rem;
  }

  .medication-condition-badge {
    font-size: 0.625rem;
    margin-bottom: 1rem;
  }

  .medication-btn {
    font-size: 0.8125rem;
  }
}

.compare-medications-section {
  padding: 3rem 0;
  background: linear-gradient(to bottom, var(--bg-light), #ffffff);
}

.compare-title {
  font-size: 2.5rem;
  font-weight: normal;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.compare-subtitle {
  font-size: 1rem;
  color: var(--text-gray);
  max-width: 42rem;
  margin: 0 auto;
}

.category-buttons-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 56rem;
  margin: 0 auto;
}

.category-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 2px solid var(--border-gray);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  height: 3rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.category-btn:hover {
  background: var(--bg-light);
  border-color: var(--primary-dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.category-btn:active {
  transform: translateY(0);
}

.category-icon {
  font-size: 1.25rem;
  line-height: 1;
}

.category-text {
  line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .compare-medications-section {
    padding: 3rem 0;
  }

  .compare-title {
    font-size: 1.5rem;
  }

  .compare-subtitle {
    font-size: 0.875rem;
  }

  .category-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .compare-medications-section {
    padding: 3rem 0;
  }

  .compare-title {
    font-size: 1.5rem;
  }

  .compare-subtitle {
    font-size: 0.875rem;
  }

  .category-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
}

.popular-medications-section {
  padding: 3rem 0;
  background: linear-gradient(to bottom, #ffffff, var(--bg-light));
}

/* Header */
.popular-meds-header {
  margin-bottom: 2rem;
}

.popular-meds-title {
  font-size: 2.5rem;
  font-weight: normal;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.popular-meds-subtitle {
  font-size: 1rem;
  color: var(--text-gray);
  margin: 0;
}

/* Medication Card */
.medication-card {
  background: #ffffff;
  border: 2px solid var(--border-gray);
  border-radius: 0.5rem;
  padding: 1.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.medication-card:hover {
  border-color: var(--primary-green);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.medication-card.blue:hover {
  border-color: var(--primary-dark-blue);
}

/* Medication Content */
.medication-content {
  flex: 1;
  margin-bottom: 1rem;
}

.medication-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.medication-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  transition: color 0.3s ease;
}

.medication-card:hover .medication-name {
  color: var(--primary-dark-blue);
}

/* Demand Badge */
.demand-badge {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.625rem;
  border-radius: 0.375rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.demand-high {
  background-color: rgba(112, 178, 54, 0.15);
  color: var(--primary-green);
}

.demand-moderate {
  background-color: rgba(231, 205, 4, 0.15);
  color: #c4a900;
}

.medication-condition {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin: 0;
}

/* View Details Button */
.btn-view-details {
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-dark-blue);
  background: transparent;
  border: 1px solid var(--primary-dark-blue);
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-view-details:hover,
.medication-card:hover .btn-view-details {
  background: var(--primary-dark-blue);
  color: #ffffff;
  border-color: var(--primary-dark-blue);
}

/* Responsive */
@media (max-width: 991px) {
  .popular-medications-section {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  .popular-medications-section {
    padding: 3rem 0;
  }

  .popular-meds-title {
    font-size: 1.5rem;
  }

  .popular-meds-subtitle {
    font-size: 0.875rem;
  }
}

@media (max-width: 576px) {
  .medication-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .demand-badge {
    align-self: flex-start;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .popular-medications-section {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  .popular-medications-section {
    padding: 3rem 0;
  }

  .popular-meds-title {
    font-size: 1.5rem;
  }

  .popular-meds-subtitle {
    font-size: 0.875rem;
  }
}

@media (max-width: 576px) {
  .medication-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .demand-badge {
    align-self: flex-start;
  }
}

/* Browse Medications Section */
:root {
  --primary-dark-blue: #1d3e61;
  --primary-green: #70b236;
  --secondary-green: #70b236e6;
  --primary-yellow: #e7cd04;
  --text-gray: #6b7280;
  --text-dark: #374151;
  --border-gray: #e5e7eb;
  --bg-light: #f9fafb;
}

.browse-medications-section {
  padding: 3rem 0;
  background: #ffffff;
  border-top: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
  position: relative;
  overflow: hidden;
}

/* Background Decoration */
.browse-bg-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24rem;
  height: 24rem;
  background: rgba(231, 205, 4, 0.05);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.browse-medications-section .container {
  position: relative;
  z-index: 10;
}

/* Header */
.browse-header {
  align-items: center;
  margin-bottom: 2rem;
}

.browse-title {
  font-size: 2.5rem;
  font-weight: normal;
  color: var(--primary-dark-blue);
  margin: 0;
}

.browse-subtitle {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-top: 0.25rem;
  margin-bottom: 0;
}

.browse-view-all {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-dark-blue);
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 8px 24px;
}

/* Alphabet Buttons */
.alphabet-buttons-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.alphabet-btn {
  width: 3rem;
  height: 3rem;
  background: #ffffff;
  border: 2px solid var(--border-gray);
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.alphabet-btn:hover {
  background: var(--primary-dark-blue);
  color: #ffffff;
  border-color: var(--primary-dark-blue);
  box-shadow: 0 10px 15px -3px rgba(29, 62, 97, 0.3);
  transform: translateY(-2px);
}

.alphabet-btn:active {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .browse-medications-section {
    padding: 3rem 0;
  }

  .browse-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .browse-title {
    font-size: 1.25rem;
  }

  .alphabet-btn {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.8125rem;
  }
}

@media (max-width: 576px) {
  .alphabet-buttons-wrapper {
    gap: 0.5rem;
  }

  .alphabet-btn {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.75rem;
  }
}

/* Health Conditions Section */
.health-conditions-section {
  padding: 3rem 0;
  background: linear-gradient(to bottom, var(--bg-light) 0%, white 100%);
}

/* Section Title */
.health-conditions-title {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  font-weight: normal;
}

.health-conditions-subtitle {
  color: var(--text-gray);
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
}

/* Condition Button */
.condition-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: none;
  border: none;
  transition: transform 0.3s ease;
  cursor: pointer;
  padding: 0.5rem;
  width: 100%;
}

.condition-btn:hover {
  transform: scale(1.05);
}

/* Icon Circle */
.condition-icon-circle {
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  font-size: 2rem;
}

/* Condition Colors */
.condition-red {
  background: #fee2e2;
  color: #dc2626;
}

.condition-purple {
  background: #f3e8ff;
  color: #9333ea;
}

.condition-blue {
  background: #dbeafe;
  color: #2563eb;
}

.condition-green {
  background: #dcfce7;
  color: #16a34a;
}

.condition-yellow {
  background: #fef9c3;
  color: #ca8a04;
}

.condition-orange {
  background: #ffedd5;
  color: #ea580c;
}

.condition-cyan {
  background: #cffafe;
  color: #0891b2;
}

.condition-pink {
  background: #fce7f3;
  color: #db2777;
}

/* Condition Emoji */
.condition-emoji {
  font-size: 2rem;
  line-height: 1;
}

/* Condition Name */
.condition-name {
  font-size: 0.875rem;
  text-align: center;
  color: var(--text-dark);
  line-height: 1.2;
}

/* Responsive Grid Adjustments */
@media (min-width: 992px) {
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 120px;
  }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .health-conditions-section {
    padding: 3.5rem 0;
  }

  .health-conditions-title {
    font-size: 1.625rem;
  }

  .health-conditions-subtitle {
    font-size: 0.9375rem;
  }
}

@media (max-width: 767px) {
  .health-conditions-section {
    padding: 3rem 0;
  }

  .health-conditions-title {
    font-size: 1.5rem;
  }

  .health-conditions-subtitle {
    font-size: 0.875rem;
  }

  .condition-icon-circle {
    height: 3.5rem;
    width: 3.5rem;
    font-size: 1.75rem;
  }

  .condition-emoji {
    font-size: 1.75rem;
  }

  .condition-name {
    font-size: 0.8125rem;
  }
}

@media (max-width: 575px) {
  .health-conditions-section {
    padding: 2.5rem 0;
  }

  .health-conditions-title {
    font-size: 1.25rem;
  }

  .health-conditions-subtitle {
    font-size: 0.8125rem;
    padding: 0 1rem;
  }

  .condition-btn {
    gap: 0.5rem;
  }

  .condition-icon-circle {
    height: 3rem;
    width: 3rem;
    font-size: 1.5rem;
  }

  .condition-emoji {
    font-size: 1.5rem;
  }

  .condition-name {
    font-size: 0.75rem;
  }
}

/* Health Blog Section */
.health-blog-section {
  padding: 3rem 0;
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
}

.health-blog-section .container {
  max-width: 1320px;
}

/* Section Header */
.health-blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 2rem;
}

.health-blog-header-left {
  flex: 1;
}

.health-blog-title {
  font-size: 2.25rem;
  font-weight: normal;
  color: var(--primary-dark-blue);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .health-blog-title {
    font-size: 2.5rem;
  }
}

.health-blog-subtitle {
  font-size: 1rem;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.5;
}

/* Navigation Buttons */
.health-blog-nav {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.blog-nav-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--border-gray);
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.blog-nav-btn:hover {
  background-color: var(--bg-light);
  border-color: var(--primary-dark-blue);
}

.blog-nav-btn svg {
  color: var(--text-dark);
}

.blog-nav-btn:hover svg {
  color: var(--primary-dark-blue);
}

/* Blog Carousel */
.health-blog-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 1rem;
}

.health-blog-carousel::-webkit-scrollbar {
  display: none;
}

.health-blog-track {
  display: flex;
  gap: 1.5rem;
}

/* Blog Card */
.blog-card {
  flex: 0 0 auto;
  width: 20rem;
  scroll-snap-align: start;
}

.blog-card-link {
  display: block;
  background-color: #ffffff;
  border: 1px solid var(--border-gray);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  height: 100%;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.blog-card-link:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
  color: inherit;
  text-decoration: none;
}

/* Card Image */
.blog-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--bg-light);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card-link:hover .blog-card-image img {
  transform: scale(1.1);
}

/* Card Content */
.blog-card-content {
  padding: 1.5rem;
}

/* Badge */
.blog-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.blog-badge-guide {
  background-color: rgba(231, 205, 4, 0.1);
  color: #a68900;
}

.blog-badge-healthcare {
  background-color: rgba(112, 178, 54, 0.1);
  color: #4a7c1e;
}

.blog-badge-news {
  background-color: rgba(29, 62, 97, 0.1);
  color: var(--primary-dark-blue);
}

.blog-badge-tips {
  background-color: rgba(239, 68, 68, 0.1);
  color: #b91c1c;
}

/* Card Title */
.blog-card-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: #111827;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.blog-card-link:hover .blog-card-title {
  color: var(--primary-dark-blue);
}

/* Card Description */
.blog-card-description {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-bottom: 1rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Card Meta */
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-gray);
}

.blog-meta-icon {
  flex-shrink: 0;
  color: var(--text-gray);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .health-blog-section {
    padding: 4rem 0;
  }

  .health-blog-title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .health-blog-section {
    padding: 3rem 0;
  }

  .health-blog-header {
    margin-bottom: 2rem;
  }

  .health-blog-title {
    font-size: 1.75rem;
  }

  .health-blog-subtitle {
    font-size: 0.875rem;
  }

  .blog-card {
    width: 18rem;
  }

  .health-blog-track {
    gap: 1rem;
  }
}

@media (max-width: 575px) {
  .health-blog-section {
    padding: 2.5rem 0;
  }

  .health-blog-title {
    font-size: 1.5rem;
  }

  .blog-card {
    width: 16rem;
  }

  .blog-card-content {
    padding: 1.25rem;
  }

  .blog-card-title {
    font-size: 1rem;
  }
}

/* Smooth Scrolling for Mobile */
@media (max-width: 767px) {
  .health-blog-carousel {
    scroll-snap-type: x mandatory;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 3rem 0;
  background: linear-gradient(
    to bottom,
    var(--bg-light) 0%,
    white 50%,
    var(--bg-light) 100%
  );
  position: relative;
  overflow: hidden;
}

/* Background Orbs */
.testimonials-bg-orb-1 {
  position: absolute;
  top: 5rem;
  left: 2.5rem;
  width: 320px;
  height: 320px;
  background: rgba(231, 205, 4, 0.1);
  border-radius: 50%;
  filter: blur(64px);
  animation: pulse 3s ease-in-out infinite;
}

.testimonials-bg-orb-2 {
  position: absolute;
  bottom: 5rem;
  right: 2.5rem;
  width: 320px;
  height: 320px;
  background: rgba(29, 62, 97, 0.1);
  border-radius: 50%;
  filter: blur(64px);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.5;
  }
}

/* Section Title */
.testimonials-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark-blue);
  font-weight: normal;
}

.testimonials-subtitle {
  color: var(--text-gray);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 1rem;
}

.testimonials-emoji {
  font-size: 1.25rem;
}

/* Scroll Buttons for Testimonials */
.scroll-btn-secondary {
  border-color: rgba(112, 178, 54, 0.2);
}

.scroll-btn-secondary:hover {
  border-color: var(--primary-green);
  background: var(--primary-green);
  color: white;
}

/* Testimonial Scroll Container */
.testimonial-scroll-container {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonial-scroll-container::-webkit-scrollbar {
  display: none;
}

/* Testimonial Card */
.testimonial-card {
  flex-shrink: 0;
  width: 384px;
  padding: 2rem;
  background: white;
  border: 2px solid #f3f4f6;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-color: transparent;
}

/* Decorative Background */
.testimonial-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover .testimonial-bg {
  opacity: 0.05;
}

.testimonial-bg-primary {
  background: var(--primary-dark-blue);
}

.testimonial-bg-secondary {
  background: var(--primary-green);
}

.testimonial-bg-accent {
  background: var(--primary-yellow);
}

.testimonial-bg-purple {
  background: #a855f7;
}

.testimonial-bg-cyan {
  background: #06b6d4;
}

/* Quote Icon */
.testimonial-quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #e5e7eb;
  font-size: 3rem;
  line-height: 1;
}

/* Rating */
.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  position: relative;
  z-index: 10;
}

.testimonial-star {
  color: var(--primary-yellow);
  font-size: 1.25rem;
}

/* Testimonial Text */
.testimonial-text {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
  line-height: 1.625;
  font-size: 1rem;
}

/* Author Section */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 10;
}

/* Avatar */
.testimonial-avatar {
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.1);
}

.testimonial-avatar-primary {
  background: var(--primary-dark-blue);
}

.testimonial-avatar-secondary {
  background: var(--primary-green);
}

.testimonial-avatar-accent {
  background: var(--primary-yellow);
}

.testimonial-avatar-purple {
  background: #a855f7;
}

.testimonial-avatar-cyan {
  background: #06b6d4;
}

/* Author Name and Role */
.testimonial-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.2;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.2;
  margin-top: 0.25rem;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .testimonials-section {
    padding: 3rem 0;
  }

  .testimonials-title {
    font-size: 1.5rem;
  }

  .testimonials-subtitle {
    font-size: 0.875rem;
  }

  .testimonials-emoji {
    font-size: 1.125rem;
  }

  .testimonial-card {
    width: 340px;
    padding: 1.75rem;
  }

  .testimonial-quote-icon {
    font-size: 2.5rem;
    top: 1.25rem;
    right: 1.25rem;
  }

  .testimonial-star {
    font-size: 1.125rem;
  }

  .testimonial-text {
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
  }

  .testimonial-avatar {
    height: 3rem;
    width: 3rem;
    font-size: 1.375rem;
  }

  .testimonial-name {
    font-size: 0.9375rem;
  }

  .testimonial-role {
    font-size: 0.8125rem;
  }
}

@media (max-width: 575px) {
  .testimonials-section {
    padding: 2.5rem 0;
  }

  .testimonials-title {
    font-size: 1.25rem;
  }

  .testimonials-subtitle {
    font-size: 0.8125rem;
  }

  .testimonial-card {
    width: 300px;
    padding: 1.5rem;
  }

  .testimonial-quote-icon {
    font-size: 2rem;
    top: 1rem;
    right: 1rem;
  }

  .testimonial-star {
    font-size: 1rem;
  }

  .testimonial-text {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .testimonial-avatar {
    height: 2.75rem;
    width: 2.75rem;
    font-size: 1.25rem;
  }

  .testimonial-name {
    font-size: 0.875rem;
  }

  .testimonial-role {
    font-size: 0.75rem;
  }
}

/* About Us Page */
/* About Us Page Styles */

/* Hero Section */
.about-hero-section {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--primary-dark-blue) 0%,
    #2a5585 50%,
    var(--primary-dark-blue) 100%
  );
  color: white;
  padding: 4rem 0;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(
    circle at 2px 2px,
    white 1px,
    transparent 0
  );
  background-size: 48px 48px;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse 2s ease-in-out infinite;
}

.floating-circle-1 {
  top: 5rem;
  right: 5rem;
  width: 18rem;
  height: 18rem;
  background: var(--primary-green);
  opacity: 0.4;
}

.floating-circle-2 {
  bottom: 5rem;
  left: 5rem;
  width: 24rem;
  height: 24rem;
  background: var(--primary-yellow);
  opacity: 0.4;
  animation-delay: 1s;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-text-wrapper {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-green);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.hero-title-about {
  font-size: 2.2rem; /* mobile first */
  font-weight: normal;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #fff;
}

/* Tablets */
@media (min-width: 768px) {
  .hero-title-about {
    font-size: 3rem;
  }
}

/* Desktops */
@media (min-width: 1200px) {
  .hero-title-about {
    font-size: 3.5rem;
  }
}

.hero-title-accent {
  display: block;
  color: var(--primary-yellow);
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 48rem;
  margin: 0 auto 10px;
}

/* Our Story Section */
.our-story-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.story-image-wrapper {
  position: relative;
}

.image-glow {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(
    to right,
    var(--primary-green),
    var(--primary-dark-blue)
  );
  border-radius: 1.5rem;
  opacity: 0.2;
  filter: blur(48px);
}

.story-image {
  position: relative;
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.story-content {
  padding: 1rem 0;
}

.section-badge {
  display: inline-block;
  color: var(--primary-green);
  background: rgba(112, 178, 54, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3rem;
  font-weight: normal;
  color: var(--primary-dark-blue);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.title-accent {
  color: var(--primary-green);
}

.story-text {
  color: var(--text-gray);
  font-size: 1.125rem;
  line-height: 1.7;
}

.story-text p {
  margin-bottom: 1.25rem;
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 3rem 0;
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
}

.why-choose-content {
  padding: 2rem 0;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.feature-icon-green {
  background: linear-gradient(135deg, var(--primary-green) 0%, #5a9028 100%);
}

.feature-icon-blue {
  background: linear-gradient(
    135deg,
    var(--primary-dark-blue) 0%,
    #2a5585 100%
  );
}

.feature-icon-purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-dark-blue);
  margin-bottom: 0.5rem;
}

.feature-description {
  color: var(--text-gray);
  margin: 0;
  line-height: 1.6;
}

.why-choose-image-wrapper {
  position: relative;
}

.image-glow-reverse {
  background: linear-gradient(
    to right,
    var(--primary-dark-blue),
    var(--primary-green)
  );
}

.green-btn {
  display: inline-flex;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-green);
  background: transparent;
  border: 1px solid var(--primary-green);
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 6px;
  align-items: center;
}

.green-btn:hover {
  color: white;
  background: var(--primary-green);
  transform: translateX(6px);
}

.why-choose-image {
  position: relative;
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Core Values Section */
.core-values-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.value-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid var(--border-gray);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.value-icon-wrapper {
  position: relative;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.5rem;
}

.value-icon-bg {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  opacity: 0.2;
}

.value-icon-bg-red {
  background: linear-gradient(135deg, #ef4444 0%, #ec4899 100%);
}
.value-icon-bg-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
}
.value-icon-bg-purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
}
.value-icon-bg-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.value-icon {
  position: relative;
  font-size: 2rem;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card-red .value-icon {
  color: #ef4444;
}
.value-card-blue .value-icon {
  color: #3b82f6;
}
.value-card-purple .value-icon {
  color: #8b5cf6;
}
.value-card-green .value-icon {
  color: #10b981;
}

.value-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.value-description {
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

/* Stats Section */
.stats-section {
  padding: 4rem 0;
  background: white;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-dark-blue);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-gray);
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.05);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .story-image,
  .why-choose-image {
    height: 400px;
  }

  .btn-box {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .about-hero-section {
    padding: 4rem 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .our-story-section,
  .why-choose-section,
  .core-values-section {
    padding: 3rem 0;
  }

  .floating-circle-1,
  .floating-circle-2 {
    display: none;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .story-image,
  .why-choose-image {
    height: 300px;
  }
}

/* Breadcrumb Section */
.breadcrumbs {
  position: relative;
  background: var(--primary-dark-blue);
}

.page-header .breadcrumb {
  background: transparent;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.page-header .breadcrumb-item a {
  color: var(--primary-yellow);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.page-header .breadcrumb-item a:hover {
  color: var(--primary-green);
  opacity: 0.85;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: var(--secondary-green);
  padding: 0 0.4rem;
  font-weight: 600;
}

.page-header .breadcrumb-item.active {
  color: #ffffff;
  font-weight: 600;
}

/* Contact Us Page */
/* Hero Section */
.contact-hero-section {
  background: var(--primary-dark-blue);
  color: white;
  padding: 3rem 0;
}

.contact-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact-hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

/* Contact Info Section */
.contact-info-section {
  padding: 2.5rem 0;
  /* background: var(--bg-light); */
}

/* Info Cards */
.contact-info-card {
  background: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-gray);
  transition: box-shadow 0.3s ease;
  height: 100%;
}

.contact-info-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-icon-green {
  background: var(--primary-green);
}

.contact-info-icon-blue {
  background: var(--primary-dark-blue);
}

.contact-info-icon-yellow {
  background: var(--primary-yellow);
}

.contact-info-icon-purple {
  background: #d946ef;
}

.contact-info-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-info-text {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-bottom: 0.25rem;
  word-wrap: break-word;
}

.contact-info-text:last-child {
  margin-bottom: 0;
}

/* Main Contact Section */
.contact-main-section {
  padding: 1rem 0;
  /* background: var(--bg-light); */
}

/* Contact Form Card */
.contact-form-card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-gray);
  padding: 2rem;
}

.contact-form-header {
  margin-bottom: 1.5rem;
}

.contact-form-title {
  font-size: 2.5rem;
  color: var(--primary-dark-blue);
  font-weight: normal;
  margin-bottom: 0.5rem;
}

.contact-form-subtitle {
  color: var(--text-gray);
  font-size: 1rem;
  margin: 0;
}

/* Form Styles */
.contact-form .form-label {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.contact-input {
  height: 2.75rem;
  border: 1px solid var(--border-gray);
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  background: white;
  transition: all 0.3s ease;
}

.contact-input:focus {
  border-color: var(--primary-green);
  outline: none;
  box-shadow: 0 0 0 3px rgba(112, 178, 54, 0.1);
}

.contact-textarea {
  border: 1px solid var(--border-gray);
  border-radius: 0.375rem;
  padding: 0.75rem;
  font-size: 0.875rem;
  background: white;
  resize: none;
  transition: all 0.3s ease;
}

.contact-textarea:focus {
  border-color: var(--primary-green);
  outline: none;
  box-shadow: 0 0 0 3px rgba(112, 178, 54, 0.1);
}

.btn-contact-submit {
  background: var(--primary-green);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.btn-contact-submit:hover {
  background: var(--secondary-green);
  color: white;
}

/* Sidebar Card */
.contact-sidebar-card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-gray);
  padding: 1.5rem;
}

.contact-sidebar-title {
  font-size: 1.25rem;
  color: var(--primary-dark-blue);
  font-weight: normal;
  margin-bottom: 1rem;
}

/* Feature Items */
.contact-feature-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-feature-item:last-of-type {
  margin-bottom: 0;
}

.contact-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-feature-icon-green {
  background: var(--primary-green);
}

.contact-feature-icon-blue {
  background: var(--primary-dark-blue);
}

.contact-feature-icon-yellow {
  background: var(--primary-yellow);
}

.contact-feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.contact-feature-text {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.4;
}

/* Features Footer */
.contact-features-footer {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-gray);
}

.contact-check-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

.contact-check-item:last-child {
  margin-bottom: 0;
}

.contact-check-icon {
  color: var(--primary-green);
  font-size: 1rem;
  flex-shrink: 0;
}

/* CTA Card */
.contact-cta-card {
  background: var(--primary-green);
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  color: white;
}

.contact-cta-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-cta-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.btn-contact-call {
  display: inline-flex;
  align-items: center;
  background: white;
  color: var(--primary-green);
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-contact-call:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-green);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .contact-hero-title {
    font-size: 2.5rem;
  }

  .contact-hero-subtitle {
    font-size: 1rem;
  }

  .contact-form-card {
    padding: 1.5rem;
  }

  .contact-form-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .contact-hero-section {
    padding: 2rem 0;
  }

  .contact-hero-title {
    font-size: 2rem;
  }

  .contact-hero-subtitle {
    font-size: 0.9375rem;
  }

  .contact-info-section {
    padding: 2rem 0;
  }

  .contact-main-section {
    padding: 1rem 0;
  }

  .contact-form-card {
    padding: 1.25rem;
  }

  .contact-form-title {
    font-size: 1.375rem;
  }

  .contact-form-subtitle {
    font-size: 0.875rem;
  }

  .btn-contact-submit {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .contact-hero-title {
    font-size: 1.75rem;
  }

  .contact-hero-subtitle {
    font-size: 0.875rem;
  }

  .contact-info-card {
    padding: 1.25rem;
  }

  .contact-form-card {
    padding: 1rem;
  }

  .contact-form-title {
    font-size: 1.25rem;
  }

  .contact-sidebar-card,
  .contact-cta-card {
    padding: 1.25rem;
  }
}

/* Product category & sub-category page */
/* Hero Section */
.category-hero-section {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-gray);
  padding: 3rem 0;
}

.category-hero-title {
  color: var(--primary-dark-blue);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.category-hero-subtitle {
  color: var(--text-gray);
  font-size: 1.125rem;
  margin: 0;
  line-height: 1.6;
}

/* Categories Grid Section */
.categories-grid-section {
  padding: 3rem 0;
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
}

/* Main Category Text */
.main-category-title {
  font-size: 2.5rem;
  font-weight: normal;
  color: var(--primary-dark-blue);
  margin: 0;
}
.main-category-text {
  font-size: 1rem;
  color: var(--text-gray);
}

@media (max-width: 768px) {
  .main-category-title {
    font-size: 1.5rem;
  }
}

/* Category Card */
body > main > section > div > div.row.g-4.category-cards-container > div > a > div > div.category-content {
  color: #111827;
}

.p-category-card {
  background: white;
  border: 1px solid var(--border-gray);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.p-category-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-green);
}

/* Image Container */
.category-image-wrapper {
  position: relative;
  height: 12rem;
  overflow: hidden;
  background: var(--bg-light);
}

.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.p-category-card:hover .category-image {
  transform: scale(1.1);
}

.category-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
}

/* Product Count Badge */
.category-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: white;
  border-radius: 50rem;
  padding: 0.25rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.category-badge i {
  color: var(--primary-green);
  font-size: 1rem;
}

.category-badge span {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.875rem;
}

/* Category Content */
.category-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.p-category-title {
  color: var(--primary-dark-blue);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.p-category-card:hover .p-category-title {
  color: var(--primary-green);
}

.category-description {
  color: var(--text-gray);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Subcategories */
.category-subcategories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.category-subcategory-tag {
  padding: 0.25rem 0.75rem;
  background: var(--bg-light);
  color: var(--text-gray);
  border-radius: 50rem;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Action Button */
.category-action-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--bg-light);
  color: var(--text-dark);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
  font-weight: 500;
}

.p-category-card:hover .category-action-btn {
  background: var(--primary-green);
  color: white;
}

.category-action-btn i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.p-category-card:hover .category-action-btn i {
  transform: translateX(0.25rem);
}

/* CTA Section */
.category-cta-section {
  /* margin-top: 4rem; */
  background: linear-gradient(
    to bottom right,
    #111827,
    var(--primary-dark-blue),
    #111827
  );
  /* border-radius: 0.75rem; */
  padding: 3rem 2rem;
  text-align: center;
  color: white;
}

.category-cta-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: white;
}

.category-cta-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.category-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.category-cta-btn-primary {
  padding: 0.75rem 1.5rem;
  background: white;
  color: var(--primary-dark-blue);
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.category-cta-btn-primary:hover {
  background: var(--bg-light);
  color: var(--primary-dark-blue);
}

.category-cta-btn-secondary {
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.category-cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

/* Back to Top Button */
.back-to-top-btn {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--primary-green);
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background: var(--secondary-green);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.back-to-top-btn i {
  font-size: 1.25rem;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .category-hero-section {
    padding: 2.5rem 0;
  }

  .category-hero-title {
    font-size: 2rem;
  }

  .category-hero-subtitle {
    font-size: 1rem;
  }

  .categories-grid-section {
    padding: 2.5rem 0 4rem;
  }

  .category-cta-title {
    font-size: 1.75rem;
  }

  .category-cta-text {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .category-hero-section {
    padding: 2rem 0;
  }

  .category-hero-title {
    font-size: 1.75rem;
  }

  .category-hero-subtitle {
    font-size: 0.9375rem;
  }

  .categories-grid-section {
    padding: 2rem 0 3rem;
  }

  .category-image-wrapper {
    height: 10rem;
  }

  .category-content {
    padding: 1.25rem;
  }

  .p-category-title {
    font-size: 1rem;
  }

  .category-description {
    font-size: 0.8125rem;
  }

  .category-cta-section {
    padding: 2.5rem 1.5rem;
    margin-top: 3rem;
  }

  .category-cta-title {
    font-size: 1.5rem;
  }

  .category-cta-text {
    font-size: 0.9375rem;
  }

  .category-cta-buttons {
    flex-direction: column;
  }

  .category-cta-btn-primary,
  .category-cta-btn-secondary {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .category-hero-title {
    font-size: 1.5rem;
  }

  .category-hero-subtitle {
    font-size: 0.875rem;
  }

  .category-image-wrapper {
    height: 9rem;
  }

  .category-content {
    padding: 1rem;
  }

  .p-category-title {
    font-size: 0.9375rem;
  }

  .category-subcategory-tag {
    font-size: 0.6875rem;
    padding: 0.1875rem 0.625rem;
  }

  .category-cta-section {
    padding: 2rem 1.25rem;
  }

  .category-cta-title {
    font-size: 1.25rem;
  }

  .category-cta-text {
    font-size: 0.875rem;
  }

  .back-to-top-btn {
    bottom: 4.5rem;
    right: 1.5rem;
    width: 2.75rem;
    height: 2.75rem;
  }

  .back-to-top-btn i {
    font-size: 1.125rem;
  }
}

/* View More Button Container */
.view-more-container {
  display: none;
  text-align: center;
  margin-top: 32px;
}

.view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: white;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(112, 178, 54, 0.15);
}

.view-more-btn:hover {
  background: var(--primary-green);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(112, 178, 54, 0.25);
}

.view-more-btn:active {
  transform: translateY(0);
}

.view-more-icon {
  transition: transform 0.3s ease;
}

.view-more-btn.expanded .view-more-icon {
  transform: rotate(180deg);
}

/* Hidden cards on mobile */
@media (max-width: 767px) {
  .view-more-container {
    display: block;
  }

  .category-card-item.hidden-card {
    display: none;
  }

  .category-card-item.show-card {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
  }
}

/* Fade in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* On desktop, show all cards */
@media (min-width: 768px) {
  .category-card-item.hidden-card {
    display: block !important;
  }

  .view-more-container {
    display: none !important;
  }
}

/* All Product Listing Page */
/* Medication Card Fixes - All Screens */
.medication-card {
  background: #ffffff;
  border: 2px solid var(--border-gray);
  border-radius: 0.75rem;
  padding: 1.5rem;
  height: 100%;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.medication-card:hover {
  border-color: var(--primary-dark-blue);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.medication-content {
  flex: 1;
  margin-bottom: 1rem;
}

.medication-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.medication-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.medication-card:hover .medication-name {
  color: var(--primary-dark-blue);
}

.medication-condition {
  font-size: 0.9375rem;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.5;
}

.btn-view-details {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--primary-dark-blue);
  background: transparent;
  border: 1.5px solid var(--primary-dark-blue);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-view-details:hover,
.medication-card:hover .btn-view-details {
  background: var(--primary-dark-blue);
  color: #ffffff;
  border-color: var(--primary-dark-blue);
}

/* Pagination Styles */
.pagination-wrapper {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.pagination-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
  align-items: center;
}

.pagination-item {
  display: inline-flex;
}

.pagination-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dark);
  background: white;
  border: 1.5px solid var(--border-gray);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination-link:hover {
  background: var(--bg-light);
  border-color: var(--primary-dark-blue);
  color: var(--primary-dark-blue);
}

.pagination-link.pagination-active {
  background: var(--primary-dark-blue);
  color: white;
  border-color: var(--primary-dark-blue);
}

.pagination-prev,
.pagination-next {
  font-size: 1.125rem;
}

.pagination-dots {
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  color: var(--text-gray);
}

.pagination-info {
  color: var(--text-gray);
  font-size: 0.9375rem;
}

.pagination-info strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Tablet Responsive */
@media (max-width: 991px) {
  .medication-card {
    padding: 1.25rem;
    min-height: 170px;
  }
}

/* Mobile Responsive - Medium */
@media (max-width: 768px) {
  .medication-card {
    padding: 1.25rem;
    min-height: 160px;
  }

  .medication-name {
    font-size: 1rem;
  }

  .medication-condition {
    font-size: 0.875rem;
  }

  .btn-view-details {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }

  /* Pagination Mobile */
  .pagination-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    margin-top: 3rem;
  }

  .pagination-list {
    justify-content: center;
  }

  .pagination-link {
    min-width: 2.25rem;
    height: 2.25rem;
    font-size: 0.875rem;
  }
}

/* Mobile Responsive - Small */
@media (max-width: 576px) {
  /* Force full width on small screens */
  .col-sm-6.col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .medication-card {
    padding: 1.25rem;
    min-height: 150px;
    width: 100%;
  }

  .medication-header {
    display: block;
    margin-bottom: 0.625rem;
  }

  .medication-name {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: block;
  }

  .medication-condition {
    font-size: 0.875rem;
    display: block;
  }

  .btn-view-details {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    margin-top: auto;
  }

  /* Pagination very small screens */
  .pagination-link {
    min-width: 2rem;
    height: 2rem;
    padding: 0 0.5rem;
    font-size: 0.8125rem;
  }

  .pagination-list {
    gap: 0.375rem;
  }

  /* Hide some pagination numbers on very small screens */
  .pagination-item:nth-child(n + 5):nth-last-child(n + 3) {
    display: none;
  }

  .pagination-dots {
    display: none;
  }
}

/* Extra Small Mobile */
@media (max-width: 400px) {
  .medication-card {
    padding: 1rem;
    min-height: 140px;
  }

  .medication-name {
    font-size: 0.9375rem;
  }

  .medication-condition {
    font-size: 0.8125rem;
  }

  .btn-view-details {
    padding: 0.625rem 0.875rem;
    font-size: 0.8125rem;
  }
}

/* Product Detail Page */
/* Product Detail Page Container */
.product-detail-page {
  background: var(--bg-light);
  min-height: calc(100vh - 200px);
}

/* Product Image Card */
.product-image-card {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid var(--border-gray);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.product-image-wrapper {
  /* aspect-ratio: 1; */
  max-height: 410px;
  margin: 0 auto;
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Info Card */
.product-info-card {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid var(--border-gray);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.product-category {
  color: var(--primary-green);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--primary-dark-blue);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.product-description {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.product-description p {
  margin-bottom: 0;
}

/* Product Actions */
.product-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-get-quote {
  width: 100%;
  padding: 1rem;
  background: var(--primary-green);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-get-quote:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-contact-sales {
  width: 100%;
  padding: 1rem;
  background: transparent;
  color: var(--primary-dark-blue);
  border: 2px solid var(--primary-dark-blue);
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-contact-sales:hover {
  background: var(--primary-dark-blue);
  color: white;
}

/* Tabs Section */
.product-tabs-section {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-gray);
  margin-bottom: 2rem;
}

.product-tabs {
  border-bottom: 1px solid var(--border-gray);
  padding: 0 1rem;
}

.product-tabs .nav-link {
  color: var(--text-gray);
  padding: 1rem 1.5rem;
  border: none;
  background: transparent;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.product-tabs .nav-link:hover {
  color: var(--primary-green);
}

.product-tabs .nav-link.active {
  color: var(--primary-green);
  background: transparent;
}

.product-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-green);
}

/* Tab Content */
.product-tab-content {
  padding: 2rem;
}

.tab-content-wrapper {
  color: var(--text-gray);
  line-height: 1.7;
}

/* Scoped content styles - ONLY affects content inside tab-content-wrapper */
.tab-content-wrapper h1,
.tab-content-wrapper h2,
.tab-content-wrapper h3 {
  color: var(--primary-dark-blue);
  font-weight: 500;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.tab-content-wrapper h1:first-child,
.tab-content-wrapper h2:first-child,
.tab-content-wrapper h3:first-child {
  margin-top: 0;
}

.tab-content-wrapper h1 {
  font-size: 1.875rem;
}

.tab-content-wrapper h2 {
  font-size: 1.5rem;
}

.tab-content-wrapper h3 {
  font-size: 1.25rem;
}

.tab-content-wrapper h4 {
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 0.75rem;
  margin-top: 1rem;
  font-size: 1.25rem;
}

.tab-content-wrapper p {
  color: var(--text-gray);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.tab-content-wrapper ul,
.tab-content-wrapper ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.tab-content-wrapper ul li,
.tab-content-wrapper ol li {
  color: var(--text-gray);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.tab-content-wrapper ul li {
  list-style-type: disc;
}

.tab-content-wrapper ol li {
  list-style-type: decimal;
}

.tab-content-wrapper strong,
.tab-content-wrapper b {
  color: var(--text-dark);
  font-weight: 600;
}

.tab-content-wrapper a {
  color: var(--primary-green);
  text-decoration: underline;
}

.tab-content-wrapper a:hover {
  color: var(--primary-dark-blue);
}

/* Why Choose Section */
.why-choose-section {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid var(--border-gray);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.section-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark-blue);
  margin-bottom: 1.5rem;
}

.feature-card {
  text-align: center;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
}

.feature-icon-green {
  background: var(--bg-light);
  color: var(--primary-green);
}

.feature-icon-blue {
  background: var(--bg-light);
  color: var(--primary-dark-blue);
}

.feature-icon-yellow {
  background: var(--bg-light);
  color: var(--primary-yellow);
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.feature-text {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin: 0;
}

/* Inquiry Modal */
.inquiry-modal .modal-header {
  border-bottom: 1px solid var(--border-gray);
  padding: 1.5rem;
}

.inquiry-modal .modal-title {
  font-size: 1.5rem;
  color: var(--primary-dark-blue);
  font-weight: 700;
}

.inquiry-modal .modal-subtitle {
  font-size: 0.975rem;
  color: var(--primary-green);
  margin-top: 0.25rem;
  margin-bottom: 0;
  font-weight: 500;
}

.inquiry-modal .modal-body {
  padding: 1.5rem;
}

.inquiry-modal .form-label {
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.inquiry-input {
  border: 1px solid var(--border-gray);
  border-radius: 0.5rem;
  padding: 0.625rem 1rem;
  font-size: 0.9375rem;
  transition: all 0.3s;
}

.inquiry-input:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(112, 178, 54, 0.1);
  outline: none;
}

.inquiry-modal .modal-footer {
  border-top: none;
  padding: 0;
  padding-top: 1rem;
  justify-content: flex-end;
  gap: 0.75rem;
}

.btn-cancel {
  padding: 0.625rem 1.5rem;
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-gray);
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-cancel:hover {
  background: var(--bg-light);
}

.btn-submit {
  padding: 0.625rem 1.5rem;
  background: var(--primary-green);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:hover {
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 991px) {
  .product-title {
    font-size: 1.5rem;
  }

  .section-heading {
    font-size: 1.25rem;
  }

  .product-image-wrapper {
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .product-image-card,
  .product-info-card {
    padding: 1.5rem;
  }

  .product-image-wrapper {
    max-width: 300px;
  }

  .product-title {
    font-size: 1.375rem;
  }

  .product-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .product-tabs .nav-link {
    padding: 0.875rem 1rem;
    white-space: nowrap;
  }

  .product-tab-content {
    padding: 1.5rem;
  }

  .tab-content-wrapper h1 {
    font-size: 1.5rem;
  }

  .tab-content-wrapper h2 {
    font-size: 1.25rem;
  }

  .tab-content-wrapper h3 {
    font-size: 1.125rem;
  }
}

@media (max-width: 576px) {
  .product-image-card,
  .product-info-card,
  .why-choose-section {
    padding: 1rem;
  }

  .product-image-wrapper {
    /* max-width: 250px; */
  }

  .product-title {
    font-size: 1.25rem;
  }

  .btn-get-quote,
  .btn-contact-sales {
    padding: 0.875rem;
    font-size: 0.9375rem;
  }

  .product-tab-content {
    padding: 1rem;
  }
}

/* Quiz Styles */
.quiz-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.quiz-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-dark-blue);
  margin-bottom: 0.75rem;
}

.quiz-description {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.quiz-questions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.quiz-question-card {
  padding: 0.5rem 1rem;
  background: var(--bg-light);
  border: 1px solid var(--border-gray);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.quiz-question-text {
  flex: 1;
  font-size: 0.9375rem;
  color: var(--text-dark);
  margin: 0;
}

.quiz-answer-buttons {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.quiz-btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--border-gray);
  border-radius: 0.375rem;
  background: white;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s;
}

.quiz-btn:hover {
  border-opacity: 0.6;
}

.quiz-btn-yes.active {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.quiz-btn-no.active {
  background: var(--primary-dark-blue);
  border-color: var(--primary-dark-blue);
  color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-get-result {
  width: 100%;
  padding: 0.875rem;
  background: var(--primary-green);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-get-result:hover {
  opacity: 0.9;
}

.quiz-result {
  margin-top: 1.5rem;
}

.quiz-result-content {
  padding: 1.5rem;
  background: var(--bg-light);
  border: 2px solid;
  border-radius: 0.5rem;
}

.quiz-result-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.quiz-result-header i {
  font-size: 1.5rem;
  margin-top: 0.125rem;
}

.quiz-result-header h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.quiz-result-description {
  color: var(--text-gray);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quiz-disclaimer {
  padding: 0.75rem;
  background: white;
  border: 1px solid var(--border-gray);
  border-radius: 0.375rem;
}

.quiz-disclaimer p {
  font-size: 0.8125rem;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.5;
}

/* Quiz Mobile Responsive */
@media (max-width: 768px) {
  .quiz-question-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .quiz-answer-buttons {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .quiz-wrapper {
    padding: 0;
  }

  .quiz-question-card {
    padding: 0.875rem;
  }

  .quiz-question-text {
    font-size: 0.875rem;
  }

  .quiz-btn {
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
  }
}

/* Single Product Related Products Section */
.single-product-related-section {
  padding: 30px 0;
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
  position: relative;
  margin: 0;
}

/* Header */
.sp-related-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 20px;
}

.sp-related-header-content {
  flex: 1;
  text-align: center;
}

.sp-related-title {
  color: #1d3e61;
  font-size: 2.25rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.sp-related-subtitle {
  color: #6b7280;
  font-size: 1rem;
  margin: 0;
}

/* Scroll Navigation */
.sp-related-nav {
  display: flex;
  gap: 10px;
}

.sp-scroll-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid #e5e7eb;
  color: #1d3e61;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sp-scroll-btn:hover {
  background: #1d3e61;
  color: white;
  border-color: #1d3e61;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(29, 62, 97, 0.15);
}

.sp-scroll-btn:active {
  transform: scale(0.95);
}

/* Scroll Container */
.sp-medication-scroll-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 20px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 12px 0;
}

.sp-medication-scroll-container::-webkit-scrollbar {
  display: none;
}

/* Medication Card - Matching Reference Image */
.sp-medication-card {
  background: white;
  border-radius: 20px;
  min-width: 280px;
  max-width: 280px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.sp-medication-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* Card Image Container - Light Gray Background */
.sp-card-image-container {
  /* padding: 40px 20px; */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px 20px 0 0;
  /* min-height: 220px; */
  position: relative;
}

.sp-product-image {
  width: 180px;
  height: 180px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.sp-medication-card:hover .sp-product-image {
  transform: scale(1.05);
}

/* Card Content */
.sp-card-content {
  padding: 24px 20px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sp-medication-name {
  color: #1d3e61;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.3;
}

.sp-medication-category {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.sp-related-empty {
  width: 92%;
  text-align: center;
}

.sp-related-empty h4 {
  font-weight: 500;
  color: var(--primary-green);
}

/* View Details Button - Matching Reference */
.sp-view-details-btn {
  display: block;
  width: 100%;
  background: #1d3e61;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  margin-top: auto;
}

.sp-view-details-btn:hover {
  background: #152e47;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(29, 62, 97, 0.3);
  text-decoration: none;
}

.sp-view-details-btn:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .single-product-related-section {
    padding: 20px 0;
  }

  .sp-related-title {
    font-size: 2rem;
  }

  .sp-related-subtitle {
    font-size: 0.95rem;
  }

  .sp-related-header {
    flex-direction: column;
    margin-bottom: 30px;
  }

  .sp-medication-card {
    min-width: 260px;
    max-width: 260px;
  }

  .sp-card-image-container {
    /* min-height: 200px; */
    /* padding: 35px 20px; */
  }

  .sp-product-image {
    width: 150px;
    height: 150px;
  }

  .sp-related-empty {
    width: 100%;
  }

  .sp-related-empty h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .sp-related-title {
    font-size: 1.75rem;
  }

  .sp-medication-card {
    min-width: 240px;
    max-width: 240px;
  }

  .sp-card-image-container {
    /* min-height: 180px;
    padding: 30px 15px; */
  }

  .sp-product-image {
    width: 120px;
    height: 120px;
  }

  .sp-card-content {
    padding: 20px 16px;
  }

  .sp-medication-name {
    font-size: 1.25rem;
  }

  .sp-medication-category {
    font-size: 0.85rem;
  }
}

/* ========================================
   BLOG PAGE STYLES - NAMESPACED
   ======================================== */
/* Main Blog Section */
.blog-main-section {
  background: var(--bg-light);
  padding: 60px 0;
}
.blog-posts-grid {
  margin-bottom: 48px;
}
/* Blog Card Link */
.blog-card-link {
  text-decoration: none;
  display: block;
  height: 100%;
}
.blog-card-link:hover {
  text-decoration: none;
}
/* Blog Card */
.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
/* Blog Card Image */
.blog-card-image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.blog-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-card:hover .blog-card-image {
  transform: scale(1.05);
}
.blog-card-category {
  position: absolute;
  top: 16px;
  left: 16px;
}
.category-badge {
  background: var(--primary-green);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
}
/* Blog Card Content */
.blog-card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-gray);
  font-size: 0.875rem;
  margin-bottom: 12px;
}
.date-icon {
  width: 16px;
  height: 16px;
  color: var(--text-gray);
}
.blog-card-title {
  color: var(--text-dark);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}
.blog-card:hover .blog-card-title {
  color: var(--primary-green);
}
.blog-card-excerpt {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.blog-card-read-more {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.3s ease;
}
.blog-card:hover .blog-card-read-more {
  gap: 12px;
}
.read-more-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.blog-card:hover .read-more-icon {
  transform: translateX(4px);
}
/* Pagination */
.blog-pagination {
  margin-top: 48px;
}
.pagination-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination-item {
  list-style: none;
}
.pagination-btn {
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid var(--border-gray);
  background: white;
  color: var(--text-dark);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
.pagination-btn:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
  text-decoration: none;
}
.pagination-btn-active {
  background: var(--primary-green);
  color: white;
  border-color: var(--primary-green);
}
.pagination-btn-active:hover {
  background: var(--primary-green);
  color: white;
}
.pagination-btn-disabled {
  color: var(--text-gray);
  cursor: not-allowed;
  opacity: 0.5;
}
.pagination-btn-disabled:hover {
  border-color: var(--border-gray);
  color: var(--text-gray);
}
/* Sidebar */
.blog-sidebar {
  position: sticky;
  top: 20px;
}
.sidebar-widget {
  background: white;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}
.sidebar-widget-title {
  color: var(--text-dark);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-gray);
}
/* Category List */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-item {
  margin-bottom: 8px;
}
.category-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}
.category-link:hover {
  background: var(--bg-light);
  color: var(--primary-green);
  text-decoration: none;
}
.category-icon {
  width: 16px;
  height: 16px;
  color: var(--text-gray);
  transition: color 0.3s ease;
  flex-shrink: 0;
}
.category-link:hover .category-icon {
  color: var(--primary-green);
}
.category-name {
  font-size: 0.95rem;
  font-weight: 500;
}
/* Recent Posts List */
.recent-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.recent-post-item {
  margin-bottom: 20px;
}
.recent-post-item:last-child {
  margin-bottom: 0;
}
.recent-post-link {
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}
.recent-post-link:hover {
  text-decoration: none;
}
.recent-post-title {
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}
.recent-post-link:hover .recent-post-title {
  color: var(--primary-green);
}
.recent-post-date {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin: 0;
}
/* Responsive Design */
@media (max-width: 991px) {
  .blog-sidebar {
    position: static;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .blog-page-header {
    padding: 30px 0;
  }
  .blog-main-title {
    font-size: 2rem;
  }
  .blog-main-subtitle {
    font-size: 1rem;
  }
  .blog-main-section {
    padding: 40px 0;
  }
  .blog-card-image-wrapper {
    height: 200px;
  }
  .blog-card-content {
    padding: 20px;
  }
  .blog-card-title {
    font-size: 1.15rem;
  }
  .pagination-btn {
    padding: 8px 14px;
    font-size: 0.875rem;
  }
  .sidebar-widget {
    padding: 24px;
  }
}
@media (max-width: 575px) {
  .blog-main-title {
    font-size: 1.75rem;
  }
  .blog-card-image-wrapper {
    height: 180px;
  }
  .blog-card-title {
    font-size: 1.1rem;
  }
  .pagination-list {
    gap: 6px;
  }
  .pagination-btn {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}

/* =========================
       404 PAGE – FULL WIDTH
       ========================= */

.error-404-section {
  min-height: calc(100vh - 160px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;

  background: radial-gradient(
      circle at 18% 28%,
      rgba(112, 178, 54, 0.14),
      transparent 55%
    ),
    radial-gradient(circle at 82% 38%, rgba(29, 62, 97, 0.18), transparent 60%),
    linear-gradient(180deg, var(--bg-light), #ffffff);
}

/* Center wrapper */
.error-404-inner {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 36px 24px;
}

/* Card */
.error-404-card {
  position: relative;
  max-width: 760px;
  width: 100%;
  padding: 80px 64px;

  background: #ffffff;
  border-radius: 32px;

  box-shadow: 0 32px 90px rgba(29, 62, 97, 0.18),
    0 8px 24px rgba(29, 62, 97, 0.1);
}

/* Warning icon */
.error-icon {
  font-size: 54px;
  color: var(--primary-yellow);
  margin-bottom: 20px;
}

/* 404 number */
.error-code {
  font-size: clamp(5rem, 10vw, 7rem);
  font-weight: 700;
  color: var(--primary-dark-blue);
  margin-bottom: 6px;
}

/* Title */
.error-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

/* Description */
.error-text {
  font-size: 1.05rem;
  color: var(--text-gray);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

/* Buttons wrapper */
.error-actions {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* Primary button */
.btn-404-primary {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  color: #ffffff;

  border: none;
  border-radius: 0.375rem;
  padding: 16px 48px;
  font-size: 1rem;
  font-weight: 600;

  box-shadow: 0 16px 34px rgba(112, 178, 54, 0.45);
  transition: all 0.25s ease;
}

.btn-404-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(112, 178, 54, 0.55);
  color: #ffffff;
}

/* Secondary button */
.btn-404-secondary {
  background: #ffffff;
  color: var(--primary-dark-blue);

  border: 2px solid var(--border-gray);
  border-radius: 0.375rem;
  padding: 16px 44px;
  font-size: 1rem;
  font-weight: 600;

  transition: all 0.25s ease;
}

.btn-404-secondary:hover {
  background: var(--bg-light);
  border-color: var(--primary-dark-blue);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .error-404-card {
    padding: 60px 32px;
    border-radius: 24px;
  }

  .error-title {
    font-size: 1.7rem;
  }

  .error-text {
    font-size: 1rem;
  }
}

/* FAQ Section */
.faq-section {
  background: var(--bg-light);
  padding: 80px 0;
}

/* FAQ Header */
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-main-title {
  color: var(--primary-dark-blue);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.faq-subtitle {
  color: var(--text-gray);
  font-size: 1.125rem;
  margin: 0;
  line-height: 1.6;
}

/* FAQ Accordion */
.faq-accordion {
  margin-bottom: 48px;
}

.faq-accordion-item {
  background: white;
  border: 1px solid var(--border-gray);
  border-radius: 12px;
  margin-bottom: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-accordion-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-accordion-header {
  margin: 0;
}

.faq-accordion-button {
  width: 100%;
  padding: 18px 24px;
  background: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.faq-accordion-button:not(.collapsed) {
  background: rgba(112, 178, 54, 0.05);
  border-bottom: 1px solid var(--border-gray);
}

.faq-accordion-button:hover {
  background: rgba(112, 178, 54, 0.05);
}

.faq-accordion-button:focus {
  box-shadow: none;
  outline: none;
}

.faq-question-text {
  color: var(--primary-dark-blue);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
  flex: 1;
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-icon svg {
  color: white;
  transition: all 0.3s ease;
}

.faq-icon-minus {
  display: none;
}

.faq-accordion-button:not(.collapsed) .faq-icon {
  background: var(--primary-dark-blue);
  transform: rotate(180deg);
}

.faq-accordion-button:not(.collapsed) .faq-icon-plus {
  display: none;
}

.faq-accordion-button:not(.collapsed) .faq-icon-minus {
  display: block;
}

.faq-accordion-button.collapsed .faq-icon-plus {
  display: block;
}

.faq-accordion-button.collapsed .faq-icon-minus {
  display: none;
}

/* Accordion Body */
.faq-accordion-body {
  padding: 24px 28px 28px;
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.8;
  background: white;
}

.faq-accordion-body p {
  margin-bottom: 12px;
}

.faq-accordion-body p:last-child {
  margin-bottom: 0;
}

/* Contact CTA */
.faq-contact-cta {
  background: linear-gradient(
    to bottom right,
    #111827,
    var(--primary-dark-blue),
    #111827
  );
  border-radius: 16px;
  padding: 30px 40px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(29, 62, 97, 0.15);
}

.faq-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.faq-cta-title {
  color: white;
  font-size: 1.875rem;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.3;
}

.faq-cta-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.0625rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.faq-cta-button {
  display: inline-block;
  padding: 14px 32px;
  background: var(--primary-green);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(112, 178, 54, 0.3);
}

.faq-cta-button:hover {
  background: #5fa02d;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(112, 178, 54, 0.4);
  text-decoration: none;
}

.faq-cta-button:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 991px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-main-title {
    font-size: 2.25rem;
  }

  .faq-subtitle {
    font-size: 1.0625rem;
  }

  .faq-header {
    margin-bottom: 48px;
  }
}

@media (max-width: 767px) {
  .faq-section {
    padding: 50px 0;
  }

  .faq-main-title {
    font-size: 2rem;
  }

  .faq-subtitle {
    font-size: 1rem;
  }

  .faq-accordion-button {
    padding: 20px 20px;
  }

  .faq-question-text {
    font-size: 1.0625rem;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
  }

  .faq-icon svg {
    width: 18px;
    height: 18px;
  }

  .faq-accordion-body {
    padding: 20px 20px 24px;
    font-size: 0.9375rem;
  }

  .faq-contact-cta {
    padding: 36px 28px;
  }

  .faq-cta-title {
    font-size: 1.625rem;
  }

  .faq-cta-text {
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .faq-main-title {
    font-size: 1.75rem;
  }

  .faq-accordion-button {
    padding: 18px 16px;
  }

  .faq-question-text {
    font-size: 1rem;
  }

  .faq-accordion-body {
    padding: 18px 16px 20px;
  }

  .faq-contact-cta {
    padding: 32px 24px;
  }

  .faq-cta-title {
    font-size: 1.5rem;
  }

  .faq-cta-text {
    font-size: 0.9375rem;
    margin-bottom: 24px;
  }
}
