/* Hnh Publishers - Bootstrap Theme Overrides */

:root {
  --bg-hero: #d7fffe;
  --primary-blue: #7294d3;
  --primary-blue-hover: #5f82c4;
  --accent-blue: #7294d3;
  --dark: #1c2430;
  --dark-hover: #111820;
  --text: #333333;
  --text-muted: #5a6570;
  --text-light: #8a96a3;
  --white: #ffffff;
  --border: #d8e3ec;
  --required: #e74c3c;
  --font-heading: "Raleway", sans-serif;
  --font-body: "Jost", sans-serif;
  --header-radius: 14px;
  --card-radius: 20px;
  --btn-radius: 999px;
  --shadow-header: 0 8px 32px rgba(28, 36, 48, 0.08);
  --shadow-card: 0 12px 40px rgba(28, 36, 48, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Buttons */
.btn.btn-dark,
.btn.btn-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border: none;
  border-radius: var(--btn-radius);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn.btn-dark:hover,
.btn.btn-dark:focus {
  background: var(--dark-hover);
  color: var(--white);
}

.btn.btn-blue {
  background: var(--primary-blue);
  color: var(--white);
}

.btn.btn-blue:hover,
.btn.btn-blue:focus {
  background: var(--primary-blue-hover);
  color: var(--white);
}

.hero-buttons .btn,
.why-buttons .btn {
  padding: 14px 28px;
  font-size: 0.8rem;
}

/* Header / Navbar */
.site-header {
  padding: 20px 0 12px;
  position: relative;
  z-index: 1000;
  background: #d7fffe;
}

.header-bar {
  background: var(--white);
  border-radius: var(--header-radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-header);
}

.logo img,
.footer-logo img {
  max-height: 52px;
  width: auto;
}

.navbar-toggler {
  padding: 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  width: 1.35em;
  height: 1.35em;
}

.main-nav .nav-link {
  padding: 10px 14px !important;
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: var(--primary-blue);
}

.main-nav .dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 10px 0;
}

.main-nav .dropdown-item {
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
}

.main-nav .dropdown-item:hover,
.main-nav .dropdown-item:focus {
  background: #f4f8fb;
  color: var(--primary-blue);
}

@media (min-width: 992px) {
  .header-bar {
    padding: 18px 28px;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding-top: 12px;
  }

  .main-nav .nav-link {
    padding: 12px 0 !important;
    border-bottom: 1px solid var(--border);
  }

  .main-nav .dropdown-menu {
    box-shadow: none;
    padding-left: 12px;
    margin-bottom: 8px;
  }

  .header-actions {
    width: 100%;
    padding-top: 8px;
  }

  .header-actions .btn {
    flex: 1 1 auto;
  }
}

@media (max-width: 767.98px) {
  .logo img {
    max-height: 40px;
  }
}

/* Hero */
.hero-section {
  background-color: #d7fffe;
  background-image: radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.45) 40%, rgba(255, 255, 255, 0.1) 65%, transparent 85%);
}

.hero-eyebrow {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
}

.hero-content h1 {
  font-size: clamp(2rem, 3.8vw, 3.15rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
}

.text-accent {
  color: var(--accent-blue);
}

.text-dark {
  color: var(--dark) !important;
}

.hero-desc {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 560px;
}

.hero-form-card {
  width: 100%;
  max-width: 480px;
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.form-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
}

.hero-form .form-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
}

.required {
  color: var(--required);
  font-weight: 600;
}

.hero-form .form-control,
.hero-form .form-select {
  padding: 12px 14px;
  border-color: var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
}

.hero-form .form-control::placeholder {
  color: #b0bac3;
}

.hero-form .form-control:focus,
.hero-form .form-select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(114, 148, 211, 0.15);
}

.phone-field .input-group-text {
  border-color: var(--border);
  border-radius: 8px 0 0 8px;
}

.phone-field .form-control {
  border-radius: 0 8px 8px 0;
}

