/* ============================================================
   XKD Dental — Main Stylesheet
   ============================================================ */

:root {
  --primary: #00A3A0;
  --primary-dark: #008C89;
  --primary-light: #E6F5F4;
  --dark: #0A2540;
  --dark-2: #0D2B4D;
  --text-primary: #0A2540;
  --text-secondary: #5A6B7F;
  --text-muted: #8A9BAF;
  --bg-light: #F4F8FB;
  --border-color: #E2E8F0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ========== Navbar ========== */
.navbar {
  background: #fff;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
}

.navbar-brand img {
  height: 42px;
  width: auto;
}

.nav-link {
  color: var(--text-primary) !important;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

.btn-quote {
  background: var(--dark);
  color: white !important;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.55rem 1.2rem;
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-quote:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-1px);
}

.navbar-toggler {
  border: none;
  padding: 0.25rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ========== Hero ========== */
.hero {
  background: var(--bg-light);
  padding: 4rem 0;
  overflow: hidden;
  position: relative;
}

.hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}

.hero__tag {
  display: inline-block;
  background: #FFF3CD;
  color: #856404;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero__title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero__subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 480px;
}

.btn-primary-custom {
  background: var(--primary);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  border: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 163, 160, 0.3);
}

.hero__img-wrap {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__img {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(10, 37, 64, 0.15);
}

/* ========== Section Common ========== */
.section {
  padding: 4.5rem 0;
}

.section--light {
  background: #fff;
}

.section--pale {
  background: var(--bg-light);
}

.section__eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.6rem;
}

.section__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.7rem;
}

.section__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* ========== Product Cards ========== */
.product-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1rem;
  height: 100%;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.1);
  transform: translateY(-4px);
  border-color: var(--primary);
}

.product-card__img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  background: #FAFBFD;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-card:hover .product-card__img img {
  transform: scale(1.05);
}

.product-card__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.product-card__desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  flex-grow: 1;
  line-height: 1.55;
}

.product-card__link {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}

.product-card__link:hover {
  color: var(--primary-dark);
  gap: 0.6rem;
}

.view-all-wrap {
  text-align: center;
  margin-top: 2.5rem;
}

/* ========== Solution Cards ========== */
.solution-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}

.solution-card:hover {
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.1);
  transform: translateY(-4px);
}

.solution-card__img {
  height: 200px;
  overflow: hidden;
}

.solution-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.solution-card:hover .solution-card__img img {
  transform: scale(1.06);
}

.solution-card__body {
  padding: 1.3rem 1.2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.solution-card__tag {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.solution-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.solution-card__desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
  flex-grow: 1;
  line-height: 1.6;
}

/* ========== Why XKD ========== */
.why-card {
  background: var(--primary-light);
  border: 1px solid #CDE8E6;
  border-radius: 12px;
  padding: 1.6rem 1.4rem;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 163, 160, 0.12);
}

.why-card__num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.6rem;
  letter-spacing: 0.5px;
}

.why-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.why-card__desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========== CTA Bar ========== */
.cta-bar {
  background: var(--dark);
  padding: 2.2rem 0;
  color: white;
}

.cta-bar__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.cta-bar__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* ========== Footer ========== */
.footer {
  background: var(--dark-2);
  color: white;
  padding: 3.5rem 0 1.5rem;
}

.footer__brand-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.footer__brand-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 240px;
}

.footer__col-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: white;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--primary);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copyright {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}

.footer__terms a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  margin-left: 1rem;
  transition: color 0.2s;
}

.footer__terms a:hover {
  color: var(--primary);
}

/* ========== Fade-in Animation ========== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Responsive ========== */
@media (max-width: 992px) {
  .hero__title { font-size: 1.9rem; }
  .section { padding: 3.5rem 0; }
  .hero { padding: 3rem 0; }
  .section__title { font-size: 1.5rem; }
}

