/* ========================================
   Sunway Bio - Global Styles (v2)
   ======================================== */

@import url('./local-fonts.css');

:root {
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fs-base: 18px;
  --fs-sm: 16px;
  --fs-xs: 14px;
  --fs-lg: 20px;
  --fs-xl: 22px;
  --blue-dark: #002244;
  --blue: #0066B3;
  --blue-light: #0088CC;
  --cyan: #00A3D9;
  --orange: #E85D04;
  --orange-light: #F5A623;
  --red: #C41E3A;
  --white: #FFFFFF;
  --bg-light: #F4F7FA;
  --bg-section: #E8EDF3;
  --text-dark: #0A1628;
  --text: #2D3748;
  --text-muted: #5A6B7D;
  --text-light: #94A3B8;
  --border: #DDE4EC;
  --footer-bg: #0066B3;
  --shadow-sm: 0 4px 16px rgba(10, 22, 40, 0.06);
  --shadow: 0 12px 40px rgba(10, 22, 40, 0.1);
  --shadow-lg: 0 24px 80px rgba(10, 22, 40, 0.14);
  --radius: 4px;
  --radius-lg: 8px;
  --radius-xl: 4px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --wrap: 100%;
  --page-pad: clamp(24px, 5vw, 72px);
  --header-h: 88px;
  --topbar-h: 0px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  min-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

.wrap {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

/* Section */
.section {
  padding: 140px 0;
}

.section-dark {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.75);
}

.section-dark .section-title {
  color: var(--white);
}

.section-dark .section-sub,
.section-dark .why-intro {
  color: rgba(255, 255, 255, 0.55);
}

.section-dark .section-label {
  color: var(--orange-light);
}

.section-dark .section-label::before {
  background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.5));
}

.section-dark .section-label::after {
  background: linear-gradient(90deg, rgba(245, 166, 35, 0.5), transparent);
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-light));
}

.section-label::after {
  background: linear-gradient(90deg, var(--blue-light), transparent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.section-title-left {
  text-align: left;
}

.section-sub {
  font-size: var(--fs-lg);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-sub-global {
  font-style: italic;
  letter-spacing: 0.02em;
}

.section-sub-left {
  text-align: left;
  margin: 0 0 24px;
  max-width: none;
}

.about-detail-link {
  margin-top: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 17px 38px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-sm {
  padding: 13px 26px;
  font-size: 13px;
}

.btn-lg {
  padding: 20px 46px;
  font-size: 15px;
  letter-spacing: 1.6px;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 102, 179, 0.3);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 102, 179, 0.35);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--blue-dark);
  border-color: var(--white);
}

.btn-accent {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(232, 93, 4, 0.3);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 93, 4, 0.4);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-link::after {
  content: '→';
  transition: transform var(--transition);
}

.btn-link:hover {
  color: var(--orange);
}

.btn-link:hover::after {
  transform: translateX(5px);
}

/* Top Bar */
.topbar {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-left a:hover {
  color: var(--orange-light);
}

.topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.25);
}

.topbar-right {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  letter-spacing: 0.5px;
}

/* Homepage: transparent header over hero */
.page-home .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.page-home:not(.header-solid) .header .nav > a,
.page-home:not(.header-solid) .header .nav-dropdown-toggle {
  color: rgba(255, 255, 255, 0.92);
}

.page-home:not(.header-solid) .header .nav > a:hover,
.page-home:not(.header-solid) .header .nav > a.active,
.page-home:not(.header-solid) .header .nav-dropdown-toggle:hover,
.page-home:not(.header-solid) .header .nav-dropdown.open .nav-dropdown-toggle {
  color: var(--white);
}

.page-home:not(.header-solid) .header .header-icon-btn {
  color: rgba(255, 255, 255, 0.92);
}

.page-home:not(.header-solid) .header .header-icon-btn:hover,
.page-home:not(.header-solid) .header .header-icon-btn.active {
  color: var(--white);
}

.page-home:not(.header-solid) .header .nav > a::after {
  background: var(--orange-light);
}

