.companyPage-hero {
      padding: 80px 0;
      background: #fff;           /* white theme background */
      color: #000;                /* black text base */
      position: relative;
      overflow: hidden;
    }

    /* decorative blobs with new color palette: using red and black low opacity */
    .companyPage-hero::before {
      content: '';
      position: absolute;
      top: 0px;
      right: -80px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255, 0, 0, 0.15), transparent 65%);
      border-radius: 50%;
      pointer-events: none;
    }

    .companyPage-hero::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -60px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255, 0, 0, 0.08), transparent 65%);
      border-radius: 50%;
      pointer-events: none;
    }

    .companyPage-hero-inner {
      /* max-width: 1100px; */
      /* margin: 0 auto; */
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .companyPage-hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .13em;
      text-transform: uppercase;
      color: #ff0000;            /* pure red for tag accent */
      margin-bottom: 10px;
    }

    .companyPage-hero-tag::before {
      content: '';
      width: 18px;
      height: 2px;
      background: #ff0000;
      border-radius: 2px;
    }

    .companyPage-hero-h1 {
      font-weight: 800;
      color: #000;
      line-height: 1.1;
      margin-bottom: 20px;
      font-size: 48px;
    }

    .companyPage-hero p {
      color: rgb(0 0 0 / 70%);
      line-height: 1.75;
      margin-bottom: 28px;
    }

    .companyPage-hero-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    /* stats cards white theme: light background and subtle borders using black/red tints */
    .companyPage-hs {
      background: rgb(0 0 0 / 5%);     /* rgba(0,0,0,0.05) */
      border: 1px solid rgb(0 0 0 / 15%); /* rgba(0,0,0,0.15) */
      border-radius: 12px;
      padding: 16px;
      transition: all 0.2s ease;
    }

    .companyPage-hs-n {
      font-weight: 800;
      font-size: 30px;
      letter-spacing: -.04em;
      line-height: 1;
    }

    /* specific inline colors for stats numbers: gold and red and green replacements from original */
    /* original used gold, accent, #4ade80 — we replace with red shades and black */
    .companyPage-hs-n[data-stat="gold"] {
      color: #ff0000;   /* pure red instead of gold */
    }
    .companyPage-hs-n[data-stat="accent"] {
      color: #ff0000;   /* accent red */
    }
    .companyPage-hs-n[data-stat="green"] {
      color: #ff0000;   /* originally #4ade80, now use red to keep red/white theme consistency, but spec says #fff, #000, #ff0000, etc, using red stands out. but to respect the data: we keep style but number values unchanged */
    }
    /* but we also want flexible: we set for all hs-n default and override specific */
    .companyPage-hs-n {
      color: #000;
    }
    /* we will manually apply style attribute or class: best add inline? no, keep selector for red numbers */
    .companyPage-hs-n.red-stat {
      color: #ff0000;
    }

    .companyPage-hs-l {
      font-size: 14px;
      color: rgb(0 0 0 / 55%);
      margin-top: 4px;
    }

    /* buttons styling — white theme with red accents */
    .newHomePage-btn {
        display: inline-block;
        text-decoration: none;
        padding: 12px 24px;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        border-radius: 8px;
        cursor: pointer;
        border: none;
        transition: all 0.3s ease;
    }

    .newHomePage-btn-primary {
        background: #ff0000;
        color: #fff;
    }

    .newHomePage-btn-primary:hover {
        background: #e00101;
        color: #fff;
    }

    .newHomePage-btn-secondary {
        background: transparent;
        color: #000;
        border: 1px solid rgb(0 0 0 / 15%);
    }

    .newHomePage-btn-secondary:hover {
        color: #000;
        background: rgb(0 0 0 / 5%);
    }

    /* responsive adjustments */
    @media (max-width: 880px) {
      .companyPage-hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }
      .companyPage-hero-stats {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
        .companyPage-hero-h1 {
            font-size: 32px;
        }
    }
    @media (max-width: 520px) {
      .companyPage-hero-stats {
        grid-template-columns: 1fr;
      }
      .companyPage-hero {
        padding: 25px 0 40px;
      }
      .companyPage-hero-inner {
        gap: 30px;
      }
    }

/* ========================================================= */