@media (max-width: 768px) {
  .hero__title { font-size: 1.6rem; }
  .hero__img-wrap { margin-top: 2rem; }
  .section__title { font-size: 1.4rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__terms a { margin: 0 0.5rem; }
  .solution-card__img { height: 170px; }
}










/* ========== Hero Banner Carousel (Full-Width, Text on Light BG Image) ========== */
.hero-banner-section {
  width: 100%;
  overflow: hidden;
}

.hero-banner-section .carousel {
  width: 100%;
}

.hero-banner-slide {
  position: relative;
  width: 100%;
  height: 800px;
  min-height: 560px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-banner-slide__overlay {
  display: none;
}

.hero-banner-slide__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-banner-slide__text {
  max-width: 580px;
  padding: 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
}

.hero-slide__tag {
  display: inline-block;
  background-color: #FFF2CC;
  color: #5C4A1F;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-slide__eyebrow {
  font-size: 0.95rem;
  font-weight: 600;
  color: #00A3A0;
  margin-bottom: 1rem;
}

.hero-slide__title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: #0A2540;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.hero-slide__subtitle {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #5A6B7F;
  margin-bottom: 2.5rem;
}

.btn-hero {
  display: inline-block;
  background-color: #00A3A0;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 1.15rem 3rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #00A3A0;
  letter-spacing: 0.3px;
}

.btn-hero:hover {
  background-color: #008C89;
  border-color: #008C89;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 163, 160, 0.2);
}

/* Carousel indicators */
.hero-indicators {
  bottom: 2.5rem;
  z-index: 10;
  margin: 0;
  left: 0;
  right: 0;
  justify-content: center;
}

.hero-indicators button {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  border: none;
  background-color: rgba(10, 37, 64, 0.2);
  opacity: 1;
  margin: 0 4px;
  transition: all 0.3s ease;
}

.hero-indicators button.active {
  background-color: #00A3A0;
  width: 60px;
}

/* Responsive */
@media (max-width: 1199.98px) {
  .hero-slide__title {
    font-size: 2.8rem;
  }
  .hero-banner-slide__text {
    max-width: 520px;
  }
}

@media (max-width: 991.98px) {
  .hero-banner-slide {
    height: 620px;
    min-height: 500px;
    justify-content: center;
    text-align: center;
  }
  .hero-banner-slide__text {
    max-width: 100%;
  }
  .hero-slide__title {
    font-size: 2.3rem;
  }
  .hero-slide__subtitle {
    margin: 0 auto 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .hero-banner-slide {
    height: auto;
    min-height: 480px;
    padding: 4rem 0;
  }
  .hero-slide__title {
    font-size: 1.8rem;
  }
  .hero-slide__subtitle {
    font-size: 0.95rem;
  }
  .btn-hero {
    padding: 0.9rem 2.5rem;
  }
}



/* ========== About Page ========== */

/* About Hero */
.about-hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background-color: #F4F8FB;
}

.about-hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-hero__content {
  max-width: 480px;
  padding: 2rem 0;
}

.about-hero__title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0A2540;
  margin: 0.75rem 0 1.25rem;
  letter-spacing: -0.5px;
}

.about-hero__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #5A6B7F;
}

/* Section eyebrow tag (yellow pill) */
.section__eyebrow--tag {
  display: inline-block;
  background-color: #FFF2CC;
  color: #5C4A1F;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

/* About Intro */
.about-intro {
  background-color: #fff;
}

.about-intro__img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(10, 37, 64, 0.08);
}

.about-intro__img img {
  width: 100%;
  height: auto;
  display: block;
}

.about-intro__title {
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
}

.about-intro__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #5A6B7F;
  margin-bottom: 1rem;
}

/* About Scope */
.about-scope {
  background-color: #F4F8FB;
}

.about-scope__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.about-scope__header .section__title {
  margin-bottom: 0;
  max-width: 700px;
}

.right-tag {
  margin-top: 0.5rem;
}

