﻿
    :root {
      --primary: #6eb92b;       /* xanh Life */
      --primary-dark: #056836;  /* xanh Ä'áº­m hÆ¡n cho hover/gradient */
      --secondary: #F08C02;     /* cam Life */
      --bg-light: #f7f9fc;
      --text-main: #1f2933;
      --text-muted: #374151;
      --border-soft: #e5e7eb;
      --radius-lg: 18px;
      --radius-md: 12px;
      --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.18);
      --shadow-light: 0 10px 25px rgba(15, 23, 42, 0.08);
      --max-width: 1280px;
    }
    
    /* AOS Fallback - Chỉ hiển thị nội dung khi AOS chưa load, không override khi AOS đã hoạt động */
    /* Mặc định: hiển thị nội dung nếu AOS chưa load (không có class aos-enabled) */
    html:not(.aos-enabled) [data-aos] {
      opacity: 1 !important;
      transform: none !important;
    }
    
    /* Khi AOS đã enabled, để AOS tự quản lý animation (không override) */
    html.aos-enabled [data-aos] {
      /* AOS sẽ tự set opacity và transform */
    }
    
    /* Fallback cho no-js */
    html.no-js [data-aos] {
      opacity: 1 !important;
      transform: none !important;
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    html {
      overflow-x: hidden;
    }
    body {
      font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text-main);
      background-color: #ffffff;
      line-height: 1.6;
      overflow-x: hidden;
      /* Bảo vệ chống copy và drag */
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      -webkit-touch-callout: none;
    }
    img {
      max-width: 100%;
      display: block;
      /* Bảo vệ hình ảnh */
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      -webkit-user-drag: none;
      -khtml-user-drag: none;
      -moz-user-drag: none;
      -o-user-drag: none;
      user-drag: none;
      pointer-events: none; /* Chặn click chuột phải trên ảnh */
    }
    /* Cho phép click vào ảnh có Fancybox */
    img[data-fancybox],
    a[data-fancybox] img {
      pointer-events: auto;
      cursor: pointer;
    }
    a {
      text-decoration: none;
      color: inherit;
    }
    .lifecorp-page {
      min-height: 100vh;
      background: radial-gradient(circle at top left, #e9f7dd 0, transparent 55%),
                  radial-gradient(circle at top right, #fff3df 0, transparent 55%),
                  #ffffff;
    }
    .lifecorp-container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* NAVIGATION */
    .lifecorp-navbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 20px rgba(15, 23, 42, 0.08);
      border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    }
    .lifecorp-navbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 1.25rem;
      max-width: var(--max-width);
      margin: 0 auto;
    }
    .lifecorp-navbar-logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
    }
    .lifecorp-navbar-logo img {
      height: 50px;
      width: auto;
      object-fit: contain;
    }
    .lifecorp-navbar-menu {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }
    .lifecorp-navbar-menu-item {
      position: relative;
    }
    .lifecorp-navbar-menu-link {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text-main);
      text-decoration: none;
      transition: color 0.2s ease;
      padding: 0.5rem 0;
      display: block;
    }
    .lifecorp-navbar-menu-link:hover {
      color: var(--primary);
    }
    .lifecorp-navbar-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.6rem 1.3rem;
      background:#f05a25;
      color: #ffffff;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      transition: all 0.2s ease;
    }
    .lifecorp-navbar-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(110, 185, 43, 0.4);
    }
    .lifecorp-navbar-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--text-main);
      cursor: pointer;
      padding: 0.5rem;
    }
    /* Mobile menu active state */
    @media (max-width: 768px) {
      .lifecorp-navbar-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 4px 20px rgba(15, 23, 42, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
      }
      .lifecorp-navbar-menu.active {
        transform: translateX(0);
      }
      .lifecorp-navbar-toggle {
        display: block;
      }
    }


    /* HEADER / HERO */
    .lifecorp-hero {
      position: relative;
      overflow: hidden;
      padding-top: 4rem;
      padding-bottom: 5rem;
      background-image: url('../images/banner-hero.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    .lifecorp-hero-inner {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
    }
    .lifecorp-hero-content {
      text-align: center;
    }
    .lifecorp-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--primary-dark);
      border-radius: 999px;
      padding: 0.4rem 1rem;
      border: none;
      font-size: 0.8rem;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 1.5rem;
    }
    .lifecorp-badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.28);
    }
    .lifecorp-hero-title {
      font-size: 3.2rem;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--primary);
      text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
    }
    .lifecorp-hero-title span.lifecorp-highlight {
      color: var(--secondary);
    }
    .lifecorp-life-corporation-title {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      justify-content: center;
    }
    .lifecorp-clover-icon {
      width: 32px;
      height: 32px;
      display: inline-block;
      flex-shrink: 0;
    }
    .lifecorp-clover-left {
      animation: float-left 3s ease-in-out infinite;
    }
    .lifecorp-clover-right {
      animation: float-right 3s ease-in-out infinite;
    }
    @keyframes float-left {
      0%, 100% {
        transform: translateY(0) rotate(0deg);
      }
      50% {
        transform: translateY(-8px) rotate(-5deg);
      }
    }
    @keyframes float-right {
      0%, 100% {
        transform: translateY(0) rotate(0deg);
      }
      50% {
        transform: translateY(-8px) rotate(5deg);
      }
    }
    .lifecorp-hero-subtitle {
      font-size: 1.25rem;
      color: #374151;
      margin-bottom: 2rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.8;
      text-shadow: 0 1px 4px rgba(255, 255, 255, 0.6);
      font-weight: 500;
    }
    .lifecorp-hero-bullets {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 1.75rem;
      display: none;
    }
    .lifecorp-hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.6rem 1rem;
      border-radius: 999px;
      background: var(--primary);
      border: none;
      font-size: 0.85rem;
      color: #ffffff;
      box-shadow: 0 6px 18px rgba(110, 185, 43, 0.35);
      font-weight: 600;
    }
    .lifecorp-hero-pill:nth-child(2) {
      background: var(--secondary);
      box-shadow: 0 6px 18px rgba(240, 140, 2, 0.35);
    }
    .lifecorp-hero-pill:nth-child(3) {
      background: var(--primary);
      box-shadow: 0 6px 18px rgba(110, 185, 43, 0.35);
    }
    .lifecorp-hero-pill-icon {
      width: 20px;
      height: 20px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.25);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      color: #ffffff;
      font-weight: 700;
    }
    .lifecorp-hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
    }
    .lifecorp-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      border-radius: 999px;
      padding: 0.8rem 1.7rem;
      font-weight: 600;
      font-size: 0.92rem;
      cursor: pointer;
      border: none;
      outline: none;
      transition: all 0.18s ease;
      white-space: nowrap;
    }
    .lifecorp-btn-primary.lifecorp-btn-hero {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #ffffff;
      box-shadow: 0 14px 35px rgba(60, 130, 18, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    }
    .lifecorp-btn-primary.lifecorp-btn-hero:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 45px rgba(47, 97, 15, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.2);
    }
    .lifecorp-btn-outline {
      background: var(--secondary);
      color: #ffffff;
      border: 2px solid var(--secondary);
      box-shadow: 0 8px 20px rgba(240, 140, 2, 0.35);
    }
    .lifecorp-btn-outline:hover {
      background: #e67e00;
      border-color: #e67e00;
      transform: translateY(-1px);
      box-shadow: 0 12px 28px rgba(240, 140, 2, 0.45);
    }
    .lifecorp-btn-icon {
      font-size: 1.1rem;
    }
    .lifecorp-hero-right {
      position: relative;
    }
    .lifecorp-hero-media {
      position: relative;
      margin-bottom: 0.9rem;
    }
    .lifecorp-hero-media img {
      border-radius: 24px;
      box-shadow: 0 18px 45px rgba(15, 23, 42, 0.25);
      object-fit: cover;
      width: 100%;
      max-height: 240px;
    }
    .lifecorp-hero-card {
      position: relative;
      background: rgba(255, 255, 255, 0.98);
      border-radius: 26px;
      box-shadow: var(--shadow-soft);
      padding: 1.4rem 1.4rem 1.1rem;
      overflow: hidden;
    }
    .lifecorp-hero-card-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      border-radius: 999px;
      background: rgba(240, 140, 2, 0.06);
      padding: 0.3rem 0.7rem;
      font-size: 0.75rem;
      color: var(--secondary);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 0.65rem;
    }
    .lifecorp-hero-card-main {
      display: flex;
      gap: 1rem;
      align-items: center;
      margin-bottom: 0.8rem;
    }
    .lifecorp-hero-card-flag {
      width: 56px;
      height: 56px;
      border-radius: 18px;
      background: radial-gradient(circle at 30% 20%, #fee2e2 0, #b91c1c 45%),
                  radial-gradient(circle at 70% 80%, #eff6ff 0, #fecaca 40%);
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fef2f2;
      font-weight: 700;
      font-size: 0.8rem;
      text-align: center;
      padding: 0.1rem;
    }
    .lifecorp-hero-card-text-title {
      font-weight: 600;
      margin-bottom: 0.25rem;
      font-size: 1rem;
    }
    .lifecorp-hero-card-text-sub {
      font-size: 0.9rem;
      color: var(--text-muted);
    }
    .lifecorp-hero-card-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.75rem;
      margin: 0.8rem 0 1rem;
    }
    .lifecorp-hero-card-item {
      border-radius: 14px;
      border: 1px solid var(--border-soft);
      padding: 0.55rem 0.75rem;
      background: #f9fafb;
    }
    .lifecorp-hero-card-item-label {
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: #9ca3af;
      margin-bottom: 0.2rem;
      font-weight: 600;
    }
    .lifecorp-hero-card-item-value {
      font-size: 0.92rem;
      font-weight: 600;
      color: #111827;
    }
    .lifecorp-hero-card-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.8rem;
      color: var(--text-muted);
      border-top: 1px dashed #e5e7eb;
      padding-top: 0.6rem;
      margin-top: 0.4rem;
    }
    .lifecorp-hero-card-footer strong {
      color: #16a34a;
    }
    .lifecorp-hero-floating-label {
      position: absolute;
      right: 0.15rem;
      bottom: -0.35rem;
      transform: rotate(-6deg);
      background: var(--secondary);
      color: #ffffff;
      font-size: 0.8rem;
      font-weight: 700;
      padding: 0.3rem 0.7rem;
      border-radius: 999px;
      box-shadow: 0 14px 30px rgba(240, 140, 2, 0.4);
    }

    /* SECTION GENERIC */
    section {
      padding: 4rem 0;
    }
    .lifecorp-section-header {
      text-align: center;
      margin-bottom: 3rem;
      position: relative;
    }
    .lifecorp-eyebrow {
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--secondary);
      font-weight: 700;
      margin-bottom: 1rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      position: relative;
      padding: 0.4rem 1.2rem;
      background: rgba(240, 140, 2, 0.08);
      border-radius: 999px;
    }
    .lifecorp-eyebrow::before,
    .lifecorp-eyebrow::after {
      content: '';
      width: 20px;
      height: 20px;
      background-image: url('../images/clover_kuki.svg');
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      opacity: 0.7;
      flex-shrink: 0;
      animation: clover-pulse 3s ease-in-out infinite;
    }
    .lifecorp-eyebrow::after {
      animation-delay: 1.5s;
    }
    @keyframes clover-pulse {
      0%, 100% {
        opacity: 0.7;
        transform: scale(1);
      }
      50% {
        opacity: 0.9;
        transform: scale(1.1);
      }
    }
    .lifecorp-section-title {
      font-size: 1.6rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
      line-height: 1.3;
      color: #1f2937;
      position: relative;
      padding: 0 2rem;
    }

    @keyframes clover-float-left {
      0%, 100% {
        transform: translateY(-50%) rotate(0deg);
      }
      50% {
        transform: translateY(-55%) rotate(-8deg);
      }
    }
    @keyframes clover-float-right {
      0%, 100% {
        transform: translateY(-50%) rotate(0deg);
      }
      50% {
        transform: translateY(-55%) rotate(8deg);
      }
    }
    .lifecorp-section-subtitle {
      font-size: 1.1rem;
      color: var(--text-muted);
      max-width: 42rem;
      margin: 0 auto;
      line-height: 1.75;
      font-weight: 400;
    }

    /* WHY SECTION */
    .lifecorp-why {
      background: linear-gradient(rgb(244, 251, 237), rgb(244, 251, 237));
    }
    .lifecorp-why-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.7fr);
      gap: 2rem;
      align-items: start;
      animation: fadeInUp 0.6s ease-out;
    }
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .lifecorp-why-card {
      background: rgb(210, 248, 175);
      border-radius: 20px;
      padding: 2rem 2.2rem;
      border: none;
      margin-bottom: 1.5rem;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }
    .lifecorp-why-card:hover {
      transform: translateY(-2px);
    }
    .lifecorp-why-image {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      height: 100%;
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .lifecorp-why-image-content {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px;
    }
    .lifecorp-why-card h3 {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      color: #1f2937;
      line-height: 1.4;
      position: relative;
      z-index: 1;
    }
    .lifecorp-why-card p {
      font-size: 0.98rem;
      color: var(--text-main);
      line-height: 1.7;
      margin-bottom: 0.5rem;
      position: relative;
      z-index: 1;
    }
    .lifecorp-why-card strong {
      color: #f08002;
      font-weight: 700;
    }
    .lifecorp-why-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
      margin-top: 1rem;
    }
    .lifecorp-why-list-item {
      display: flex;
      align-items: flex-start;
      gap: 0.65rem;
      font-size: 0.92rem;
      color: var(--text-main);
      line-height: 1.6;
      position: relative;
      z-index: 1;
      padding: 0.5rem;
      border-radius: 8px;
      transition: background-color 0.2s ease;
    }
    .lifecorp-why-list-icon {
      margin-top: 0.15rem;
      width: 22px;
      height: 22px;
      min-width: 22px;
      border-radius: 50%;
      background: #f08c02;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      color: #fff;
      font-weight: 700;
      flex-shrink: 0;
      box-shadow: 0 2px 4px rgba(110, 185, 43, 0.2);
    }
    .lifecorp-why-note {
      font-size: 0.9rem;
      color: #fff !important;
      margin-top: 0.75rem;
      padding: 0.75rem;
      background: #F08C02;
      border-radius: 10px;
      position: relative;
      z-index: 1;
      line-height: 1.6;
    }
    .lifecorp-partner-card {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
      color: #e5e7eb;
      border-radius: 20px;
      padding: 2rem 2.2rem;
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(15, 23, 42, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
      border: 2px solid rgba(110, 185, 43, 0.2);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .lifecorp-partner-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(15, 23, 42, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3);
      border-color: rgba(110, 185, 43, 0.4);
    }
    .lifecorp-partner-card::before {
      content: "";
      position: absolute;
      inset: -50%;
      background: radial-gradient(circle at 20% 20%, rgba(110, 185, 43, 0.15) 0%, transparent 50%),
                  radial-gradient(circle at 80% 80%, rgba(240, 140, 2, 0.1) 0%, transparent 50%);
      opacity: 0.8;
      transition: opacity 0.3s ease;
    }
    .lifecorp-partner-card:hover::before {
      opacity: 1;
    }
    .lifecorp-partner-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, rgba(110, 185, 43, 0.8) 0%, rgba(240, 140, 2, 0.8) 100%);
    }
    .lifecorp-partner-inner {
      position: relative;
      z-index: 1;
    }
    .lifecorp-partner-logo {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .lifecorp-partner-logo-mark {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: linear-gradient(135deg, #f08002 0%, #ff9500 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: #fff;
      font-size: 1.1rem;
      box-shadow: 0 4px 12px rgba(240, 140, 2, 0.3);
      position: relative;
    }
    .lifecorp-partner-logo-mark::after {
      content: '';
      position: absolute;
      top: -2px;
      right: -2px;
      width: 16px;
      height: 16px;
      background-image: url('../images/clover_kuki.svg');
      background-size: contain;
      background-repeat: no-repeat;
      opacity: 0.9;
    }
    .lifecorp-partner-name {
      font-weight: 700;
      font-size: 1.05rem;
      color: #f9fafb;
      line-height: 1.4;
    }
    .lifecorp-partner-text {
      font-size: 0.95rem;
      color: #d1d5db;
      margin-bottom: 1rem;
      line-height: 1.7;
    }
    .lifecorp-partner-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .lifecorp-partner-stat {
      font-size: 0.85rem;
      color: #9ca3af;
      line-height: 1.6;
      padding: 0.5rem;
      border-radius: 8px;
      transition: background-color 0.2s ease;
    }
    .lifecorp-partner-stat:hover {
      background-color: rgba(255, 255, 255, 0.05);
    }
    .lifecorp-partner-stat strong {
      display: block;
      color: #f9fafb;
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 0.3rem;
      color: #6eb92b;
    }
    .lifecorp-partner-logo img {
      display: block;
    }

    /* LIFE CORPORATION SECTION */
    .lifecorp-life {
      background: #ffffff;
    }
    .lifecorp-life-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      gap: 2.5rem;
      align-items: start;
    }
    /* CHAIRMAN CARD - Full Width */
.lifecorp-chairman-section {
  background: #6eb92b;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.lifecorp-chairman-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.25), transparent 55%),
              radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.15), transparent 50%);
  pointer-events: none;
}
.lifecorp-chairman-section .lifecorp-container {
  position: relative;
  z-index: 1;
}
.lifecorp-life-chairman-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(110, 185, 43, 0.2);
  position: relative;
  overflow: hidden;
  color: #1f2937;
}
.lifecorp-life-chairman-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
}
.lifecorp-life-chairman-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.6);
  color: var(--secondary);
      font-size: 1.2rem;
      font-weight: 700;
      border-radius: 50px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 0.75rem;
    }

    .lifecorp-life-chairman-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr);
      gap: 3rem;
      align-items: start;
    }
    .lifecorp-life-chairman-content {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
.lifecorp-life-chairman-text {
  font-size: 1rem;
  color: #4b5563;
      line-height: 1.7;
    }
.lifecorp-life-chairman-quote {
  margin-top: 0.5rem;
  padding: 1.75rem;
  background: #eef8e1;
  border-radius: 16px;
  border-left: 4px solid rgba(240, 140, 2, 0.6);
  position: relative;
    }
    .lifecorp-life-chairman-quote-icon {
      position: absolute;
      top: 0.5rem;
      left: 1rem;
      font-size: 3rem;
  color: rgb(240 140 2);
      opacity: 0.6;
      font-weight: 700;
      line-height: 1;
    }
    .lifecorp-life-chairman-quote-text {
      font-size: 1.05rem;
  color: #1f2937;
      line-height: 1.6;
      margin-bottom: 0.75rem;
      padding-left: 2rem;
    }
.lifecorp-life-chairman-quote-text strong {
  color: var(--secondary);
      font-weight: 700;
    }
    .lifecorp-life-chairman-quote-footer {
      font-size: 0.9rem;
  color: #4b5563;
      line-height: 1.6;
      padding-left: 2rem;
    }
    .lifecorp-life-chairman-photo-wrapper {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  max-width: 395px;
  margin-left: auto;
    }
    .lifecorp-life-chairman-photo {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }
    .lifecorp-life-chairman-name {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
      padding: 1.5rem 1.5rem 1rem;
      color: #ffffff;
    }
    .lifecorp-life-chairman-name-main {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
    }
    .lifecorp-life-chairman-name-sub {
      font-size: 0.9rem;
      opacity: 0.9;
    }
    /* VIDEO SECTION */
.lifecorp-life-media-gallery {
  background: #ffffff;
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(110, 185, 43, 0.12);
}
.lifecorp-media-gallery-header {
  text-align: center;
  margin-bottom: 2rem;
}
.lifecorp-media-gallery-eyebrow {
  display: inline-block;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  font-weight: 700;
}
.lifecorp-media-gallery-title {
  font-size: 1.5rem;
  margin: 0.5rem 0;
  color: #1f2937;
}
.lifecorp-media-gallery-divider {
  width: 80px;
  height: 3px;
  margin: 0.75rem auto 0;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 999px;
}
.lifecorp-media-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.lifecorp-media-gallery-slider {
  margin-top: 1.5rem;
}
/* IMAGE SLIDER (Swiper) */
.lifecorp-life-carousel .lifecorp-life-slide {
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 260px;
}
.lifecorp-life-slide-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  cursor: pointer;
}
.lifecorp-life-carousel .owl-nav {
  position: absolute;
  top: 45%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}