.page-home:not(.header-solid) .header .header-cta {
  background: var(--orange);
  box-shadow: 0 4px 20px rgba(232, 93, 4, 0.4);
}

.page-home .header .menu-toggle {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.page-home .header .menu-toggle span {
  background: var(--white);
}

.page-home .header.scrolled,
.page-home .header.scrolled ~ .topbar,
.page-home.scrolled-past-hero .topbar {
  /* legacy placeholder */
}

.page-home:not(.header-solid) .banner {
  margin-top: 0;
}

.page-home.header-solid .header {
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.page-home.header-solid .header .nav a {
  color: var(--text-dark);
}

.page-home.header-solid .header .nav a:hover,
.page-home.header-solid .header .nav a.active {
  color: var(--blue);
}

.page-home.header-solid .header .nav-dropdown-toggle,
.page-home.header-solid .header .header-icon-btn {
  color: var(--text-dark);
}

.page-home.header-solid .header .nav-dropdown-toggle:hover,
.page-home.header-solid .header .header-icon-btn:hover {
  color: var(--blue);
}

.page-home.header-solid .header .nav > a::after {
  background: var(--blue);
}

.page-home.header-solid .header .menu-toggle {
  background: var(--bg-light);
  border-color: var(--border);
}

.page-home.header-solid .header .menu-toggle span {
  background: var(--text-dark);
}

/* Header */
.header {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  /*backdrop-filter: blur(16px);*/
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.header.scrolled {
  top: 0;
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

body.no-topbar .header {
  top: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px; padding: 0px 2%;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo > a {
  display: flex;
  align-items: center;
}

.logo-url {
  margin-left: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.2px;
  white-space: nowrap;
  line-height: 1.2;
}

.header.scrolled .logo-url,
.page-home.header-solid .header .logo-url,
.page-inner.header-solid .header .logo-url {
  color: var(--blue);
}

.header .logo img {filter: invert(100%) grayscale(100%) brightness(10);}
.header.scrolled .logo img {filter:  none;}
.logo img {
  height: 66px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-size: 19px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.2px;
  position: relative;
  padding: 6px 0;
}

.nav > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: all var(--transition);
  transform: translateX(-50%);
}

.nav > a:hover,
.nav > a.active {
  color: var(--blue);
}

.nav > a:hover::after,
.nav > a.active::after {
  width: 100%;
}

/* Nav dropdown — Products */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 19px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 6px 0;
  position: relative;
}

.nav-dropdown-toggle::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-top: 2px;
  transition: transform var(--transition); display: none;
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown.open .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--blue);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 100;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li a {
  display: block;
  padding: 12px 22px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
}

.nav-dropdown-menu li a::after {
  display: none;
}

.nav-dropdown-menu li a:hover {
  background: var(--bg-light);
  color: var(--blue);
  padding-left: 28px;
}

/* Search & Language tools */
.nav-tools {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

.page-home:not(.header-solid) .nav-tools {
  border-left-color: rgba(255, 255, 255, 0.2);
}

.header-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  background: transparent;
  border: none;
  border-radius: var(--radius);
  color: var(--text-dark);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.header-icon-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.header-icon-btn span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.header-icon-btn:hover,
.header-icon-btn.active {
  background: var(--bg-light);
  color: var(--blue);
}

.page-home:not(.header-solid) .header-icon-btn:hover,
.page-home:not(.header-solid) .header-icon-btn.active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.header-lang {
  position: relative;
}

.header-lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 140px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 100;
}

.header-lang.open .header-lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-lang-menu a {
  display: block;
  padding: 10px 18px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-dark);
}

.header-lang-menu a:hover,
.header-lang-menu a.active {
  background: var(--bg-light);
  color: var(--blue);
}

.header-lang-menu a::after {
  display: none;
}

/* Search panel */
.header-search-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease, padding 0.4s ease;
}

.header-search-panel.open {
  max-height: 120px;
  opacity: 1;
  padding: 20px 0;
}