.scope-card {
  position: relative;
  background-color: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.scope-card:hover {
  box-shadow: 0 10px 20px rgba(10, 37, 64, 0.08);
  transform: translateY(-2px);
  border-color: #00A3A0;
}

.scope-card__bar {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 60%;
  background-color: #00A3A0;
  border-radius: 0 3px 3px 0;
}

.scope-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: #0A2540;
  padding-left: 1rem;
}

.about-scope__statement {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0A2540;
  max-width: 900px;
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  background-color: #0A2540;
  padding: 3rem 0;
}

.cta-section__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.cta-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.cta-section__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 600px;
}

.btn-cta {
  display: inline-block;
  background-color: #00A3A0;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.9rem 3rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-cta:hover {
  background-color: #008C89;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 163, 160, 0.3);
}

/* About page responsive */
@media (max-width: 991.98px) {
  .about-hero {
    padding: 3rem 0;
  }
  .about-hero__bg {
    position: relative;
    width: 100%;
    height: 300px;
    order: -1;
  }
  .about-hero .row {
    display: flex;
    flex-direction: column;
  }
  .about-hero__content {
    max-width: 100%;
    text-align: center;
    padding-top: 1.5rem;
  }
  .about-hero__title {
    font-size: 2.2rem;
  }
  .about-scope__header {
    flex-direction: column;
  }
  .about-scope__header .right-tag {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .about-hero__title {
    font-size: 1.8rem;
  }
  .about-intro__title {
    font-size: 1.75rem;
  }
  .cta-section__inner {
    flex-direction: column;
    text-align: center;
  }
}


/* Navbar brand text */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.navbar-brand__img {
  height: 44px;
  width: auto;
}

.navbar-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.navbar-brand__name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0A2540;
  letter-spacing: 0.5px;
}

.navbar-brand__slogan {
  font-size: 0.7rem;
  font-weight: 600;
  color: #00A3A0;
  letter-spacing: 1.5px;
  margin-top: 2px;
}



/* ========== Category Product Page ========== */

/* Page Hero */
.page-hero {
  position: relative;
  background-color: #F4F8FB;
  padding: 4.5rem 0 4rem;
  overflow: hidden;
}

.page-hero__deco {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: #D6F5F4;
  opacity: 0.6;
}

.page-hero__title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0A2540;
  margin: 0.75rem 0 1rem;
  letter-spacing: -0.3px;
}

.page-hero__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #5A6B7F;
  margin-bottom: 1.5rem;
  max-width: 540px;
}

.btn-page-hero {
  display: inline-block;
  background-color: #0A2540;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-page-hero:hover {
  background-color: #0d2d50;
  color: #fff;
  transform: translateY(-1px);
}

/* Category Section */
.cat-section {
  background-color: #fff;
}

.cat-section--pale {
  background-color: #F4F8FB;
}

.cat-section__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0A2540;
  margin: 0.5rem 0 2rem;
}