.lifecorp-life-carousel .owl-nav button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff !important;
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
  color: var(--text-main) !important;
  font-size: 1.2rem !important;
  line-height: 1;
  pointer-events: auto;
}
.lifecorp-life-carousel .owl-nav button:hover {
  background: var(--primary) !important;
  color: #ffffff !important;
  border-color: var(--primary) !important;
}
.lifecorp-life-carousel .owl-dots {
  margin-top: 1.25rem;
  display: none;
}
.lifecorp-life-carousel .owl-dot span {
  width: 10px;
  height: 10px;
  background: #d1d5db;
  transition: all 0.3s ease;
}
.lifecorp-life-carousel .owl-dot.active span {
  width: 26px;
  border-radius: 999px;
  background: var(--primary);
}
    /* LIGHTBOX */
    .lifecorp-life-media-main img {
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-light);
      margin-bottom: 0.9rem;
      object-fit: cover;
    }
    .lifecorp-life-media-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.8rem;
    }
    .lifecorp-life-media-row img {
      border-radius: var(--radius-md);
      box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
      object-fit: cover;
    }
    .lifecorp-life-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 0.6rem;
      font-size: 0.78rem;
    }
    .lifecorp-life-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      padding: 0.18rem 0.55rem;
      border-radius: 999px;
      background: #f9fafb;
      border: 1px solid #e5e7eb;
    }
    .lifecorp-life-badge span {
      font-weight: 600;
      color: var(--primary);
    }
    .lifecorp-life-video {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
      background: #000;
      position: relative;
      padding-top: 56.25%; /* 16:9 */
    }
    .lifecorp-life-video iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }
    .lifecorp-life-video-desc {
      font-size: 0.9rem;
      color: #4b5563;
      line-height: 1.7;
      margin: 0;
    }
    .lifecorp-life-stats {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 2.5rem;
    }
    .lifecorp-life-stat-card {
      position: relative;
      background: #ffffff;
      border-radius: 28px;
      padding: 0;
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      overflow: hidden;
      border: 1px solid rgba(110, 185, 43, 0.1);
    }
    .lifecorp-life-stat-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
      z-index: 2;
    }
    .lifecorp-life-stat-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
      border-color: rgba(110, 185, 43, 0.3);
    }
    .lifecorp-life-stat-card-primary::before {
      background: linear-gradient(90deg, #6eb92b 0%, #5a9a24 100%);
    }
    .lifecorp-life-stat-card-secondary::before {
      background: linear-gradient(90deg, #F08C02 0%, #e67e00 100%);
    }
    .lifecorp-life-stat-badge {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      z-index: 3;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      padding: 0.5rem 1rem;
      border-radius: 50px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      font-size: 0.85rem;
      font-weight: 600;
      color: #1f2937;
    }
    .lifecorp-life-stat-badge-icon {
      font-size: 1.2rem;
    }
    .lifecorp-life-stat-visual {
      position: relative;
      width: 100%;
      height: 400px;
      overflow: hidden;
    }
    .lifecorp-life-stat-image-wrapper {
      position: relative;
      width: 100%;
      height: 100%;
    }
    .lifecorp-life-stat-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .lifecorp-life-stat-card:hover .lifecorp-life-stat-image {
      transform: scale(1.08);
    }
    .lifecorp-life-stat-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(110, 185, 43, 0.15) 0%, rgba(240, 140, 2, 0.1) 100%);
      z-index: 1;
    }
    .lifecorp-life-stat-number-box {
      position: absolute;
      bottom: 1.5rem;
      left: 1.5rem;
      z-index: 2;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      padding: 1rem 1.5rem;
      border-radius: 16px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
      border: 2px solid rgba(110, 185, 43, 0.2);
    }
    .lifecorp-life-stat-card-secondary .lifecorp-life-stat-number-box {
      border-color: rgba(240, 140, 2, 0.3);
    }
    .lifecorp-life-stat-number-main {
      font-size: 2.8rem;
      font-weight: 900;
      line-height: 1;
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 0.25rem;
    }
    .lifecorp-life-stat-number-label {
      font-size: 0.75rem;
      font-weight: 600;
      color: #6b7280;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .lifecorp-life-stat-content {
      padding: 2rem 2rem 2.5rem;
    }
    .lifecorp-life-stat-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: #1f2937;
      margin-bottom: 0.75rem;
      line-height: 1.4;
    }
    .lifecorp-life-stat-desc {
      font-size: 0.95rem;
      color: #4b5563;
      line-height: 1.7;
      margin-bottom: 1rem;
    }
    .lifecorp-life-stat-desc strong {
      color: var(--primary);
      font-weight: 700;
    }
    .lifecorp-life-stat-detail {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid #e5e7eb;
    }
    .lifecorp-life-stat-detail-item {
      font-size: 0.85rem;
      color: #6b7280;
      line-height: 1.6;
    }
    .lifecorp-life-stat-trend {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 1rem;
      padding: 0.75rem 1rem;
      background: linear-gradient(135deg, rgba(110, 185, 43, 0.1) 0%, rgba(240, 140, 2, 0.1) 100%);
      border-radius: 12px;
      border-left: 3px solid var(--secondary);
    }
    .lifecorp-life-stat-trend-arrow {
      font-size: 1.5rem;
      color: var(--secondary);
      font-weight: 700;
    }
    .lifecorp-life-stat-trend-text {
      font-size: 0.9rem;
      color: #374151;
      font-weight: 600;
    }


    /* JOB DETAIL SECTION */