.phone-field:focus-within .input-group-text,
.phone-field:focus-within .form-control {
  border-color: var(--primary-blue);
}

.btn-submit {
  padding: 12px 32px;
  font-size: 0.78rem;
}

@media (max-width: 575.98px) {
  .hero-form-card {
    padding: 24px 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons .btn,
  .why-buttons .btn {
    width: 100%;
  }

  .hero-form .btn-submit,
  .contact-section .btn-submit {
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  .hero-form-card {
    margin-left: auto;
    margin-right: auto;
  }

  .why-content {
    text-align: center;
  }

  .why-intro {
    margin-left: auto;
    margin-right: auto;
  }

  .why-buttons {
    justify-content: center;
  }
}

/* Services Carousel */
.services-carousel-section {
  background: linear-gradient(180deg, #d7fffe 0%, #ffffff 75%);
  position: relative;
  overflow: hidden;
}

.services-carousel-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  background-image: radial-gradient(rgba(28, 36, 48, 0.12) 1px, transparent 1.2px);
  background-size: 14px 14px;
  opacity: 0.2;
  pointer-events: none;
}

.services-carousel-title {
  position: relative;
  z-index: 1;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  max-width: 760px;
  line-height: 1.3;
}

.services-slider-wrap {
  z-index: 1;
  padding: 0 58px 56px;
}

.services-slider-wrap:not(.is-ready) .services-arrow {
  opacity: 0;
  pointer-events: none;
}

.services-slider {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.services-slider-wrap.is-ready .services-slider {
  opacity: 1;
}

.services-slider .slick-list {
  overflow: hidden;
  margin: 0 -10px;
}

.services-slider .slick-track {
  display: flex;
  align-items: stretch;
}

.services-slider .slick-slide {
  height: auto;
  float: none;
}

.services-slider .slick-slide > div {
  height: 100%;
}

.services-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--dark);
  border: none;
  color: var(--white);
  cursor: pointer;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.services-arrow:hover {
  background: var(--dark-hover);
}

.services-arrow-prev { left: 0; }
.services-arrow-next { right: 0; }

.services-slider-wrap .slick-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-slider-wrap .slick-dots li {
  margin: 0;
  width: auto;
  height: auto;
}

.services-slider-wrap .slick-dots li button {
  font-size: 0;
  line-height: 0;
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #c5ced6;
  cursor: pointer;
}

.services-slider-wrap .slick-dots li button:before {
  display: none;
}

.services-slider-wrap .slick-dots li.slick-active button {
  background: var(--dark);
  transform: scale(1.15);
}

.service-slide {
  padding: 0 10px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--dark);
  border-radius: 28px;
  padding: 38px 26px 34px;
  text-align: center;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 12px 36px rgba(28, 36, 48, 0.1);
  transform: translateY(-4px);
}

.service-icon {
  margin-bottom: 18px;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  margin: 0 auto;
  object-fit: contain;
}

.service-title {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-title a {
  color: var(--dark);
}

.service-title a:hover {
  color: var(--primary-blue);
}

.service-desc {
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: auto;
  padding-bottom: 22px;
}

.service-link {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link:hover {
  color: var(--primary-blue);
}

@media (max-width: 767.98px) {
  .services-slider-wrap {
    padding: 0 36px 48px;
  }

  .services-arrow {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 575.98px) {
  .services-slider-wrap {
    padding: 0 28px 44px;
  }

  .services-arrow {
    width: 34px;
    height: 34px;
  }

  .service-card {
    min-height: 360px;
    border-radius: 22px;
    padding: 28px 20px 26px;
  }
}

/* Why Choose Us */
.why-section {
  background-color: #eef3f7;
  background-image: url("../images/wow-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}

.why-image-wrap {
  border-radius: 48px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(28, 36, 48, 0.08);
}

.why-image-wrap img {
  min-height: 320px;
  object-fit: cover;
}

.why-title {
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
}

.why-intro {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 620px;
}

.why-feature-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.why-feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.why-feature-desc {
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--text-muted);
}

@media (max-width: 575.98px) {
  .why-image-wrap {
    border-radius: 32px;
  }

  .why-image-wrap img {
    min-height: 280px;
  }
}

/* FAQ */
.faq-section {
  background: radial-gradient(circle at 50% 0%, #d7fffe 0%, #eef5f8 42%, #f7fafc 100%);
  overflow: hidden;
}

.faq-decor {
  position: absolute;
  top: 28px;
  right: clamp(16px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  pointer-events: none;
}

.faq-decor span {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 10px solid var(--dark);
}

.faq-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
}

.faq-title {
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
}

.faq-list {
  max-width: 760px;
}

.faq-accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-bg: transparent;
}

.faq-accordion .accordion-item {
  border: 1px solid #dde6ee;
  border-radius: 5px !important;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(28, 36, 48, 0.04);
  background: var(--white);
  margin-bottom: 10px;
}

.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion-header {
  margin-bottom: 0;
}

.faq-accordion .accordion-button {
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--white);
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--text);
  background: var(--white);
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  flex-shrink: 0;
  width: 0.65rem;
  height: 0.65rem;
  margin-left: 18px;
  background-size: 0.65rem;
  filter: brightness(0);
  transform: rotate(-90deg);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
}

.faq-q-text strong {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark);
  margin-right: 6px;
}

.faq-q-text {
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.faq-accordion .accordion-body {
  padding: 0 20px 18px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
}

@media (max-width: 575.98px) {
  .faq-decor {
    top: 18px;
    right: 20px;
  }

  .faq-accordion .accordion-button {
    padding: 14px 16px;
    font-size: 0.86rem;
  }

  .faq-accordion .accordion-body {
    padding: 0 16px 16px;
  }
}

/* Footer */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.footer-logo img {
  max-width: 150px;
}

.footer-reach {
  font-weight: 700;
  color: #1a3a5a;
}

.footer-text {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer-text a {
  color: var(--text-muted);
}

.footer-text a:hover {
  color: var(--primary-blue);
}

.footer-heading {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary-blue);
}

.footer-disclaimer p {
  max-width: 980px;
  font-size: 0.72rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.footer-disclaimer strong {
  font-weight: 700;
  color: var(--text);
}

/* About & Contact Inner Pages */
.page-about,
.page-contact,
.page-packages,
.page-services,
.page-service,
.page-policy,
.page-thankyou {
  overflow-x: hidden;
}

.page-about .site-header,
.page-contact .site-header,
.page-packages .site-header,
.page-services .site-header,
.page-service .site-header,
.page-policy .site-header,
.page-thankyou .site-header {
  background: transparent;
  position: relative;
  z-index: 10;
  padding-bottom: 0;
}

.about-banner {
  position: relative;
  min-height: 320px;
  padding: 48px 0 56px;
  background-color: #2a3140;
  background-image:
    linear-gradient(90deg, rgba(26, 32, 44, 0.82) 0%, rgba(26, 32, 44, 0.45) 50%, rgba(26, 32, 44, 0.15) 100%),
    url("../images/about-us-banner.webp");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: hidden;
}

@media (min-width: 992px) {
  .page-about .site-header,
  .page-contact .site-header,
  .page-packages .site-header,
  .page-services .site-header,
  .page-service .site-header,
  .page-policy .site-header,
  .page-thankyou .site-header {
    background: transparent;
  }

  .about-banner {
    min-height: 340px;
    margin-top: -92px;
    padding: 132px 0 72px;
    background-image:
      linear-gradient(90deg, rgba(26, 32, 44, 0.72) 0%, rgba(26, 32, 44, 0.35) 45%, rgba(26, 32, 44, 0.05) 100%),
      url("../images/about-us-banner.webp");
  }
}

@media (max-width: 991.98px) {
  .page-about .site-header,
  .page-contact .site-header,
  .page-packages .site-header,
  .page-services .site-header,
  .page-service .site-header,
  .page-policy .site-header,
  .page-thankyou .site-header {
    background: #d7fffe;
  }

  .about-banner {
    background-position: 70% center;
  }
}

.about-banner-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.about-banner-arrows {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
  color: #5fd4c7;
  font-size: 1.1rem;
  line-height: 1;
}

.about-banner-arrows span {
  font-weight: 700;
}

.about-banner-title {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}

.about-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 18px;
}

.about-breadcrumb a {
  color: rgba(255, 255, 255, 0.92);
}

.about-breadcrumb a:hover {
  color: var(--white);
}

.about-breadcrumb-sep {
  opacity: 0.75;
}

.about-banner-squiggle {
  color: #5fd4c7;
}

.about-intro {
  background: var(--white);
}

.about-intro-image img {
  max-width: 420px;
  margin: 0 auto;
}

.about-intro-title {
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.about-intro-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .about-intro-image img {
    margin-left: 0;
  }
}

.about-mission {
  background-color: #eef3f7;
  background-image: url("../images/wow-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.about-mission-title {
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.about-mission-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 560px;
}

.about-mission-btn {
  width: 100%;
  max-width: 280px;
}

.about-mission-visual {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  padding: 0 24px 48px 0;
}

.about-mission-image-wrap {
  position: relative;
  z-index: 2;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(28, 36, 48, 0.1);
}

.about-mission-image-wrap img {
  width: 100%;
  display: block;
}

.about-mission-accent-square {
  position: absolute;
  left: -8px;
  bottom: 28px;
  width: 72px;
  height: 72px;
  background: var(--primary-blue);
  z-index: 1;
}

.about-mission-accent-ring {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 120px;
  height: 120px;
  border: 10px solid #5fd4c7;
  border-radius: 50%;
  z-index: 3;
}

.contact-section {
  background: var(--white);
}

.contact-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-blue);
}

.contact-section-title {
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
}

.contact-section-subtitle {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a3a5a;
}

.contact-section-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.contact-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5fd4c7;
}

.contact-info-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.contact-info-value a {
  color: var(--text-muted);
}

.contact-info-value a:hover {
  color: var(--primary-blue);
}

.contact-info-list {
  max-width: 420px;
}

.contact-info-row {
  align-items: flex-start;
}

.contact-form-card {
  max-width: 100%;
  padding: 36px 32px 32px;
}

.contact-form-card .form-title {
  font-size: 1.5rem;
}

.contact-section .hero-form-card {
  max-width: 100%;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info-item strong {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
}

.contact-info-item span,
.contact-info-item a {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.contact-info-item a:hover {
  color: var(--primary-blue);
}

@media (max-width: 991.98px) {
  .about-mission-visual {
    max-width: 460px;
    margin-bottom: 8px;
    padding-right: 16px;
  }

  .contact-info-list {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767.98px) {
  .about-banner-title {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .about-intro-image img {
    max-width: 280px;
  }

  .about-mission-visual {
    max-width: 100%;
    padding: 0 12px 40px 0;
  }

  .about-mission-btn {
    max-width: 100%;
  }

  .contact-form-card {
    padding: 28px 22px 24px;
  }

  .contact-form-card .form-title {
    font-size: 1.35rem;
  }

  .contact-section .btn-submit {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .about-banner {
    min-height: 260px;
    padding: 36px 0 44px;
  }

  .page-packages .about-banner,
  .page-services .about-banner {
    min-height: 240px;
    padding: 32px 0 40px;
  }

  .packages-grid,
  .services-page-grid .row {
    --bs-gutter-y: 1rem;
  }

  .about-banner-arrows {
    margin-bottom: 10px;
    font-size: 1rem;
  }

  .about-breadcrumb {
    font-size: 0.88rem;
  }

  .about-intro-title,
  .contact-section-title {
    font-size: 1.55rem;
  }

  .about-mission-accent-square {
    width: 52px;
    height: 52px;
    bottom: 16px;
    left: 0;
  }

  .about-mission-accent-ring {
    width: 82px;
    height: 82px;
    border-width: 7px;
    right: 4px;
  }

  .contact-info-icon {
    width: 42px;
    height: 42px;
  }

  .contact-info-icon svg {
    width: 20px;
    height: 20px;
  }

  .contact-form-card {
    padding: 24px 18px 22px;
    border-radius: 16px;
  }

  .hero-form .form-control,
  .hero-form .form-select {
    font-size: 16px;
  }
}

@media (min-width: 576px) {
  .about-mission-btn {
    width: auto;
  }
}

/* Packages Pricing */
.packages-pricing {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #eef8f8 0%, #ffffff 42%, #f7f9fc 100%);
}

.packages-pricing::before,
.packages-pricing::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.packages-pricing::before {
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(95, 212, 199, 0.18) 0%, rgba(95, 212, 199, 0) 70%);
}

.packages-pricing::after {
  bottom: -100px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(114, 148, 211, 0.14) 0%, rgba(114, 148, 211, 0) 70%);
}

.packages-pricing .container {
  position: relative;
  z-index: 1;
}

.packages-pricing-intro {
  max-width: 680px;
}

.packages-pricing-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-blue);
}

.packages-pricing-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.packages-pricing-subtitle {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(216, 227, 236, 0.95);
  border-radius: var(--card-radius);
  box-shadow: 0 10px 32px rgba(28, 36, 48, 0.07);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(28, 36, 48, 0.12);
  border-color: rgba(114, 148, 211, 0.35);
}

.package-card.is-popular {
  border: 2px solid var(--primary-blue);
  box-shadow: 0 18px 44px rgba(114, 148, 211, 0.22);
}

.package-card.is-popular:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 56px rgba(114, 148, 211, 0.28);
}

@media (min-width: 1200px) {
  .package-card.is-popular {
    transform: scale(1.03);
  }

  .package-card.is-popular:hover {
    transform: scale(1.03) translateY(-10px);
  }
}

.package-popular-badge {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #7294d3 0%, #5f82c4 100%);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--btn-radius);
  box-shadow: 0 6px 18px rgba(114, 148, 211, 0.35);
}

.package-card-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding: 24px 16px 20px;
  color: var(--white);
}