/* Category Card */
.cat-card {
  background-color: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cat-card:hover {
  box-shadow: 0 12px 24px rgba(10, 37, 64, 0.08);
  transform: translateY(-3px);
  border-color: #00A3A0;
}

.cat-card__img {
  height: 180px;
  background-color: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cat-card__img img {
  max-width: 75%;
  max-height: 75%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.cat-card:hover .cat-card__img img {
  transform: scale(1.05);
}

.cat-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0A2540;
  padding: 1rem 1.25rem 0.5rem;
  margin: 0;
}

.cat-card__desc {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #6B7A8F;
  padding: 0 1.25rem;
  flex: 1;
  margin: 0 0 1rem;
}

.cat-card__link {
  font-size: 0.75rem;
  font-weight: 600;
  color: #00A3A0;
  text-decoration: none;
  padding: 0 1.25rem 1.25rem;
  display: inline-block;
  margin-top: auto;
}

.cat-card__link i {
  font-size: 0.65rem;
  margin-left: 3px;
  transition: transform 0.3s ease;
}

.cat-card:hover .cat-card__link i {
  transform: translateX(3px);
}

/* Info Card (right side of instruments section) */
.info-card {
  background-color: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.info-card__desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #6B7A8F;
  margin-bottom: 1.5rem;
}

.info-card__btn {
  display: inline-block;
  background-color: #00A3A0;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.info-card__btn:hover {
  background-color: #008C89;
  color: #fff;
  transform: translateY(-1px);
}

/* CTA Section */
.cat-cta {
  background-color: #0A2540;
  padding: 2.5rem 0;
}

.cat-cta__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.cat-cta__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.cat-cta__desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  max-width: 500px;
}

.btn-cta-light {
  display: inline-block;
  background-color: #00A3A0;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.85rem 3rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-cta-light:hover {
  background-color: #008C89;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 163, 160, 0.3);
}

/* Responsive */
@media (max-width: 991.98px) {
  .page-hero {
    padding: 3rem 0;
  }
  .page-hero__title {
    font-size: 1.85rem;
  }
  .cat-cta__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .page-hero__title {
    font-size: 1.6rem;
  }
  .cat-section__title {
    font-size: 1.5rem;
  }
  .cat-card__img {
    height: 150px;
  }
  .info-card {
    padding: 1.5rem;
  }
}


/* ========== Contact Page ========== */

/* Contact Hero */
.contact-hero {
  background-color: #0A2540;
  padding: 4rem 0 3.5rem;
  color: #fff;
}

.contact-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #00D4D0;
  margin-bottom: 0.75rem;
}

.contact-hero__title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}

.contact-hero__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0;
}

.contact-hero__tag-wrap {
  padding-top: 0.5rem;
}

.contact-hero__tag {
  display: inline-block;
  background-color: #FFF2CC;
  color: #5C4A1F;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  text-transform: uppercase;
}

/* Contact Main */
.contact-main {
  background-color: #fff;
  padding: 4rem 0;
}

.contact-card {
  background-color: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 2rem;
}

.contact-card__tag {
  display: inline-block;
  background-color: #FFF2CC;
  color: #5C4A1F;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.contact-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 0.5rem;
}

.contact-card__subtitle {
  font-size: 0.8rem;
  color: #6B7A8F;
  margin-bottom: 1.5rem;
}

/* Form */
.contact-form .form-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #0A2540;
  margin-bottom: 0.4rem;
}

.contact-form .form-control {
  border: 1px solid #D1DCE8;
  border-radius: 6px;
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
  background-color: #F8FAFC;
  transition: all 0.2s ease;
}

.contact-form .form-control:focus {
  border-color: #00A3A0;
  box-shadow: 0 0 0 3px rgba(0, 163, 160, 0.1);
  background-color: #fff;
}

.contact-form .form-control--textarea {
  resize: vertical;
  min-height: 110px;
}

.form-notice {
  background-color: #FFF2CC;
  border: 1px solid #F5DE8B;
  border-radius: 8px;
  padding: 1.25rem 1.25rem;
  margin: 1.75rem 0 1.5rem;
}

.form-notice__tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #7A5E16;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.form-notice__text {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #5C4A1F;
  margin: 0;
}

.btn-form-submit {
  background-color: #00A3A0;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-form-submit:hover {
  background-color: #008C89;
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(0, 163, 160, 0.2);
}

.form-footer-note {
  font-size: 0.7rem;
  color: #8A95A8;
  margin: 1rem 0 0;
}

/* Contact Info List */
.contact-info__list {
  margin-bottom: 1.75rem;
}

.contact-info__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid #EEF2F7;
}

.contact-info__item:last-of-type {
  border-bottom: none;
}

.contact-info__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.contact-info__icon--email {
  background-color: #D6F5F4;
  color: #00A3A0;
}

.contact-info__icon--whatsapp {
  background-color: #D6F5F4;
  color: #00A3A0;
}

.contact-info__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #0A2540;
  margin-bottom: 2px;
}