.companyPage-sec {
      padding: 80px 0;
    }

    /* tag styling (quick reference) */
    .companyPage-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #ff0000;            /* pure red */
      margin-bottom: 16px;
    }

    .companyPage-tag::before {
      content: '';
      width: 18px;
      height: 2px;
      background: #ff0000;
      border-radius: 2px;
      flex-shrink: 0;
    }

    .companyPage-h2 {
      font-weight: 800;
      font-size: clamp(1.9rem, 3.5vw, 2.8rem);
      letter-spacing: -.035em;
      line-height: 1.08;
      margin-bottom: 16px;
      color: #000;
    }

    /* filter bar */
    .companyPage-filter-bar {
      display: flex;
      gap: 8px;
      overflow: auto;
      margin-bottom: 36px;
    }

    .companyPage-fb {
      padding: 7px 16px;
      border-radius: 100px;
      white-space: nowrap;
      border: 1.5px solid rgb(0 0 0 / 15%);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all .18s;
      background: transparent;
      color: #ff0000;
    }

    .companyPage-fb:hover,
    .companyPage-fb.on {
      background: #ff0000;
      color: #fff;
      border-color: #ff0000;
    }

    /* featured guide card - white theme with red accents */
    .companyPage-gf {
      background: #fff;
      border-radius: 24px;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      margin-bottom: 60px;
      box-shadow: 0 0 10px rgb(0 0 0 / 8%);
      border: 1px solid rgb(0 0 0 / 8%);
    }

    .companyPage-gf-img {
      /* min-height: 320px; */
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .companyPage-gf-img img {
        width: 100%;
        height: 100%;
    }

    .companyPage-gf-body {
      padding: 44px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: #fff;
    }

    .companyPage-gf-cat {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #ff0000;
      margin-bottom: 12px;
    }

    .companyPage-gf-p {
        color: rgb(0 0 0 / 70%);
    }

    .companyPage-gf-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 16px;
    }

    .companyPage-gf-mt {
      font-size: 14px;
      color: rgb(0 0 0 / 70%);
    }

    /* guide cards grid */
    .companyPage-guides-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-bottom: 52px;
    }

    .companyPage-gc {
      background: #fff;
      border: 1.5px solid rgb(0 0 0 / 12%);
      border-radius: 18px;
      overflow: hidden;
      transition: all .22s;
      cursor: pointer;
      display: flex;
      flex-direction: column;
    }

    .companyPage-gc:hover {
      border-color: transparent;
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
      transform: translateY(-4px);
    }

    .companyPage-gc-img {
        /* height: 140px; */
        display: flex;
        align-items: center;
        justify-content: center;
        /* font-size: 44px; */
        /* position: relative; */
        /* background: #faf7f2; */
    }
    .companyPage-gc-img img {
        width: 100%;
    }

    .companyPage-gc-body {
      padding: 20px 22px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .companyPage-gc-cat {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 7px;
    }

    /* category colors using red/black theme */
    .companyPage-gc-cat.hotel { color: #ff0000; }
    .companyPage-gc-cat.flight { color: #ff0000; }
    .companyPage-gc-cat.car { color: #ff0000; }
    .companyPage-gc-cat.cruise { color: #ff0000; }
    .companyPage-gc-cat.intel { color: #ff0000; }
    .companyPage-gc-cat.review { color: #ff0000; }

    .companyPage-gc-h {
      font-weight: 700;
      font-size: 20px;
      line-height: 1.32;
      letter-spacing: -.01em;
      margin-bottom: 8px;
      color: #000;
    }

    .companyPage-gc-p {
      color: rgb(0 0 0 / 70%);
      font-size: 16px;
      flex: 1;
    }

    .companyPage-gc-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 12px;
      border-top: 1px solid rgb(0 0 0 / 10%);
      margin-top: auto;
    }

    .companyPage-gc-pages {
      font-size: 12px;
      color: rgb(0 0 0 / 55%);
    }

    .companyPage-gc-dl {
      font-size: 14px;
      font-weight: 600;
      color: #ff0000;
      display: flex;
      align-items: center;
      gap: 3px;
      cursor: pointer;
    }

    /* topics grid (quick tutorials) */
    .companyPage-topics-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .companyPage-tc {
      border: 1.5px solid rgb(0 0 0 / 10%);
      border-radius: 12px;
      padding: 22px;
      background: #fff;
      display: flex;
      gap: 14px;
      align-items: flex-start;
      transition: all .2s;
      cursor: pointer;
    }

    .companyPage-tc:hover {
      border-color: #ff0000;
      background: rgba(255, 0, 0, 0.03);
      transform: translateX(4px);
    }

    .companyPage-tc-ico {
      width: 50px;
      height: 50px;
      border-radius: 10px;
      padding: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      background: rgba(255, 0, 0, 0.12);
    }

    .companyPage-tc-ico img {
        width: 100%;
    }

    .companyPage-tc-h {
      font-weight: 700;
      font-size: 18px;
      margin-bottom: 5px;
      letter-spacing: -.01em;
      color: #000;
    }

    .companyPage-tc-p {
      color: rgb(0 0 0 / 70%);
    }

    /* responsiveness */
    @media (max-width: 880px) {
      .companyPage-sec { padding: 60px 0; }
      .companyPage-guides-grid { grid-template-columns: repeat(2, 1fr); }
      .companyPage-gf { grid-template-columns: 1fr; }
      .companyPage-gf-img { min-height: 240px; }
      .companyPage-topics-grid { grid-template-columns: 1fr; }
      .companyPage-gf-body { padding: 20px; }
    }

    @media (max-width: 560px) {
      .companyPage-guides-grid { grid-template-columns: 1fr; }
      .companyPage-filter-bar { gap: 6px; }
      .companyPage-fb { padding: 5px 12px; }
    }

/*  */
/* Newsletter Section */
    .newBlogMain-newsletter {
        background-color: #ff0000;
        padding: 80px 24px;
        text-align: center;
    }

    .newBlogMain-newsletter-content {
        /* max-width: 1000px; */
        /* margin: 0 auto; */
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .newBlogMain-newsletter-text {
        flex: 1;
        padding-right: 48px;
    }

    .newBlogMain-newsletter-title {
        font-size: 32px;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 12px;
    }

    .newBlogMain-newsletter-desc {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.9);
    }

    .newBlogMain-newsletter-form {
        display: flex;
        flex: 1;
        max-width: 650px;
    }

    .newBlogMain-newsletter-input {
        flex: 1;
        padding: 18px 24px !important;
        border: none !important;
        border-radius: 30px 0 0 30px !important;
        font-size: 17px !important;
        outline: none !important;
        color: #111111;
    }

    .newBlogMain-newsletter-button {
        background-color: #ffffff;
        color: #ff0000;
        border: none;
        padding: 18px 32px;
        border-radius: 0 30px 30px 0;
        font-size: 15px;
        font-weight: 800;
        cursor: pointer;
        transition: background-color 0.2s;
    }

    .newBlogMain-newsletter-button:hover {
        background-color: #f8f9fa;
    }

    @media (max-width: 1024px) {
        .newBlogMain-newsletter-content {
            flex-direction: column;
            text-align: center;
            gap: 32px;
        }

        .newBlogMain-newsletter-text {
            padding-right: 0;
        }
    }
    @media (max-width: 768px) {
        .newBlogMain-newsletter-form {
            flex-direction: column;
            width: 100%;
        }

        .newBlogMain-newsletter-input,
        .newBlogMain-newsletter-button {
            border-radius: 0px !important;
            width: 100% !important;
        }

        .newBlogMain-newsletter {
            padding: 40px 10px;
        }

    }

/* ============================== FAQs ============================== */
.companyPageFaqs-hero {
      padding: 80px 0;
      background: #fff;           /* white theme background */
      color: #000;
      position: relative;
      overflow: hidden;
    }

    /* decorative radial gradients using red and transparent – white theme accents */
    .companyPageFaqs-hero::before {
      content: '';
      position: absolute;
      top: -160px;
      left: -80px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255, 0, 0, 0.08), transparent 65%);
      border-radius: 50%;
      pointer-events: none;
    }

    .companyPageFaqs-hero::after {
      content: '';
      position: absolute;
      bottom: 0px;
      right: -60px;
      width: 420px;
      height: 420px;
      background: radial-gradient(circle, rgba(255, 0, 0, 0.12), transparent 65%);
      border-radius: 50%;
      pointer-events: none;
    }

    .companyPageFaqs-hero-inner {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .companyPageFaqs-hero p {
      color: rgb(0 0 0 / 70%);
      line-height: 1.75;
      margin-bottom: 28px;
    }

    .companyPageFaqs-hero-search {
      display: flex;
      gap: 10px;
      max-width: 480px;
      margin: 0 auto;
    }

    .companyPageFaqs-hero-search input {
      flex: 1;
      border: 1.5px solid rgb(0 0 0 / 15%);   /* rgba(0,0,0,0.15) */
      border-radius: 9px;
      padding: 12px 16px;
      background: rgb(0 0 0 / 5%);            /* rgba(0,0,0,0.05) */
      color: #000;
      font-size: .9rem;
      outline: none;
      transition: border-color .18s;
    }

    .companyPageFaqs-hero-search input::placeholder {
      color: rgb(0 0 0 / 35%);               /* rgba(0,0,0,0.35) */
    }

    .companyPageFaqs-hero-search input:focus {
      border-color: #ff0000;
      background: rgba(255, 255, 255, 0.9);
      box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.15);
    }

    .companyPageFaqs-hero-search button {
      background: #ff0000;                   /* pure red primary */
      color: #fff;
      border: none;
      border-radius: 9px;
      padding: 12px 20px;
      font-weight: 600;
      font-size: .88rem;
      cursor: pointer;
      transition: background .18s;
      white-space: nowrap;
    }

    .companyPageFaqs-hero-search button:hover {
      background: #cc0000;                   /* darker red on hover */
    }

    /* responsive adjustments */
    @media (max-width: 720px) {
      .companyPageFaqs-hero {
        padding: 30px 0 40px;
      }
      .companyPageFaqs-hero-search {
        flex-direction: column;
        max-width: 360px;
      }
      .companyPageFaqs-hero-search button {
        width: 100%;
      }
    }
    

    .companyPageFaqs-faq-cats {
      display: flex;
      overflow: auto;
      gap: 8px;
      margin-bottom: 30px;
    }

    .companyPageFaqs-fc {
      padding: 8px 18px;
      border-radius: 100px;
      white-space: nowrap;
      border: 1.5px solid rgb(0 0 0 / 15%);
      font-size: .82rem;
      font-weight: 600;
      cursor: pointer;
      transition: all .18s;
      background: transparent;
      color: #ff0000;
    }

    .companyPageFaqs-fc:hover,
    .companyPageFaqs-fc.on {
      background: #ff0000;
      color: #fff;
      border-color: #ff0000;
    }

    /* FAQ list container */
    .companyPageFaqs-faq-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .companyPageFaqs-faq-item {
      background: #fff;
      border: 1.5px solid rgb(0 0 0 / 12%);
      border-radius: 12px;
      overflow: hidden;
      transition: border-color 0.2s;
    }

    .companyPageFaqs-faq-item.open {
      border-color: #ff0000;
    }

    .companyPageFaqs-faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px;
      cursor: pointer;
      gap: 16px;
      user-select: none;
    }

    .companyPageFaqs-faq-qt {
      font-weight: 600;
      font-size: 16px;
      letter-spacing: -.015em;
      line-height: 1.35;
      color: #000;
    }

    .companyPageFaqs-faq-ico {
      width: 28px;
      height: 28px;
      background: rgb(0 0 0 / 5%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      flex-shrink: 0;
      transition: all .25s;
      font-weight: 700;
      color: #000;
    }

    .companyPageFaqs-faq-item.open .companyPageFaqs-faq-ico {
      background: #ff0000;
      color: #fff;
    }

    .companyPageFaqs-faq-a {
      display: none;
      padding: 0 24px 22px;
      font-size: 14px;
      line-height: 1.8;
      color: rgb(0 0 0 / 60%);
    }

    .companyPageFaqs-faq-a.open {
      display: block;
    }

    .companyPageFaqs-faq-a ul {
      padding-left: 18px;
      margin-top: 10px;
    }

    .companyPageFaqs-faq-a li {
      margin-bottom: 6px;
    }

    .companyPageFaqs-faq-a a {
      color: #ff0000;
      text-decoration: underline;
    }

    .companyPageFaqs-faq-a strong {
      color: #000;
    }

    /* CTA section – white theme but using dark bg with red accent? original had dark bg, but for white theme we'll use light gray+red border. Let's keep consistency: light background, black text, red button */
    .companyPageFaqs-faq-cta {
      background: #ff0000;
      border-radius: 20px;
      padding: 56px;
      text-align: center;
      margin-top: 52px;
      position: relative;
      overflow: hidden;
      border: 1px solid #ff0000;
    }

    .companyPageFaqs-faq-cta::before {
      content: '';
      position: absolute;
      top: -60px;
      left: 50%;
      transform: translateX(-50%);
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255, 0, 0, 0.08), transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .companyPageFaqs-faq-cta-h {
      font-weight: 800;
      font-size: 32px;
      letter-spacing: -.03em;
      color: #fff;
      margin-bottom: 10px;
      position: relative;
      z-index: 1;
    }

    .companyPageFaqs-faq-cta-p {
      color: #fff !important;
    }

    /* buttons (global white theme) */
    .companyPageFaqs-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
      font-size: .88rem;
      padding: 12px 24px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: all .2s;
      white-space: nowrap;
      text-decoration: none;
    }

    .companyPageFaqs-btn-a {
      background: #fff;
      color: #ff0000;
      box-shadow: 0 4px 20px rgba(255, 0, 0, 0.28);
    }

    .companyPageFaqs-btn-a:hover {
      background: #fff;
      color: #ff0000;
      transform: translateY(-2px);
    }

    .companyPageFaqs-btn-wa {
      background: #25d366;
      color: #fff;
    }
    
    .companyPageFaqs-btn-wa:hover {
        background: #25d366;
        color: #fff;
      transform: translateY(-2px);
    }

    /* responsive */
    @media (max-width: 768px) {
      .companyPageFaqs-sec {
        padding: 60px 24px;
      }
      .companyPageFaqs-faq-cta {
        padding: 32px 20px;
      }
    }

    @media (max-width: 480px) {
      .companyPageFaqs-faq-q {
        padding: 16px 18px;
      }
      .companyPageFaqs-faq-cta-h {
        font-size: 28px;
      }
    }
/* ============================== FAQs ============================== */


/* ============================== Conatc US ============================== */
.companyPageContact-hero {
      padding: 80px 0;
      background: #fff;
      color: #000;
      position: relative;
      overflow: hidden;
    }

    .companyPageContact-hero::before {
      content: '';
      position: absolute;
      top: -160px;
      right: -100px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(255, 0, 0, 0.12), transparent 65%);
      border-radius: 50%;
      pointer-events: none;
    }

    .companyPageContact-hero-inner {
      /* max-width: 1100px;
      margin: 0 auto; */
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .companyPageContact-hero p {
      color: rgb(0 0 0 / 70%);
    line-height: 1.75;
    margin-bottom: 28px;
    }

    .companyPageContact-hero-pts {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .companyPageContact-hpt {
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }

    .companyPageContact-hpt-ico {
      width: 50px;
      height: 50px;
      background: rgb(0 0 0 / 5%);
      padding: 10px;
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .companyPageContact-hpt-ico img {
      width: 100%;
    }

    .companyPageContact-hpt-lbl {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgb(0 0 0 / 45%);
      margin-bottom: 3px;
    }

    .companyPageContact-hpt-val {
      font-size: 16px;
      color: #000;
    }

    .companyPageContact-hpt-val a {
      color: #ff0000;
      text-decoration: none;
    }

    .companyPageContact-hpt-val a:hover {
      text-decoration: underline;
    }

    /* Main Section */
    .companyPageContact-sec {
      padding: 80px 0;
    }

    /* .companyPageContact-sec-inner {
      max-width: 1100px;
      margin: 0 auto;
    } */

    /* Contact Grid */
    .companyPageContact-con-grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 52px;
      align-items: start;
    }

    /* Contact Options Cards */
    .companyPageContact-contact-options {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 30px;
      margin-top: 30px;
    }

    .companyPageContact-co-card {
      background: #fff;
      border: 1.5px solid rgb(0 0 0 / 12%);
      border-radius: 18px;
      padding: 22px 24px;
      display: flex;
      align-items: flex-start;
      gap: 14px;
      transition: all .2s;
      cursor: pointer;
    }

    .companyPageContact-co-card:hover {
      border-color: #ff0000;
      box-shadow: 0 8px 24px rgba(255, 0, 0, 0.08);
      transform: translateX(4px);
    }

    .companyPageContact-co-ico {
      width: 50px;
      height: 50px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px;
      flex-shrink: 0;
      background: rgba(255, 0, 0, 0.12);
    }

    .companyPageContact-co-ico img {
      width: 100%;
    }

    .companyPageContact-co-h {
      font-weight: 700;
      font-size: 16px;
      margin-bottom: 3px;
      color: #000;
    }

    .companyPageContact-co-p {
      font-size: 14px;
      color: rgb(0 0 0 / 60%);
      margin-bottom: 6px;
    }

    .companyPageContact-co-v {
      font-size: 14px;
      font-weight: 600;
      color: #ff0000;
    }

    /* WhatsApp Box */
    .companyPageContact-wa-box {
      background: linear-gradient(135deg, #faf7f2, #ffffff);
      border: 1px solid rgb(0 0 0 / 10%);
      border-radius: 18px;
      padding: 26px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    .companyPageContact-wa-box-t {
      font-weight: 700;
      font-size: 16px;
      color: #000;
      margin-bottom: 4px;
    }

    .companyPageContact-wa-box-p {
      font-size: 14px;
      color: rgb(0 0 0 / 55%);
    }

    .companyPageContact-wa-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #25d366;
      color: #fff;
      padding: 11px 20px;
      border-radius: 8px;
      font-size: .88rem;
      font-weight: 600;
      transition: all .2s;
      flex-shrink: 0;
      text-decoration: none;
    }
    
    .companyPageContact-wa-btn:hover {
        background: #25d366;
      color: #fff;
      transform: translateY(-2px);
    }

    /* Office Address Box */
    .companyPageContact-office-box {
      background: rgb(0 0 0 / 4%);
      border-radius: 18px;
      padding: 24px;
      margin-top: 30px;
      border: 1px solid rgb(0 0 0 / 6%);
    }

    .companyPageContact-office-title {
      font-weight: 700;
      font-size: 16px;
      margin-bottom: 12px;
      color: #000;
    }

    .companyPageContact-office-addr {
      font-size: 14px;
      color: rgb(0 0 0 / 60%);
      line-height: 1.7;
    }

    /* Contact Form */
    .companyPageContact-cform {
      background: #fff;
      border: 1.5px solid rgb(0 0 0 / 10%);
      border-radius: 20px;
      padding: 40px;
    }

    .companyPageContact-cf-t {
      font-weight: 800;
      font-size: 24px;
      letter-spacing: -.025em;
      margin-bottom: 6px;
      color: #000;
    }

    .companyPageContact-cf-st {
      font-size: 14px;
      color: rgb(0 0 0 / 60%);
      margin-bottom: 28px;
    }

    .companyPageContact-cf-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .companyPageContact-cf-g {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 20px;
    }

    .companyPageContact-cf-g label {
      font-size: 14px;
      font-weight: 700;
      color: rgb(0 0 0 / 50%);
      letter-spacing: .05em;
      text-transform: uppercase;
    }

    .companyPageContact-cf-g input,
    .companyPageContact-cf-g select,
    .companyPageContact-cf-g textarea {
      border: 1.5px solid rgb(0 0 0 / 12%);
      border-radius: 8px;
      padding: 11px 13px;
      color: #000;
      font-size: 14px;
      outline: none;
      transition: border-color .18s;
      width: 100%;
      background: #fff;
    }

    .companyPageContact-cf-g input::placeholder,
    .companyPageContact-cf-g textarea::placeholder {
      color: rgb(0 0 0 / 35%);
    }

    .companyPageContact-cf-g input:focus,
    .companyPageContact-cf-g select:focus,
    .companyPageContact-cf-g textarea:focus {
      border-color: #ff0000;
      box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.08);
    }

    .companyPageContact-cf-g textarea {
      resize: vertical;
      min-height: 110px;
    }

    /* Checkbox row */
    .companyPageContact-checkbox-row {
      display: flex;
      gap: 8px;
      margin-bottom: 18px;
      align-items: flex-start;
    }

    .companyPageContact-checkbox-row input {
      accent-color: #ff0000;
      margin-top: 3px;
      width: max-content;
      flex-shrink: 0;
    }

    .companyPageContact-checkbox-row label {
      font-size: .76rem;
      color: rgb(0 0 0 / 60%);
      line-height: 1.55;
    }

    .companyPageContact-cf-sub {
      width: 100%;
      padding: 14px;
      background: #ff0000;
      color: #fff;
      border: none;
      border-radius: 9px;
      font-size: .94rem;
      font-weight: 600;
      cursor: pointer;
      transition: all .2s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .companyPageContact-cf-sub:hover {
      background: #cc0000;
      transform: translateY(-1px);
    }

    .companyPageContact-cf-sub.sent {
      background: #16a34a;
      cursor: default;
      transform: none;
    }

    .companyPageContact-form-footer {
      text-align: center;
      font-size: 12px;
      color: rgb(0 0 0 / 70%);
      margin-top: 12px;
    }

    /* Responsive */
    @media (max-width: 880px) {
      .companyPageContact-hero {
        padding: 30px 0;
      }
      .companyPageContact-hero-inner {
        grid-template-columns: 1fr;
        gap: 10px;
      }
      .companyPageContact-con-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }
      .companyPageContact-sec {
        padding: 30px 0;
      }
      .companyPageContact-cform {
        padding: 30px 24px;
      }
    }

    @media (max-width: 560px) {
      .companyPageContact-cf-row {
        grid-template-columns: 1fr;
        gap: 0;
      }
      .companyPageContact-wa-box {
        flex-direction: column;
        text-align: center;
      }
      .companyPageContact-hero-pts {
        gap: 12px;
      }
    }

/* ============================== Conatc US ============================== */

/* ============================== About US ============================== */
.companyPageAboutUs-hero {
      padding: 80px 0;
      background: #fff;
      color: #000;
      position: relative;
      overflow: hidden;
    }

    .companyPageAboutUs-hero::before {
      content: '';
      position: absolute;
      top: -160px;
      right: -100px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(255, 0, 0, 0.12), transparent 65%);
      border-radius: 50%;
      pointer-events: none;
    }

    .companyPageAboutUs-hero::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -60px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255, 0, 0, 0.06), transparent 65%);
      border-radius: 50%;
      pointer-events: none;
    }

    .companyPageAboutUs-hero-inner {
      /* max-width: 1100px;
      margin: 0 auto; */
      position: relative;
      z-index: 1;
    }

    .companyPageAboutUs-hero p {
      color: rgb(0 0 0 / 70%);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 580px;
    }

    .companyPageAboutUs-hero-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid rgb(0 0 0 / 10%);
      margin-top: 52px;
      padding-top: 36px;
    }

    .companyPageAboutUs-hs {
      padding-right: 32px;
      border-right: 1px solid rgb(0 0 0 / 10%);
    }

    .companyPageAboutUs-hs + .companyPageAboutUs-hs {
      padding-left: 32px;
    }

    .companyPageAboutUs-hs:last-child {
      border-right: none;
    }

    .companyPageAboutUs-hs-n {
      font-weight: 800;
      font-size: 2.2rem;
      color: #000;
      letter-spacing: -.04em;
      line-height: 1;
    }

    .companyPageAboutUs-hs-l {
      font-size: .78rem;
      color: rgb(0 0 0 / 55%);
      margin-top: 5px;
    }

    /* Sections */
    .companyPageAboutUs-sec {
      padding: 80px 0;
    }

    /* .companyPageAboutUs-sec-inner {
      max-width: 1100px;
      margin: 0 auto;
    } */


    .companyPageAboutUs-lead {
      line-height: 1.78;
      color: rgb(0 0 0 / 60%);
      max-width: 560px;
    }

    /* About Grid */
    .companyPageAboutUs-ab-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }

    .companyPageAboutUs-ab-card {
      background: #fff;
      border: 1px solid rgb(0 0 0 / 10%);
      border-radius: 20px;
      padding: 36px;
      color: #000;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    }

    .companyPageAboutUs-ab-card::after {
      content: '';
      position: absolute;
      bottom: -40px;
      right: -40px;
      width: 180px;
      height: 180px;
      background: radial-gradient(circle, rgba(255, 0, 0, 0.08), transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .companyPageAboutUs-ab-sg {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: rgb(0 0 0 / 8%);
      border-radius: 14px;
      overflow: hidden;
      margin-top: 22px;
    }

    .companyPageAboutUs-ab-s {
      background: #fff;
      padding: 22px 20px;
      border: 1px solid rgb(0 0 0 / 5%);
    }

    .companyPageAboutUs-ab-sn {
      font-weight: 800;
      font-size: 30px;
      letter-spacing: -.04em;
      line-height: 1;
      color: #ff0000;
    }

    .companyPageAboutUs-ab-sn.gold {
      color: #ff0000;
    }

    .companyPageAboutUs-ab-sl {
      font-size: 14px;
      color: rgb(0 0 0 / 55%);
      margin-top: 5px;
    }

    .companyPageAboutUs-ab-fp {
      position: absolute;
      top: -20px;
      right: 0;
      background: #ff0000;
      border-radius: 100px;
      padding: 8px 16px;
      font-size: 14px;
      font-weight: 600;
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      gap: 6px;
      color: #fff;
      z-index: 1;
    }

    .companyPageAboutUs-ab-pts {
      display: flex;
      flex-direction: column;
      gap: 18px;
      margin: 28px 0 32px;
    }

    .companyPageAboutUs-ab-pt {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }

    .companyPageAboutUs-ab-pt-ico {
      width: 50px;
      height: 50px;
      border-radius: 10px;
      background: rgba(255, 0, 0, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px;
      flex-shrink: 0;
    }

    .companyPageAboutUs-ab-pt-ico img {
      width: 100%;
    }

    .companyPageAboutUs-ab-pt-h {
      font-weight: 700;
      font-size: 18px;
      margin-bottom: 3px;
      color: #000;
    }

    .companyPageAboutUs-ab-pt-p {
      font-size: 16px;
      color: rgb(0 0 0 / 60%);
      line-height: 1.6;
    }

    .companyPageAboutUs-ab-card-badge {
        font-weight:700; 
        font-size: 14px; 
        letter-spacing:.1em; 
        text-transform:uppercase; 
        color:rgb(0 0 0 / 45%); 
        margin-bottom:20px;
    }

    /* Live status */
    .companyPageAboutUs-live-status {
      margin-top: 22px;
      padding: 18px;
      background: rgb(0 0 0 / 4%);
      border-radius: 12px;
      border: 1px solid rgb(0 0 0 / 6%);
    }

    .companyPageAboutUs-live-label {
      font-size: 12px;
      color: rgb(0 0 0 / 45%);
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .companyPageAboutUs-live-row {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 7px;
    }

    .companyPageAboutUs-live-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #ff0000;
      display: block;
      flex-shrink: 0;
      animation: companyPageAboutUsPulse 1.2s infinite;
    }

    .companyPageAboutUs-live-text {
      font-size: 14px;
      color: #000;
    }

    /* Mission Section */
    .companyPageAboutUs-mission {
      background: #fff;
      border: 1px solid rgb(0 0 0 / 8%);
      border-radius: 20px;
      padding: 56px 48px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
      /* margin-bottom: 72px; */
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    }

    .companyPageAboutUs-mission::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -60px;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(255, 0, 0, 0.06), transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .companyPageAboutUs-mission-q {
      font-weight: 800;
      font-size: clamp(1.4rem, 2.8vw, 2rem);
      letter-spacing: -.03em;
      line-height: 1.18;
      color: #000;
      position: relative;
      z-index: 1;
    }

    .companyPageAboutUs-mission-q em {
      font-style: normal;
      color: #ff0000;
    }

    .companyPageAboutUs-mission-p {
      line-height: 1.78;
      color: rgb(0 0 0 / 60%);
      position: relative;
      z-index: 1;
    }

    /* Values Grid */
    .companyPageAboutUs-val-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 25px;
    }

    .companyPageAboutUs-val-card {
      border: 1.5px solid rgb(0 0 0 / 10%);
      border-radius: 18px;
      padding: 28px;
      background: #fff;
      transition: all .2s;
    }

    .companyPageAboutUs-val-card:hover {
      border-color: #ff0000;
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(255, 0, 0, 0.08);
    }

    .companyPageAboutUs-val-ico {
      width: 50px;
      margin-bottom: 14px;
      display: block;
    }

    .companyPageAboutUs-val-ico img {
        width: 100%;
    }

    .companyPageAboutUs-val-h {
      font-weight: 700;
      font-size: 20px;
      margin-bottom: 8px;
      color: #000;
    }

    .companyPageAboutUs-val-p {
      line-height: 1.7;
      color: rgb(0 0 0 / 60%);
    }

    /* Team Grid */
    .companyPageAboutUs-team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 44px;
    }

    .companyPageAboutUs-team-card {
      background: #fff;
      border: 1.5px solid rgb(0 0 0 / 10%);
      border-radius: 18px;
      padding: 26px;
      text-align: center;
      transition: all .2s;
    }

    .companyPageAboutUs-team-card:hover {
      border-color: #ff0000;
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(255, 0, 0, 0.08);
    }

    .companyPageAboutUs-tc-av {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      margin: 0 auto 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1.3rem;
      color: #fff;
    }

    .companyPageAboutUs-tc-av img {
      border-radius: 250px;
    }

    .companyPageAboutUs-tc-name {
      font-weight: 700;
      font-size: 18px;
      margin-bottom: 4px;
      color: #000;
    }

    .companyPageAboutUs-tc-role {
      font-size: 14px;
      color: rgb(0 0 0 / 60%);
      margin-bottom: 14px;
      line-height: 1.4;
    }

    .companyPageAboutUs-tc-socs {
      display: flex;
      justify-content: center;
      gap: 16px;
      display: none;
    }

    .companyPageAboutUs-tc-s {
      width: 35px;
      height: 35px;
      background: rgb(0 0 0 / 5%);
      border-radius: 7px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      transition: background .18s;
      cursor: pointer;
      color: #000;
    }

    .companyPageAboutUs-tc-s:hover {
      background: rgba(255, 0, 0, 0.15);
    }

    /* CTA Strip */
    .companyPageAboutUs-cta-strip {
      background: #ff0000;
      padding: 56px 52px;
    }

    .companyPageAboutUs-cta-inner {
      /* max-width: 1100px;
      margin: 0 auto; */
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      flex-wrap: wrap;
    }

    .companyPageAboutUs-cta-title {
      font-weight: 800;
      font-size: 30px;
      letter-spacing: -.03em;
      color: #fff;
      margin-bottom: 8px;
    }

    .companyPageAboutUs-cta-sub {
      font-size: 14px;
      color: #fff;
    }

    .companyPageAboutUs-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 700;
      font-size: .88rem;
      padding: 12px 24px;
      border-radius: 8px;
      text-decoration: none;
      transition: all .2s;
    }

    .companyPageAboutUs-cta-btn-white {
      background: #fff;
      color: #ff0000;
    }

    .companyPageAboutUs-cta-btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      color: #ff0000;
    }

    .companyPageAboutUs-cta-btn-outline {
      background: rgba(255, 255, 255, 0.15);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.25);
    }
    
    .companyPageAboutUs-cta-btn-outline:hover {
        background: rgba(255, 255, 255, 0.25);
        color: #fff;
      transform: translateY(-2px);
    }

    /* Animations */
    @keyframes companyPageAboutUsPulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

    /* Background variant for values section (light gray alternative) */
    .companyPageAboutUs-bg-light {
      background: rgb(0 0 0 / 3%);
    }
    .companyPageAboutUs-sec.companyPageAboutUs-bg-light {
        padding: 60px 0;
    }

    /* Responsive */
    @media (max-width: 1100px) {
      .companyPageAboutUs-sec, .companyPageAboutUs-hero, .companyPageAboutUs-cta-strip {
        padding: 60px 0;
      }
      .companyPageAboutUs-ab-grid, .companyPageAboutUs-mission {
        grid-template-columns: 1fr;
      }
      .companyPageAboutUs-team-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .companyPageAboutUs-sec, .companyPageAboutUs-hero {
        padding: 30px 0;
      }
      .companyPageAboutUs-val-grid, .companyPageAboutUs-team-grid {
        grid-template-columns: 1fr;
      }
      .companyPageAboutUs-hero-stats {
        grid-template-columns: 1fr 1fr;
        row-gap: 20px;
        margin-top: 25px;
        padding-top: 25px;
      }
      .companyPageAboutUs-hs:nth-child(even) {
        border-right: none;
      }
      .companyPageAboutUs-hs:nth-child(3) {
        padding-left: 0;
      }
      .companyPageAboutUs-mission {
        padding: 32px 24px;
        gap: 20px;
      }
      .companyPageAboutUs-cta-strip {
        padding: 40px 24px;
      }
      .companyPageAboutUs-ab-card {
        padding: 30px;
      }
      .companyPageAboutUs-sec.companyPageAboutUs-bg-light {
        padding: 30px 0;
      }
    }

    @media (max-width: 480px) {
      .companyPageAboutUs-hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }
      .companyPageAboutUs-hs {
        padding: 0;
      }
      .companyPageAboutUs-ab-sg {
        grid-template-columns: 1fr;
      }
    }