.header-search-form {
  display: flex;
  gap: 12px;
  align-items: center;
}

.header-search-form input {
  flex: 1;
  padding: 14px 18px;
  font-family: inherit;
  font-size: var(--fs-base);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition);
}

.header-search-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 102, 179, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-cta {
  box-shadow: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-dark);
  margin: 0 auto;
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Footer */
.footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.7);
  padding: 88px 0 0;
  position: relative;
  width: 100%;
}

.footer .wrap {
  width: 100%;
  max-width: 100%;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--orange-light));
}

.banner-bottom .wrap {
  width: 100%;
  max-width: 100%;
  padding: 0 var(--page-pad);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 52px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

.footer-brand .logo-inline {
  display: inline-flex;
  padding: 8px 16px 8px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.footer-brand img {
  height: 58px;
  width: auto;
  margin-bottom: 24px; filter: invert(100%) grayscale(100%) brightness(10);
}

.footer-brand p {
  font-size: var(--fs-sm);
  line-height: 1.85;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: var(--white);
  transition: all var(--transition);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
}

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col ul a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.55);
}

.footer-col ul a:hover {
  color: var(--orange-light);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  font-size: var(--fs-sm);
  line-height: 1.5;
}

.footer-contact-item strong {
  flex: 0 0 auto;
  white-space: nowrap;
  font-weight: 600;
}

.footer-bottom {
  padding: 28px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

/* Sub-page common */
.page-hero {
  margin-top: var(--header-h);
  padding: 80px 0 72px;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.5vw, 56px);
  margin-bottom: 14px;
}

.page-hero p {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto;
}

.page-content {
  padding: 80px 0;
}

.page-content .wrap {
  width: 100%;
  max-width: 100%;
}

.page-content h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--text-dark);
  margin: 40px 0 16px;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content p {
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.85;
  font-size: var(--fs-base);
}

.page-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

.page-content ul li {
  color: var(--text-muted);
  margin-bottom: 8px;
}

@media (max-width: 1200px) {
  .nav {
    gap: 22px;
  }

  .nav a,
  .nav-dropdown-toggle {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .topbar-right {
    display: none;
  }

  .nav {
    gap: 24px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .topbar-left span:last-child {
    display: none;
  }

  .topbar-divider {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 28px 24px;
    gap: 0;
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }

  .nav.open {
    max-height: 90vh;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
  }

  .nav > a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: var(--fs-base);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: var(--fs-base);
  }

  .nav-dropdown-toggle::after {
    border-top-color: var(--text-muted);
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: var(--bg-light);
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 240px;
    margin-bottom: 4px;
  }

  .nav-dropdown-menu li a {
    padding: 12px 16px 12px 24px;
    border-bottom: 1px solid var(--border);
    white-space: normal;
  }

  .nav-dropdown-menu li:last-child a {
    border-bottom: none;
  }

  .nav-tools {
    width: 100%;
    margin-left: 0;
    padding: 16px 0 0;
    border-left: none;
    border-top: 1px solid var(--border);
    justify-content: flex-start;
    gap: 12px;
  }

  .header-lang-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.35s ease;
  }

  .header-lang.open .header-lang-menu {
    max-height: 120px;
    margin-top: 8px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
  }

  .header-search-panel {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 999;
  }

  .section-title {
    font-size: 36px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .page-home:not(.header-solid) .header .nav.open > a,
  .page-home:not(.header-solid) .header .nav.open .nav-dropdown-toggle {
    color: var(--text-dark);
  }

  .page-home:not(.header-solid) .header .nav.open > a:hover,
  .page-home:not(.header-solid) .header .nav.open > a.active,
  .page-home:not(.header-solid) .header .nav.open .nav-dropdown-toggle:hover,
  .page-home:not(.header-solid) .header .nav.open .nav-dropdown.open .nav-dropdown-toggle {
    color: var(--blue);
  }

  .page-home:not(.header-solid) .header .nav.open .header-icon-btn {
    color: var(--text-dark);
  }
}