.contact-info__value {
  font-size: 0.75rem;
  color: #8A95A8;
}

/* Social Notice */
.social-notice {
  background-color: #FFF2CC;
  border: 1px solid #F5DE8B;
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1.75rem;
}

.social-notice__tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #7A5E16;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.social-notice__channels {
  font-size: 0.8rem;
  font-weight: 600;
  color: #5C4A1F;
  margin-bottom: 0.75rem;
}

.social-notice__text {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #7A5E16;
  margin: 0;
}

.contact-info__img {
  border-radius: 8px;
  overflow: hidden;
}

.contact-info__img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Contact Channels Section */
.contact-channels {
  background-color: #F4F8FB;
  padding: 3rem 0;
}

.contact-channels__eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #00A3A0;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.contact-channels__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 0.75rem;
}

.contact-channels__desc {
  font-size: 0.85rem;
  color: #6B7A8F;
  margin: 0;
  max-width: 700px;
}

.channel-card {
  background-color: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}

.channel-card__title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 0.4rem;
}

.channel-card__value {
  font-size: 0.75rem;
  color: #8A95A8;
}

/* Responsive */
@media (max-width: 991.98px) {
  .contact-hero {
    padding: 3rem 0;
  }
  .contact-hero__title {
    font-size: 1.85rem;
  }
  .contact-hero__tag-wrap {
    display: none;
  }
  .contact-main {
    padding: 3rem 0;
  }
  .contact-card {
    padding: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .contact-hero__title {
    font-size: 1.6rem;
  }
  .contact-channels__title {
    font-size: 1.25rem;
  }
}




/* ========== Product Detail Page (show_product) - Reworked ========== */

/* Page Hero */
.sp-hero {
  background-color: #F4F8FB;
  padding: 4rem 0 3.5rem;
}

.sp-hero__breadcrumb {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #00A3A0;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.sp-hero__breadcrumb a {
  color: #00A3A0;
  text-decoration: none;
}

.sp-hero__sep {
  margin: 0 0.5rem;
  color: #B8C0CC;
}

.sp-hero__current {
  color: #6B7A8F;
}

.sp-hero__title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: #0A2540;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  max-width: 650px;
}

.sp-hero__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #6B7A8F;
  margin-bottom: 1.75rem;
  max-width: 500px;
}

.btn-sp-hero {
  display: inline-block;
  background-color: #00A3A0;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.7rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-sp-hero:hover {
  background-color: #008C89;
  color: #fff;
  transform: translateY(-1px);
}

/* Product Overview */
.sp-overview {
  background-color: #fff;
  padding: 4rem 0;
}

.sp-gallery__main {
  background-color: #F4F8FB;
  border: 1px solid #E2E8F0;
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  margin-bottom: 1.5rem;
}

.sp-gallery__main img {
  max-width: 100%;
  max-height: 340px;
  object-fit: contain;
}

.sp-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.sp-gallery__thumb {
  background-color: #F4F8FB;
  border: 2px solid transparent;
  border-radius: 4px;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  height: 80px;
}

.sp-gallery__thumb:hover {
  border-color: #D6F5F4;
}

.sp-gallery__thumb.active {
  border-color: #00A3A0;
}

.sp-gallery__thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.sp-overview__content {
  padding-top: 0.5rem;
}

.sp-overview__eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #00A3A0;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.sp-overview__title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0A2540;
  margin-bottom: 1rem;
}

.sp-overview__text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #5A6B7F;
  margin-bottom: 1rem;
}

.sp-overview__note {
  font-size: 0.75rem;
  line-height: 1.6;
  color: #8A95A8;
  margin-top: 2rem;
  font-style: italic;
}

/* Shared section styles */
.sp-section__eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #00A3A0;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.sp-section__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 2rem;
}

/* Main Features */
.sp-features {
  background-color: #F4F8FB;
  padding: 3.5rem 0;
}