/* ============================== About US ============================== */

/* ============================== Career ============================== */
.companyPageCareers-hero {
      padding: 80px 0;
      background: #fff;
      color: #000;
      position: relative;
      overflow: hidden;
    }

    .companyPageCareers-hero::before {
      content: '';
      position: absolute;
      top: -120px;
      right: -80px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(255, 0, 0, 0.08), transparent 65%);
      border-radius: 50%;
      pointer-events: none;
    }

    .companyPageCareers-hero::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -60px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255, 0, 0, 0.05), transparent 65%);
      border-radius: 50%;
      pointer-events: none;
    }

    .companyPageCareers-hero-inner {
      /* max-width: 1100px;
      margin: 0 auto; */
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .companyPageCareers-hero p {
      color: rgba(0, 0, 0, 0.7);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 580px;
    }

    .companyPageCareers-perks-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .companyPageCareers-perk {
      background: rgb(0 0 0 / 5%);
      border: 1px solid rgb(0 0 0 / 12%);
      border-radius: 12px;
      padding: 14px 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: all 0.2s ease;
    }

    .companyPageCareers-perk:hover {
      border-color: rgba(255, 0, 0, 0.3);
      background: rgba(255, 0, 0, 0.03);
    }

    .companyPageCareers-perk-ico {
      width: 30px;
      flex-shrink: 0;
    }
    .companyPageCareers-perk-ico img {
      width: 100%;
    }

    .companyPageCareers-perk-t {
      font-size: 16px;
      color: rgb(0 0 0 / 75%);
      font-weight: 500;
    }


    /* Responsive */
    @media (max-width: 880px) {
      .companyPageCareers-hero {
        padding: 50px 0;
      }
      .companyPageCareers-hero-inner {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      .companyPageCareers-perks-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .companyPageCareers-hero {
        padding: 30px 0 40px;
      }
      .companyPageCareers-perk {
        padding: 12px 14px;
      }
      .companyPageCareers-perk-t {
        font-size: 14px;
      }
    }



    .companyPageCareers-sec {
      padding: 80px 0 20px;
    }

    /* .companyPageCareers-sec-inner {
      max-width: 1100px;
      margin: 0 auto;
    } */

    .companyPageCareers-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #ff0000;
      margin-bottom: 16px;
    }

    .companyPageCareers-tag::before {
      content: '';
      width: 18px;
      height: 2px;
      background: #ff0000;
      border-radius: 2px;
      flex-shrink: 0;
    }

    .companyPageCareers-h2 {
      font-weight: 800;
      font-size: clamp(1.9rem, 3.5vw, 2.8rem);
      letter-spacing: -.035em;
      line-height: 1.08;
      margin-bottom: 16px;
      color: #000;
    }

    .companyPageCareers-lead {
      font-size: 1rem;
      line-height: 1.78;
      color: rgb(0 0 0 / 60%);
      max-width: 560px;
    }

    /* Buttons */
    .companyPageCareers-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
      font-size: .88rem;
      padding: 12px 24px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: all .2s;
      white-space: nowrap;
      text-decoration: none;
    }

    .companyPageCareers-btn-a {
      background: #ff0000;
      color: #fff;
      box-shadow: 0 4px 20px rgba(255, 0, 0, 0.28);
    }

    .companyPageCareers-btn-a:hover {
      background: #cc0000;
      transform: translateY(-2px);
    }

    .companyPageCareers-btn-sm {
      padding: 9px 18px;
      font-size: .82rem;
    }

    /* Department Filter */
    .companyPageCareers-dept-filter {
      display: flex;
      gap: 8px;
      overflow: auto;
      margin-bottom: 28px;
    }

    .companyPageCareers-df {
      padding: 7px 16px;
      border-radius: 100px;
      border: 1.5px solid rgb(0 0 0 / 15%);
      font-size: 14px;
      white-space: nowrap;
      font-weight: 600;
      cursor: pointer;
      transition: all .18s;
      background: transparent;
      color: #ff0000;
    }

    .companyPageCareers-df:hover,
    .companyPageCareers-df.on {
      background: #ff0000;
      color: #fff;
      border-color: #ff0000;
    }

    /* Job List */
    .companyPageCareers-job-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .companyPageCareers-job-card {
      background: #fff;
      border: 1.5px solid rgb(0 0 0 / 12%);
      border-radius: 12px;
      padding: 24px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      transition: all .2s;
      cursor: pointer;
    }

    .companyPageCareers-job-card:hover {
      border-color: #ff0000;
      box-shadow: 0 8px 28px rgba(255, 0, 0, 0.08);
      transform: translateX(4px);
    }

    .companyPageCareers-jc-left {
      flex: 1;
    }

    .companyPageCareers-jc-dept {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #ff0000;
      margin-bottom: 6px;
    }

    .companyPageCareers-jc-title {
      font-weight: 700;
      font-size: 18px;
      letter-spacing: -.02em;
      margin-bottom: 8px;
      color: #000;
    }

    .companyPageCareers-jc-meta {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .companyPageCareers-jc-m {
      font-size: 14px;
      color: rgb(0 0 0 / 70%);
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .companyPageCareers-jc-tags {
      display: flex;
      gap: 6px;
      margin-left: 16px;
    }

    .companyPageCareers-jc-tag {
      font-size: 12px;
      padding: 3px 10px;
      border-radius: 100px;
      font-weight: 600;
    }

    .companyPageCareers-jc-tag.remote {
      background: rgba(255, 0, 0, 0.12);
      color: #ff0000;
    }

    .companyPageCareers-jc-tag.hybrid {
      background: rgba(255, 0, 0, 0.1);
      color: #ff0000;
    }

    .companyPageCareers-jc-arrow {
      width: 36px;
      height: 36px;
      background: rgb(0 0 0 / 5%);
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
      transition: all .2s;
      color: #000;
    }

    .companyPageCareers-job-card:hover .companyPageCareers-jc-arrow {
      background: #ff0000;
      color: #fff;
    }

    /* Open Application Section */
    .companyPageCareers-open-app {
      background: rgb(0 0 0 / 4%);
      border-radius: 18px;
      padding: 52px;
      text-align: center;
      margin-top: 48px;
      border: 1px solid rgb(0 0 0 / 6%);
    }

    .companyPageCareers-open-app-icon {
        height: 50px;
        width: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-inline: auto;
        margin-bottom: 25px;
    }

    .companyPageCareers-open-app h3 {
      font-weight: 700;
      font-size: 24px;
      margin-bottom: 10px;
      color: #000;
    }

    .companyPageCareers-open-app p {
      color: rgb(0 0 0 / 70%);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 580px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive */
    @media (max-width: 880px) {
      .companyPageCareers-sec {
        padding: 40px 0;
      }
      .companyPageCareers-job-card {
        flex-wrap: wrap;
        padding: 20px;
      }
      .companyPageCareers-jc-tags {
        margin-left: 0;
        order: 1;
      }
      .companyPageCareers-open-app {
        padding: 32px 24px;
      }
    }

    @media (max-width: 560px) {
      .companyPageCareers-sec {
        padding: 30px 0;
      }
      .companyPageCareers-jc-meta {
        flex-direction: column;
        gap: 4px;
      }
      .companyPageCareers-jc-title {
        font-size: 16px;
      }
      .companyPageCareers-open-app h3 {
        font-size: 1.1rem;
      }
    }
/* ============================== Career ============================== */