.lifecorp-job-section {
  background: linear-gradient(180deg, #fbfef7 0%, #fdf9f2 100%);
  padding: 4rem 0;
}
.lifecorp-job-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.lifecorp-job-summary-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(110, 185, 43, 0.15);
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.08);
}
.lifecorp-job-summary-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
  margin-bottom: 0.35rem;
}
.lifecorp-job-summary-item strong {
  display: block;
  font-size: 1.05rem;
  color: #062a0f;
}
.lifecorp-job-summary-item small {
  display: block;
  margin-top: 0.25rem;
  color: #6b7280;
  font-size: 0.82rem;
}
@media (max-width: 1200px) {
  .lifecorp-job-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
    .lifecorp-job-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      gap: 2.5rem;
      align-items: stretch;
    }
.lifecorp-job-card {
      position: relative;
      background: #ffffff;
      border-radius: 28px;
      padding: 2.2rem;
      border: 1px solid rgba(228, 232, 242, 0.7);
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    .lifecorp-job-card-primary {
      background: #ffffff;
    }
.lifecorp-job-card-secondary {
  background: #0f172a;
      color: #f8fafc;
      border: 1px solid rgba(255, 255, 255, 0.08);
    }
.lifecorp-job-card-secondary::before {
  background: linear-gradient(135deg, rgba(240, 140, 2, 0.45), rgba(255, 255, 255, 0.15));
    }
    .lifecorp-job-card-secondary .lifecorp-job-card-desc,
    .lifecorp-job-card-secondary .lifecorp-job-list li,
    .lifecorp-job-card-secondary .lifecorp-job-note,
    .lifecorp-job-card-secondary .lifecorp-job-meta-item p,
    .lifecorp-job-card-secondary .lifecorp-job-meta-label,
    .lifecorp-job-card-secondary .lifecorp-job-tags {
      color: #e2e8f0;
    }
    .lifecorp-job-card-secondary .lifecorp-job-list-dot {
      background: rgba(255, 255, 255, 0.85);
    }
    .lifecorp-job-card-header {
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
    }
    .lifecorp-job-card-header h3 {
      margin: 0.3rem 0 0.2rem;
      font-size: 1.25rem;
    }
    .lifecorp-job-card-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.35rem 1rem;
      border-radius: 999px;
      background: rgba(110, 185, 43, 0.12);
      color: var(--primary);
      font-weight: 600;
      font-size: 0.85rem;
      width: fit-content;
    }
    .lifecorp-job-card-chip::before {
      content: "🍱";
    }
    .lifecorp-job-card-chip-secondary {
      background: rgba(255, 255, 255, 0.16);
      color: #fef7c3;
    }
    .lifecorp-job-card-chip-secondary::before {
      content: "✅";
    }
    .lifecorp-job-card-desc {
      font-size: 0.95rem;
      color: #4b5563;
      line-height: 1.6;
    }
    .lifecorp-job-card-secondary .lifecorp-job-card-desc {
      color: #cbd5f5;
    }
.lifecorp-job-meta {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
      padding: 1rem;
      border-radius: 18px;
      background: #f6fbe8;
    }
    .lifecorp-job-card-secondary .lifecorp-job-meta {
      background: rgba(255, 255, 255, 0.05);
    }
    .lifecorp-job-meta-item p {
      margin: 0;
      font-weight: 600;
      color: #1f2937;
    }
.lifecorp-job-meta-item span {
  display: block;
}
    .lifecorp-job-card-secondary .lifecorp-job-meta-item p {
      color: #e2e8f0;
    }
    .lifecorp-job-meta-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: #94a3af;
      margin-bottom: 0.25rem;
      font-weight: 600;
    }
.lifecorp-job-card-secondary .lifecorp-job-meta-label {
  color: rgba(255, 255, 255, 0.6);
    }
    .lifecorp-job-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
    }
    .lifecorp-job-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.55rem;
      font-size: 0.95rem;
      color: #1f2937;
      line-height: 1.6;
    }
    .lifecorp-job-list-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--primary);
      margin-top: 0.45rem;
      flex-shrink: 0;
    }
    .lifecorp-job-note {
      padding: 1rem 1.2rem;
      border-radius: 16px;
      background: rgba(110, 185, 43, 0.1);
      font-size: 0.9rem;
      color: #495057;
      line-height: 1.6;
    }
    .lifecorp-job-card-secondary .lifecorp-job-note {
      background: rgba(255, 255, 255, 0.08);
      color: #dbeafe;
    }
.lifecorp-job-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    .lifecorp-job-tag {
      font-size: 0.8rem;
      padding: 0.3rem 0.9rem;
      border-radius: 999px;
      background: rgba(110, 185, 43, 0.14);
      color: var(--primary);
      font-weight: 600;
    }
    .lifecorp-job-card-secondary .lifecorp-job-tag {
      background: rgba(255, 255, 255, 0.15);
      color: #fef9c3;
    }
.lifecorp-job-highlight {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(110, 185, 43, 0.12), rgba(240, 140, 2, 0.1));
  border: 1px solid rgba(110, 185, 43, 0.15);
}
.lifecorp-job-highlight > div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.lifecorp-job-highlight-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}
.lifecorp-job-highlight-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.lifecorp-job-highlight-dark .lifecorp-job-highlight-label {
  color: rgba(255, 255, 255, 0.65);
}