.sp-feature-card {
  background-color: #fff;
  border: 1px solid #D8E1EC;
  border-radius: 12px;
  padding: 1.5rem 1.5rem 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.sp-feature-card:hover {
  box-shadow: 0 10px 20px rgba(10, 37, 64, 0.06);
  transform: translateY(-2px);
}

.sp-feature-card__num {
  font-size: 0.75rem;
  font-weight: 700;
  color: #00A3A0;
  margin-bottom: 0.75rem;
}

.sp-feature-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.sp-feature-card__desc {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #6B7A8F;
  margin: 0;
}

/* Applications */
.sp-apps {
  background-color: #fff;
  padding: 3.5rem 0;
}

.sp-app-tag {
  background-color: #F4F8FB;
  border: 1px solid #D8E1EC;
  border-radius: 8px;
  padding: 0.85rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0A2540;
  text-align: center;
  transition: all 0.2s ease;
}

.sp-app-tag:hover {
  background-color: #D6F5F4;
  border-color: #00A3A0;
  color: #008C89;
}

/* CTA Section */
.sp-cta {
  background-color: #0A2540;
  padding: 2.5rem 0;
}

.sp-cta__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.sp-cta__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.sp-cta__desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  max-width: 500px;
}

.btn-sp-cta {
  display: inline-block;
  background-color: #00A3A0;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.8rem 3rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-sp-cta:hover {
  background-color: #008C89;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 163, 160, 0.3);
}

/* Responsive */
@media (max-width: 991.98px) {
  .sp-hero {
    padding: 3rem 0 2.5rem;
  }
  .sp-hero__title {
    font-size: 2rem;
  }
  .sp-overview {
    padding: 3rem 0;
  }
  .sp-section__title {
    font-size: 1.5rem;
  }
  .sp-cta__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .sp-hero__title {
    font-size: 1.75rem;
  }
  .sp-gallery__main {
    min-height: 280px;
  }
  .sp-gallery__thumbs {
    gap: 0.75rem;
  }
  .sp-gallery__thumb {
    height: 65px;
  }
  .sp-overview__title {
    font-size: 1.35rem;
  }
  .sp-section__title {
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
  }
}


/* ========== Solutions Category Page ========== */

/* Hero */
.sol-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.sol-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: grayscale(30%) brightness(0.85);
}

.sol-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.7) 0%, rgba(10, 37, 64, 0.4) 60%, rgba(10, 37, 64, 0.2) 100%);
  z-index: 1;
}

.sol-hero .container {
  position: relative;
  z-index: 2;
}

.sol-hero__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #00D4D0;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.sol-hero__title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}

.sol-hero__desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.btn-sol-hero {
  display: inline-block;
  background-color: #00A3A0;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.75rem 2.5rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-sol-hero:hover {
  background-color: #008C89;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(0, 163, 160, 0.3);
}

.sol-hero__proposed-tag {
  background-color: #FFF2CC;
  color: #5C4A1F;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  text-transform: uppercase;
}

/* Shared section */
.sol-section__eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #00A3A0;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.sol-section__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 2rem;
}

/* Solution Areas */
.sol-areas {
  background-color: #fff;
  padding: 3.5rem 0;
}

.sol-card {
  background-color: #fff;
  border: 1px solid #D8E1EC;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.sol-card:hover {
  box-shadow: 0 12px 24px rgba(10, 37, 64, 0.08);
  transform: translateY(-3px);
  border-color: #00A3A0;
}

.sol-card__img {
  height: 180px;
  background-color: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sol-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sol-card:hover .sol-card__img img {
  transform: scale(1.05);
}

.sol-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sol-card__tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #00A3A0;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.sol-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.sol-card__desc {
  font-size: 0.75rem;
  line-height: 1.55;
  color: #6B7A8F;
  margin-bottom: 1rem;
  flex: 1;
}