.package-card.is-popular .package-card-head {
  padding-top: 46px;
}

.package-tier-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-tier-tagline {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 0.88;
  letter-spacing: 0.01em;
  text-transform: none;
}

.package-tier-basic .package-card-head {
  background: linear-gradient(135deg, #6b7582 0%, #5c6570 100%);
}

.package-tier-startup .package-card-head {
  background: linear-gradient(135deg, #7ea3dc 0%, #7294d3 55%, #5f82c4 100%);
}

.package-tier-standard .package-card-head {
  background: linear-gradient(135deg, #5fd4c7 0%, #45b8ac 100%);
}

.package-tier-premium .package-card-head {
  background: linear-gradient(135deg, #5f82c4 0%, #4a6fb8 100%);
}

.package-tier-professional .package-card-head {
  background: linear-gradient(135deg, #3d4654 0%, #2a3140 100%);
}

.package-tier-enterprise .package-card-head {
  background: linear-gradient(135deg, #2a3140 0%, #1c2430 100%);
}

.package-card-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 24px 16px 20px;
  background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
  border-bottom: 1px solid #eceff3;
}

.package-price {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.package-card.is-popular .package-price {
  color: var(--primary-blue);
}

.package-period {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.package-features {
  flex: 1 1 auto;
  max-height: 240px;
  overflow-y: auto;
  padding: 8px 0;
  margin: 0;
  scrollbar-width: thin;
  scrollbar-color: #c5ced6 transparent;
}

.package-features::-webkit-scrollbar {
  width: 6px;
}

.package-features::-webkit-scrollbar-thumb {
  background: #c5ced6;
  border-radius: 999px;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 18px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text);
  border-bottom: 1px solid #f0f3f6;
  transition: background 0.2s ease;
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features li:hover {
  background: rgba(215, 255, 254, 0.35);
}

.package-features li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='8' fill='%23d7fffe'/%3E%3Cpath d='M5.2 9.1l2.3 2.3 5.3-5.4' fill='none' stroke='%2345b8ac' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.package-card-footer {
  padding: 22px 16px 20px;
  text-align: center;
  background: #fafbfc;
  border-top: 1px solid #eceff3;
}

.package-btn {
  width: 100%;
  max-width: 220px;
  padding: 13px 24px;
  font-size: 0.76rem;
  box-shadow: 0 8px 20px rgba(114, 148, 211, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.package-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(114, 148, 211, 0.32);
}

.package-card.is-popular .package-btn {
  background: linear-gradient(135deg, #7294d3 0%, #5f82c4 100%);
}

.package-terms {
  margin: 12px 0 0;
  font-size: 0.76rem;
  color: #c45a7a;
}

.packages-cta {
  padding: 36px 28px;
  border-radius: var(--card-radius);
  background: linear-gradient(135deg, #2a3140 0%, #1c2430 100%);
  box-shadow: var(--shadow-card);
}

.packages-cta-text {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.packages-cta-btn {
  padding: 14px 30px;
}

@media (max-width: 991.98px) {
  .packages-pricing {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .packages-pricing-intro {
    padding-left: 8px;
    padding-right: 8px;
  }

  .package-card.is-popular {
    transform: none;
  }

  .package-card.is-popular:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 767.98px) {
  .package-features {
    max-height: none;
    overflow: visible;
  }

  .package-card:hover,
  .package-card.is-popular:hover {
    transform: none;
  }

  .package-card-head {
    padding: 20px 14px 18px;
  }

  .package-card.is-popular .package-card-head {
    padding-top: 42px;
  }

  .package-tier-tagline {
    font-size: 0.78rem;
  }

  .package-popular-badge {
    top: 14px;
    font-size: 0.58rem;
    padding: 5px 12px;
  }

  .package-card-footer {
    padding: 20px 14px 18px;
  }

  .package-btn {
    max-width: 100%;
    width: 100%;
  }

  .packages-cta {
    padding: 28px 20px;
  }

  .packages-cta-btn {
    width: 100%;
  }

  .packages-cta-text {
    font-size: 0.98rem;
  }
}

@media (max-width: 575.98px) {
  .packages-pricing-title {
    font-size: 1.55rem;
  }

  .packages-pricing-subtitle {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .packages-pricing-eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }

  .package-card {
    border-radius: 16px;
  }

  .package-card-price {
    padding: 18px 14px 16px;
  }

  .package-price {
    font-size: 1.85rem;
  }

  .package-features li {
    padding: 10px 14px;
    font-size: 0.84rem;
    gap: 8px;
  }

  .package-features li::before {
    width: 16px;
    height: 16px;
  }

  .packages-cta {
    padding: 24px 16px;
    border-radius: 16px;
  }
}

@media (hover: hover) {
  .package-card:hover {
    transform: translateY(-8px);
  }

  .package-card.is-popular:hover {
    transform: translateY(-10px);
  }
}

@media (hover: hover) and (min-width: 1200px) {
  .package-card.is-popular:hover {
    transform: scale(1.03) translateY(-10px);
  }
}

/* Services Page Grid */
.services-page-grid {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #eef8f8 0%, #ffffff 45%, #f4f7fa 100%);
}

.services-page-grid::before,
.services-page-grid::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.services-page-grid::before {
  top: -100px;
  right: -70px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(95, 212, 199, 0.16) 0%, rgba(95, 212, 199, 0) 70%);
}

.services-page-grid::after {
  bottom: -80px;
  left: -50px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(114, 148, 211, 0.12) 0%, rgba(114, 148, 211, 0) 70%);
}

.services-page-grid .container {
  position: relative;
  z-index: 1;
}

.services-page-intro {
  max-width: 680px;
}

.services-page-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-blue);
}

.services-page-title {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
}

.services-page-subtitle {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.service-item-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: 32px 32px 28px 28px;
  background: var(--white);
  border: 1px solid rgba(216, 227, 236, 0.95);
  border-radius: var(--card-radius);
  box-shadow: 0 10px 32px rgba(28, 36, 48, 0.07);
  overflow: hidden;
  transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}

.service-item-card:hover {
  border-color: rgba(114, 148, 211, 0.35);
  box-shadow: 0 22px 48px rgba(28, 36, 48, 0.12);
  transform: translateY(-8px);
}

.service-item-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #5fd4c7 0%, var(--primary-blue) 100%);
  border-radius: var(--card-radius) 0 0 var(--card-radius);
}

.service-item-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(215, 255, 254, 0.35) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.service-item-card:hover::after {
  opacity: 1;
}

.service-item-num {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: clamp(4.5rem, 10vw, 6.5rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(28, 36, 48, 0.05);
  pointer-events: none;
  user-select: none;
}

.service-item-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  max-width: calc(100% - 72px);
}

.service-item-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #d7fffe 0%, #eef4fb 100%);
  border: 1px solid rgba(114, 148, 211, 0.15);
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(114, 148, 211, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-item-card:hover .service-item-icon {
  transform: scale(1.06);
  box-shadow: 0 10px 24px rgba(114, 148, 211, 0.2);
}

.service-item-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.service-item-title {
  font-size: clamp(1.15rem, 2vw, 1.38rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin: 0;
}

.service-item-desc {
  position: relative;
  z-index: 1;
  max-width: 88%;
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.service-item-footer {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid #eef2f6;
}

.service-item-btn {
  padding: 13px 26px;
  font-size: 0.72rem;
  box-shadow: 0 8px 20px rgba(28, 36, 48, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-item-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(28, 36, 48, 0.22);
}

@media (max-width: 991.98px) {
  .services-page-grid {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .services-page-intro {
    padding-left: 8px;
    padding-right: 8px;
  }

  .services-page-grid::before,
  .services-page-grid::after {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .service-item-card {
    padding: 24px 20px 22px 20px;
  }

  .service-item-card:hover {
    transform: none;
  }

  .service-item-card:hover .service-item-icon {
    transform: none;
  }

  .service-item-top {
    max-width: calc(100% - 48px);
    gap: 14px;
  }

  .service-item-desc {
    max-width: 100%;
  }

  .service-item-num {
    top: 14px;
    right: 12px;
    transform: none;
    font-size: 3rem;
    opacity: 0.85;
  }

  .service-item-title {
    font-size: 1.1rem;
  }

  .service-item-footer {
    margin-top: 20px;
    padding-top: 18px;
  }

  .service-item-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .services-page-title {
    font-size: 1.55rem;
  }

  .services-page-subtitle {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .services-page-eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }

  .service-item-card {
    padding: 22px 18px 20px 18px;
    border-radius: 16px;
  }

  .service-item-top {
    flex-direction: row;
    align-items: flex-start;
    max-width: calc(100% - 40px);
    gap: 12px;
  }

  .service-item-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }

  .service-item-icon img {
    width: 46px;
    height: 46px;
  }

  .service-item-title {
    font-size: 1.02rem;
    padding-top: 4px;
  }

  .service-item-desc {
    font-size: 0.88rem;
    line-height: 1.65;
  }

  .service-item-num {
    font-size: 2.5rem;
    top: 10px;
    right: 10px;
  }
}

@media (hover: hover) {
  .service-item-card:hover {
    transform: translateY(-8px);
  }

  .service-item-card:hover .service-item-icon {
    transform: scale(1.06);
  }

  .service-item-btn:hover {
    transform: translateY(-2px);
  }
}

/* Policy Pages */
.policy-section {
  background: #f4f7fa;
}

.policy-content {
  max-width: 820px;
  background: var(--white);
  border: 1px solid #e3e8ee;
  border-radius: var(--card-radius);
  padding: 36px 32px;
  box-shadow: 0 8px 28px rgba(28, 36, 48, 0.06);
}

.policy-heading {
  color: var(--dark);
  font-weight: 700;
}

.policy-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.policy-content p:last-child {
  margin-bottom: 0;
}

.policy-content a {
  color: var(--primary-blue);
  font-weight: 600;
}

.policy-content a:hover {
  color: var(--primary-blue-hover);
}

@media (max-width: 575.98px) {
  .policy-content {
    padding: 24px 18px;
    border-radius: 16px;
  }
}

/* Quote modal */
.quote-modal .modal-dialog {
  max-width: 920px;
}

.quote-modal-content {
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(28, 36, 48, 0.22);
}

.quote-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background-color: var(--white);
  color: var(--dark);
  box-shadow: 0 4px 14px rgba(28, 36, 48, 0.12);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.quote-modal-close:hover,
.quote-modal-close:focus {
  background-color: #f4f7fa;
  color: var(--dark);
  border-color: #c5ced6;
  outline: none;
}

.quote-modal-aside {
  padding: 40px 32px;
  background: linear-gradient(160deg, #d7fffe 0%, #7294d3 55%, #5f82c4 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.quote-modal-aside::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -60px;
  right: -50px;
  pointer-events: none;
}

.quote-modal-aside::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(95, 212, 199, 0.2);
  bottom: 24px;
  left: -40px;
  pointer-events: none;
}

.quote-modal-aside > * {
  position: relative;
  z-index: 1;
}

.quote-modal-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 16px;
}

.quote-modal-aside-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--white);
}

.quote-modal-aside-text {
  font-size: 0.92rem;
  line-height: 1.65;
  opacity: 0.95;
  margin-bottom: 24px;
}

.quote-modal-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.quote-modal-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
}

.quote-modal-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.9;
}

.quote-modal-form-col {
  background: var(--white);
}

.quote-modal-form-inner {
  padding: 36px 32px 32px;
}

.quote-modal-form-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--dark);
}

.quote-modal-form-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hero-form--modal .mb-3:last-of-type {
  margin-bottom: 1rem !important;
}

.hero-form--modal .btn-submit {
  width: 100%;
  padding: 13px 24px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 991.98px) {
  .quote-modal-form-inner {
    padding: 28px 22px 24px;
  }

}


@media (max-width: 575.98px) {
  .quote-modal .modal-dialog {
    margin: 0.75rem;
  }
}

/* Responsive — extra small screens & shared fixes */
@media (max-width: 767.98px) {
  .site-header {
    padding: 12px 0 8px;
  }

  .header-bar {
    padding: 12px 14px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-disclaimer p {
    font-size: 0.68rem;
    line-height: 1.65;
  }

  .about-intro .d-flex.gap-2,
  .about-mission .d-flex.gap-2 {
    justify-content: center !important;
  }

  .about-intro .d-flex.gap-2 .btn,
  .about-mission .d-flex.gap-2 .btn,
  .about-mission-btn {
    width: 100%;
  }
}

@media (max-width: 399.98px) {
  .services-slider-wrap {
    padding: 0 22px 40px;
  }

  .services-arrow {
    width: 30px;
    height: 30px;
  }

  .services-arrow svg {
    width: 10px;
    height: 10px;
  }

  .service-card {
    min-height: 330px;
    padding: 22px 14px 20px;
  }

  .services-carousel-title {
    font-size: 1.35rem;
  }

  .package-popular-badge {
    font-size: 0.54rem;
    padding: 4px 10px;
  }
}