/* JOB GALLERY */
.lifecorp-job-gallery {
  background: #ffffff;
}
.lifecorp-job-gallery-slider .lifecorp-job-gallery-slide {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.85rem;
}
.lifecorp-job-gallery-slide a {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.lifecorp-job-gallery-slide a:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
}
.lifecorp-job-gallery-slide img {
  border-radius: 18px;
  width: 100%;
  height: 200px;
  object-fit: cover;
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(110, 185, 43, 0.15);
  display: block;
  transition: transform 0.3s ease;
}
.lifecorp-job-gallery-slide a:hover img {
  transform: scale(1.05);
}
.lifecorp-job-gallery-slider .owl-nav {
  position: absolute;
  top: -60px;
  right: 0;
  display: flex;
  gap: 0.5rem;
}
.lifecorp-job-gallery-slider .owl-nav button {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #ffffff !important;
  border: 1px solid rgba(110, 185, 43, 0.25) !important;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
  color: #0f172a !important;
}
.lifecorp-job-gallery-slider .owl-nav button:hover {
  background: var(--primary) !important;
  color: #fff !important;
}
.lifecorp-job-gallery-slider .owl-dots {
      margin-top: 1rem;
}
.lifecorp-job-gallery-slider .owl-dot span {
  width: 8px;
  height: 8px;
  background: rgba(110, 185, 43, 0.3);
}
.lifecorp-job-gallery-slider .owl-dot.active span {
  width: 18px;
  border-radius: 999px;
  background: var(--primary);
}
@media (max-width: 1200px) {
  .lifecorp-job-gallery-slider .lifecorp-job-gallery-slide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .lifecorp-job-gallery-slider .lifecorp-job-gallery-slide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lifecorp-job-gallery-slide img {
    height: 160px;
  }
  .lifecorp-job-highlight{
    flex-direction: column;
  }
  .lifecorp-job-meta{
    grid-template-columns:repeat(1, minmax(0, 1fr))
  }
}

/* JOB VIDEOS */
.lifecorp-job-videos {
  background: var(--bg-light);
  padding: 4rem 0;
}
.lifecorp-job-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.lifecorp-job-video-item {
  background: #ffffff;
  border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lifecorp-job-video-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}
.lifecorp-job-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
      background: #000;
  overflow: hidden;
}
.lifecorp-job-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.lifecorp-job-video-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  margin: 1.25rem 1.5rem 0.5rem;
  line-height: 1.4;
}
.lifecorp-job-video-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 1.5rem 1.5rem;
}
@media (max-width: 991px) {
  .lifecorp-job-videos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 600px) {
  .lifecorp-job-videos {
    padding: 3rem 0;
  }
  .lifecorp-job-videos-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .lifecorp-job-video-title {
    font-size: 1.05rem;
    margin: 1rem 1.25rem 0.4rem;
  }
  .lifecorp-job-video-desc {
    font-size: 0.85rem;
    margin: 0 1.25rem 1.25rem;
  }
}

/* LICENSES SECTION */
.lifecorp-licenses-section {
  background: #ffffff;
  padding: 6rem 0;
      position: relative;
  overflow: hidden;
}
.lifecorp-licenses-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(110, 185, 43, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(240, 140, 2, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.lifecorp-licenses-header {
  text-align: center;
  margin-bottom: 4rem;
}
.lifecorp-licenses-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f08c02;
  margin-bottom: 1rem;
  position: relative;
}
.lifecorp-eyebrow-icon {
  font-size: 1rem;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}
.lifecorp-eyebrow-icon:first-child {
  animation-delay: 0s;
}
.lifecorp-eyebrow-icon:last-child {
  animation-delay: 1.5s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(5deg); }
}
.lifecorp-licenses-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.5rem;
  margin-top: 0;
  align-items: center;
}
.lifecorp-licenses-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.lifecorp-license-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
  border-radius: 24px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 
    0 2px 8px rgba(15, 23, 42, 0.04),
    0 1px 3px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}
.lifecorp-license-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6eb92b 0%, #8bc34a 50%, #9ccc65 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  box-shadow: 0 2px 8px rgba(110, 185, 43, 0.3);
}
.lifecorp-license-item:hover::before {
  transform: scaleX(1);
}
.lifecorp-license-item::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(110, 185, 43, 0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.lifecorp-license-item:hover::after {
  opacity: 1;
}
.lifecorp-license-item:hover {
  border-color: rgba(110, 185, 43, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #f8fdf4 100%);
  transform: translateY(-6px);
  box-shadow: 
    0 12px 32px rgba(110, 185, 43, 0.15),
    0 4px 12px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(110, 185, 43, 0.1);
}
.lifecorp-license-item-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6eb92b 0%, #8bc34a 100%);
  border-radius: 18px;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(110, 185, 43, 0.25);
  position: relative;
  transition: all 0.4s ease;
  align-self: flex-start;
}
.lifecorp-license-item-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, #6eb92b, #8bc34a);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  filter: blur(8px);
}
.lifecorp-license-item:hover .lifecorp-license-item-icon::before {
  opacity: 0.5;
}
.lifecorp-license-item-icon svg {
  width: 32px;
  height: 40px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
  transition: transform 0.4s ease;
}
.lifecorp-license-item:hover .lifecorp-license-item-icon {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 12px 32px rgba(110, 185, 43, 0.35);
}
.lifecorp-license-item:hover .lifecorp-license-item-icon svg {
  transform: scale(1.05);
}
.lifecorp-license-item-content {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.lifecorp-license-item-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 0.5rem;
  line-height: 1.5;
  transition: color 0.3s ease;
}
.lifecorp-license-item:hover .lifecorp-license-item-title {
  color: var(--primary);
}
.lifecorp-license-item-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.lifecorp-license-item-desc::after {
  content: '→';
  color: var(--primary);
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.lifecorp-license-item:hover .lifecorp-license-item-desc::after {
  transform: translateX(4px);
}
.lifecorp-license-item-arrow {
  display: none;
}
.lifecorp-licenses-right {
  position: sticky;
  top: 120px;
}
.lifecorp-certification-box {
  background: linear-gradient(135deg, #f8fdf4 0%, #ffffff 100%);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 
    0 8px 24px rgba(15, 23, 42, 0.08),
    0 2px 8px rgba(15, 23, 42, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(110, 185, 43, 0.05);
  position: relative;
  overflow: hidden;
}
.lifecorp-certification-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 1.5rem;
  line-height: 1.6;
  text-align: center;
  position: relative;
  z-index: 1;
}
.lifecorp-certification-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 10px solid #ffffff;
  box-shadow: 
    0 8px 24px rgba(15, 23, 42, 0.12),
    0 2px 8px rgba(15, 23, 42, 0.06),
    0 0 0 1px rgba(110, 185, 43, 0.1);
  background: #ffffff;
  transition: all 0.4s ease;
  z-index: 1;
}
.lifecorp-certification-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(110, 185, 43, 0.15), rgba(240, 140, 2, 0.08));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.lifecorp-certification-image-wrapper:hover::before {
  opacity: 1;
}
.lifecorp-certification-image-wrapper:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 
    0 16px 48px rgba(15, 23, 42, 0.15),
    0 4px 12px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(110, 185, 43, 0.15);
}
.lifecorp-certification-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.4s ease;
}
.lifecorp-certification-image-wrapper:hover .lifecorp-certification-image {
  transform: scale(1.03);
}
@media (max-width: 991px) {
  .lifecorp-licenses-section {
    padding: 4.5rem 0;
  }
  .lifecorp-licenses-header {
    margin-bottom: 3rem;
  }
  .lifecorp-licenses-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 3.5rem;
  }
  .lifecorp-licenses-list {
    grid-template-columns: minmax(0, 1fr);
  }
  .lifecorp-licenses-right {
    position: static;
  }
  .lifecorp-certification-box {
    padding: 2.5rem;
  }
}
@media (max-width: 600px) {
  .lifecorp-licenses-section {
    padding: 3.5rem 0;
  }
  .lifecorp-licenses-header {
    margin-bottom: 2.5rem;
  }
  .lifecorp-licenses-eyebrow {
    font-size: 0.75rem;
    gap: 0.5rem;
  }
  .lifecorp-eyebrow-icon {
    font-size: 0.875rem;
  }
  .lifecorp-licenses-grid {
    gap: 2.5rem;
  }
  .lifecorp-licenses-list {
    gap: 1.25rem;
  }
  .lifecorp-license-item {
    padding: 1.75rem;
    gap: 1rem;
    border-radius: 20px;
  }
  .lifecorp-license-item:hover {
    transform: translateY(-4px);
  }
  .lifecorp-license-item-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }
  .lifecorp-license-item-icon svg {
    width: 28px;
    height: 35px;
  }
  .lifecorp-license-item-title {
    font-size: 1.05rem;
  }
  .lifecorp-license-item-desc {
    font-size: 0.8rem;
  }
  .lifecorp-certification-box {
    padding: 2rem;
    border-radius: 24px;
  }
  .lifecorp-certification-title {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  .lifecorp-certification-image-wrapper {
    border-width: 10px;
    border-radius: 20px;
  }
}