.sol-card__link {
  font-size: 0.7rem;
  font-weight: 600;
  color: #00A3A0;
  text-decoration: none;
  margin-top: auto;
  transition: transform 0.3s ease;
  display: inline-block;
}

.sol-card__link:hover {
  color: #008C89;
}

/* Buyer Info */
.sol-buyer {
  background-color: #F4F8FB;
  padding: 3.5rem 0;
}

.buyer-card {
  background-color: #fff;
  border: 1px solid #D8E1EC;
  border-radius: 10px;
  padding: 1.5rem 1.5rem 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.buyer-card:hover {
  box-shadow: 0 8px 16px rgba(10, 37, 64, 0.06);
  transform: translateY(-2px);
}

.buyer-card__num {
  font-size: 0.75rem;
  font-weight: 700;
  color: #00A3A0;
  margin-bottom: 0.75rem;
}

.buyer-card__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 0.5rem;
}

.buyer-card__desc {
  font-size: 0.75rem;
  line-height: 1.55;
  color: #6B7A8F;
  margin: 0;
}

/* CTA */
.sol-cta {
  background-color: #0A2540;
  padding: 2.5rem 0;
}

.sol-cta__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.sol-cta__text {
  flex: 1;
  max-width: 650px;
}

.sol-cta__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.sol-cta__desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  max-width: 600px;
}

.btn-sol-cta {
  display: inline-block;
  background-color: #00A3A0;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.75rem 2.5rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-sol-cta:hover {
  background-color: #008C89;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 163, 160, 0.3);
}

/* Responsive */
@media (max-width: 991.98px) {
  .sol-hero {
    height: 380px;
  }
  .sol-hero__title {
    font-size: 1.85rem;
  }
  .sol-hero__proposed-tag {
    display: none;
  }
  .sol-section__title {
    font-size: 1.5rem;
  }
  .sol-cta__inner {
    flex-direction: column;
    text-align: center;
  }
  .sol-cta__text {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .sol-hero {
    height: auto;
    padding: 3rem 0;
    min-height: 380px;
  }
  .sol-hero__title {
    font-size: 1.6rem;
  }
  .sol-section__title {
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
  }
}

/* Nav Dropdown */
.navbar .dropdown-menu {
  border: none;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.12);
  padding: 8px 0;
  min-width: 220px;
  margin-top: 8px;
}

.navbar .dropdown-item {
  padding: 10px 20px;
  color: #0A2540;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.navbar .dropdown-item:hover {
  background: #F4F8FB;
  color: #00A3A0;
}

.navbar .nav-link.dropdown-toggle::after {
  margin-left: 6px;
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
  vertical-align: 0.1em;
}



/* ========== Solution Detail Page (show_solution) ========== */

/* Hero Section - Light */
.sol-hero-light {
  background: #F4F8FB;
  padding: 5rem 0 4rem;
  position: relative;
}

.sol-hero-light__breadcrumb {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #00A3A0;
  margin-bottom: 1rem;
}

.sol-hero-light__breadcrumb a {
  color: #00A3A0;
  text-decoration: none;
}

.sol-hero-light__breadcrumb .sep {
  color: #A0AEC0;
  margin: 0 6px;
}

.sol-hero-light__breadcrumb .current {
  color: #00A3A0;
}

.sol-hero-light__tag {
  position: absolute;
  top: 3rem;
  right: 5%;
  background: #FFF2CC;
  color: #5C4A1F;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 3px;
}

.sol-hero-light__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0A2540;
  margin-bottom: 1rem;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.sol-hero-light__desc {
  font-size: 0.95rem;
  color: #5A6B7F;
  margin-bottom: 1.75rem;
  max-width: 600px;
  line-height: 1.6;
}

.btn-sol-hero-light {
  display: inline-block;
  background-color: #00A3A0;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-sol-hero-light:hover {
  background-color: #008C89;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 163, 160, 0.25);
}

/* Solution Overview */
.sol-overview {
  padding: 4.5rem 0;
  background: #fff;
}

