    /* ============ RESET & BASE ============ */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --navy: #0B1F3A;
      --navy-deep: #071527;
      --navy-soft: #16294A;
      --navy-tint: #EEF1F7;
      --gold: #C9A227;
      --gold-light: #E8CD7A;
      --gold-ink: #8A6D14;
      --bg: #FFFFFF;
      --bg-alt: #F7F8FA;
      --ink: #141B26;
      --slate: #5B6472;
      --slate-light: #8A93A3;
      --border: #E4E7EC;
      --whatsapp: #25D366;
      --radius: 14px;
      --shadow-sm: 0 2px 10px rgba(11, 31, 58, 0.06);
      --shadow-md: 0 12px 32px rgba(11, 31, 58, 0.10);
      --shadow-lg: 0 24px 60px rgba(11, 31, 58, 0.16);
      --ease: cubic-bezier(.22, 1, .36, 1);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      color: var(--ink);
      background: var(--bg);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Fraunces', Georgia, serif;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.12;
      letter-spacing: -0.01em;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    ul {
      list-style: none;
    }

    button {
      font: inherit;
      cursor: pointer;
      border: none;
      background: none;
      color: inherit;
    }

    input,
    select,
    textarea {
      font: inherit;
      color: inherit;
    }

    section {
      scroll-margin-top: 88px;
    }

    .container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .eyebrow {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 12.5px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold-ink);
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
    }

    .eyebrow::before {
      content: "";
      width: 26px;
      height: 1.5px;
      background: var(--gold);
      display: inline-block;
    }

    .section-head {
      max-width: 680px;
      margin-bottom: 56px;
    }

    .section-head.center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .section-head h2 {
      font-size: clamp(28px, 3.6vw, 42px);
      margin-bottom: 16px;
    }

    .section-head p {
      color: var(--slate);
      font-size: 17px;
      max-width: 600px;
    }

    .section-head.center p {
      margin: 0 auto;
    }

    .section-pad {
      padding: 112px 0;
    }

    @media(max-width:900px) {
      .section-pad {
        padding: 80px 0;
      }
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 15px 28px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 15px;
      transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
      white-space: nowrap;
    }

    .btn svg {
      width: 18px;
      height: 18px;
    }

    .btn-gold {
      background: var(--gold);
      color: var(--navy-deep);
      box-shadow: 0 8px 20px rgba(201, 162, 39, 0.28);
    }

    .btn-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 28px rgba(201, 162, 39, 0.36);
    }

    .btn-outline {
      background: transparent;
      border: 1.5px solid rgba(11, 31, 58, 0.18);
      color: var(--navy);
    }

    .btn-outline:hover {
      border-color: var(--navy);
      background: var(--navy);
      color: #fff;
      transform: translateY(-2px);
    }

    .btn-whatsapp {
      background: #fff;
      border: 1.5px solid var(--border);
      color: var(--navy);
    }

    .btn-whatsapp svg {
      color: var(--whatsapp);
    }

    .btn-whatsapp:hover {
      border-color: var(--whatsapp);
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
    }

    .btn-block {
      width: 100%;
    }

    .btn-lg {
      padding: 18px 34px;
      font-size: 16px;
    }

    /* Focus visibility */
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible {
      outline: 2.5px solid var(--gold);
      outline-offset: 3px;
      border-radius: 6px;
    }

    .skip-link {
      position: absolute;
      left: -999px;
      top: 0;
      background: var(--navy);
      color: #fff;
      padding: 14px 22px;
      z-index: 2000;
      border-radius: 0 0 8px 0;
    }

    .skip-link:focus {
      left: 0;
    }

    /* ============ HEADER ============ */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.82);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid transparent;
      transition: border-color .35s var(--ease), box-shadow .35s var(--ease), padding .3s var(--ease);
    }

    header.scrolled {
      border-bottom-color: var(--border);
      box-shadow: 0 4px 24px rgba(11, 31, 58, 0.06);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px;
      max-width: 1240px;
      margin: 0 auto;
      transition: padding .3s var(--ease);
    }

    header.scrolled .nav-inner {
      padding: 14px 24px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Fraunces', serif;
      font-weight: 600;
      font-size: 20px;
      color: var(--navy);
    }

    .logo .mark {
      width: 38px;
      height: 38px;
      border-radius: 9px;
      background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      position: relative;
    }

    .logo .mark svg {
      width: 20px;
      height: 20px;
      color: var(--gold-light);
    }

    .logo small {
      display: block;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      font-size: 10.5px;
      letter-spacing: .12em;
      color: var(--slate);
      text-transform: uppercase;
      margin-top: 1px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 34px;
    }

    .nav-links a {
      font-size: 14.5px;
      font-weight: 500;
      color: var(--navy-soft);
      position: relative;
      padding: 4px 0;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 0;
      height: 2px;
      background: var(--gold);
      transition: width .3s var(--ease);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .hamburger {
      display: none;
      width: 42px;
      height: 42px;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
    }

    .hamburger span,
    .hamburger::before,
    .hamburger::after {
      content: "";
      display: block;
      width: 20px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: all .3s var(--ease);
    }

    .hamburger {
      flex-direction: column;
      gap: 5px;
    }

    .hamburger.active span {
      opacity: 0;
    }

    .hamburger.active::before {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active::after {
      transform: translateY(-7px) rotate(-45deg);
    }

    .hamburger.active::before,
    .hamburger.active::after {
      background: #fff;
    }

    @media(max-width:960px) {
      .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 55vh;
        background: var(--navy-deep);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transform: translateY(-100%);
        opacity: 0;
        transition: transform .45s var(--ease), opacity .3s ease;
        padding: 80px 40px 40px;
        border-bottom-left-radius: 32px;
        border-bottom-right-radius: 32px;
        box-shadow: 0 20px 40px rgba(7, 21, 39, 0.25);
      }

      .nav-links.open {
        transform: translateY(0);
        opacity: 1;
      }

      .nav-links a {
        color: #fff;
        font-size: 22px;
        font-family: 'Fraunces', serif;
      }

      .nav-links a::after {
        display: none;
      }

      .nav-cta .btn-outline {
        display: none;
      }

      .hamburger {
        display: flex;
        z-index: 1100;
      }
    }

    /* ============ HERO ============ */
    .hero {
      position: relative;
      padding: 90px 0 100px;
      background:
        radial-gradient(1100px 520px at 82% -10%, rgba(201, 162, 39, 0.10), transparent 60%),
        radial-gradient(900px 500px at -10% 20%, rgba(11, 31, 58, 0.05), transparent 60%),
        #fff;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 60px;
      align-items: center;
    }

    @media(max-width:1020px) {
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 70px;
      }
    }

    .hero-copy h1 {
      font-size: clamp(34px, 4.6vw, 58px);
      margin-bottom: 22px;
    }

    .hero-copy h1 em {
      font-style: italic;
      color: var(--gold-ink);
      background: linear-gradient(180deg, transparent 62%, rgba(201, 162, 39, 0.28) 62%);
      padding: 0 2px;
    }

    .hero-copy p.lead {
      font-size: 18px;
      color: var(--slate);
      max-width: 520px;
      margin-bottom: 36px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 48px;
    }

    .trust-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 28px 34px;
    }

    .trust-badge {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .trust-badge .num {
      font-family: 'Fraunces', serif;
      font-weight: 600;
      font-size: 22px;
      color: var(--navy);
    }

    .trust-badge .lbl {
      font-size: 12.5px;
      color: var(--slate);
      line-height: 1.3;
      max-width: 100px;
    }

    .trust-badge svg {
      width: 22px;
      height: 22px;
      color: var(--gold);
      flex-shrink: 0;
    }

    /* Hero visual: shipment tracker card + stamp */
    .hero-visual {
      position: relative;
    }

    .tracker-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 20px;
      box-shadow: var(--shadow-lg);
      padding: 30px 28px;
      position: relative;
      z-index: 2;
      max-width: 440px;
      margin-left: auto;
    }

    .tracker-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 26px;
    }

    .tracker-top .id {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 12px;
      color: var(--slate-light);
      letter-spacing: .03em;
    }

    .tracker-top .title {
      font-family: 'Fraunces', serif;
      font-weight: 600;
      font-size: 17px;
      color: var(--navy);
      margin-top: 4px;
    }

    .status-pill {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      letter-spacing: .06em;
      background: var(--navy-tint);
      color: var(--navy);
      padding: 6px 12px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      gap: 6px;
      text-transform: uppercase;
    }

    .status-pill .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      animation: pulse 1.6s ease-in-out infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: .4;
        transform: scale(.7);
      }
    }

    .route {
      position: relative;
      height: 74px;
      margin: 8px 4px 22px;
    }

    .route .line {
      position: absolute;
      top: 50%;
      left: 6px;
      right: 6px;
      height: 2px;
      background-image: linear-gradient(90deg, var(--border) 0 6px, transparent 6px 12px);
      background-size: 12px 2px;
    }

    .route .pt {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .route .pt.origin {
      left: 0;
    }

    .route .pt.dest {
      right: 0;
      align-items: flex-end;
    }

    .route .pt .city {
      font-size: 11px;
      color: var(--slate);
      font-weight: 600;
      white-space: nowrap;
    }

    .route .pt .dotmark {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--navy);
      border: 2px solid #fff;
      box-shadow: 0 0 0 2px var(--navy);
    }

    .route .pt.dest .dotmark {
      background: var(--gold);
      box-shadow: 0 0 0 2px var(--gold);
    }

    .route .mover {
      position: absolute;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 16px rgba(11, 31, 58, 0.35);
      animation: travel 5s ease-in-out infinite;
    }

    .route .mover svg {
      width: 14px;
      height: 14px;
      color: var(--gold-light);
    }

    @keyframes travel {
      0% {
        left: 6%;
      }

      50% {
        left: 94%;
      }

      100% {
        left: 6%;
      }
    }

    .checklist {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .checklist li {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13.5px;
      color: var(--navy-soft);
      font-weight: 500;
    }

    .checklist li svg {
      width: 16px;
      height: 16px;
      color: var(--gold);
      flex-shrink: 0;
    }

    .stamp {
      position: absolute;
      top: -26px;
      right: -18px;
      width: 118px;
      height: 118px;
      z-index: 3;
      animation: stampIn 1s var(--ease) .3s both;
    }

    @keyframes stampIn {
      from {
        opacity: 0;
        transform: scale(1.4) rotate(-24deg);
      }

      to {
        opacity: 1;
        transform: scale(1) rotate(-12deg);
      }
    }

    .stamp svg {
      width: 100%;
      height: 100%;
    }

    .hero-blob {
      position: absolute;
      width: 520px;
      height: 520px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(11, 31, 58, 0.05), transparent 70%);
      top: -120px;
      right: -160px;
      z-index: 0;
    }

    @media(prefers-reduced-motion:reduce) {

      .status-pill .dot,
      .route .mover,
      .stamp {
        animation: none !important;
      }
    }

    /* ============ LOGO / TRUST STRIP ============ */
    .strip {
      background: var(--navy-deep);
      padding: 26px 0;
    }

    .strip .container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px 40px;
      align-items: center;
      justify-content: space-between;
    }

    .strip p {
      color: rgba(255, 255, 255, 0.55);
      font-size: 12.5px;
      font-family: 'IBM Plex Mono', monospace;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .strip .marquee {
      display: flex;
      gap: 38px;
      flex-wrap: wrap;
    }

    .strip .marquee span {
      color: rgba(255, 255, 255, 0.82);
      font-weight: 600;
      font-size: 14.5px;
      font-family: 'Fraunces', serif;
    }

    /* ============ CATEGORIES ============ */
    .cat-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
      gap: 18px;
    }

    .cat-card {
      background: transparent;
      border: none;
      padding: 0;
      border-radius: var(--radius);
      perspective: 1200px;
      height: 200px;
      cursor: pointer;
    }

    .cat-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      transition: transform 0.65s var(--ease);
      transform-style: preserve-3d;
      border-radius: var(--radius);
    }

    .cat-card:hover .cat-card-inner {
      transform: rotateY(180deg);
    }

    .cat-card-front,
    .cat-card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      border-radius: var(--radius);
      padding: 26px 22px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      border: 1px solid var(--border);
    }

    .cat-card-front {
      background: var(--bg);
      gap: 16px;
      box-shadow: var(--shadow-sm);
    }

    .cat-card-back {
      background: linear-gradient(135deg, var(--navy), var(--navy-deep));
      color: #fff;
      transform: rotateY(180deg);
      border-color: var(--navy-deep);
      gap: 12px;
      box-shadow: var(--shadow-md);
    }

    .cat-icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cat-icon svg {
      width: 26px;
      height: 26px;
      color: var(--gold-light);
    }

    .cat-card h3 {
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 16px;
      margin: 0;
    }

    .cat-card-front h3 {
      color: var(--navy);
    }

    .cat-card-back h3 {
      color: var(--gold-light);
    }

    .cat-card-back span {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.85);
      line-height: 1.5;
    }

    /* ============ PROCESS ============ */
    .process {
      background: var(--navy-deep);
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .process::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(700px 400px at 90% 10%, rgba(201, 162, 39, 0.10), transparent 65%);
    }

    .process .section-head h2 {
      color: #fff;
    }

    .process .section-head p {
      color: rgba(255, 255, 255, 0.6);
    }

    .process .eyebrow {
      color: var(--gold-light);
    }

    .process .eyebrow::before {
      background: var(--gold-light);
    }

    .steps {
      position: relative;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 18px;
      overflow: hidden;
    }

    @media(max-width:860px) {
      .steps {
        grid-template-columns: 1fr;
      }
    }

    @media(min-width:861px) and (max-width:1180px) {
      .steps {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .step {
      background: var(--navy-deep);
      padding: 38px 30px;
      position: relative;
      transition: background .35s var(--ease);
    }

    .step:hover {
      background: var(--navy-soft);
    }

    .step .num {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 13px;
      color: var(--gold-light);
      opacity: .8;
      letter-spacing: .05em;
    }

    .step h3 {
      color: #fff;
      font-size: 19px;
      margin: 12px 0 10px;
    }

    .step p {
      color: rgba(255, 255, 255, 0.58);
      font-size: 14.5px;
    }

    .step-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(201, 162, 39, 0.14);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }

    .step-icon svg {
      width: 20px;
      height: 20px;
      color: var(--gold-light);
    }

    /* ============ SERVICES ============ */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    @media(max-width:960px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media(max-width:620px) {
      .services-grid {
        grid-template-columns: 1fr;
      }
    }

    .service-card {
      padding: 34px 28px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
      position: relative;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      border-color: transparent;
    }

    .service-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: var(--navy-tint);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
    }

    .service-icon svg {
      width: 25px;
      height: 25px;
      color: var(--navy);
    }

    .service-card h3 {
      font-size: 19px;
      margin-bottom: 10px;
    }

    .service-card p {
      color: var(--slate);
      font-size: 14.5px;
    }

    /* ============ WHY CHOOSE US ============ */
    .why-wrap {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 70px;
      align-items: center;
    }

    @media(max-width:960px) {
      .why-wrap {
        grid-template-columns: 1fr;
        gap: 44px;
      }
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }

    @media(max-width:520px) {
      .why-grid {
        grid-template-columns: 1fr;
      }
    }

    .why-item {
      display: flex;
      gap: 16px;
    }

    .why-item .ic {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .why-item .ic svg {
      width: 21px;
      height: 21px;
      color: var(--gold-light);
    }

    .why-item h4 {
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 15.5px;
      color: var(--navy);
      margin-bottom: 4px;
    }

    .why-item p {
      font-size: 13.5px;
      color: var(--slate);
    }

    .why-visual {
      position: relative;
      border-radius: 20px;
      background: linear-gradient(155deg, var(--navy), var(--navy-deep));
      padding: 44px 36px;
      color: #fff;
      overflow: hidden;
    }

    .why-visual::after {
      content: "";
      position: absolute;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(201, 162, 39, 0.18), transparent 70%);
      bottom: -100px;
      right: -80px;
    }

    .why-visual .stat-big {
      font-family: 'Fraunces', serif;
      font-size: 64px;
      font-weight: 600;
      color: var(--gold-light);
      position: relative;
    }

    .why-visual .stat-lbl {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
      margin-top: 8px;
      position: relative;
      max-width: 280px;
    }

    .why-visual .divider {
      width: 100%;
      height: 1px;
      background: rgba(255, 255, 255, 0.14);
      margin: 28px 0;
    }

    .mini-stats {
      display: flex;
      gap: 30px;
      position: relative;
      flex-wrap: wrap;
    }

    .mini-stats div b {
      display: block;
      font-family: 'Fraunces', serif;
      font-size: 24px;
      color: #fff;
    }

    .mini-stats div span {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.55);
    }

    /* ============ ABOUT ============ */
    .about-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
    }

    @media(max-width:960px) {
      .about-wrap {
        grid-template-columns: 1fr;
        gap: 48px;
      }
    }

    .about-copy p {
      color: var(--slate);
      margin-bottom: 18px;
      font-size: 16px;
    }

    .about-copy p:last-of-type {
      margin-bottom: 0;
    }

    .about-image-wrapper {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      aspect-ratio: 4/3;
    }

    .about-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s var(--ease);
    }

    .about-image-wrapper:hover img {
      transform: scale(1.05);
    }

    .about-image-wrapper::after {
      content: '';
      position: absolute;
      inset: 0;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
      border-radius: 24px;
      pointer-events: none;
    }

    /* ============ TESTIMONIALS ============ */
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    @media(max-width:960px) {
      .testi-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media(max-width:680px) {
      .testi-grid {
        grid-template-columns: 1fr;
      }
    }

    .testi-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 30px 26px;
      display: flex;
      flex-direction: column;
      gap: 18px;
      transition: box-shadow .3s, transform .3s;
    }

    .testi-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
    }

    .testi-card .quote-icon svg {
      width: 26px;
      height: 26px;
      color: var(--gold);
    }

    .testi-card p {
      font-size: 14.5px;
      color: var(--navy-soft);
      flex: 1;
    }

    .testi-stars {
      display: flex;
      gap: 3px;
    }

    .testi-stars svg {
      width: 14px;
      height: 14px;
      color: var(--gold);
    }

    .testi-person {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 14px;
      border-top: 1px solid var(--border);
    }

    .avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: linear-gradient(155deg, var(--navy), var(--navy-soft));
      color: var(--gold-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Fraunces', serif;
      font-weight: 600;
      font-size: 15px;
      flex-shrink: 0;
    }

    .testi-person .name {
      font-weight: 600;
      font-size: 14px;
      color: var(--navy);
    }

    .testi-person .role {
      font-size: 12px;
      color: var(--slate-light);
    }

    /* ============ SOCIAL ============ */
    .social-band {
      background: var(--bg-alt);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .social-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 26px;
      padding-top: 44px;
      padding-bottom: 44px;
    }

    .social-inner h3 {
      font-size: 20px;
    }

    .social-inner p {
      color: var(--slate);
      font-size: 14.5px;
      margin-top: 4px;
    }

    .social-icons {
      display: flex;
      gap: 14px;
    }

    .social-icons a {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .3s var(--ease);
    }

    .social-icons a svg {
      width: 20px;
      height: 20px;
      color: var(--navy);
      transition: color .3s;
    }

    .social-icons a:hover {
      background: var(--navy);
      border-color: var(--navy);
      transform: translateY(-4px);
    }

    .social-icons a:hover svg {
      color: var(--gold-light);
    }

    .social-icons a.wa:hover {
      background: var(--whatsapp);
      border-color: var(--whatsapp);
    }

    .social-icons a.wa:hover svg {
      color: #fff;
    }

    /* ============ QUOTE FORM ============ */
    .quote-section {
      background: var(--bg-alt);
    }

    .quote-wrap {
      display: grid;
      grid-template-columns: .9fr 1.3fr;
      gap: 56px;
    }

    @media(max-width:960px) {
      .quote-wrap {
        grid-template-columns: 1fr;
      }
    }

    .quote-side h2 {
      font-size: clamp(26px, 3.2vw, 36px);
      margin-bottom: 16px;
    }

    .quote-side p {
      color: var(--slate);
      margin-bottom: 28px;
    }

    .quote-points li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      margin-bottom: 16px;
      font-size: 14.5px;
      color: var(--navy-soft);
    }

    .quote-points svg {
      width: 18px;
      height: 18px;
      color: var(--gold);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .quote-direct {
      margin-top: 32px;
      padding-top: 28px;
      border-top: 1px solid var(--border);
    }

    .quote-direct .row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
      font-size: 14.5px;
      color: var(--navy);
      font-weight: 500;
    }

    .quote-direct svg {
      width: 19px;
      height: 19px;
      color: var(--gold-ink);
    }

    .quote-form {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 38px;
      box-shadow: var(--shadow-sm);
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    @media(max-width:600px) {
      .form-grid {
        grid-template-columns: 1fr;
      }
    }

    .form-grid .full {
      grid-column: 1/-1;
    }

    .field label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 8px;
    }

    .field .req {
      color: var(--gold-ink);
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      padding: 13px 15px;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      background: var(--bg-alt);
      font-size: 14.5px;
      transition: border-color .25s, background .25s;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: var(--gold);
      background: #fff;
      outline: none;
    }

    .field textarea {
      resize: vertical;
      min-height: 96px;
    }

    .form-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 28px;
    }

    .form-note {
      font-size: 12.5px;
      color: var(--slate-light);
      max-width: 280px;
    }

    .form-success {
      display: none;
      text-align: center;
      padding: 40px 10px;
    }

    .form-success.show {
      display: block;
    }

    .form-success .ic {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--navy-tint);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
    }

    .form-success .ic svg {
      width: 30px;
      height: 30px;
      color: var(--gold-ink);
    }

    .form-success h3 {
      margin-bottom: 8px;
    }

    .form-success p {
      color: var(--slate);
    }

    /* ============ CTA BAND ============ */
    .cta-band {
      background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
      color: #fff;
      position: relative;
      overflow: hidden;
      padding: 90px 0;
    }

    .cta-band::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(650px 380px at 12% 0%, rgba(201, 162, 39, 0.16), transparent 60%);
    }

    .cta-inner {
      position: relative;
      text-align: center;
      max-width: 680px;
      margin: 0 auto;
    }

    .cta-inner h2 {
      color: #fff;
      font-size: clamp(28px, 3.6vw, 42px);
      margin-bottom: 18px;
    }

    .cta-inner p {
      color: rgba(255, 255, 255, 0.68);
      font-size: 16.5px;
      margin-bottom: 38px;
    }

    .cta-actions {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    /* ============ FOOTER ============ */
    footer {
      background: var(--navy-deep);
      color: rgba(255, 255, 255, 0.72);
      padding: 80px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
      gap: 44px;
      padding-bottom: 56px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    @media(max-width:900px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width:560px) {
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    .footer-brand .logo {
      color: #fff;
    }

    .footer-brand p {
      margin: 18px 0 22px;
      font-size: 14px;
      max-width: 280px;
      color: rgba(255, 255, 255, 0.55);
    }

    footer h4 {
      color: #fff;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      letter-spacing: .03em;
      margin-bottom: 20px;
    }

    footer ul li {
      margin-bottom: 12px;
      font-size: 14px;
    }

    footer ul li a:hover {
      color: var(--gold-light);
    }

    .footer-contact li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }

    .footer-contact svg {
      width: 17px;
      height: 17px;
      color: var(--gold-light);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .footer-social {
      display: flex;
      gap: 12px;
      margin-top: 6px;
    }

    .footer-social a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.14);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .3s;
    }

    .footer-social a svg {
      width: 16px;
      height: 16px;
      color: rgba(255, 255, 255, 0.8);
    }

    .footer-social a:hover {
      background: var(--gold);
      border-color: var(--gold);
    }

    .footer-social a:hover svg {
      color: var(--navy-deep);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      padding: 26px 0;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.4);
    }

    .footer-bottom a:hover {
      color: #fff;
    }

    .footer-bottom .links {
      display: flex;
      gap: 22px;
    }

    /* ============ FLOATING ELEMENTS ============ */
    .fab-wa {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: var(--whatsapp);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 900;
      box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
      transition: transform .3s var(--ease);
    }

    .fab-wa:hover {
      transform: scale(1.08);
    }

    .fab-wa svg {
      width: 28px;
      height: 28px;
      color: #fff;
    }

    .fab-top {
      position: fixed;
      bottom: 24px;
      right: 92px;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 900;
      box-shadow: var(--shadow-sm);
      opacity: 0;
      pointer-events: none;
      transform: translateY(10px);
      transition: all .3s var(--ease);
    }

    .fab-top.show {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .fab-top svg {
      width: 18px;
      height: 18px;
      color: var(--navy);
    }

    @media(max-width:600px) {
      .fab-wa {
        width: 52px;
        height: 52px;
        bottom: 18px;
        right: 18px;
      }

      .fab-top {
        right: 78px;
        bottom: 18px;
        width: 42px;
        height: 42px;
      }
    }

    /* ============ SCROLL REVEAL ============ */
    [data-animate] {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity .7s var(--ease), transform .7s var(--ease);
    }

    [data-animate].in-view {
      opacity: 1;
      transform: translateY(0);
    }

    [data-animate="fade"] {
      transform: translateY(0);
    }

    @media(prefers-reduced-motion:reduce) {
      [data-animate] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }

      html {
        scroll-behavior: auto;
      }
    }

    /* New Why Choose Us Section */
    .why-section-new {
      background: #F7F8FA;
      padding: 100px 0;
    }

    .why-new-container {
      display: flex;
      gap: 30px;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* Left Panel */
    .why-left-panel {
      background: #05182B;
      border-radius: 20px;
      width: 42%;
      padding: 60px 40px;
      color: #fff;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
    }

    .why-left-globe {
      width: calc(100% + 80px);
      height: 250px;
      object-fit: cover;
      object-position: top;
      max-width: none;
      margin: -60px -40px 40px -40px;
      display: block;
    }

    .why-left-content h2 {
      color: #fff;
      font-size: 32px;
      margin-bottom: 24px;
      line-height: 1.3;
    }

    .why-left-content h2 span {
      color: #E8CD7A;
      /* Gold */
    }

    .why-left-content>p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 40px;
    }

    .why-left-stats {
      display: flex;
      gap: 20px;
      margin-top: auto;
    }

    .why-left-stat {
      flex: 1;
      text-align: center;
    }

    .why-left-stat .ic {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid rgba(232, 205, 122, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
    }

    .why-left-stat .ic svg {
      width: 24px;
      height: 24px;
      color: #E8CD7A;
    }

    .why-left-stat h4 {
      color: #fff;
      font-size: 14px;
      margin-bottom: 8px;
      font-family: 'Inter', sans-serif;
    }

    .why-left-stat p {
      color: rgba(255, 255, 255, 0.6);
      font-size: 12px;
    }

    /* Right Panel */
    .why-right-panel {
      width: 58%;
      display: flex;
      flex-direction: column;
    }

    .why-right-header {
      margin-bottom: 40px;
    }

    .why-right-header .eyebrow {
      color: #8A6D14;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 600;
      margin-bottom: 16px;
      display: block;
    }

    .why-right-header .eyebrow::before {
      content: "";
      display: inline-block;
      width: 30px;
      height: 2px;
      background: #E8CD7A;
      margin-right: 12px;
      vertical-align: middle;
    }

    .why-right-header h2 {
      font-size: 42px;
      color: #0B1F3A;
      line-height: 1.2;
    }

    .why-right-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .why-right-item {
      display: flex;
      gap: 20px;
    }

    .why-right-item .ic {
      width: 56px;
      height: 56px;
      background: #fff;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      flex-shrink: 0;
    }

    .why-right-item .ic svg {
      width: 28px;
      height: 28px;
      color: #C9A227;
    }

    .why-right-item h4 {
      font-size: 18px;
      color: #0B1F3A;
      margin-bottom: 8px;
    }

    .why-right-item p {
      font-size: 14px;
      color: #5B6472;
      line-height: 1.6;
    }

    /* Bottom Box */
    .why-bottom-box {
      background: #fff;
      border: 1px solid #E8CD7A;
      border-radius: 16px;
      padding: 30px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .wb-item {
      text-align: center;
    }

    .wb-item .ic {
      margin: 0 auto 16px;
      display: flex;
      justify-content: center;
    }

    .wb-item .ic svg {
      width: 32px;
      height: 32px;
      color: #0B1F3A;
    }

    .wb-item h4 {
      font-size: 14px;
      color: #0B1F3A;
      margin-bottom: 8px;
    }

    .wb-item p {
      font-size: 12px;
      color: #5B6472;
    }

    @media (max-width: 1024px) {
      .why-new-container {
        flex-direction: column;
      }

      .why-left-panel,
      .why-right-panel {
        width: 100%;
      }

      .why-bottom-box {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 600px) {

      .why-right-grid,
      .why-bottom-box {
        grid-template-columns: 1fr;
      }

      .why-left-stats {
        flex-direction: column;
      }
    }

    /* Hover effects for Why Choose Us section */
    .why-left-stat {
      transition: transform 0.3s ease;
    }

    .why-left-stat:hover {
      transform: translateY(-5px);
    }

    .why-left-stat .ic {
      transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease !important;
    }

    .why-left-stat:hover .ic {
      background: rgba(232, 205, 122, 0.15);
      border-color: #E8CD7A;
      transform: scale(1.05);
    }

    .why-right-item {
      transition: transform 0.3s ease;
    }

    .why-right-item:hover {
      transform: translateY(-4px);
    }

    .why-right-item .ic {
      transition: box-shadow 0.3s ease, transform 0.3s ease !important;
    }

    .why-right-item:hover .ic {
      box-shadow: 0 8px 25px rgba(201, 162, 39, 0.2);
      transform: scale(1.05);
    }

    .wb-item {
      transition: transform 0.3s ease;
    }

    .wb-item:hover {
      transform: translateY(-4px);
    }

    .wb-item .ic svg {
      transition: color 0.3s ease, transform 0.3s ease !important;
    }

    .wb-item:hover .ic svg {
      color: #C9A227;
      transform: scale(1.1);
    }

    /* ============ CONTACT SECTION ============ */
    .contact-section {
      padding-bottom: 100px;
    }

    .contact-wrap {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 40px;
      align-items: start;
    }

    /* Left side */
    .contact-left {
      padding-top: 20px;
    }

    .contact-left .eyebrow {
      color: #8A6D14;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 600;
      margin-bottom: 16px;
      display: block;
    }

    .contact-left .eyebrow::before {
      content: "";
      display: inline-block;
      width: 30px;
      height: 2px;
      background: #E8CD7A;
      margin-right: 12px;
      vertical-align: middle;
    }

    .contact-left h2 {
      font-size: 42px;
      color: #0B1F3A;
      line-height: 1.2;
      margin-bottom: 24px;
    }

    .contact-left .contact-desc {
      color: #5B6472;
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 30px;
    }

    .contact-points {
      list-style: none;
      margin-bottom: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(11, 31, 58, 0.1);
    }

    .contact-points li {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
      color: #0B1F3A;
      font-weight: 500;
      font-size: 15px;
    }

    .contact-points li svg {
      width: 20px;
      height: 20px;
      color: #C9A227;
    }

    .contact-availability {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .contact-availability .ic {
      width: 48px;
      height: 48px;
      background: #C9A227;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-availability .ic svg {
      width: 24px;
      height: 24px;
      color: #fff;
    }

    .contact-availability .content {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .contact-availability .lbl {
      color: #5B6472;
      font-size: 14px;
    }

    .contact-availability .time {
      color: #0B1F3A;
      font-weight: 700;
      font-size: 15px;
    }

    .contact-availability .note {
      color: #8893A4;
      font-size: 13px;
      margin-top: 4px;
    }

    /* Right side (Card) */
    .contact-card {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
      padding: 10px;
      display: flex;
      flex-direction: column;
    }

    .contact-card-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }

    .cc-details {
      padding: 40px;
      border-right: 1px solid #f0f0f0;
    }

    .cc-item {
      display: flex;
      gap: 16px;
      padding-bottom: 24px;
      margin-bottom: 24px;
      border-bottom: 1px solid #f0f0f0;
    }

    .cc-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .cc-item .ic {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #FFF9E6;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .cc-item .ic svg {
      width: 20px;
      height: 20px;
      color: #C9A227;
    }

    .cc-item .content {
      display: flex;
      flex-direction: column;
    }

    .cc-item .lbl {
      font-weight: 700;
      color: #0B1F3A;
      font-size: 15px;
      margin-bottom: 4px;
    }

    .cc-item .val {
      color: #0B1F3A;
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 4px;
    }

    .cc-item a {
      color: inherit;
      text-decoration: none;
    }

    .cc-item p {
      color: #8893A4;
      font-size: 13px;
      line-height: 1.5;
      margin: 0;
    }

    .cc-visuals {
      padding: 40px;
      display: flex;
      flex-direction: column;
    }

    .cc-map-img {
      width: calc(100% + 80px);
      height: auto;
      object-fit: contain;
      margin: -20px -40px 30px -40px;
    }

    .cc-socials .lbl {
      font-weight: 700;
      color: #0B1F3A;
      font-size: 15px;
      margin-bottom: 20px;
      display: block;
    }

    .social-grid {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .soc-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      background: #F3F4F6;
      border-radius: 50%;
      text-decoration: none;
      transition: transform 0.2s, background 0.2s;
      flex-shrink: 0;
    }

    .soc-link:hover {
      transform: translateY(-3px);
      background: #EDEFE1;
    }

    .soc-link svg {
      width: 22px;
      height: 22px;
    }

    .contact-card-banner {
      background: #F7F8FA;
      border-radius: 12px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      margin-top: auto;
    }

    .cb-left {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .cb-left .ic {
      width: 48px;
      height: 48px;
      background: #fff;
      border-radius: 50%;
      border: 2px solid #E8CD7A;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cb-left .ic svg {
      width: 24px;
      height: 24px;
      color: #C9A227;
    }

    .cb-text {
      display: flex;
      flex-direction: column;
    }

    .cb-text .lbl {
      font-weight: 700;
      color: #0B1F3A;
      font-size: 16px;
      line-height: 0;

    }

    .cb-text .note {
      color: #5B6472;
      font-size: 14px;
    }

    .contact-card-banner .btn-solid {
      background: #D4AF37;
      color: #0B1F3A;
      border-radius: 30px;
      padding: 12px 24px;
      font-weight: 700;
      text-decoration: none;
      display: flex;
      align-items: center;
      font-size: 14px;
      transition: background 0.2s;
    }

    .contact-card-banner .btn-solid:hover {
      background: #C9A227;
    }

    @media (max-width: 1024px) {
      .contact-wrap {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .contact-card-top {
        grid-template-columns: 1fr;
      }

      .cc-details {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
      }

      .contact-card-banner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
      }
    }