/* DEPARTURE GALLERY */
.lifecorp-departure-gallery {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.lifecorp-departure-gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 20%, rgba(110, 185, 43, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(240, 140, 2, 0.02) 0%, transparent 50%);
  pointer-events: none;
}
.lifecorp-departure-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.lifecorp-departure-gallery-item {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f0f0f0;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 
    0 4px 16px rgba(15, 23, 42, 0.08),
    0 1px 4px rgba(15, 23, 42, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.lifecorp-departure-gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 16px 40px rgba(15, 23, 42, 0.15),
    0 4px 12px rgba(15, 23, 42, 0.08);
}
.lifecorp-departure-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.lifecorp-departure-gallery-item:hover img {
  transform: scale(1.1);
}
.lifecorp-departure-gallery-overlay {
      position: absolute;
      inset: 0;
  background: linear-gradient(135deg, rgba(110, 185, 43, 0.85) 0%, rgba(110, 185, 43, 0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.lifecorp-departure-gallery-item:hover .lifecorp-departure-gallery-overlay {
  opacity: 1;
}
.lifecorp-departure-gallery-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  transform: scale(0.8) rotate(-10deg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}
.lifecorp-departure-gallery-icon svg {
      width: 100%;
      height: 100%;
}
.lifecorp-departure-gallery-item:hover .lifecorp-departure-gallery-icon {
  transform: scale(1) rotate(0deg);
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.4));
}
@media (max-width: 991px) {
  .lifecorp-departure-gallery {
    padding: 4rem 0;
  }
  .lifecorp-departure-gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
  }
}
@media (max-width: 600px) {
  .lifecorp-departure-gallery {
    padding: 3rem 0;
  }
  .lifecorp-departure-gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
  }
  .lifecorp-departure-gallery-item {
    border-radius: 16px;
    aspect-ratio: 1 / 1;
  }
  .lifecorp-departure-gallery-icon {
    width: 48px;
    height: 48px;
  }
    }

    /* TIMELINE */
    .lifecorp-timeline {
      background: linear-gradient(135deg, #f7f9fc 0%, #eef8e1 100%);
      padding: 4rem 0;
    }
    .lifecorp-timeline-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
      gap: 3rem;
      align-items: center;
    }
    .lifecorp-timeline-steps {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .lifecorp-timeline-step {
      position: relative;
    }
    .lifecorp-timeline-step-card {
      position: relative;
      background: #ffffff;
      border-radius: 24px;
      padding: 1.8rem;
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
      border: 1px solid rgba(226, 232, 240, 0.9);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      gap: 1.5rem;
      align-items: flex-start;
    }
    .lifecorp-timeline-step-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 24px;
      padding: 1px;
      background: linear-gradient(135deg, rgba(110, 185, 43, 0.3), rgba(240, 140, 2, 0.2));
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask-composite: exclude;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .lifecorp-timeline-step-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
    }
    .lifecorp-timeline-step-card:hover::before {
      opacity: 1;
    }
    .lifecorp-timeline-step-number {
      flex-shrink: 0;
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.25rem;
      box-shadow: 0 4px 12px rgba(110, 185, 43, 0.3);
    }
    .lifecorp-timeline-step-content {
      flex: 1;
    }
    .lifecorp-timeline-step-title {
      font-weight: 600;
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
      color: var(--text-main);
      line-height: 1.4;
    }
    .lifecorp-timeline-step-text {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin: 0;
    }
    .lifecorp-timeline-highlight {
      position: relative;
      background: #F08C02;
      border-radius: 28px;
      padding: 2.2rem;
      box-shadow: 0 12px 32px rgba(240, 140, 2, 0.25);
      border: 1px solid rgba(240, 140, 2, 0.3);
      overflow: hidden;
    }
    .lifecorp-timeline-highlight::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 28px;
      padding: 1px;
      background: linear-gradient(135deg, #f5a623, #e67e00);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask-composite: exclude;
    }
    .lifecorp-timeline-highlight::after {
      content: "";
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .lifecorp-timeline-highlight-icon {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      display: block;
      position: relative;
      z-index: 1;
      color: #ffffff;
    }
    .lifecorp-timeline-highlight-title {
      font-weight: 600;
      font-size: 1.25rem;
      margin-bottom: 1rem;
      color: #ffffff;
      position: relative;
      z-index: 1;
    }
    .lifecorp-timeline-highlight-text {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.95);
      line-height: 1.7;
      margin-bottom: 1rem;
      position: relative;
      z-index: 1;
    }
    .lifecorp-timeline-highlight-text:last-child {
      margin-bottom: 0;
    }
    .lifecorp-timeline-highlight-text strong {
      color: #ffffff;
      font-weight: 600;
    }
    .lifecorp-timeline-right {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
    .lifecorp-timeline-video {
      position: relative;
      background: #6eb92b;
      border-radius: 28px;
      padding: 2rem;
      box-shadow: 0 12px 32px rgba(110, 185, 43, 0.25);
      border: 1px solid rgba(110, 185, 43, 0.3);
      overflow: hidden;
    }
    .lifecorp-timeline-video::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 28px;
      padding: 1px;
      background: linear-gradient(135deg, #7dc832, #5a9e2a);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask-composite: exclude;
    }
    .lifecorp-timeline-video::after {
      content: "";
      position: absolute;
      bottom: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .lifecorp-timeline-video-title {
      font-weight: 600;
      font-size: 1.1rem;
      margin-bottom: 1.25rem;
      color: #ffffff;
      line-height: 1.4;
      position: relative;
      z-index: 1;
    }
    .lifecorp-timeline-video-wrapper {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%; /* 16:9 aspect ratio */
      height: 0;
      overflow: hidden;
      border-radius: 20px;
      background: #000;
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
      z-index: 1;
    }
    .lifecorp-timeline-video-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }
    @media (max-width: 991px) {
      .lifecorp-timeline-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.5rem;
      }
      .lifecorp-timeline-step-card {
        padding: 1.5rem;
        gap: 1.25rem;
      }
      .lifecorp-timeline-step-number {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
      }
      .lifecorp-timeline-highlight {
        padding: 1.8rem;
      }
      .lifecorp-timeline-right {
        gap: 1.5rem;
      }
      .lifecorp-timeline-video {
        padding: 1.5rem;
      }
    }
    @media (max-width: 600px) {
      .lifecorp-timeline {
        padding: 3rem 0;
      }
      .lifecorp-timeline-step-card {
        flex-direction: column;
        padding: 1.4rem;
        gap: 1rem;
      }
      .lifecorp-timeline-step-number {
        width: 44px;
        height: 44px;
        font-size: 1rem;
      }
      .lifecorp-timeline-step-title {
        font-size: 1rem;
      }
      .lifecorp-timeline-step-text {
      font-size: 0.9rem;
      }
      .lifecorp-timeline-highlight {
        padding: 1.5rem;
      }
      .lifecorp-timeline-highlight-icon {
        font-size: 2rem;
      }
      .lifecorp-timeline-highlight-title {
        font-size: 1.1rem;
      }
      .lifecorp-timeline-highlight-text {
        font-size: 0.9rem;
      }
      .lifecorp-timeline-right {
        gap: 1.25rem;
      }
      .lifecorp-timeline-video {
        padding: 1.25rem;
      }
      .lifecorp-timeline-video-title {
        font-size: 1rem;
        margin-bottom: 1rem;
      }
    }

    /* HANOILINK ADVANTAGES */
    #lifecorp-hanoilink {
      background: #ffffff;
      padding: 4rem 0;
      position: relative;
      overflow: hidden;
    }
    #lifecorp-hanoilink::before {
      content: "";
      position: absolute;
      left: -100px;
      top: 50%;
      transform: translateY(-50%);
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(240, 140, 2, 0.1) 0%, transparent 70%);
      pointer-events: none;
    }
    #lifecorp-hanoilink::after {
      content: "✦";
      position: absolute;
      left: 20px;
      top: 30%;
      font-size: 3rem;
      color: rgba(240, 140, 2, 0.15);
      pointer-events: none;
      transform: rotate(-15deg);
    }
    .lifecorp-advantages-content {
      position: relative;
    }
    .lifecorp-advantages-content::before {
      content: "✦";
      position: absolute;
      left: -40px;
      top: 10%;
      font-size: 2.5rem;
      color: rgba(240, 140, 2, 0.12);
      pointer-events: none;
      transform: rotate(20deg);
    }
    .lifecorp-advantages-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 3.5rem;
      align-items: start;
    }
    .lifecorp-advantages-visual {
      position: sticky;
      top: 100px;
    }
    .lifecorp-adv-gallery-wrapper {
      position: relative;
    }
    .lifecorp-adv-gallery-grid {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: center;
    }
    .lifecorp-adv-gallery-main {
      position: relative;
      width: 56%;
    }
    .lifecorp-adv-gallery-sub {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 1rem;
      width: 100%;
      max-width: 900px;
    }
    .lifecorp-adv-gallery-stars {
      position: absolute;
      top: -25px;
      left: -35px;
      z-index: 2;
      pointer-events: none;
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }
    .lifecorp-adv-gallery-star {
      font-size: 2rem;
      color: #F08C02;
      display: block;
      opacity: 0.8;
      filter: drop-shadow(0 2px 4px rgba(240, 140, 2, 0.3));
    }
    .lifecorp-adv-gallery-main img,
    .lifecorp-adv-gallery-item img {
      width: 100%;
      display: block;
      border-radius: 24px;
      border: 6px solid #ffffff;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      background: #ffffff;
    }
    .lifecorp-adv-gallery-main img {
      aspect-ratio: 16/9;
      object-fit: cover;
    }
    .lifecorp-adv-gallery-item {
      position: relative;
    }
    .lifecorp-adv-gallery-item-large img {
      aspect-ratio: 4/3;
      object-fit: cover;
    }
    .lifecorp-adv-gallery-item-small img {
      height: auto;
      aspect-ratio: auto;
    }
    .lifecorp-advantages-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .lifecorp-adv-certification {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background:#fcc9aa;
      color: #131313;
      padding: 0.65rem 1.3rem;
      border-radius: 50px;
      font-size: 0.88rem;
      font-weight: 600;
      width: fit-content;
      margin-bottom: 0.25rem;
    }
.lifecorp-adv-cert-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
    }
.lifecorp-adv-cert-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
    .lifecorp-adv-intro {
  margin-top: 0.25rem;
    }
    .lifecorp-adv-intro-title {
      font-size: 2.25rem;
      font-weight: 700;
      line-height: 1.2;
      margin: 0;
    }
    .lifecorp-adv-intro-brand {
      color: var(--primary);
      position: relative;
      display: inline-block;
    }