.sol-overview__img img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.sol-overview__eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #00A3A0;
  margin-bottom: 0.75rem;
}

.sol-overview__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.sol-overview__text {
  font-size: 0.9rem;
  color: #5A6B7F;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.sol-overview__note {
  font-size: 0.8rem;
  color: #8896A8;
  margin-top: 1.5rem;
  line-height: 1.6;
  padding-top: 1.5rem;
  border-top: 1px solid #E2E8F0;
}

/* Section shared */
.sol-section__eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #00A3A0;
  margin-bottom: 0.75rem;
}

.sol-section__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 2rem;
}

.sol-section__eyebrow.text-center,
.sol-section__title.text-center {
  text-align: center;
}

/* Buyer Info Section */
.sol-buyer-info {
  background: #F4F8FB;
  padding: 4.5rem 0;
}

.sol-buyer-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
}

.sol-buyer-card:hover {
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.08);
  transform: translateY(-3px);
}

.sol-buyer-card__tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #00A3A0;
  margin-bottom: 0.75rem;
}

.sol-buyer-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0A2540;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.sol-buyer-card__desc {
  font-size: 0.8rem;
  color: #5A6B7F;
  line-height: 1.6;
  margin: 0;
}

/* Inquiry Process */
.sol-process {
  padding: 4.5rem 0;
  background: #fff;
}

.sol-process-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem 0 2rem;
  flex-wrap: wrap;
  gap: 0;
}

.sol-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.sol-process-step__circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #00A3A0;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
}

.sol-process-step__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0A2540;
  white-space: nowrap;
}

.sol-process-line {
  width: 100px;
  height: 2px;
  background: #00A3A0;
  flex-shrink: 0;
  margin: 0 0.5rem;
  margin-bottom: 2rem;
}

.sol-process__note {
  font-size: 0.75rem;
  color: #8896A8;
  margin-top: 1.5rem;
  line-height: 1.6;
}

/* Gallery Cards */
.sol-gallery-card {
  background: #F4F8FB;
  border-radius: 12px;
  padding: 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

.sol-gallery-card:hover {
  box-shadow: 0 8px 20px rgba(10, 37, 64, 0.06);
  transform: translateY(-2px);
}

.sol-gallery-card img {
  border-radius: 8px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* CTA Dark Section */
.sol-cta-dark {
  background: #0A2540;
  padding: 3rem 0;
}

.sol-cta-dark__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.sol-cta-dark__desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  max-width: 520px;
}

.btn-sol-cta-dark {
  display: inline-block;
  background-color: #00A3A0;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.85rem 2.5rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-sol-cta-dark:hover {
  background-color: #008C89;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 163, 160, 0.3);
}

/* Responsive */
@media (max-width: 991.98px) {
  .sol-hero-light {
    padding: 3.5rem 0 3rem;
  }
  .sol-hero-light__title {
    font-size: 2rem;
  }
  .sol-hero-light__tag {
    position: static;
    display: inline-block;
    margin-bottom: 1rem;
  }
  .sol-overview {
    padding: 3rem 0;
  }
  .sol-overview__title {
    font-size: 1.5rem;
  }
  .sol-process-line {
    width: 60px;
  }
  .sol-cta-dark__title {
    font-size: 1.2rem;
  }
}

@media (max-width: 767.98px) {
  .sol-hero-light {
    padding: 3rem 0 2.5rem;
  }
  .sol-hero-light__title {
    font-size: 1.75rem;
  }
  .sol-section__title {
    font-size: 1.4rem;
  }
  .sol-process-timeline {
    flex-direction: column;
    gap: 1rem;
  }
  .sol-process-line {
    width: 2px;
    height: 40px;
    margin: 0;
    margin-bottom: 0;
  }
  .sol-gallery-card img {
    height: 150px;
  }
  .sol-cta-dark .row {
    text-align: center;
  }
  .sol-cta-dark__desc {
    margin: 0 auto;
  }
}
