
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    :root {
      --orange: #1e3623;
      --green: #25D366;
      --black: #101010;
      --white: #fff;
      --light: #f7f7f7;
      --gray: #777;
      --transition: all .3s ease;
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: 'Roboto', sans-serif;
      color: var(--black);
      overflow-x: hidden;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
    }

    a {
      text-decoration: none;
      color: inherit
    }

    img {
      max-width: 100%;
      display: block;
      -webkit-user-drag: none;
      user-drag: none;
      -webkit-touch-callout: none;
    }

    /* ANNOUNCEMENT */
    .ann-bar {
      background: linear-gradient(90deg, #1e3623, #3d7a4c, #1e3623);
      color: #fff;
      text-align: center;
      font-size: 13px;
      font-weight: 500;
      padding: 8px 20px;
      letter-spacing: .3px;
    }

    .ann-bar strong {
      font-weight: 700
    }

    /* HEADER */
    .site-header {
      background: #fff;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
    }

    .header-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
      position: relative;
    }

    .logo img {
      height: 55px;
      width: auto
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 5px;
      position: absolute;
      left: 0;
      right: 0;
      margin: 0 auto;
      width: max-content;
    }

    .nav-link {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .8px;
      padding: 8px 14px;
      border-radius: 4px;
      color: var(--black);
      transition: var(--transition);
      position: relative;
      white-space: nowrap;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--orange)
    }

    .nav-badge {
      background: #1e3623;
      color: #fff;
      font-size: 9px;
      font-weight: 700;
      padding: 2px 5px;
      border-radius: 3px;
      margin-right: 4px;
      vertical-align: middle;
    }

    .nav-item {
      position: relative
    }

    /* ===== MEGA MENU MODERN ===== */
    .megamenu {
      display: block !important;
      position: fixed;
      top: 114px;
      left: 50%;
      transform: translateX(-50%) translateY(8px);
      background: #fff;
      border-radius: 18px;
      border: 1.5px solid rgba(30, 54, 35, .2);
      box-shadow: 0 8px 12px rgba(0, 0, 0, .04), 0 28px 70px rgba(0, 0, 0, .16), 0 0 0 1px rgba(30, 54, 35, .06);
      padding: 0;
      opacity: 0;
      visibility: hidden;
      transition: opacity .28s cubic-bezier(.4, 0, .2, 1), transform .28s cubic-bezier(.4, 0, .2, 1), visibility .28s;
      width: min(920px, 96vw);
      max-height: calc(100vh - 130px);
      overflow-y: auto;
      overflow-x: hidden;
      z-index: 9999;
    }

    .megamenu::-webkit-scrollbar {
      width: 7px;
    }

    .megamenu::-webkit-scrollbar-track {
      background: #eaf5ef;
      border-radius: 18px;
    }

    .megamenu::-webkit-scrollbar-thumb {
      background: rgba(30, 54, 35, .6);
      border-radius: 18px;
    }

    .megamenu::-webkit-scrollbar-thumb:hover {
      background: rgba(30, 54, 35, 1);
    }

    .nav-item:hover .megamenu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0)
    }

    /* Arrow pointer */
    .megamenu::before {
      content: '';
      position: absolute;
      top: -7px;
      left: 50%;
      transform: translateX(-50%) rotate(45deg);
      width: 13px;
      height: 13px;
      background: #fff;
      border-left: 1.5px solid rgba(30, 54, 35, .2);
      border-top: 1.5px solid rgba(30, 54, 35, .2);
      border-radius: 2px 0 0 0;
      z-index: 1;
    }

    /* Row 1 */
    .mm-row1 {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      border-bottom: 1px solid #e0ece5;
    }

    /* Row 2 */
    .mm-row2 {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1.1fr;
      border-bottom: 1px solid #e0ece5;
    }

    /* Row 3: KRAFT */
    .mm-row3 {
      padding: 20px 22px 22px;
      background: linear-gradient(135deg, #f4faf6 0%, #fff 100%);
    }

    .mm-row3-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0 8px;
    }

    /* Cell */
    .mm-cell {
      padding: 20px 22px;
      border-right: 1px solid #e0ece5;
      transition: background .2s;
    }

    .mm-cell:last-child {
      border-right: none
    }

    .mm-cell:hover {
      background: #f4faf6
    }

    /* Section title badge */
    .mm-section-title {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 10.5px;
      font-weight: 800;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: #fff;
      background: linear-gradient(135deg, #1e3623, #3d7a4c);
      padding: 3px 10px 3px 8px;
      border-radius: 20px;
      margin-bottom: 14px;
    }

    .mm-row3 .mm-section-title {
      background: linear-gradient(135deg, #101010, #333);
    }

    /* Link */
    .mm-link {
      display: flex;
      flex-direction: column;
      gap: 1px;
      margin-bottom: 11px;
      padding: 5px 7px;
      border-radius: 7px;
      cursor: pointer;
      transition: background .18s, transform .18s;
    }

    .mm-link:hover {
      background: rgba(30, 54, 35, .07);
      transform: translateX(3px);
    }

    .mm-link-name {
      font-size: 13px;
      font-weight: 600;
      color: #1a1a1a;
      transition: color .18s;
      line-height: 1.3;
    }

    .mm-link:hover .mm-link-name {
      color: #1e3623
    }

    .mm-link-sub {
      font-size: 11px;
      color: #3d7a4c;
      font-style: normal;
      line-height: 1.4;
    }

    /* Dark cell — Food Grade */
    .mm-cell-dark {
      background: linear-gradient(135deg, #1a1a1a 0%, #2d1a0a 100%);
      padding: 20px 18px;
      border-right: none;
      position: relative;
      overflow: hidden;
    }

    .mm-cell-dark:hover {
      background: linear-gradient(135deg, #1a1a1a 0%, #3a2010 100%)
    }

    .mm-cell-dark-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://tuyapack.com/wp-content/uploads/2024/09/image-1.png');
      background-size: cover;
      background-position: center;
      opacity: .18;
      filter: saturate(0.5);
    }

    .mm-cell-dark .mm-section-title {
      background: linear-gradient(135deg, #1e3623, #6dffa0);
      position: relative;
      z-index: 1;
    }

    .mm-cell-dark .mm-link {
      position: relative;
      z-index: 1;
    }

    .mm-cell-dark .mm-link:hover {
      background: rgba(255, 255, 255, .08)
    }

    .mm-cell-dark .mm-link-name {
      color: rgba(255, 255, 255, .9)
    }

    .mm-cell-dark .mm-link:hover .mm-link-name {
      color: #6dffa0
    }

    .mm-cell-dark .mm-link-sub {
      color: rgba(109, 255, 160, .75)
    }

    .nav-cta {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 12px
    }

    .btn-chat {
      background: var(--green);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      padding: 10px 22px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
      letter-spacing: .5px;
    }

    .btn-chat:hover {
      background: #128c7e;
      transform: translateY(-1px)
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 5px
    }

    .hamburger span {
      width: 24px;
      height: 2px;
      background: var(--black);
      border-radius: 2px;
      transition: var(--transition)
    }

    /* MOBILE NAV */
    .mobile-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 300px;
      height: 100vh;
      background: #fff;
      z-index: 2000;
      padding: 25px;
      box-shadow: -5px 0 30px rgba(0, 0, 0, .15);
      transition: right .35s ease;
      overflow-y: auto;
    }

    .mobile-nav.open {
      right: 0
    }

    .mn-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 30px
    }

    .mn-close {
      background: none;
      border: none;
      font-size: 22px;
      cursor: pointer;
      color: var(--black)
    }

    .mn-link {
      display: block;
      font-size: 15px;
      font-weight: 600;
      padding: 13px 0;
      border-bottom: 1px solid #f0f0f0;
      color: var(--black)
    }

    .mn-link:hover {
      color: var(--orange)
    }

    .mn-accordion-btn {
      width: 100%;
      text-align: left;
      background: none;
      border-bottom: 1px solid #f0f0f0;
      border-top: none;
      border-left: none;
      border-right: none;
      font-family: 'Roboto', sans-serif;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }

    .mn-accordion-content {
      display: none;
      background: #fafafa;
      padding: 5px 15px;
    }

    .mn-accordion.active .mn-accordion-content {
      display: block;
    }

    .mn-accordion.active .mn-accordion-btn {
      color: var(--orange);
    }

    .mn-sub-link {
      display: block;
      font-size: 14px;
      color: #555;
      padding: 10px 0;
      border-bottom: 1px solid #eaeaea;
      font-weight: 600
    }

    .mn-sub-link:last-child {
      border-bottom: none;
    }

    .mn-sub-link:hover {
      color: var(--orange)
    }

    /* HERO */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden
    }

    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, .65);
      z-index: 1
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1400px;
      margin: 0 auto;
      padding-top: 60px;
      padding-left: 110px;
      width: 100%
    }

    .hero-label {
      display: inline-block;
      color: var(--orange);
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 15px;
      font-family: 'Montserrat', sans-serif;
    }

    .hero-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(40px, 5.5vw, 76px);
      font-weight: 700;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 25px;
      letter-spacing: -1px;
    }

    .hero-sub {
      color: rgba(255, 255, 255, .9);
      font-size: 16px;
      max-width: 560px;
      line-height: 1.6;
      margin-bottom: 40px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 500;
    }

    .hero-stats {
      display: flex;
      gap: 40px;
      margin-bottom: 40px;
      flex-wrap: wrap
    }

    .hero-stat {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      font-size: 14px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
    }

    .hero-stat-icon {
      width: 30px;
      height: 30px;
      border: 1.5px solid rgba(255, 255, 255, .5);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
    }

    .hero-btns {
      display: flex;
      gap: 20px;
      flex-wrap: wrap
    }

    .btn-bulk {
      background: var(--green);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      padding: 15px 32px;
      border-radius: 6px;
      letter-spacing: .5px;
      transition: var(--transition);
      font-family: 'Montserrat', sans-serif;
    }

    .btn-bulk:hover {
      background: #128c7e;
      transform: translateY(-2px)
    }

    .btn-call {
      background: transparent;
      border: 2px solid rgba(255, 255, 255, .6);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      padding: 15px 32px;
      border-radius: 6px;
      letter-spacing: .5px;
      transition: var(--transition);
      font-family: 'Montserrat', sans-serif;
    }

    .btn-call:hover {
      background: rgba(255, 255, 255, .1)
    }

    /* SOCIAL SIDEBAR */
    .social-sidebar {
      position: fixed;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 100;
      display: flex;
      flex-direction: column;
      gap: 8px
    }

    .social-sidebar a {
      width: 38px;
      height: 38px;
      background: rgba(0, 0, 0, .6);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 14px;
      transition: var(--transition)
    }

    .social-sidebar a:hover {
      background: var(--orange);
      transform: scale(1.1)
    }

    .scroll-hint {
      position: absolute;
      bottom: 30px;
      left: 60px;
      color: rgba(255, 255, 255, .6);
      font-size: 11px;
      letter-spacing: 3px;
      writing-mode: vertical-rl;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 8px
    }

    .scroll-hint::before {
      content: '';
      width: 1px;
      height: 40px;
      background: rgba(255, 255, 255, .4)
    }

    /* HERO ARROW */
    .hero-arrow {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      width: 0;
      height: 0;
      border-left: 60px solid transparent;
      border-right: 60px solid transparent;
      border-top: 40px solid rgba(255, 255, 255, .1);
    }

    /* SECTION BASE */
    .section {
      padding: 90px 0
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 30px
    }

    .section-label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 12px
    }

    .section-title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(26px, 3.5vw, 44px);
      font-weight: 900;
      line-height: 1.15;
      margin-bottom: 15px
    }

    .section-sub {
      color: var(--gray);
      font-size: 15px;
      line-height: 1.8;
      max-width: 650px;
      margin: 0 auto
    }

    .text-center {
      text-align: center
    }

    /* DISCOVER SECTION (Modernized for Figma match) */
    .discover {
      background: #f4faf6;
      padding: 100px 0 120px;
    }

    .discover-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .discover-title {
      font-family: 'Poppins', sans-serif;
      font-size: 42px;
      font-weight: 700;
      color: #050505;
      letter-spacing: -0.5px;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .discover-sub {
      font-family: 'Montserrat', sans-serif;
      font-size: 13px;
      font-weight: 500;
      color: #333;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .discover-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
    }

    .discover-card {
      background: #fff;
      border-radius: 10px;
      padding: 45px 20px 40px;
      text-align: center;
      box-shadow: 0 15px 35px rgba(0, 0, 0, .03);
      transition: transform .3s, box-shadow .3s;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .discover-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, .06)
    }

    .discover-icon {
      width: 48px;
      height: 48px;
      margin-bottom: 25px;
      color: #111;
    }

    .discover-card h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 14.5px;
      font-weight: 700;
      line-height: 1.4;
      color: #111;
      margin-bottom: 15px;
      letter-spacing: 0.3px;
    }

    .discover-card p {
      font-family: 'Montserrat', sans-serif;
      font-size: 11.5px;
      font-weight: 500;
      color: #555;
      line-height: 1.7;
    }

    /* CORPORATE SOLUTIONS (Modernized) */
    .corporate {
      background-color: #fafbfc;
      background-image: url("data:image/svg+xml,%3Csvg width='120' height='207.846' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 207.846L0 173.205V103.923L60 69.282l60 34.641v69.282z' fill='none' stroke='%23f1f3f5' stroke-width='1.5'/%3E%3Cpath d='M60 69.282L0 34.641V-34.641L60 -69.282l60 34.641v69.282z' fill='none' stroke='%23f1f3f5' stroke-width='1.5'/%3E%3C/svg%3E");
      padding: 110px 0;
      position: relative;
    }

    .corp-header {
      text-align: center;
      margin-bottom: 70px
    }

    .corp-title {
      font-family: 'Poppins', sans-serif;
      font-size: 40px;
      font-weight: 800;
      color: #111;
      margin-bottom: 15px;
      letter-spacing: -0.5px;
    }

    .corp-sub {
      font-family: 'Montserrat', sans-serif;
      font-size: 13px;
      font-weight: 500;
      color: #555;
      max-width: 650px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .corp-grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      max-width: 1100px;
      margin: 0 auto;
      align-items: start;
    }

    .corp-col {
      display: flex;
      flex-direction: column;
      gap: 18px;
      text-decoration: none;
      transition: transform .3s;
      cursor: pointer
    }

    .corp-col:hover {
      transform: translateY(-8px)
    }

    .corp-h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 15px;
      font-weight: 800;
      color: #222;
      letter-spacing: 0.5px;
      text-transform: uppercase
    }

    .corp-img-wrap {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
      position: relative;
      background: #000;
    }

    .corp-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .5s ease, opacity .3s;
    }

    .corp-col:hover .corp-img-wrap img {
      transform: scale(1.04);
      opacity: .9
    }

    /* Layout styling matching Figma */
    .col-1 .corp-img-wrap {
      aspect-ratio: 1/1;
    }

    .col-2 .corp-img-wrap {
      aspect-ratio: 3/4.2;
    }

    .col-3 .corp-img-wrap {
      aspect-ratio: 3/4.2;
    }

    .col-1 {
      padding-top: 40px
    }

    .col-2 {
      padding-top: 0px;
      flex-direction: column-reverse
    }

    .col-3 {
      padding-top: 70px
    }

    /* ===== BIODEGRADABLE SECTION – NATURE GREEN REDESIGN ===== */
    .bio-modern {
      margin-top: 80px;
      background: linear-gradient(135deg, #1e3623 0%, #2d5436 50%, #1a4a28 100%);
      border-radius: 28px;
      box-shadow: 0 40px 80px rgba(30, 54, 35, .35), 0 0 0 1px rgba(255, 255, 255, .08);
      padding: 70px 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 60px;
      position: relative;
      overflow: hidden;
    }

    /* Decorative leaf-circle bg */
    .bio-modern::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .04);
      pointer-events: none;
    }

    .bio-modern::after {
      content: '';
      position: absolute;
      bottom: -60px;
      left: -60px;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .03);
      pointer-events: none;
    }

    .bio-content {
      max-width: 520px;
      position: relative;
      z-index: 2;
    }

    .bio-eco-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .2);
      backdrop-filter: blur(10px);
      color: #a8f0b8;
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 30px;
      margin-bottom: 18px;
    }

    .bio-eco-badge i {
      font-size: 13px;
      color: #6dffa0;
    }

    .bio-title-green {
      font-family: 'Poppins', sans-serif;
      font-size: 38px;
      font-weight: 900;
      color: #fff;
      letter-spacing: -1px;
      margin-bottom: 18px;
      text-transform: uppercase;
      line-height: 1.1;
    }

    .bio-title-green span {
      color: #6dffa0;
    }

    .bio-desc {
      font-family: 'Montserrat', sans-serif;
      font-size: 14.5px;
      color: rgba(255, 255, 255, .82);
      line-height: 1.8;
      margin-bottom: 28px;
      font-weight: 500;
    }

    .bio-features {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 32px;
    }

    .bio-feat-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .18);
      color: #c8f5d5;
      font-family: 'Montserrat', sans-serif;
      font-size: 11.5px;
      font-weight: 600;
      padding: 5px 12px;
      border-radius: 20px;
      transition: background .2s;
    }

    .bio-feat-pill i {
      color: #6dffa0;
      font-size: 10px;
    }

    .bio-feat-pill:hover {
      background: rgba(255, 255, 255, .18);
    }

    .bio-link-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: 'Poppins', sans-serif;
      font-size: 13.5px;
      font-weight: 800;
      color: #1e3623;
      background: #6dffa0;
      text-decoration: none;
      letter-spacing: 0.5px;
      padding: 14px 28px;
      border-radius: 8px;
      transition: all .25s;
      box-shadow: 0 8px 25px rgba(109, 255, 160, .25);
    }

    .bio-link-btn:hover {
      background: #fff;
      color: #1e3623;
      transform: translateY(-2px);
      box-shadow: 0 12px 35px rgba(109, 255, 160, .35);
    }

    .bio-img {
      position: relative;
      z-index: 2;
      flex: 1;
      width: 100%;
      display: flex;
      justify-content: center;
    }

    .bio-img img {
      max-width: 380px;
      width: 100%;
      object-fit: contain;
    }

    @media (max-width: 900px) {
      .corp-grid-3 {
        grid-template-columns: 1fr;
        gap: 50px
      }

      .col-1,
      .col-2,
      .col-3 {
        padding-top: 0 !important;
        flex-direction: column
      }

      .col-2 .corp-img-wrap {
        order: 1
      }

      .col-2 .corp-h3 {
        order: 2
      }

      .bio-modern {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px
      }

      .bio-features {
        justify-content: center;
      }

      .bio-img img {
        max-width: 280px
      }
    }

    /* ABOUT & CATALOGS FULL STRUCTURE (Figma Match) */
    .about-tuyapack-new {
      padding: 100px 0 0;
    }

    .about-gradient-card {
      background: linear-gradient(90deg, #1e3623, #3d7a4c, #1e3623);
      border-radius: 24px;
      position: relative;
    }

    .about-top-grid {
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      gap: 60px;
      align-items: center;
      padding: 70px 70px 140px;
    }

    .about-left {
      color: #fff;
    }

    .about-title {
      font-family: 'Poppins', sans-serif;
      font-size: 38px;
      font-weight: 800;
      letter-spacing: 1px;
      margin-bottom: 20px;
    }

    .about-text {
      font-family: 'Montserrat', sans-serif;
      font-size: 13.5px;
      line-height: 1.7;
      margin-bottom: 40px;
      font-weight: 500;
      color: rgba(255, 255, 255, .95);
    }

    .about-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: #000;
      color: #fff;
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      font-weight: 700;
      padding: 16px 36px;
      border-radius: 6px;
      text-decoration: none;
      letter-spacing: 1px;
      transition: background .3s;
      margin-bottom: 40px;
    }

    .about-btn:hover {
      background: #222;
    }

    .about-contacts {
      display: flex;
      gap: 40px;
    }

    .about-contact {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .ac-icon {
      width: 40px;
      height: 40px;
      background: #000;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 16px;
    }

    .ac-text span {
      display: block;
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 600;
      color: rgba(255, 255, 255, .9)
    }

    .ac-text strong {
      display: block;
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      font-weight: 700;
      margin-top: 2px;
      color: #fff
    }

    .about-right {
      position: relative;
    }

    .about-img-wrap {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
      background: #000;
    }

    .about-img-wrap img {
      width: 100%;
      display: block;
      object-fit: cover;
      aspect-ratio: 1.4/1;
    }

    .about-badge-new {
      position: absolute;
      top: 25px;
      right: -25px;
      background: linear-gradient(135deg, #6dffa0 0%, #3d7a4c 100%);
      padding: 20px 25px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      gap: 15px;
      color: #fff;
      box-shadow: 0 15px 30px rgba(30, 54, 35, .3);
    }

    .abn-years {
      font-family: 'Poppins', sans-serif;
      font-size: 28px;
      font-weight: 800;
      line-height: 1
    }

    .abn-text {
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 600;
      max-width: 130px;
      line-height: 1.4;
    }

    .elevate-catalogs-card {
      background: #fff;
      border-radius: 24px;
      box-shadow: 0 30px 60px rgba(0, 0, 0, .08);
      padding: 65px 70px;
      position: relative;
      z-index: 10;
      max-width: calc(100% - 100px);
      margin: -80px auto 100px;
    }

    .ec-title {
      font-family: 'Poppins', sans-serif;
      font-size: 32px;
      font-weight: 800;
      color: #111;
      margin-bottom: 15px;
      letter-spacing: -0.5px;
    }

    .ec-sub {
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      color: #555;
      font-weight: 500;
      margin-bottom: 35px;
      max-width: 800px;
      line-height: 1.7;
    }

    .ec-action-row {
      display: flex;
      align-items: center;
      gap: 40px;
      margin-bottom: 60px;
    }

    .ec-stars {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'Montserrat', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: #111;
    }

    .ec-stars i {
      color: #6dffa0;
      font-size: 16px;
    }

    .catalog-grid-new {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }

    .catalog-box {
      border-radius: 20px;
      text-decoration: none;
      transition: transform .3s, box-shadow .3s;
      overflow: hidden;
      position: relative;
      background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
      box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
      min-height: 320px;
      padding: 40px 40px 40px 40px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .catalog-box::before {
      content: '';
      position: absolute;
      top: -50px;
      right: -50px;
      width: 200px;
      height: 200px;
      background: rgba(109, 255, 160, 0.15);
      border-radius: 50%;
    }

    .catalog-box::after {
      content: '';
      position: absolute;
      bottom: -30px;
      right: 160px;
      width: 120px;
      height: 120px;
      background: rgba(255, 173, 102, 0.1);
      border-radius: 50%;
    }

    .catalog-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 35px 70px rgba(0, 0, 0, .35);
    }

    .catalog-box h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 22px;
      font-weight: 800;
      color: #fff;
      margin: 0 0 12px 0;
      position: relative;
      z-index: 3;
      line-height: 1.2;
    }

    .catalog-box-label {
      font-family: 'Montserrat', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2px;
      color: rgba(255, 173, 102, 0.9);
      text-transform: uppercase;
      margin-bottom: 8px;
      display: block;
      position: relative;
      z-index: 3;
    }

    .catalog-box-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      color: rgba(255, 255, 255, 0.7);
      text-transform: uppercase;
      margin-top: auto;
      position: relative;
      z-index: 3;
    }

    .catalog-box:hover .catalog-box-cta {
      color: #fff;
    }

    .catalog-box img {
      position: absolute;
      bottom: -10px;
      right: 20px;
      width: 130px;
      height: auto;
      object-fit: contain;
      display: block;
      border-radius: 4px;
      box-shadow: -8px 8px 30px rgba(0, 0, 0, .5), -2px 2px 8px rgba(0, 0, 0, .3);
      transform: rotate(-3deg);
      transition: transform .4s ease, box-shadow .4s ease;
      z-index: 2;
    }

    .catalog-box:hover img {
      transform: rotate(0deg) translateY(-8px);
      box-shadow: -12px 16px 40px rgba(0, 0, 0, .6);
    }

    @media (max-width: 900px) {
      .about-top-grid {
        grid-template-columns: 1fr;
        padding: 50px 30px 140px;
        gap: 40px
      }

      .about-badge-new {
        right: 10px;
        top: -20px
      }

      .elevate-catalogs-card {
        max-width: 90%;
        padding: 40px 30px
      }

      .catalog-grid-new {
        grid-template-columns: 1fr
      }

      .ec-action-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px
      }
    }

    /* NEW PARTNER / STATS SECTION (Figma Match) */
    .partner-new {
      background-color: #f4faf6;
      padding: 80px 0 110px;
      position: relative;
      overflow: hidden;
    }

    .partner-bg-shape {
      position: absolute;
      top: -100px;
      left: -50px;
      width: 450px;
      height: 450px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.8);
      box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.7);
      pointer-events: none;
      z-index: 1;
    }

    .partner-title-new {
      font-family: 'Poppins', sans-serif;
      font-size: 42px;
      font-weight: 800;
      color: #111;
      margin-bottom: 50px;
      letter-spacing: -0.5px;
      position: relative;
      z-index: 2;
    }

    .grid-6-new {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
      position: relative;
      z-index: 2;
    }

    .stat-card {
      background: #fff;
      border-radius: 12px;
      padding: 45px 40px 40px;
      position: relative;
      box-shadow: 0 15px 45px rgba(0, 0, 0, .03);
      transition: transform .3s;
    }

    .stat-card:hover {
      transform: translateY(-8px)
    }

    .stat-card.highlight {
      background: linear-gradient(90deg, #1e3623, #3d7a4c, #1e3623);
      color: #fff;
    }

    .stat-val {
      font-family: 'Montserrat', sans-serif;
      font-size: 52px;
      font-weight: 200;
      color: #222;
      display: block;
      margin-bottom: 20px;
      line-height: 1;
      letter-spacing: -1px;
    }

    .stat-card.highlight .stat-val {
      color: #fff
    }

    .stat-name {
      font-family: 'Montserrat', sans-serif;
      font-size: 15px;
      font-weight: 800;
      color: #111;
      display: block;
      margin-bottom: 15px;
      letter-spacing: 0.3px;
    }

    .stat-card.highlight .stat-name {
      color: #fff
    }

    .stat-desc {
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 500;
      color: #555;
      line-height: 1.7;
    }

    .stat-card.highlight .stat-desc {
      color: rgba(255, 255, 255, .95)
    }

    .stat-badge {
      position: absolute;
      top: 25px;
      right: 25px;
      width: 65px;
      height: 65px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .stat-badge svg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      transition: transform .3s;
    }

    .stat-card.highlight .stat-badge svg path {
      fill: #fff;
    }

    .stat-card:hover .stat-badge svg {
      transform: rotate(15deg) scale(1.05);
    }

    .stat-badge i {
      position: relative;
      z-index: 1;
      font-size: 22px;
      color: #fff;
    }

    .stat-card.highlight .stat-badge i {
      color: #555;
    }

    @media (max-width: 1000px) {
      .grid-6-new {
        grid-template-columns: repeat(2, 1fr)
      }
    }

    @media (max-width: 600px) {
      .grid-6-new {
        grid-template-columns: 1fr
      }

      .partner-title-new {
        font-size: 32px;
      }
    }

    @keyframes marquee {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    /* CTA BAR */
    .cta-bar {
      background: linear-gradient(90deg, #0d1f10 0%, #1e3623 100%);
      padding: 70px 0;
      text-align: center;
    }

    .cta-bar h2 {
      font-family: 'Montserrat', sans-serif;
      font-size: 36px;
      font-weight: 900;
      color: #fff;
      margin-bottom: 12px
    }

    .cta-bar p {
      color: rgba(255, 255, 255, .55);
      font-size: 15px;
      margin-bottom: 30px;
      max-width: 550px;
      margin-left: auto;
      margin-right: auto
    }

    .cta-btns {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap
    }

    .btn-green {
      background: var(--green);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      padding: 13px 26px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition)
    }

    .btn-green:hover {
      background: #128c7e
    }

    .btn-orange {
      background: var(--orange);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      padding: 13px 26px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition)
    }

    .btn-orange:hover {
      background: #3d7a4c
    }

    /* FOOTER */
    .site-footer {
      background: #0d1f10;
      color: #fff;
      padding: 70px 0 0
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 50px;
      padding-bottom: 50px;
      border-bottom: 1px solid rgba(255, 255, 255, .08)
    }

    .footer-logo {
      font-family: 'Montserrat', sans-serif;
      font-size: 28px;
      font-weight: 900;
      letter-spacing: 1px;
      margin-bottom: 15px
    }

    .footer-logo img {
      height: 45px;
      filter: brightness(0) invert(1)
    }

    .footer-desc {
      color: rgba(255, 255, 255, .5);
      font-size: 13px;
      line-height: 1.8;
      margin-bottom: 20px
    }

    .footer-addr h6 {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1px;
      color: var(--orange);
      text-transform: uppercase;
      margin-bottom: 8px
    }

    .footer-addr p {
      color: rgba(255, 255, 255, .45);
      font-size: 13px;
      line-height: 1.7
    }

    .footer-social {
      display: flex;
      gap: 10px;
      margin-top: 20px
    }

    .footer-social a {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(255, 255, 255, .15);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, .6);
      font-size: 14px;
      transition: var(--transition)
    }

    .footer-social a:hover {
      background: var(--orange);
      border-color: var(--orange);
      color: #fff
    }

    .footer-col h4 {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 20px;
      color: #fff;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--orange);
      display: inline-block
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .footer-links a {
      color: rgba(255, 255, 255, .5);
      font-size: 13px;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 6px
    }

    .footer-links a::before {
      content: '›';
      color: var(--orange)
    }

    .footer-links a:hover {
      color: #fff;
      padding-left: 4px
    }

    .footer-bottom {
      padding: 20px 0;
      border-top: 1px solid rgba(255, 255, 255, .05)
    }

    .footer-bottom-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px
    }

    .footer-copy {
      color: rgba(255, 255, 255, .3);
      font-size: 12px
    }

    .footer-note {
      color: rgba(255, 255, 255, .2);
      font-size: 11px;
      max-width: 500px;
      text-align: center
    }

    .footer-legal a {
      color: rgba(255, 255, 255, .3);
      font-size: 12px
    }

    .footer-legal a:hover {
      color: var(--orange)
    }

    .footer-legal {
      display: flex;
      gap: 20px
    }

    /* WHATSAPP FLOAT */
    .wa-float {
      position: fixed;
      bottom: 30px;
      left: 25px;
      z-index: 999
    }

    .wa-float a {
      width: 55px;
      height: 55px;
      background: var(--green);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 26px;
      box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
      transition: var(--transition)
    }

    .wa-float a:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 28px rgba(37, 211, 102, .5)
    }

    /* RESPONSIVE */
    @media(max-width:1024px) {
      .discover-grid {
        grid-template-columns: repeat(3, 1fr)
      }

      .corp-grid {
        grid-template-columns: 1fr 1fr
      }

      .stats-grid {
        grid-template-columns: repeat(3, 1fr)
      }

      .megamenu {
        min-width: 600px;
        grid-template-columns: repeat(3, 1fr)
      }
    }

    @media(max-width:768px) {
      .header-inner {
        padding: 0 20px;
        height: 65px
      }

      .main-nav,
      .nav-cta .btn-chat {
        display: none
      }

      .hamburger {
        display: flex
      }

      .hero-content {
        padding: 0 25px
      }

      .hero-title {
        font-size: 32px
      }

      .discover-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 14px;
        padding-bottom: 20px;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
      }

      .discover-grid::-webkit-scrollbar {
        display: none;
      }

      .discover-card {
        min-width: 260px;
        flex-shrink: 0;
      }

      .about-tuyapack-new {
        padding: 60px 0 0;
      }

      .about-top-grid {
        grid-template-columns: 1fr;
        padding: 40px 20px 80px;
        gap: 40px;
      }

      .about-gradient-card {
        border-radius: 16px;
      }

      .about-title {
        font-size: 28px;
      }

      .about-right {
        display: flex;
        justify-content: center;
      }

      .about-badge-new {
        right: 10px;
        top: -15px;
        padding: 15px 20px;
      }

      .about-grid {
        grid-template-columns: 1fr
      }

      .catalog-cards {
        grid-template-columns: 1fr
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .footer-grid {
        grid-template-columns: 1fr
      }

      .corp-grid {
        grid-template-columns: 1fr
      }

      .social-sidebar {
        display: none
      }

      .catalog-grid-new {
        grid-template-columns: 1fr
      }

      .ec-action-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px
      }
    }

    /* CATALOG MODAL */
    .catalog-modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, .7);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity .3s, visibility .3s;
      backdrop-filter: blur(5px);
    }

    .catalog-modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .catalog-modal-box {
      background: #fff;
      border-radius: 20px;
      width: 90%;
      max-width: 420px;
      padding: 45px 40px;
      position: relative;
      text-align: center;
      transform: translateY(30px);
      transition: transform .3s;
      box-shadow: 0 25px 60px rgba(0, 0, 0, .3);
    }

    .catalog-modal-overlay.active .catalog-modal-box {
      transform: translateY(0);
    }

    .cm-close-btn {
      position: absolute;
      top: 20px;
      right: 20px;
      background: none;
      border: none;
      font-size: 22px;
      color: #aaa;
      cursor: pointer;
      transition: color .2s;
    }

    .cm-close-btn:hover {
      color: #111;
    }

    .cm-icon {
      font-size: 45px;
      color: #6dffa0;
      margin-bottom: 15px;
    }

    .cm-header h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 22px;
      font-weight: 800;
      color: #111;
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .cm-header p {
      font-family: 'Montserrat', sans-serif;
      font-size: 13.5px;
      color: #666;
      line-height: 1.6;
      margin-bottom: 30px;
    }

    .cm-form input {
      width: 100%;
      padding: 15px 18px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      margin-bottom: 15px;
      outline: none;
      transition: border-color .2s, box-shadow .2s;
      box-sizing: border-box;
    }

    .cm-form input:focus {
      border-color: #6dffa0;
      box-shadow: 0 0 0 3px rgba(109, 255, 160, .1);
    }

    .cm-submit-btn {
      width: 100%;
      padding: 16px;
      background: #6dffa0;
      color: #fff;
      border: none;
      border-radius: 8px;
      font-family: 'Poppins', sans-serif;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      letter-spacing: 1px;
      transition: background .2s, transform .2s;
    }

    /* WHAT WE CAN DO (MASONRY GALLERY) */
    .what-we-can-do {
      padding: 100px 0;
      background: #fff;
      position: relative;
    }

    .wwcd-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: radial-gradient(#ebebeb 2px, transparent 2px);
      background-size: 50px 50px;
      opacity: 0.6;
      pointer-events: none;
    }

    .wwcd-header {
      text-align: center;
      max-width: 750px;
      margin: 0 auto 60px;
      position: relative;
      z-index: 2;
    }

    .wwcd-header h2 {
      font-family: 'Poppins', sans-serif;
      font-size: 42px;
      font-weight: 800;
      color: #111;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }

    .wwcd-header p {
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      color: #555;
      line-height: 1.7;
    }

    .wwcd-gallery {
      display: flex;
      gap: 25px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding-bottom: 20px;
      position: relative;
      z-index: 2;
    }

    .wwcd-gallery::-webkit-scrollbar {
      height: 8px;
    }

    .wwcd-gallery::-webkit-scrollbar-track {
      background: rgba(30, 54, 35, 0.05);
      border-radius: 4px;
    }

    .wwcd-gallery::-webkit-scrollbar-thumb {
      background: #3d7a4c;
      border-radius: 4px;
    }

    .wwcd-item {
      flex: 0 0 calc(33.333% - 17px);
      scroll-snap-align: start;
      height: 420px;
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      display: block;
      text-decoration: none;
      box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
      transform: translateZ(0);
    }

    .wwcd-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .wwcd-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 35px 30px;
      opacity: 1;
      /* Metinler hep gorunsun */
      transition: opacity 0.4s;
    }

    .wwcd-overlay::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.15);
      z-index: -1;
    }

    .wwcd-item:hover img {
      transform: scale(1.08);
    }

    .wwcd-overlay i {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.5);
      font-size: 45px;
      color: rgba(255, 255, 255, 0.9);
      transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s;
      opacity: 0;
    }

    .wwcd-item:hover .wwcd-overlay i {
      transform: translate(-50%, -50%) scale(1);
      opacity: 1;
    }

    .wwcd-subtitle {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 700;
      color: #6dffa0;
      letter-spacing: 1px;
      margin-bottom: 5px;
      transform: translateY(0);
      /* Her zaman gorunumde kalsin */
    }

    .wwcd-title {
      font-family: 'Poppins', sans-serif;
      font-size: 22px;
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
      transform: translateY(0);
      /* Her zaman gorunumde kalsin */
    }

    @media (max-width: 900px) {
      .wwcd-item {
        flex: 0 0 calc(50% - 12.5px);
      }
    }

    @media (max-width: 600px) {
      .wwcd-item {
        flex: 0 0 85%;
        height: 350px;
      }

      .wwcd-header h2 {
        font-size: 32px;
      }
    }

    /* LIGHTBOX CSS */
    .image-lightbox {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.85);
      z-index: 99999;
      backdrop-filter: blur(5px);
      align-items: center;
      justify-content: center;
    }

    .image-lightbox.active {
      display: flex;
    }

    .il-close {
      position: absolute;
      top: 20px;
      right: 35px;
      font-size: 45px;
      color: #fff;
      cursor: pointer;
      font-weight: 100;
      line-height: 1;
      transition: color .2s;
    }

    .il-close:hover {
      color: #6dffa0;
    }

    .il-content {
      max-width: 90%;
      max-height: 90vh;
      border-radius: 8px;
      box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
      animation: zoomIn 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    @keyframes zoomIn {
      from {
        transform: scale(0.9);
        opacity: 0
      }

      to {
        transform: scale(1);
        opacity: 1
      }
    }

    /* WWCD CAROUSEL */
    .wwcd-carousel-wrap {
      position: relative;
    }

    .wwcd-gallery {
      scroll-behavior: smooth;
      scrollbar-width: none;
    }

    .wwcd-gallery::-webkit-scrollbar {
      display: none;
    }

    .wwcd-nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #fff;
      border: none;
      font-size: 18px;
      color: #1e3623;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
      cursor: pointer;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .wwcd-nav-btn:hover {
      background: #1e3623;
      color: #fff;
    }

    .wwcd-nav-btn.left {
      left: -22px;
    }

    .wwcd-nav-btn.right {
      right: -22px;
    }

    @media(max-width: 900px) {
      .wwcd-nav-btn.left {
        left: -10px;
      }

      .wwcd-nav-btn.right {
        right: -10px;
      }
    }
  