.lifecorp-adv-intro-brand {
  color: #f05a25;
  display: inline-flex;
  gap: 0.15rem;
}
    .lifecorp-adv-intro-brand::after {
      content: "";
      position: absolute;
      bottom: 4px;
      left: 0;
      right: 0;
      height: 6px;
      background: linear-gradient(90deg, var(--secondary), #ffa500);
      border-radius: 3px;
      z-index: -1;
    }
.lifecorp-adv-intro-brand-hanoi{
  color: #4d7b3a;
}
.lifecorp-adv-intro-brand-link {
  color: #f05a25;
}
    .lifecorp-adv-description {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.75;
    }
    .lifecorp-adv-description p {
      margin-bottom: 0.85rem;
    }
    .lifecorp-adv-description p:last-child {
      margin-bottom: 0;
    }
    .lifecorp-adv-features {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1.25rem;
      margin-top: 2.5rem;
    }
    .lifecorp-adv-feature-item {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      padding: 1.25rem;
      background: linear-gradient(135deg, rgba(110, 185, 43, 0.05), rgba(240, 140, 2, 0.03));
      border-radius: 18px;
      box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
      border: 1px solid rgba(110, 185, 43, 0.15);
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
      text-align: center;
    }
    .lifecorp-adv-feature-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
      border-color: rgba(110, 185, 43, 0.3);
    }
    .lifecorp-adv-feature-icon {
      font-size: 2.5rem;
      line-height: 1;
      margin: 0 auto;
    }
    .lifecorp-adv-feature-content {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .lifecorp-adv-feature-content strong {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-main);
      display: block;
      line-height: 1.3;
    }
    .lifecorp-adv-feature-content span {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.5;
    }
    .lifecorp-adv-cta {
      display: flex;
      gap: 1rem;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 2.5rem;
    }
    .lifecorp-btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: linear-gradient(135deg, var(--secondary), #ffa500);
      color: #ffffff;
      padding: 0.9rem 1.8rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      box-shadow: 0 4px 16px rgba(240, 140, 2, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: none;
      cursor: pointer;
    }
    .lifecorp-btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(240, 140, 2, 0.4);
    }
    .lifecorp-btn-video {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: transparent;
      color: var(--text-main);
      padding: 0.9rem 1.5rem;
      border-radius: 50px;
      font-weight: 500;
      font-size: 0.95rem;
      border: 2px solid rgba(226, 232, 240, 0.9);
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .lifecorp-btn-video:hover {
      border-color: var(--primary);
      color: var(--primary);
      background: rgba(110, 185, 43, 0.05);
    }
    .lifecorp-btn-video-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--secondary);
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      flex-shrink: 0;
    }
.lifecorp-video-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 2000;
}
.lifecorp-video-modal.is-active {
  display: flex;
}
body.video-modal-open {
      overflow: hidden;
    }
.lifecorp-video-modal-backdrop {
  position: absolute;
  inset: 0;
}
.lifecorp-video-modal-container {
  position: relative;
  width: min(900px, 100%);
  background: #ffffff;
  border-radius: 24px;
  padding: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  z-index: 1;
}
.lifecorp-video-modal-close {
      position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: #0f172a;
}
.lifecorp-video-modal-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 16px;
  overflow: hidden;
}
.lifecorp-video-modal-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 600px) {
  .lifecorp-video-modal-container {
    padding: 0.75rem;
    border-radius: 20px;
  }
  .lifecorp-video-modal-close {
    font-size: 1.4rem;
  }
    }

    /* GALLERY & TESTIMONIAL */
    .lifecorp-gallery {
      background: var(--bg-light);
    }
    .lifecorp-gallery {
      background: var(--bg-light);
      padding: 0;
    }
    .lifecorp-gallery-header {
      padding: 2.5rem 0 0;
    }
    .lifecorp-gallery-grid {
      width: 100vw;
      margin-left: calc(50% - 50vw);
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
      padding-bottom: 3rem;
    }
    .lifecorp-gallery-album {
      display: flex;
      flex-direction: column;
      gap: 1.75rem;
    }
    .lifecorp-gallery-strip {
      position: relative;
      overflow: hidden;
      border-radius: 0;
    }
    .lifecorp-gallery-strip::before,
    .lifecorp-gallery-strip::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 80px;
      z-index: 2;
      pointer-events: none;
    }
    .lifecorp-gallery-strip::before {
      left: 0;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
    }
    .lifecorp-gallery-strip::after {
      right: 0;
      background: linear-gradient(-90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
    }
    .lifecorp-gallery-strip-track {
      display: flex;
      gap: 1.5rem;
      width: max-content;
      animation: gallery-scroll-left 250s linear infinite;
    }
    .lifecorp-gallery-strip-bottom .lifecorp-gallery-strip-track {
      animation: gallery-scroll-right 260s linear infinite;
    }
    .lifecorp-gallery-strip-track:hover {
      animation-play-state: paused;
    }
    .lifecorp-gallery-strip-item {
      position: relative;
    }
    .lifecorp-gallery-strip-item a {
      display: block;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
    .lifecorp-gallery-strip-item img {
      width: clamp(280px, 24vw, 420px);
      height: clamp(220px, 15vw, 320px);
      object-fit: cover;
      border-radius: 16px;
      display: block;
      transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease, filter 0.5s ease;
      background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
      opacity: 1;
      min-height: clamp(220px, 15vw, 320px);
      position: relative;
    }
    .lifecorp-gallery-strip-item img:not(.loaded) {
      opacity: 0.8;
      filter: blur(1px);
    }
    .lifecorp-gallery-strip-item img.loaded {
      opacity: 1;
      filter: blur(0);
    }
    /* Skeleton loading effect */
    .lifecorp-gallery-strip-item:has(img:not(.loaded))::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
      animation: skeleton-loading 1.5s infinite;
      border-radius: 16px;
      z-index: 1;
      pointer-events: none;
    }
    @keyframes skeleton-loading {
      0% {
        transform: translateX(-100%);
      }
      100% {
        transform: translateX(100%);
      }
    }
    @media (max-width: 768px) {
      .lifecorp-gallery-strip {
        padding: 1rem 0;
        position: relative;
      }
      .lifecorp-gallery-strip-track {
        animation: gallery-scroll-left 120s linear infinite;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }
      .lifecorp-gallery-strip-bottom .lifecorp-gallery-strip-track {
        animation: gallery-scroll-right 130s linear infinite;
      }
      .lifecorp-gallery-strip-track::-webkit-scrollbar {
        display: none;
      }
      .lifecorp-gallery-strip-item {
        scroll-snap-align: center;
      }
      .lifecorp-gallery-strip-item img {
        width: 70vw;
        height: 200px;
      }
      /* Tối ưu cho mobile - giảm blur khi load */
      .lifecorp-gallery-strip-item img:not(.loaded) {
        opacity: 0.7;
        filter: blur(1px);
      }
    }
    @keyframes gallery-scroll-left {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }
    @keyframes gallery-scroll-right {
      0% {
        transform: translateX(-50%);
      }
      100% {
        transform: translateX(0);
      }
    }

    /* JOURNEY VIDEO SECTION */
    .lifecorp-journey-video {
      padding: 3rem 0;
      background: #ffffff;
    }
    .lifecorp-journey-inner {
      max-width: 840px;
      margin: 0 auto;
    }
    .lifecorp-journey-video-frame {
      margin-top: 1.3rem;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      background: #000;
      position: relative;
      padding-top: 56.25%;
    }
    .lifecorp-journey-video-frame iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* FAQ & FORM */
    .lifecorp-faq-form-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
      gap: 2.5rem;
      align-items: flex-start;
    }
    .lifecorp-faq-item {
      border-radius: var(--radius-md);
      border: 1px solid var(--border-soft);
      padding: 0.8rem 0.95rem;
      margin-bottom: 0.7rem;
      background: #ffffff;
      box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
    }
    .lifecorp-faq-q {
      font-size: 0.94rem;
      font-weight: 600;
      margin-bottom: 0.25rem;
    }
    .lifecorp-faq-a {
      font-size: 0.88rem;
      color: var(--text-muted);
    }
    .lifecorp-form-card {
      background: #0f172a;
      color: #e5e7eb;
      border-radius: var(--radius-lg);
      padding: 1.4rem 1.5rem;
      box-shadow: var(--shadow-soft);
    }
    .lifecorp-form-card h3 {
      font-size: 1.1rem;
      margin-bottom: 0.25rem;
      color: #f9fafb;
    }
    .lifecorp-form-card p {
      font-size: 0.88rem;
      color: #cbd5f5;
      margin-bottom: 0.9rem;
    }
    .lifecorp-form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.75rem;
    }
    .lifecorp-form-grid-full {
      grid-column: 1 / -1;
    }
    .lifecorp-field {
      display: flex;
      flex-direction: column;
      gap: 0.22rem;
    }
    .lifecorp-field label {
      font-size: 0.78rem;
      font-weight: 500;
      color: #e5e7eb;
    }
    .lifecorp-field input,
    .lifecorp-field select,
    .lifecorp-field textarea {
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.55);
      background: rgba(15, 23, 42, 0.8);
      color: #f9fafb;
      padding: 0.6rem 0.85rem;
      font-size: 0.9rem;
      outline: none;
      font-family: inherit;
    }
    .lifecorp-field textarea {
      border-radius: 14px;
      min-height: 125px;
      resize: vertical;
    }
    .lifecorp-field input::placeholder,
    .lifecorp-field textarea::placeholder {
      color: #9ca3af;
    }
    .lifecorp-form-small {
      font-size: 0.75rem;
      color: #9ca3af;
      margin-top: 0.4rem;
    }
    .lifecorp-form-contact-extra {
      margin-top: 0.7rem;
      font-size: 0.82rem;
      color: #cbd5f5;
    }
    .lifecorp-form-contact-extra strong {
      color: #facc15;
    }

    /* FORM GIFT SECTION */
    .lifecorp-form-gift {
      margin-top: 2rem;
      padding: 2rem 2.5rem;
      background: #ffffff;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(110, 185, 43, 0.2);
      display: flex;
      gap: 1.5rem;
      align-items: center;
      box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(110, 185, 43, 0.1);
      position: relative;
      overflow: hidden;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      transition: all 0.3s ease;
    }
    .lifecorp-form-gift:hover {
      box-shadow: 0 8px 30px rgba(110, 185, 43, 0.15), 0 0 0 1px rgba(110, 185, 43, 0.2);
      transform: translateY(-2px);
    }
    .lifecorp-form-gift::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
      z-index: 1;
    }
    .lifecorp-form-gift::after {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(110, 185, 43, 0.05) 0%, transparent 70%);
      border-radius: 50%;
      z-index: 0;
    }
    .lifecorp-form-gift-icon-wrapper {
      position: relative;
      flex-shrink: 0;
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
    }
    .lifecorp-form-gift-icon {
      font-size: 3rem;
      position: relative;
      z-index: 2;
      animation: gift-bounce 2s ease-in-out infinite;
      filter: drop-shadow(0 4px 8px rgba(240, 140, 2, 0.3));
    }
    .lifecorp-form-gift-icon-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 70px;
      height: 70px;
      background: radial-gradient(circle, rgba(240, 140, 2, 0.2) 0%, transparent 70%);
      border-radius: 50%;
      animation: gift-glow 2s ease-in-out infinite;
    }
    @keyframes gift-bounce {
      0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
      }
      50% {
        transform: translateY(-8px) rotate(8deg) scale(1.05);
      }
    }
    @keyframes gift-glow {
      0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
      }
      50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
      }
    }
    .lifecorp-form-gift-content {
      flex: 1;
      position: relative;
      z-index: 2;
    }
    .lifecorp-form-gift-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      line-height: 1.4;
    }
    .lifecorp-form-gift-title-icon {
      font-size: 1.4rem;
      animation: sparkle 2s ease-in-out infinite;
    }
    @keyframes sparkle {
      0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
      }
      50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.8;
      }
    }
    .lifecorp-form-gift-text {
      font-size: 1rem;
      color: var(--text-main);
      line-height: 1.7;
      margin: 0;
    }
    .lifecorp-form-gift-text strong {
      color: var(--secondary);
      font-weight: 700;
      font-size: 1.05em;
    }
    .lifecorp-form-gift-highlight {
      color: var(--primary);
      font-weight: 600;
      font-style: italic;
    }

    /* Contact Form 7 - Styles without prefix for CF7 compatibility */
    .form-card {
      background: #0f172a;
      color: #e5e7eb;
      border-radius: var(--radius-lg);
      padding: 1.4rem 1.5rem;
      box-shadow: var(--shadow-soft);
    }
    .form-card h3 {
      font-size: 1.1rem;
      margin-bottom: 0.25rem;
      color: #f9fafb;
    }
    .form-card p {
      font-size: 0.88rem;
      color: #cbd5f5;
      margin-bottom: 0.9rem;
    }
    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.75rem;
    }
    .form-grid-full {
      grid-column: 1 / -1;
    }
    .field {
      display: flex;
      flex-direction: column;
      gap: 0.22rem;
    }
    .field label {
      font-size: 0.78rem;
      font-weight: 500;
      color: #e5e7eb;
      order: 0;
      margin-top: 0.25rem;
    }
    .field input.form-control,
    .field select.form-control,
    .field textarea.form-control {
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.55);
      background: rgba(15, 23, 42, 0.8);
      color: #f9fafb;
      padding: 0.6rem 0.85rem;
      font-size: 0.9rem;
      outline: none;
      font-family: inherit;
      width: 100%;
      order: 1;
    }
    .field textarea.form-control {
      border-radius: 14px;
      min-height: 76px;
      resize: vertical;
    }
    .field input.form-control::placeholder,
    .field textarea.form-control::placeholder {
      color: #9ca3af;
    }
    .field input.form-control:focus,
    .field select.form-control:focus,
    .field textarea.form-control:focus {
      border-color: var(--secondary);
      background: rgba(15, 23, 42, 0.95);
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: linear-gradient(135deg, var(--secondary), #ffa500);
      color: #ffffff;
      padding: 0.9rem 1.8rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      box-shadow: 0 4px 16px rgba(240, 140, 2, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: none;
      cursor: pointer;
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(240, 140, 2, 0.4);
    }
    .form-contact-extra {
      margin-top: 0.7rem;
      font-size: 0.82rem;
      color: #cbd5f5;
    }
    .form-contact-extra strong {
      color: #facc15;
    }
    /* CF7 specific styles */
    .wpcf7-form .form-card {
      background: #0f172a;
      color: #e5e7eb;
    }
    .wpcf7-form-control {
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.55);
      background: rgba(15, 23, 42, 0.8);
      color: #f9fafb;
      padding: 0.6rem 0.85rem;
      font-size: 0.9rem;
      outline: none;
      font-family: inherit;
      width: 100%;
    }
    .wpcf7-form-control.wpcf7-textarea {
      border-radius: 14px;
      min-height: 125px;
      resize: vertical;
    }
    .wpcf7-form-control::placeholder {
      color: #9ca3af;
    }
    .wpcf7-form-control:focus {
      border-color: var(--secondary);
      background: rgba(15, 23, 42, 0.95);
    }
    .wpcf7-submit.btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: linear-gradient(135deg, var(--secondary), #ffa500);
      color: #ffffff;
      padding: 0.9rem 1.8rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.95rem;
      box-shadow: 0 4px 16px rgba(240, 140, 2, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: none;
      cursor: pointer;
    }
    .wpcf7-submit.btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(240, 140, 2, 0.4);
    }
    @media (max-width: 768px) {
      .form-grid {
        grid-template-columns: 1fr;
      }
      .form-grid-full {
        grid-column: 1;
      }
      .btn-primary {
        width: 100%;
        justify-content: center;
      }
    }

/* SITE FOOTER */
.site-footer {
  background: linear-gradient(135deg, #3b6a2c, #285025);
  color: #eef9ec;
  padding: 4.5rem 0 2.5rem;
}
.site-footer a {
  color: #f5fbf4;
  text-decoration: none;
}
.site-footer a:hover {
  color: #fcd34d;
}
.lifecorp-footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}
.lifecorp-footer-logo img {
  max-width: 220px;
  width: 100%;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.25));
}
.lifecorp-footer-brand p {
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}
.lifecorp-footer-contact h4,
.lifecorp-footer-japan h4,
.lifecorp-footer-social h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.lifecorp-footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.92rem;
}
.lifecorp-footer-contact-list li {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
.lifecorp-footer-japan p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.6rem;
}
.lifecorp-footer-social {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.lifecorp-footer-social-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.lifecorp-footer-social-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 150px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lifecorp-footer-social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}
.lifecorp-footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  padding: 8px;
}
.lifecorp-footer-social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.lifecorp-footer-social-card h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}
.lifecorp-footer-social-card a,
.lifecorp-footer-social-card span {
      font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}
.lifecorp-footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 991px) {
  .site-footer {
    padding: 4rem 0 2.3rem;
  }
  .lifecorp-footer-top {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 600px) {
  .site-footer {
    padding: 3.5rem 0 2rem;
  }
  .lifecorp-footer-social-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .lifecorp-job-card,.lifecorp-life-media-gallery {
    padding: 1rem;
  }
    }

    /* RESPONSIVE */
    @media (max-width: 991px) {
      .lifecorp-navbar-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem;
        gap: 0;
        box-shadow: 0 4px 20px rgba(15, 23, 42, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
      }
      .lifecorp-navbar-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
      }
      .lifecorp-navbar-menu-item {
        border-bottom: 1px solid rgba(226, 232, 240, 0.5);
      }
      .lifecorp-navbar-menu-item:last-child {
        border-bottom: none;
      }
      .lifecorp-navbar-menu-link {
        padding: 1rem 0;
      }
      .lifecorp-navbar-cta {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
      }
      .lifecorp-navbar-toggle {
        display: block;
      }
      .lifecorp-why-grid,
      .lifecorp-life-grid,
      .lifecorp-life-grid-new,
      .lifecorp-job-summary-grid,
      .lifecorp-job-grid,
      .lifecorp-timeline-grid,
      .lifecorp-advantages-grid,
      .lifecorp-faq-form-grid {
        grid-template-columns: minmax(0, 1fr);
        display: flex;
        flex-direction: column;
      }
      .lifecorp-faq-form-grid > div:first-child {
        order: 2;
        margin-top: 2rem;
      }
      .lifecorp-faq-form-grid > div:last-child {
        order: 1;
      }
      .lifecorp-form-gift {
        padding: 1.5rem 1.75rem;
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
      }
      .lifecorp-form-gift-icon-wrapper {
        width: 70px;
        height: 70px;
        margin: 0 auto;
      }
      .lifecorp-form-gift-icon {
        font-size: 2.5rem;
      }
      .lifecorp-form-gift-title {
        justify-content: center;
        font-size: 1.1rem;
      }
      .lifecorp-form-gift-text {
        font-size: 0.95rem;
      }
      .lifecorp-adv-list {
        grid-template-columns: minmax(0, 1fr);
      }
      .lifecorp-advantages-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.5rem;
      }
      .lifecorp-advantages-visual {
        position: static;
        order: -1;
      }
      .lifecorp-adv-gallery-grid {
        gap: 1.5rem;
      }
      .lifecorp-adv-gallery-main {
        width: 100%;
      }
      .lifecorp-adv-gallery-sub {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
      }
      .lifecorp-adv-gallery-stars {
        top: -15px;
        left: -20px;
        gap: 1.5rem;
      }
      .lifecorp-adv-gallery-star {
        font-size: 1.5rem;
      }
      .lifecorp-adv-gallery-main img,
      .lifecorp-adv-gallery-item img {
        border-width: 6px;
        border-radius: 20px;
      }
      .lifecorp-adv-gallery-item-small img {
        aspect-ratio: auto;
      }
      .lifecorp-adv-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 2rem;
      }
      .lifecorp-adv-cta {
        margin-top: 2rem;
      }
      .lifecorp-adv-intro-title {
        font-size: 2rem;
      }
      .lifecorp-adv-cta {
        flex-direction: column;
        align-items: stretch;
      }
      .lifecorp-btn-primary,
      .lifecorp-btn-video {
        width: 100%;
        justify-content: center;
      }
      .lifecorp-life-chairman-card {
        padding: 1.5rem;
      }
      .lifecorp-life-chairman-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 2rem;
      }
      .lifecorp-life-chairman-photo-wrapper {
        order: -1;
        max-width: 100%;
        margin: 0 auto;
      }
      .lifecorp-life-media-gallery {
        padding: 1.5rem;
      }
      .lifecorp-media-video-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 1rem;
      }
      .lifecorp-hero {
        padding-top: 3rem;
        padding-bottom: 3.5rem;
      }
      .lifecorp-hero-inner {
        padding-top: 0;
      }
    }
    @media (max-width: 767px) {
      .lifecorp-job-card,.lifecorp-life-media-gallery {
        padding: 1rem;
      }
      .lifecorp-life-carousel .lifecorp-life-slide {
        border-radius: 12px;
      }
      .lifecorp-hero-title {
        font-size: 2.2rem;
      }
      .lifecorp-clover-icon {
        width: 24px;
        height: 24px;
      }
      .lifecorp-life-corporation-title {
        gap: 0.4rem;
      }
      .lifecorp-hero-subtitle {
        font-size: 1.1rem;
      }
      .lifecorp-hero {
        padding-top: 2.5rem;
        padding-bottom: 3rem;
      }
      .lifecorp-section-title {
        font-size: 1.8rem;
        padding: 0 1.2rem;
      }
      .lifecorp-section-title::before,
      .lifecorp-section-title::after {
        width: 18px;
        height: 18px;
      }
      .lifecorp-eyebrow {
        font-size: 0.75rem;
        padding: 0.35rem 1rem;
      }
      .lifecorp-eyebrow::before,
      .lifecorp-eyebrow::after {
        width: 16px;
        height: 16px;
      }
      .lifecorp-why-list {
        grid-template-columns: minmax(0, 1fr);
      }
      .lifecorp-why-card {
        padding: 1rem;
      }
      .lifecorp-why-card h3 {
        font-size: 1.1rem;
      }
      .lifecorp-why-image {
        min-height: 300px;
        margin-top: 1.5rem;
      }
      .lifecorp-partner-card {
        padding: 1.5rem 1.5rem;
      }
      .lifecorp-partner-stats {
        grid-template-columns: minmax(0, 1fr);
        gap: 0.75rem;
      }
      .lifecorp-advantages-grid {
        gap: 2rem;
      }
      .lifecorp-adv-intro-title {
        font-size: 1.75rem;
      }
      .lifecorp-adv-intro-brand::after {
        height: 4px;
        bottom: 2px;
      }
      .lifecorp-adv-description {
        font-size: 0.9rem;
      }
      .lifecorp-adv-feature-item {
        padding: 1rem;
        gap: 0.85rem;
      }
      .lifecorp-adv-feature-icon {
        font-size: 1.75rem;
      }
      .lifecorp-adv-feature-content strong {
        font-size: 0.95rem;
      }
      .lifecorp-adv-features {
        grid-template-columns: minmax(0, 1fr);
        gap: 1rem;
        margin-top: 1.5rem;
      }
      .lifecorp-adv-feature-item {
        padding: 1rem;
      }
      .lifecorp-adv-feature-icon {
        font-size: 2rem;
      }
      .lifecorp-adv-feature-content strong {
        font-size: 0.9rem;
      }
      .lifecorp-adv-feature-content span {
        font-size: 0.8rem;
      }
      .lifecorp-adv-cta {
        margin-top: 1.5rem;
        flex-direction: column;
      }
      .lifecorp-adv-certification {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
      }
      .lifecorp-btn-primary,
      .lifecorp-btn-video {
        font-size: 0.9rem;
        padding: 0.85rem 1.5rem;
      }
      .lifecorp-btn-video-icon {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
      }
      #lifecorp-hanoilink::after,
      .lifecorp-advantages-content::before {
        display: none;
      }
      .lifecorp-partner-stats {
        grid-template-columns: minmax(0, 1fr);
      }
      .lifecorp-photo-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .lifecorp-form-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      section {
        padding: 2.5rem 0;
      }
      .lifecorp-container {
        padding: 0 1.25rem;
      }
      .lifecorp-navbar-inner {
        padding: 0.9rem 1.25rem;
      }
      .lifecorp-navbar-logo img {
        height: 45px;
      }
      .lifecorp-life-stats {
        grid-template-columns: minmax(0, 1fr);
        gap: 2rem;
      }
      .lifecorp-life-stat-visual {
        height: 240px;
      }
      .lifecorp-life-stat-number-box {
        bottom: 1rem;
        left: 1rem;
        padding: 0.75rem 1.25rem;
      }
      .lifecorp-life-stat-number-main {
        font-size: 2.2rem;
      }
      .lifecorp-life-stat-content {
        padding: 1.5rem 1.5rem 2rem;
      }
      .lifecorp-life-stat-title {
        font-size: 1.1rem;
      }
      .lifecorp-life-stat-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
      }
      .lifecorp-media-video-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 1rem;
      }
      .lifecorp-life-swiper .lifecorp-swiper-slide {
        border-radius: 14px;
      }
    }
    @media (max-width: 480px) {
      .lifecorp-hero-actions {
        flex-direction: column;
        align-items: stretch;
      }
      .lifecorp-btn {
        width: 100%;
        justify-content: center;
      }
      .lifecorp-hero-title {
        font-size: 1.9rem;
      }
      .lifecorp-clover-icon {
        width: 20px;
        height: 20px;
      }
      .lifecorp-life-corporation-title {
        gap: 0.3rem;
      }
      .lifecorp-section-title {
        font-size: 1.5rem;
        padding: 0 1.5rem;
      }
      .lifecorp-section-title::before,
      .lifecorp-section-title::after {
        width: 18px;
        height: 18px;
      }
      .lifecorp-eyebrow {
        font-size: 0.75rem;
        padding: 0.35rem 1rem;
      }
      .lifecorp-eyebrow::before,
      .lifecorp-eyebrow::after {
        width: 16px;
        height: 16px;
      }
      .lifecorp-section-subtitle {
        font-size: 1rem;
      }
      .lifecorp-container {
        padding: 0 1rem;
      }
    }

/* FLOATING BUTTONS */
.lifecorp-floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lifecorp-floating-btn {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  padding: 0;
  text-decoration: none;
  background: transparent;
}
.lifecorp-floating-btn:hover {
  transform: translateY(-4px) scale(1.05);
}
.lifecorp-floating-btn:active {
  transform: translateY(-2px) scale(1.02);
}
.lifecorp-floating-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.lifecorp-floating-btn-top {
  display: flex;
  border-radius: 50%;
  background: linear-gradient(135deg, #f08c02 0%, #d97706 100%);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.2), 0 2px 8px rgba(15, 23, 42, 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.lifecorp-floating-btn-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lifecorp-floating-btn-top:hover {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.3), 0 4px 12px rgba(15, 23, 42, 0.15);
}
.lifecorp-floating-btn-top img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
@media (max-width: 768px) {
  .lifecorp-floating-buttons {
    right: 15px;
    bottom: 15px;
  }
  .lifecorp-floating-btn {
    width: 50px;
    height: 50px;
  }
  .lifecorp-floating-btn-top img {
    width: 20px;
    height: 20px;
      }
    }

/* HANOILINK FOOTER - New Footer from hanoilink/index.html */
.hnlen-footer {
    padding: 40px 48px 24px;
    background: #4d7b3a;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    color: #FAFAFA;
    max-width: 100%;
    margin: 0 auto;
}

.hnlen-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #6CA057;
    flex-wrap: wrap;
}

.hnlen-footer-logo img {
    width: 312px;
    height: 84px;
    max-width: 100%;
    height: auto;
}

.hnlen-footer-nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hnlen-footer-nav a {
    color: #FAFAFA;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none;
    padding-right: 12px;
    border-right: 1px solid #6CA057;
}

.hnlen-footer-nav a:last-child {
    border-right: none;
    padding-right: 0;
}

.hnlen-footer-nav a:hover {
    text-decoration: underline;
}

.hnlen-footer-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #6CA057;
    flex-wrap: wrap;
}

.hnlen-footer-column {
    flex: 1 1 0;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hnlen-footer-column h3 {
    color: white;
    font-size: 20px;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.hnlen-footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background: white;
}

.hnlen-footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.hnlen-footer-column ul li {
    color: #FAFAFA;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 20px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.hnlen-footer-column ul li a {
    color: #FAFAFA;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.hnlen-footer-column ul li a:hover {
    color: #98DB7C;
    text-decoration: underline;
}

.hnlen-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    object-fit: contain;
}

.hnlen-footer-social {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #6CA057;
    flex-wrap: wrap;
}

.hnlen-social-group {
    flex: 1 1 0;
    min-width: 150px;
}

.hnlen-social-group h3 {
    color: white;
    font-size: 20px;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hnlen-social-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.hnlen-social-group ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 12px;
    border-left: 1px solid white;
    margin-left: 10px;
}

.hnlen-social-group ul li {
    color: #FAFAFA;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 20px;
}

.hnlen-social-group a {
    color: #fff;
    text-decoration: none;
}

.hnlen-social-group a:hover {
    text-decoration: underline;
    color: #98DB7C;
}

.hnlen-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
}

.hnlen-footer-certificates {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: nowrap;
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
}

.hnlen-certificate {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex: 0 0 auto;
    min-width: 0;
}

.hnlen-certificate span {
    white-space: normal;
    word-wrap: break-word;
    line-height: 20px;
    max-width: 200px;
    color: #FAFAFA;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.hnlen-footer-certificates > span {
    flex: 0 0 auto;
    white-space: normal;
    word-wrap: break-word;
    min-width: 0;
    max-width: 250px;
    line-height: 20px;
    color: #FAFAFA;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.hnlen-certificate img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.hnlen-footer-legal {
    text-align: right;
    color: #FAFAFA;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 20px;
    max-width: 550px;
    flex-shrink: 0;
}

.hnlen-footer-legal p {
    margin: 0;
}

/* Responsive for Footer */
@media (max-width: 1024px) {
    .hnlen-footer {
        padding: 30px 24px 20px;
    }
    
    .hnlen-footer-content {
        flex-wrap: wrap;
    }
    
    .hnlen-footer-column {
        flex: 1 1 calc(50% - 10px);
        min-width: 200px;
    }
    
    .hnlen-footer-social {
        flex-wrap: wrap;
    }
    
    .hnlen-social-group {
        flex: 1 1 calc(50% - 10px);
        min-width: 180px;
    }
    
    .hnlen-footer-bottom {
        flex-wrap: wrap;
    }
    
    .hnlen-footer-certificates {
        flex-wrap: wrap;
        flex: 1 1 100%;
    }
    
    .hnlen-footer-legal {
        flex: 1 1 100%;
        text-align: left;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hnlen-footer {
        padding: 30px 24px 20px;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }
    
    .hnlen-footer-top {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .hnlen-footer-logo img {
        width: 250px;
        height: auto;
    }
    
    .hnlen-footer-nav {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hnlen-footer-nav a {
        border-right: none;
        border-bottom: 1px solid #6CA057;
        padding-right: 0;
        padding-bottom: 8px;
    }
    
    .hnlen-footer-nav a:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .hnlen-footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .hnlen-footer-column {
        flex: 1 1 100%;
        min-width: 100%;
    }
    
    .hnlen-footer-social {
        flex-direction: column;
        gap: 30px;
    }
    
    .hnlen-social-group {
        flex: 1 1 100%;
        min-width: 100%;
    }
    
    .hnlen-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .hnlen-footer-certificates {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .hnlen-certificate span,
    .hnlen-footer-certificates > span {
        max-width: 100%;
    }
    
    .hnlen-footer-legal {
        text-align: left;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hnlen-footer {
        padding: 30px 16px 20px;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }
    
    .hnlen-footer-logo img {
        width: 200px;
    }
    
    .hnlen-footer-column h3 {
        font-size: 18px;
    }
    
    .hnlen-footer-column ul li,
    .hnlen-social-group ul li {
        font-size: 13px;
    }
    
    .hnlen-certificate span,
    .hnlen-footer-certificates > span,
    .hnlen-footer-legal {
        font-size: 12px;
    }
}
  
