/* Consolidated site styles (auto-generated) */

/* ---- from blog-inner.html ---- */
:root { --primary:#008080; --secondary:#004d4d; --beige:#FAF9F6; }
    body{ font-family:'Inter',sans-serif; background:var(--beige); color:#1F2937; }
    .font-outfit{ font-family:'Outfit',sans-serif; }

    /* desktop nav links */
    .navlink{ position:relative; padding:.35rem .15rem; transition:.2s; }
    .navlink:hover{ color:#008080; }
    .navlink.active{ color:#008080; }
    .navlink.active::after{
      content:"";
      position:absolute; left:0; right:0; bottom:-6px;
      height:2px; border-radius:999px;
      background: rgba(0,128,128,.85);
    }

    /* dropdown */
    .dd{
      position:absolute; left:0; top:calc(100% + 10px);
      width:320px;
      padding:10px;
      border-radius:18px;
      background:rgba(255,255,255,.92);
      backdrop-filter: blur(10px);
      border:1px solid rgba(0,0,0,.08);
      box-shadow: 0 18px 40px rgba(2, 46, 43, .10);
      opacity:0; visibility:hidden; transform: translateY(6px);
      transition: .22s ease;
      z-index:60;
    }
    .group:hover .dd{ opacity:1; visibility:visible; transform: translateY(0); }
    .dd-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:10px 12px; border-radius:14px;
      transition:.18s ease;
    }
    .dd-item:hover{ background: rgba(0,128,128,.08); }
    .dd-ico{
      width:34px; height:34px; border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(0,128,128,.10);
      border:1px solid rgba(0,0,0,.06);
      flex:0 0 auto;
    }
    .dd-title{ display:block; font-weight:900; font-size:13px; color:#0f172a; }
    .dd-sub{ display:block; font-size:11px; font-weight:800; letter-spacing:.02em; color: rgba(15, 23, 42, .55); }

    /* corporate CTA */
    .corporate-btn{
      position:relative;
      padding:10px 24px;
      border-radius:999px;
      font-weight:900;
      color:#ffffff;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.15);
      background: linear-gradient(120deg,#008080,#2bb7b3,#7ee6df,#008080);
      background-size:300% 300%;
      animation: bgMove 6s ease infinite;
      transition:all .3s ease;
    }
    .corporate-btn::before{
      content:"";
      position:absolute; inset:-3px;
      border-radius:999px;
      background: conic-gradient(transparent,rgba(126,230,223,.9),rgba(0,128,128,.9),rgba(126,230,223,.9),transparent);
      animation: spin 4s linear infinite;
      filter: blur(6px);
      opacity:.65;
    }
    .corporate-btn::after{
      content:"";
      position:absolute; inset:2px;
      border-radius:999px;
      background: linear-gradient(120deg,#008080,#2bb7b3,#7ee6df,#008080);
      background-size:300% 300%;
      animation: bgMove 6s ease infinite;
      z-index:1;
    }
    .corporate-btn span{ position:relative; z-index:2; }
    .corporate-btn:hover{ transform:translateY(-1px); box-shadow:0 14px 32px rgba(0,128,128,.35); }
    @keyframes spin{ to{ transform:rotate(360deg); } }
    @keyframes bgMove{ 0%{ background-position:0% 50%; } 50%{ background-position:100% 50%; } 100%{ background-position:0% 50%; } }

    /* layout */
    .shell{
      border:1px solid rgba(0,0,0,.06);
      background: rgba(255,255,255,.90);
      backdrop-filter: blur(10px);
      border-radius: 28px;
      box-shadow: 0 18px 70px rgba(15,23,42,.08);
      position: relative;
      overflow:hidden;
    }
    .shell:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(circle at 18% 18%, rgba(15,143,136,.16), transparent 42%),
        radial-gradient(circle at 82% 30%, rgba(0,77,77,.12), transparent 46%),
        radial-gradient(circle at 35% 92%, rgba(15,143,136,.10), transparent 52%);
      opacity:.9;
      pointer-events:none;
    }
    .shell > *{ position:relative; z-index:1; }

    .badge{
      font-size:10px; font-weight:900; letter-spacing:.35em; text-transform:uppercase;
      padding:8px 12px; border-radius:999px;
      background: rgba(0,128,128,.08);
      border: 1px solid rgba(0,128,128,.18);
      color: rgba(0,128,128,.95);
      display:inline-flex; align-items:center; gap:8px;
    }
    .dot{
      width:8px;height:8px;border-radius:999px;background: rgba(0,128,128,.95);
      box-shadow:0 0 0 6px rgba(0,128,128,.12);
    }
    .chip{
      display:inline-flex; align-items:center; justify-content:center;
      padding:10px 12px;
      border-radius:999px;
      background: rgba(255,255,255,.75);
      border:1px solid rgba(0,0,0,.06);
      font-weight:900;
      font-size:13px;
      transition:.18s ease;
      white-space:nowrap;
    }
    .chip:hover{ background: rgba(0,128,128,.10); border-color: rgba(0,128,128,.22); color: var(--primary); }

    .card{
      border:1px solid rgba(0,0,0,.06);
      background:#fff;
      border-radius: 22px;
      box-shadow: 0 10px 35px rgba(15,23,42,.06);
    }

    .heroimg{
      height: 280px;
      border-radius: 26px;
      border: 1px solid rgba(0,0,0,.06);
      background: linear-gradient(135deg, rgba(0,128,128,.25), rgba(0,77,77,.10));
      position:relative;
      overflow:hidden;
    }
    .heroimg:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.35), transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(0,0,0,.18), transparent 55%),
        linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
      opacity:.9;
    }
    .heroimg svg{
      position:absolute;
      right: 18px;
      bottom: 18px;
      opacity:.85;
    }

    .meta{
      font-size:11px;
      font-weight:900;
      letter-spacing:.22em;
      text-transform: uppercase;
      color: rgba(15,23,42,.55);
    }

    /* article typography */
    .prose{
      color:#111827;
    }
    .prose h2{
      font-family:'Outfit',sans-serif;
      font-weight:900;
      font-size: 22px;
      margin-top: 22px;
      margin-bottom: 10px;
      letter-spacing: -.01em;
    }
    .prose p{
      font-weight:700;
      color: rgba(15,23,42,.75);
      line-height: 1.85;
      margin: 12px 0;
      font-size: 14.5px;
    }
    .prose ul{
      margin: 10px 0 14px 18px;
      color: rgba(15,23,42,.75);
      font-weight:800;
      font-size: 14.5px;
    }
    .prose li{ margin: 8px 0; }
    .callout{
      border-radius: 22px;
      border:1px solid rgba(0,128,128,.22);
      background: rgba(0,128,128,.06);
      padding: 14px;
    }
    .callout b{ color:#0f172a; }

    .field{
      width:100%;
      padding:12px 14px;
      border-radius:16px;
      border:1px solid #e5e7eb;
      background:#fff;
      font-weight:800;
      outline:none;
    }
    .field:focus{ border-color: rgba(0,128,128,.6); box-shadow:0 0 0 4px rgba(0,128,128,.12); }

    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      padding:12px 16px;
      border-radius:999px;
      font-weight:900;
      background: var(--primary);
      color:#fff;
      transition:.2s ease;
      width:100%;
    }
    .btn:hover{ opacity:.95; transform: translateY(-1px); }
    .softbtn{
      display:inline-flex; align-items:center; justify-content:center;
      padding:11px 14px;
      border-radius:999px;
      font-weight:900;
      background: rgba(0,128,128,.10);
      border: 1px solid rgba(0,128,128,.22);
      color: var(--primary);
      transition:.2s ease;
    }
    .softbtn:hover{ background: rgba(0,128,128,.14); transform: translateY(-1px); }

    /* footer (same) */
    .route-glow{
      position:absolute; left:-35%; top:-1px; height:3px; width:45%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
      animation: routeGlow 4.6s linear infinite;
      filter: blur(1px);
    }
    @keyframes routeGlow{ from{ transform:translateX(0);} to{ transform:translateX(240%);} }

    .fcard{
      position:relative;
      border-radius: 22px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.20);
      padding: 16px;
      overflow:hidden;
    }
    .ftitle{
      font-size: 10px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .28em;
      color: rgba(255,255,255,.85);
    }
    .stamp {
      position: absolute;
      right: 14px;
      top: 14px;
      background: rgba(15, 143, 136, .92);
      color: #fff;
      border-radius: 14px;
      padding: 10px 12px;
      font-weight: 900;
      text-align: center;
      height: 42px; font-size:.8rem; line-height: 1;
      display: flex; flex-flow: column; align-items: center;
      transform: rotate(351deg);
      box-shadow: 0 14px 40px rgba(15, 143, 136, .25);
    }
    .clink{ display:block; color: rgba(255,255,255,.85); }
    .clink:hover{ color:#fff; text-decoration: underline; }
    .soc{
      width:40px;height:40px;border-radius:999px;
      display:flex;align-items:center;justify-content:center;
      background: rgba(255,255,255,.16);
      border:1px solid rgba(255,255,255,.22);
      transition:.2s ease;
      font-weight:900; font-size:12px;
    }
    .soc:hover{ transform: translateY(-2px); background: rgba(255,255,255,.26); border-color: rgba(255,255,255,.35); }
    .ql{
      padding:10px 12px;
      border-radius:14px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.18);
      transition:.2s ease;
      font-weight:600;
    }
    .ql:hover{ background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.30); }

/* ---- from blog.html ---- */
:root { --primary:#008080; --secondary:#004d4d; --beige:#FAF9F6; }
    body{ font-family:'Inter',sans-serif; background:var(--beige); color:#1F2937; }
    .font-outfit{ font-family:'Outfit',sans-serif; }

    /* desktop nav links */
    .navlink{ position:relative; padding:.35rem .15rem; transition:.2s; }
    .navlink:hover{ color:#008080; }
    .navlink.active{ color:#008080; }
    .navlink.active::after{
      content:"";
      position:absolute; left:0; right:0; bottom:-6px;
      height:2px; border-radius:999px;
      background: rgba(0,128,128,.85);
    }

    /* dropdown */
    .dd{
      position:absolute; left:0; top:calc(100% + 10px);
      width:320px;
      padding:10px;
      border-radius:18px;
      background:rgba(255,255,255,.92);
      backdrop-filter: blur(10px);
      border:1px solid rgba(0,0,0,.08);
      box-shadow: 0 18px 40px rgba(2, 46, 43, .10);
      opacity:0; visibility:hidden; transform: translateY(6px);
      transition: .22s ease;
      z-index:60;
    }
    .group:hover .dd{ opacity:1; visibility:visible; transform: translateY(0); }
    .dd-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:10px 12px; border-radius:14px;
      transition:.18s ease;
    }
    .dd-item:hover{ background: rgba(0,128,128,.08); }
    .dd-ico{
      width:34px; height:34px; border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(0,128,128,.10);
      border:1px solid rgba(0,0,0,.06);
      flex:0 0 auto;
    }
    .dd-title{ display:block; font-weight:900; font-size:13px; color:#0f172a; }
    .dd-sub{ display:block; font-size:11px; font-weight:800; letter-spacing:.02em; color: rgba(15, 23, 42, .55); }

    /* corporate CTA */
    .corporate-btn{
      position:relative;
      padding:10px 24px;
      border-radius:999px;
      font-weight:900;
      color:#ffffff;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.15);
      background: linear-gradient(120deg,#008080,#2bb7b3,#7ee6df,#008080);
      background-size:300% 300%;
      animation: bgMove 6s ease infinite;
      transition:all .3s ease;
    }
    .corporate-btn::before{
      content:"";
      position:absolute; inset:-3px;
      border-radius:999px;
      background: conic-gradient(transparent,rgba(126,230,223,.9),rgba(0,128,128,.9),rgba(126,230,223,.9),transparent);
      animation: spin 4s linear infinite;
      filter: blur(6px);
      opacity:.65;
    }
    .corporate-btn::after{
      content:"";
      position:absolute; inset:2px;
      border-radius:999px;
      background: linear-gradient(120deg,#008080,#2bb7b3,#7ee6df,#008080);
      background-size:300% 300%;
      animation: bgMove 6s ease infinite;
      z-index:1;
    }
    .corporate-btn span{ position:relative; z-index:2; }
    .corporate-btn:hover{ transform:translateY(-1px); box-shadow:0 14px 32px rgba(0,128,128,.35); }
    @keyframes spin{ to{ transform:rotate(360deg); } }
    @keyframes bgMove{ 0%{ background-position:0% 50%; } 50%{ background-position:100% 50%; } 100%{ background-position:0% 50%; } }

    /* blog UI */
    .shell{
      border:1px solid rgba(0,0,0,.06);
      background: rgba(255,255,255,.86);
      backdrop-filter: blur(10px);
      border-radius: 28px;
      box-shadow: 0 18px 70px rgba(15,23,42,.08);
      position: relative;
      overflow:hidden;
    }
    .shell:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(circle at 18% 18%, rgba(15,143,136,.16), transparent 42%),
        radial-gradient(circle at 82% 30%, rgba(0,77,77,.12), transparent 46%),
        radial-gradient(circle at 35% 92%, rgba(15,143,136,.10), transparent 52%);
      opacity:.9;
      pointer-events:none;
    }
    .shell > *{ position:relative; z-index:1; }

    .badge{
      font-size:10px; font-weight:900; letter-spacing:.35em; text-transform:uppercase;
      padding:8px 12px; border-radius:999px;
      background: rgba(0,128,128,.08);
      border: 1px solid rgba(0,128,128,.18);
      color: rgba(0,128,128,.95);
      display:inline-flex; align-items:center; gap:8px;
    }
    .dot{
      width:8px;height:8px;border-radius:999px;background: rgba(0,128,128,.95);
      box-shadow:0 0 0 6px rgba(0,128,128,.12);
    }
    .chip{
      display:inline-flex; align-items:center; justify-content:center;
      padding:10px 12px;
      border-radius:999px;
      background: rgba(255,255,255,.75);
      border:1px solid rgba(0,0,0,.06);
      font-weight:900;
      font-size:13px;
      transition:.18s ease;
      white-space:nowrap;
    }
    .chip:hover{ background: rgba(0,128,128,.10); border-color: rgba(0,128,128,.22); color: var(--primary); }

    .card{
      border:1px solid rgba(0,0,0,.06);
      background:#fff;
      border-radius: 22px;
      overflow:hidden;
      box-shadow: 0 10px 35px rgba(15,23,42,.06);
      transition:.25s ease;
    }
    .card:hover{ transform: translateY(-3px); box-shadow: 0 18px 55px rgba(15,23,42,.10); }
    .thumb{
      height: 170px;
      background: linear-gradient(135deg, rgba(0,128,128,.22), rgba(0,77,77,.10));
      position:relative;
      overflow:hidden;
    }
    .thumb:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.35), transparent 38%),
        radial-gradient(circle at 80% 30%, rgba(0,0,0,.18), transparent 50%);
      opacity:.9;
    }
    .meta{
      font-size:11px;
      font-weight:900;
      letter-spacing:.22em;
      text-transform: uppercase;
      color: rgba(15,23,42,.55);
    }
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      padding:12px 16px;
      border-radius:999px;
      font-weight:900;
      background: var(--primary);
      color:#fff;
      transition:.2s ease;
    }
    .btn:hover{ opacity:.95; transform: translateY(-1px); }
    .softbtn{
      display:inline-flex; align-items:center; justify-content:center;
      padding:11px 14px;
      border-radius:999px;
      font-weight:900;
      background: rgba(0,128,128,.10);
      border: 1px solid rgba(0,128,128,.22);
      color: var(--primary);
      transition:.2s ease;
    }
    .softbtn:hover{ background: rgba(0,128,128,.14); transform: translateY(-1px); }

    .field{
      width:100%;
      padding:12px 14px;
      border-radius:16px;
      border:1px solid #e5e7eb;
      background:#fff;
      font-weight:800;
      outline:none;
    }
    .field:focus{ border-color: rgba(0,128,128,.6); box-shadow:0 0 0 4px rgba(0,128,128,.12); }

    /* footer */
    .route-glow{
      position:absolute; left:-35%; top:-1px; height:3px; width:45%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
      animation: routeGlow 4.6s linear infinite;
      filter: blur(1px);
    }
    @keyframes routeGlow{ from{ transform:translateX(0);} to{ transform:translateX(240%);} }

    .fcard{
      position:relative;
      border-radius: 22px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.20);
      padding: 16px;
      overflow:hidden;
    }
    .ftitle{
      font-size: 10px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .28em;
      color: rgba(255,255,255,.85);
    }
    .stamp {
      position: absolute;
      right: 14px;
      top: 14px;
      background: rgba(15, 143, 136, .92);
      color: #fff;
      border-radius: 14px;
      padding: 10px 12px;
      font-weight: 900;
      text-align: center;
      height: 42px; font-size:.8rem; line-height: 1;
      display: flex; flex-flow: column; align-items: center;
      transform: rotate(351deg);
      box-shadow: 0 14px 40px rgba(15, 143, 136, .25);
    }
    .clink{ display:block; color: rgba(255,255,255,.85); }
    .clink:hover{ color:#fff; text-decoration: underline; }
    .soc{
      width:40px;height:40px;border-radius:999px;
      display:flex;align-items:center;justify-content:center;
      background: rgba(255,255,255,.16);
      border:1px solid rgba(255,255,255,.22);
      transition:.2s ease;
      font-weight:900; font-size:12px;
    }
    .soc:hover{ transform: translateY(-2px); background: rgba(255,255,255,.26); border-color: rgba(255,255,255,.35); }
    .ql{
      padding:10px 12px;
      border-radius:14px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.18);
      transition:.2s ease;
      font-weight:600;
    }
    .ql:hover{ background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.30); }

/* ---- from contact.html ---- */
:root { --primary:#008080; --secondary:#004d4d; --beige:#FAF9F6; }
    body{ font-family:'Inter',sans-serif; background:var(--beige); color:#1F2937; }
    .font-outfit{ font-family:'Outfit',sans-serif; }
    .glass{ background:rgba(255,255,255,.72); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); border:1px solid rgba(255,255,255,.35); }
    .glass-dark{ background:rgba(0,128,128,.12); backdrop-filter:blur(8px); border:1px solid rgba(255,255,255,.12); }
    .teal-gradient{ background:linear-gradient(135deg,#008080 0%,#004d4d 100%); }

    ::-webkit-scrollbar{ width:8px; }
    ::-webkit-scrollbar-track{ background:#f1f1f1; }
    ::-webkit-scrollbar-thumb{ background:var(--primary); border-radius:10px; }

    .hide-scrollbar::-webkit-scrollbar{ display:none; }
    .hide-scrollbar{ -ms-overflow-style:none; scrollbar-width:none; }

    /* desktop nav links */
    .navlink{ position:relative; padding:.35rem .15rem; transition:.2s; }
    .navlink:hover{ color:#008080; }
    .navlink.active{ color:#008080; }
    .navlink.active::after{
      content:"";
      position:absolute; left:0; right:0; bottom:-6px;
      height:2px; border-radius:999px;
      background: rgba(0,128,128,.85);
    }

    /* dropdown */
    .dd{
      position:absolute; left:0; top:calc(100% + 10px);
      width:320px;
      padding:10px;
      border-radius:18px;
      background:rgba(255,255,255,.92);
      backdrop-filter: blur(10px);
      border:1px solid rgba(0,0,0,.08);
      box-shadow: 0 18px 40px rgba(2, 46, 43, .10);
      opacity:0; visibility:hidden; transform: translateY(6px);
      transition: .22s ease;
      z-index:60;
    }
    .group:hover .dd{ opacity:1; visibility:visible; transform: translateY(0); }

    .dd-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:10px 12px; border-radius:14px;
      transition:.18s ease;
    }
    .dd-item:hover{ background: rgba(0,128,128,.08); }
    .dd-ico{
      width:34px; height:34px; border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(0,128,128,.10);
      border:1px solid rgba(0,0,0,.06);
      flex:0 0 auto;
    }
    .dd-title{ display:block; font-weight:900; font-size:13px; color:#0f172a; }
    .dd-sub{ display:block; font-size:11px; font-weight:800; letter-spacing:.02em; color: rgba(15, 23, 42, .55); }

    .dd-chip{
      display:flex; align-items:center; justify-content:center;
      border-radius:14px;
      padding:10px 12px;
      font-weight:900; font-size:12px;
      background: rgba(255,255,255,.75);
      border:1px solid rgba(0,0,0,.08);
      transition:.18s ease;
    }
    .dd-chip:hover{ background: rgba(0,128,128,.10); border-color: rgba(0,128,128,.25); }

    /* corporate CTA */
    .corporate-btn{
      position:relative;
      padding:10px 24px;
      border-radius:999px;
      font-weight:900;
      color:#ffffff;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.15);
      background: linear-gradient(120deg,#008080,#2bb7b3,#7ee6df,#008080);
      background-size:300% 300%;
      animation: bgMove 6s ease infinite;
      transition:all .3s ease;
    }
    .corporate-btn::before{
      content:"";
      position:absolute; inset:-3px;
      border-radius:999px;
      background: conic-gradient(transparent,rgba(126,230,223,.9),rgba(0,128,128,.9),rgba(126,230,223,.9),transparent);
      animation: spin 4s linear infinite;
      filter: blur(6px);
      opacity:.65;
    }
    .corporate-btn::after{
      content:"";
      position:absolute; inset:2px;
      border-radius:999px;
      background: linear-gradient(120deg,#008080,#2bb7b3,#7ee6df,#008080);
      background-size:300% 300%;
      animation: bgMove 6s ease infinite;
      z-index:1;
    }
    .corporate-btn span{ position:relative; z-index:2; }
    .corporate-btn:hover{ transform:translateY(-1px); box-shadow:0 14px 32px rgba(0,128,128,.35); }
    @keyframes spin{ to{ transform:rotate(360deg); } }
    @keyframes bgMove{ 0%{ background-position:0% 50%; } 50%{ background-position:100% 50%; } 100%{ background-position:0% 50%; } }

    /* footer utilities */
    .route-glow{
      position:absolute; left:-35%; top:-1px; height:3px; width:45%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
      animation: routeGlow 4.6s linear infinite;
      filter: blur(1px);
    }
    @keyframes routeGlow{ from{ transform:translateX(0);} to{ transform:translateX(240%);} }

    .fcard{
      position:relative;
      border-radius: 22px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.20);
      padding: 16px;
      overflow:hidden;
    }
    .ftitle{
      font-size: 10px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .28em;
      color: rgba(255,255,255,.85);
    }
    .stamp {
      position: absolute;
      right: 14px;
      top: 14px;
      background: rgba(15, 143, 136, .92);
      color: #fff;
      border-radius: 14px;
      padding: 10px 12px;
      font-weight: 900;
      text-align: center;
      height: 42px; font-size:.8rem; line-height: 1;
      display: flex; flex-flow: column; align-items: center;
      transform: rotate(351deg);
      box-shadow: 0 14px 40px rgba(15, 143, 136, .25);
    }
    .clink{ display:block; color: rgba(255,255,255,.85); }
    .clink:hover{ color:#fff; text-decoration: underline; }

    .soc{
      width:40px;height:40px;border-radius:999px;
      display:flex;align-items:center;justify-content:center;
      background: rgba(255,255,255,.16);
      border:1px solid rgba(255,255,255,.22);
      transition:.2s ease;
      font-weight:900; font-size:12px;
    }
    .soc:hover{ transform: translateY(-2px); background: rgba(255,255,255,.26); border-color: rgba(255,255,255,.35); }

    .ql{
      padding:10px 12px;
      border-radius:14px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.18);
      transition:.2s ease;
    }
    .ql:hover{ background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.30); }

    /* Contact page components */
    .card{
      border:1px solid #eef2f7;
      background:#fff;
      border-radius:2rem;
      padding:18px;
      box-shadow: 0 12px 40px rgba(15,23,42,.06);
      transition:.35s ease;
    }
    .card:hover{ transform: translateY(-3px); box-shadow:0 22px 65px rgba(15,23,42,.11); }
    .field{
      width:100%;
      padding:14px 16px;
      border-radius:16px;
      border:1px solid #e5e7eb;
      background:#fff;
      font-weight:700;
      outline:none;
    }
    .field:focus{ border-color: rgba(0,128,128,.6); box-shadow:0 0 0 4px rgba(0,128,128,.12); }
    .cta{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px;
      padding:12px 18px;
      border-radius:999px;
      font-weight:900;
      background: var(--primary);
      color:#fff;
      transition:.2s ease;
    }
    .cta:hover{ opacity:.95; transform: translateY(-1px); }

    .linkchip{
      display:inline-flex; align-items:center; justify-content:center;
      padding:10px 12px;
      border-radius:14px;
      background: rgba(255,255,255,.7);
      border:1px solid rgba(0,0,0,.06);
      font-weight:900;
      font-size:13px;
      transition:.18s ease;
    }
    .linkchip:hover{ background: rgba(0,128,128,.10); border-color: rgba(0,128,128,.22); color: var(--primary); }

    .mumbai{
      background: linear-gradient(135deg, #008080 0%, #004d4d 100%);
      color:#fff;
      border-radius:2.25rem;
      padding:22px;
      box-shadow:0 26px 90px rgba(0,128,128,.25);
      position:relative;
      overflow:hidden;
    }
    .mumbai:before{
      content:"";
      position:absolute; inset:-2px;
      background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.18), transparent 40%),
                  radial-gradient(circle at 80% 30%, rgba(0,0,0,.22), transparent 45%);
      opacity:.9;
      pointer-events:none;
    }
    .mumbai > *{ position:relative; z-index:1; }

    .badge{
      font-size:10px; font-weight:900; letter-spacing:.35em; text-transform:uppercase;
      padding:8px 12px; border-radius:999px;
      background: rgba(0,128,128,.08);
      border: 1px solid rgba(0,128,128,.18);
      color: rgba(0,128,128,.95);
      display:inline-flex; align-items:center; gap:8px;
    }
    .dot{
      width:8px;height:8px;border-radius:999px;background: rgba(0,128,128,.95);
      box-shadow:0 0 0 6px rgba(0,128,128,.12);
    }

    /* NEW: postcards + quotes */
    .postcard{
      border-radius: 24px;
      border: 1px solid rgba(0,0,0,.06);
      background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.75));
      box-shadow: 0 18px 60px rgba(15,23,42,.08);
      overflow:hidden;
      position:relative;
    }
    .postcard:before{
      content:"";
      position:absolute; inset:-2px;
      background:
        radial-gradient(circle at 18% 18%, rgba(15,143,136,.14), transparent 42%),
        radial-gradient(circle at 85% 25%, rgba(0,77,77,.12), transparent 46%),
        radial-gradient(circle at 30% 92%, rgba(15,143,136,.10), transparent 50%);
      opacity:.9;
      pointer-events:none;
    }
    .pimg{
      border-radius: 18px;
      border: 1px solid rgba(0,0,0,.06);
      background: linear-gradient(135deg, rgba(0,128,128,.20), rgba(0,77,77,.12));
      overflow:hidden;
      position:relative;
    }
    .pimg svg{ opacity:.95; }
    .quote{
      font-weight: 900;
      letter-spacing: -.01em;
      color:#0f172a;
      line-height: 1.2;
    }
    .qsub{
      font-weight: 800;
      color: rgba(15,23,42,.55);
      font-size: 12px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    /* NEW: map cards */
    .mapbox{
      height: 230px;
      border-radius: 22px;
      overflow:hidden;
      border: 1px solid rgba(0,0,0,.08);
      background: #f3f4f6;
    }
    .smallcap{
      font-size:10px; font-weight:900; letter-spacing:.35em; text-transform:uppercase;
      color: rgba(15,23,42,.55);
    }
    /* Highlight card (Mumbai) */
.office-highlight{
  position: relative;
  border: 1px solid rgba(0,128,128,.78) !important;
  box-shadow: 0 26px 80px rgba(0,128,128,.25);
}
.office-highlight::before{
     content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(circle at 20% 20%, rgb(0 182 170 / 30%), transparent 65%), radial-gradient(circle at 85% 30%, rgb(8 166 166 / 58%), transparent 75%);
    border-radius: 24px;
    pointer-events: none;
    opacity: .9;
}

.office-highlight > *{ position:relative; z-index:1; } /* content above glow */

/* Optional: mapbox border for highlight */
.office-highlight .mapbox{
  border-color: rgba(0,128,128,.22);
}

/* ---- from index - Copy.html ---- */
:root { --primary:#008080; --secondary:#004d4d; --beige:#FAF9F6; }
    body{ font-family:'Inter',sans-serif; background:var(--beige); color:#1F2937; }
    .font-outfit{ font-family:'Outfit',sans-serif; }
    .glass{ background:rgba(255,255,255,.72); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); border:1px solid rgba(255,255,255,.35); }
    .glass-dark{ background:rgba(0,128,128,.12); backdrop-filter:blur(8px); border:1px solid rgba(255,255,255,.12); }
    .teal-gradient{ background:linear-gradient(135deg,#008080 0%,#004d4d 100%); }

    ::-webkit-scrollbar{ width:8px; }
    ::-webkit-scrollbar-track{ background:#f1f1f1; }
    ::-webkit-scrollbar-thumb{ background:var(--primary); border-radius:10px; }

    .hide-scrollbar::-webkit-scrollbar{ display:none; }
    .hide-scrollbar{ -ms-overflow-style:none; scrollbar-width:none; }

    @keyframes float { 0%{transform:translateY(0)} 50%{transform:translateY(-10px)} 100%{transform:translateY(0)} }
    .animate-float{ animation: float 4s ease-in-out infinite; }
    /* marquee wrapper */
.marquee{ overflow:hidden; }
.marquee-track{
  display:flex;
  align-items:center;
  gap:10px;              /* small gap between pills */
  width:max-content;
  animation: marquee 35s linear infinite;
}
@keyframes marquee{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

/* pill style (tiny image + clean) */
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid #e5e7eb;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  font-weight:700;
  font-size:14px;
  color:#111827;
  white-space:nowrap;
}
.pill img{
  width:28px;
  height:28px;
  border-radius:999px;
  object-fit:cover;
}

/* pause on hover (optional) */
.marquee:hover .marquee-track{ animation-play-state: paused; }

/* right side subtle motion */
.motion-card{
  animation: floaty 5s ease-in-out infinite !important;
  transform-origin: center;
}

.motion-card:nth-child(2){ animation-delay: .6s !important; }
.motion-card:nth-child(3){ animation-delay: 1.2s !important; }
.motion-card:nth-child(4){ animation-delay: 1.8s !important; }

@keyframes floaty{
  0%{ transform: translateY(0px); }
  50%{ transform: translateY(-10px); }
  100%{ transform: translateY(0px); }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .marquee-track, .motion-grid .motion-card{ animation: none !important; }
}

.corporate-cta{
  position:relative;
  color:white;
  background:linear-gradient(120deg,#0f8f88,#34d399,#0f8f88);
  background-size:300% 300%;
  animation: bgFlow 6s ease infinite;

  border:2px solid transparent;
  border-radius:999px;

  box-shadow:0 0 14px rgba(52,211,153,.5);
  transition:transform .3s ease;
}

.corporate-cta::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:999px;
  background:linear-gradient(120deg,#0f8f88,#6ee7b7,#0f8f88);
  background-size:300% 300%;
  z-index:-1;
  filter:blur(6px);
  animation:bgFlow 6s linear infinite;
}

.corporate-cta:hover{
  transform:scale(1.08);
}

@keyframes bgFlow{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

.corporate-cta{
  position:relative;
  color:white;
  background:linear-gradient(120deg,#0f8f88,#34d399,#0f8f88);
  background-size:300% 300%;
  animation:bgFlow 6s ease infinite;
  box-shadow:0 0 14px rgba(52,211,153,.45);
  transition:transform .25s ease;
}
.corporate-cta::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:999px;
  background:linear-gradient(120deg,#0f8f88,#6ee7b7,#0f8f88);
  background-size:300% 300%;
  z-index:-1;
  filter:blur(7px);
  animation:bgFlow 6s linear infinite;
}
.corporate-cta:hover{ transform:scale(1.06); }
@keyframes bgFlow{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}
/* itinerary cards */
.it-card{
  border:1px solid #eef2f7;
  border-radius: 2rem;
  padding: 18px 18px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(15,23,42,.06);
}
.it-top{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:10px; }
.it-tag{
  font-size:10px; font-weight:900; letter-spacing:.35em; text-transform:uppercase;
  color:#64748b;
}
.it-stamp{
  font-size:10px; font-weight:900; letter-spacing:.25em; text-transform:uppercase;
  color: rgba(15,143,136,.95);
  border:1px dashed rgba(15,143,136,.55);
  padding:6px 10px; border-radius:999px;
}
.it-title{ font-size:16px; font-weight:900; color:#0f172a; margin-bottom:6px; }
.it-text{ font-size:14px; color:#475569; line-height:1.55; }

/* mini cards */
.mini-card{
  border:1px solid #eef2f7;
  border-radius: 1.75rem;
  padding: 16px;
  background:#fff;
  box-shadow: 0 10px 34px rgba(15,23,42,.05);
}
.mini-ico{ font-size:22px; margin-bottom:8px; }
.mini-title{ font-weight:900; color:#0f172a; }
.mini-text{ font-size:13px; color:#64748b; margin-top:4px; line-height:1.5; }

/* polaroids */
.polaroid{
  position:absolute;
  width: 88%;
  background:#fff;
  border:1px solid #eef2f7;
  border-radius: 2.25rem;
  padding: 14px;
  box-shadow: 0 26px 80px rgba(2,6,23,.18);
}
.p1{ top: 10px; left: 6%; transform: rotate(-3deg); }
.p2{ top: 140px; left: 10%; width: 80%; transform: rotate(4deg); opacity:.98; }

.ticket{
  position:absolute;
  right: -8px;
  bottom: 6px;
  width: 220px;
  border-radius: 1.75rem;
  background: rgba(15,143,136,.10);
  border: 1px solid rgba(15,143,136,.20);
  padding: 14px 14px;
  box-shadow: 0 18px 60px rgba(15,23,42,.12);
}

/* small premium chips */
.chip{
  display:inline-flex;
  align-items:center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  color: #334155;
  box-shadow: 0 6px 20px rgba(15,23,42,.06);
}

/* Right ribbons */
.ribbon{
  position: relative;
  border: 1px solid #eef2f7;
  border-radius: 1.8rem;
  padding: 18px;
  box-shadow: 0 10px 35px rgba(15,23,42,.06);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
  overflow: hidden;
}
.ribbon::after{
  content:"";
  position:absolute;
  right:-28px;
  top:50%;
  width:60px;
  height:60px;
  transform: translateY(-50%) rotate(45deg);
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(229,231,235,.7);
  border-radius: 18px;
}
.ribbon-num{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e5e7eb;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  font-size: 13px;
  color: #0f172a;
  box-shadow: 0 12px 45px rgba(15,143,136,.10);
}
.ribbon-title{
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 4px;
  letter-spacing: .02em;
}
.ribbon-text{
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
}
.e-card{
  border: 1px solid #eef2f7;
  border-radius: 2rem;
  padding: 18px 18px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(15,23,42,.06);
  transition: transform .4s ease, box-shadow .4s ease;
}
.e-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 65px rgba(15,23,42,.10);
}
.e-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 10px;
}
.e-ico{
  width: 52px; height: 52px;
  border-radius: 18px;
  background: rgba(15,143,136,.10);
  display:flex; align-items:center; justify-content:center;
  font-size: 22px;
  color: #0f766e;
}
.e-num{
  width: 46px; height: 46px;
  border-radius: 999px;
  background:#fff;
  border: 1px solid #e5e7eb;
  display:flex; align-items:center; justify-content:center;
  font-weight: 900;
  font-size: 12px;
  color: #0f172a;
}
.e-title{
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 6px;
}
.e-text{
  font-size: 14px;
  color: #475569;
  line-height: 1.55;
}
.e-tags{ margin-top: 12px; display:flex; flex-wrap:wrap; gap:8px; }
.tag{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background:#fff;
  border: 1px solid #e5e7eb;
  font-size: 11px;
  font-weight: 800;
  color: #334155;
}

  .hero-pill{
    display:inline-flex; align-items:center; gap:10px;
    padding:10px 14px; border-radius:999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .02em;
    color: rgba(255,255,255,.85);
  }
  .hero-dot{
    width:8px;height:8px;border-radius:999px;
    background:#7ee6df;
    box-shadow: 0 0 0 4px rgba(126,230,223,.18);
  }

  .route-glow{
    position:absolute; left:-30%; top:6px;
    height:26px; width:40%;
    background: linear-gradient(90deg, transparent, rgba(126,230,223,.35), transparent);
    filter: blur(2px);
    animation: routeGlow 4.6s linear infinite;
    opacity:.75;
  }
  @keyframes routeGlow{
    from{ transform: translateX(0); }
    to{ transform: translateX(220%); }
  }

  /* desktop nav links */
  .navlink{ position:relative; padding:.35rem .15rem; transition:.2s; }
  .navlink:hover{ color:#008080; }

  /* dropdown */
  .dd{
    position:absolute; left:0; top:calc(100% + 10px);
    width:320px;
    padding:10px;
    border-radius:18px;
    background:rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    border:1px solid rgba(0,0,0,.08);
    box-shadow: 0 18px 40px rgba(2, 46, 43, .10);
    opacity:0; visibility:hidden; transform: translateY(6px);
    transition: .22s ease;
    z-index:60;
  }
  .group:hover .dd{ opacity:1; visibility:visible; transform: translateY(0); }

  .dd-item{
    display:flex; gap:12px; align-items:flex-start;
    padding:10px 12px; border-radius:14px;
    transition:.18s ease;
  }
  .dd-item:hover{ background: rgba(0,128,128,.08); }
  .dd-ico{
    width:34px; height:34px; border-radius:12px;
    display:flex; align-items:center; justify-content:center;
    background: rgba(0,128,128,.10);
    border:1px solid rgba(0,0,0,.06);
    flex:0 0 auto;
  }
  .dd-title{ display:block; font-weight:900; font-size:13px; color:#0f172a; }
  .dd-sub{ display:block; font-size:11px; font-weight:800; letter-spacing:.02em; color: rgba(15, 23, 42, .55); }

  .dd-chip{
    display:flex; align-items:center; justify-content:center;
    border-radius:14px;
    padding:10px 12px;
    font-weight:900; font-size:12px;
    background: rgba(255,255,255,.75);
    border:1px solid rgba(0,0,0,.08);
    transition:.18s ease;
  }
  .dd-chip:hover{ background: rgba(0,128,128,.10); border-color: rgba(0,128,128,.25); }
/* CORPORATE CTA – animated border + animated gradient background */

.corporate-btn{
  position:relative;
  padding:10px 24px;
  border-radius:999px;
  font-weight:900;
  color:#ffffff;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.15);
  background: linear-gradient(
    120deg,
    #008080,
    #2bb7b3,
    #7ee6df,
    #008080
  );
  background-size:300% 300%;
  animation: bgMove 6s ease infinite;
  transition:all .3s ease;
}

/* animated glowing ring */
.corporate-btn::before{
  content:"";
  position:absolute;
  inset:-3px;
  border-radius:999px;
  background: conic-gradient(
    transparent,
    rgba(126,230,223,.9),
    rgba(0,128,128,.9),
    rgba(126,230,223,.9),
    transparent
  );
  animation: spin 4s linear infinite;
  filter: blur(6px);
  opacity:.65;
}

/* inner layer (keeps glow outside only) */
.corporate-btn::after{
  content:"";
  position:absolute;
  inset:2px;
  border-radius:999px;
  background: linear-gradient(
    120deg,
    #008080,
    #2bb7b3,
    #7ee6df,
    #008080
  );
  background-size:300% 300%;
  animation: bgMove 6s ease infinite;
  z-index:1;
}

/* text on top */
.corporate-btn span{
  position:relative;
  z-index:2;
}

/* hover lift */
.corporate-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 32px rgba(0,128,128,.35);
}

@keyframes spin{
  to{ transform:rotate(360deg); }
}

@keyframes bgMove{
  0%{ background-position:0% 50%; }
  50%{ background-position:100% 50%; }
  100%{ background-position:0% 50%; }
}

.corporate-btn span{
  position:relative;
  z-index:2;
}
  

  /* mobile menu */
  .m-link{ display:block; padding:12px 10px; border-radius:14px; background: rgba(0,0,0,.03); }
  .m-link:hover{ background: rgba(0,128,128,.10); color:#008080; }
  .m-dd{ padding:12px 10px; border-radius:14px; background: rgba(0,0,0,.03); }
  .m-sum{ cursor:pointer; font-weight:900; list-style:none; }
  .m-sum::-webkit-details-marker{ display:none; }
  .m-sub{ display:block; padding:10px 10px; border-radius:12px; margin-top:8px; background: rgba(255,255,255,.7); border:1px solid rgba(0,0,0,.06); }
  .m-sub:hover{ background: rgba(0,128,128,.10); border-color: rgba(0,128,128,.25); color:#008080; }


   .hero-pill{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 14px; border-radius:999px;
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.18);
      font-weight: 900; font-size: 12px;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    .hero-dot{
      width:8px; height:8px; border-radius:999px;
      background: rgba(126,230,223,.95);
      box-shadow: 0 0 0 6px rgba(126,230,223,.12);
    }

    .route-glow{
      position:absolute; left:-40%; top:0; height:100%; width:45%;
      background: linear-gradient(90deg, transparent, rgba(126,230,223,.25), transparent);
      animation: routeGlow 4.8s linear infinite;
      filter: blur(1px);
      opacity:.9;
    }
    @keyframes routeGlow{
      from{ transform: translateX(0); }
      to{ transform: translateX(240%); }
    }

    /* IMPORTANT: prevent clipping / stacking issues */
.isolate{ isolation:isolate; }

/* Postcards */
.post{
  position:absolute;
  width: 86%;
  border:1px solid #eef2f7;
  border-radius: 2.25rem;
  background:#fff;
  padding:14px 14px 16px;
  box-shadow: 0 26px 80px rgba(2,6,23,.18);
  transition: transform .6s ease, box-shadow .6s ease;
  cursor:pointer;
  overflow: visible;
}

/* base stacking so last one stays above */
.p1{ top: 8px;   left: 4%;  transform: rotate(-4deg); z-index: 10; }
.p2{ top: 118px; left: 10%; transform: rotate(3deg);  z-index: 20; }
.p3{ top: 238px; left: 6%;  transform: rotate(-2deg); z-index: 30; }

/* image wrapper for zoom */
.img-wrap{ position:relative; overflow:hidden; border-radius: 1.5rem; }
.img-wrap img{ transition: transform .8s ease; }
.img-overlay{
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.22), transparent 60%);
  opacity:.9;
  pointer-events:none;
}

/* hover: bring fully above + smooth lift */
.hover-rise:hover{
  transform: translateY(-14px) translateX(6px) scale(1.035) rotate(0deg);
  box-shadow: 0 44px 130px rgba(2,6,23,.28);
  z-index: 999;
}
.hover-rise:hover .img-wrap img{
  transform: scale(1.07);
}

/* text */
.tagline{
  font-size:10px;
  font-weight:900;
  letter-spacing:.35em;
  text-transform:uppercase;
  color:#64748b;
}
.title{
  font-size:15px;
  font-weight:900;
  color:#0f172a;
  margin-top:4px;
  line-height:1.2;
}

/* standards tiles */
.std-tile{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:16px 18px;
  border:1px solid #eef2f7;
  border-radius:1.75rem;
  background:#fff;
  box-shadow:0 12px 40px rgba(15,23,42,.06);
}
.std-tile span{ font-size:20px; line-height:1; margin-top:2px; }
.std-t{ font-weight:900; color:#0f172a; font-size:14px; }
.std-d{ font-size:13px; color:#64748b; margin-top:4px; line-height:1.5; }
 .hero-pill{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 14px; border-radius:999px;
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.18);
      font-weight: 900; font-size: 12px;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      white-space: nowrap;
    }
    .hero-dot{
      width:8px; height:8px; border-radius:999px;
      background: rgba(126,230,223,.95);
      box-shadow: 0 0 0 6px rgba(126,230,223,.12);
    }
    .route-glow{
      position:absolute; left:-40%; top:0; height:100%; width:45%;
      background: linear-gradient(90deg, transparent, rgba(126,230,223,.25), transparent);
      animation: routeGlow 4.8s linear infinite;
      filter: blur(1px);
      opacity:.9;
    }
    @keyframes routeGlow{
      from{ transform: translateX(0); }
      to{ transform: translateX(240%); }
    }
    /* route glow */
    .route-glow{
      position:absolute; left:-35%; top:-1px; height:3px; width:45%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
      animation: routeGlow 4.6s linear infinite;
      filter: blur(1px);
    }
    @keyframes routeGlow{ from{ transform:translateX(0);} to{ transform:translateX(240%);} }

    /* marquee */
    .marquee{ animation: marquee 26s linear infinite; }
    @keyframes marquee{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

    .dpill{
      display:inline-flex; align-items:center; gap:10px;
      padding:9px 14px; border-radius:999px;
      background: rgba(255,255,255,.18);
      border: 1px solid rgba(255,255,255,.22);
      font-weight:900; font-size:13px;
      white-space:nowrap;
      cursor:default;
      transition:.2s ease;
    }
    .dpill:hover{ transform: translateY(-1px); background: rgba(255,255,255,.26); border-color: rgba(255,255,255,.35); }
    .dimg{ width:26px; height:26px; border-radius:999px; object-fit:cover; border:2px solid rgba(255,255,255,.75); }

    .fcard{
      position:relative;
      border-radius: 22px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.20);
      padding: 16px;
      overflow:hidden;
    }
    .ftitle{
      font-size: 10px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .28em;
      color: rgba(255,255,255,.85);
    }
    .stamp{
      position:absolute;
      right:14px; bottom:14px;
      font-size:10px;
      font-weight:900;
      line-height:1;
      letter-spacing:.18em;
      padding:6px 11px;
      border-radius:999px;
      border:1px dashed rgba(255,255,255,.45);
      color: rgba(255,255,255,.75);
      transform: rotate(-6deg);
      background: rgba(0,0,0,.10);
      display:inline-flex;
      align-items:center;
    }

    .clink{ display:block; color: rgba(255,255,255,.85); }
    .clink:hover{ color:#fff; text-decoration: underline; }

    .soc{
      width:40px;height:40px;border-radius:999px;
      display:flex;align-items:center;justify-content:center;
      background: rgba(255,255,255,.16);
      border:1px solid rgba(255,255,255,.22);
      transition:.2s ease;
      font-weight:900; font-size:12px;
    }
    .soc:hover{ transform: translateY(-2px); background: rgba(255,255,255,.26); border-color: rgba(255,255,255,.35); }

    .ql{
      padding:10px 12px;
      border-radius:14px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.18);
      transition:.2s ease;
    }
    .ql:hover{ background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.30); }

/* ---- from index - Copy.html ---- */
.stat-line{
      display:flex;
      align-items:center;
      gap:10px;
      white-space:nowrap;
    }

    .ico{
      width:36px;
      height:36px;
      border-radius:14px;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-size:18px;
      box-shadow:0 10px 20px rgba(0,0,0,.12);
      flex-shrink:0;
    }

    .num{
      font-family: Outfit, system-ui;
      font-weight:900;
      font-size:18px;
      line-height:1;
      color:#0f172a;
    }

    .lbl{
      font-size:8px;
      font-weight:700;
      color:#64748b;
      text-transform:uppercase;
      letter-spacing:.02em;
      margin-top:2px;
      line-height:1.25;
      white-space:normal;
    }
    @media (min-width:1024px){
      /* desktop unchanged */
      .lbl{ font-size:10px; font-weight:900; letter-spacing:.28em; line-height:1.2; white-space:nowrap; margin-top:3px; }
    }

    .divider{
      width:1px;
      height:32px;
      background:linear-gradient(to bottom, transparent, #e5e7eb, transparent);
      flex-shrink:0;
    }

    /* hide scrollbar but allow swipe */
    .no-scrollbar::-webkit-scrollbar{display:none;}
    .no-scrollbar{scrollbar-width:none;}

/* ---- from index - Copy.html ---- */
.poster{ transition: transform .6s ease, box-shadow .6s ease; }
.poster:hover{ transform: translateY(-4px); box-shadow: 0 30px 90px rgba(2,6,23,.18); }

.corp-mini{
  border:1px solid #eef2f7;
  background:#fff;
  border-radius:2rem;
  padding:18px;
  box-shadow:0 12px 40px rgba(15,23,42,.06);
  transition:.35s ease;
}
.corp-mini:hover{ transform: translateY(-3px); box-shadow:0 22px 65px rgba(15,23,42,.11); }
.corp-mini-top{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:10px; }
.pill{
  font-size:10px; font-weight:900; letter-spacing:.35em; text-transform:uppercase;
  color:#64748b; border:1px solid #eef2f7; padding:6px 10px; border-radius:999px;
  background:#fff;
}
.mini-ico{ font-size:18px; }
.mini-title{ font-weight:900; color:#0f172a; font-size:16px; }
.mini-text{ margin-top:6px; font-size:14px; color:#64748b; line-height:1.55; }

.corp-wide{
  border:1px solid #eef2f7;
  background:#f8fafc;
  border-radius:2.25rem;
  padding:18px;
}
.wide-head{ display:flex; align-items:flex-start; justify-content:space-between; gap:12px; }
.wide-cta{
  font-weight:900; font-size:12px; color:#0f766e;
  padding:10px 12px; border-radius:999px;
  border:1px solid rgba(15,118,110,.25);
  background: rgba(15,118,110,.06);
  transition:.25s ease;
}
.wide-cta:hover{ background: rgba(15,118,110,.12); }
.wide-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(1,minmax(0,1fr));
  gap:10px;
}
@media(min-width:640px){ .wide-grid{ grid-template-columns: repeat(2,minmax(0,1fr)); } }
.wide-item{
  background:#fff;
  border:1px solid #eef2f7;
  border-radius:1.5rem;
  padding:12px 14px;
  font-weight:800;
  font-size:13px;
  color:#0f172a;
}

/* ---- from index - Copy.html ---- */
/* fixed height + premium */
.review-card{
  height: 260px;                /* ✅ same height */
  display:grid;
  grid-template-columns: 220px 1fr;
  border-radius: 2rem;
  overflow:hidden;
  border:1px solid #eef2f7;
  background:#fff;
  box-shadow: 0 16px 60px rgba(15,23,42,.08);
  transition:.35s ease;
}
.review-card:hover{ transform: translateY(-4px); box-shadow: 0 28px 90px rgba(15,23,42,.14); }

@media (max-width:640px){
  .review-card{ grid-template-columns: 1fr; height:auto; }
}

/* image */
.review-img{ position:relative; height:100%; }
.review-img img{
  width:100%;
  height:100%;
  object-fit: cover;            /* ✅ looks natural */
  object-position: center;       /* ✅ no weird face cut */
  transform: scale(1.02);
  transition: transform .8s ease;
}
.review-card:hover .review-img img{ transform: scale(1.08); }

.review-img-overlay{
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.05));
}

/* destination chip */
.dest-chip{
  position:absolute; left:14px; bottom:14px;
  display:flex; align-items:center; gap:8px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border:1px solid rgba(255,255,255,.55);
  padding:8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 11px;
  color:#0f172a;
}
.dest-chip .dot{
  width:8px; height:8px; border-radius:999px;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(15,143,136,.15);
}

/* travel stamp */
.stamp{
  position:absolute; right:14px; top:14px;
  background: rgba(15,143,136,.92);
  color:#fff;
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 900;
  text-align:center;
  line-height: 1.05;
  transform: rotate(-6deg);
  box-shadow: 0 14px 40px rgba(15,143,136,.25);
}
.stamp small{
  display:block;
  font-weight:800;
  font-size:10px;
  opacity:.9;
  margin-top:3px;
}

/* body */
.review-body{ padding:16px 18px; display:flex; flex-direction:column; justify-content:space-between; }
.stars{ display:flex; gap:2px; color:#fbbf24; }

.review-text{
  margin-top:10px;
  color:#334155;
  font-size: 13px;
  line-height: 1.7;

  display:-webkit-box;
  -webkit-line-clamp: 4;        /* ✅ consistent */
  -webkit-box-orient: vertical;
  overflow:hidden;
}
.review-text.open{
  -webkit-line-clamp: 20;       /* expands */
}
.readmore{
  margin-top:8px;
  font-weight: 900;
  font-size: 13px;
  color:#2563eb;
  align-self:flex-start;
}
.readmore:hover{ text-decoration: underline; }

/* footer */
.review-foot{
  margin-top:10px;
  padding-top:10px;
  border-top:1px solid #eef2f7;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.name{ font-weight: 900; color:#0f172a; font-size:14px; }
.route{ position:relative; width:120px; height:10px; }
.route-line{
  position:absolute; left:0; top:50%;
  transform: translateY(-50%);
  width:100%; height:2px;
  background: linear-gradient(90deg, rgba(15,143,136,.2), rgba(15,143,136,.9));
  border-radius:999px;
}
.route-dot{
  position:absolute; right:0; top:50%;
  transform: translateY(-50%);
  width:10px; height:10px;
  border-radius:999px;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(15,143,136,.12);
}

/* ---- from index.html ---- */
:root { --primary:#008080; --secondary:#004d4d; --beige:#FAF9F6; }
    body{ font-family:'Inter',sans-serif; background:var(--beige); color:#1F2937; }
    .font-outfit{ font-family:'Outfit',sans-serif; }
    .glass{ background:rgba(255,255,255,.72); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); border:1px solid rgba(255,255,255,.35); }
    .glass-dark{ background:rgba(0,128,128,.12); backdrop-filter:blur(8px); border:1px solid rgba(255,255,255,.12); }
    .teal-gradient{ background:linear-gradient(135deg,#008080 0%,#004d4d 100%); }

    ::-webkit-scrollbar{ width:8px; }
    ::-webkit-scrollbar-track{ background:#f1f1f1; }
    ::-webkit-scrollbar-thumb{ background:var(--primary); border-radius:10px; }

    .hide-scrollbar::-webkit-scrollbar{ display:none; }
    .hide-scrollbar{ -ms-overflow-style:none; scrollbar-width:none; }

    @keyframes float { 0%{transform:translateY(0)} 50%{transform:translateY(-10px)} 100%{transform:translateY(0)} }
    .animate-float{ animation: float 4s ease-in-out infinite; }
    /* marquee wrapper */
.marquee{ overflow:hidden; }
.marquee-track{
  display:flex;
  align-items:center;
  gap:10px;              /* small gap between pills */
  width:max-content;
  animation: marquee 35s linear infinite;
}
@keyframes marquee{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

/* pill style (tiny image + clean) */
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid #e5e7eb;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  font-weight:700;
  font-size:14px;
  color:#111827;
  white-space:nowrap;
}
.pill img{
  width:28px;
  height:28px;
  border-radius:999px;
  object-fit:cover;
}

/* pause on hover (optional) */
.marquee:hover .marquee-track{ animation-play-state: paused; }

/* right side subtle motion */
.motion-card{
  animation: floaty 5s ease-in-out infinite !important;
  transform-origin: center;
}

.motion-card:nth-child(2){ animation-delay: .6s !important; }
.motion-card:nth-child(3){ animation-delay: 1.2s !important; }
.motion-card:nth-child(4){ animation-delay: 1.8s !important; }

@keyframes floaty{
  0%{ transform: translateY(0px); }
  50%{ transform: translateY(-10px); }
  100%{ transform: translateY(0px); }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .marquee-track, .motion-grid .motion-card{ animation: none !important; }
}

.corporate-cta{
  position:relative;
  color:white;
  background:linear-gradient(120deg,#0f8f88,#34d399,#0f8f88);
  background-size:300% 300%;
  animation: bgFlow 6s ease infinite;

  border:2px solid transparent;
  border-radius:999px;

  box-shadow:0 0 14px rgba(52,211,153,.5);
  transition:transform .3s ease;
}

.corporate-cta::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:999px;
  background:linear-gradient(120deg,#0f8f88,#6ee7b7,#0f8f88);
  background-size:300% 300%;
  z-index:-1;
  filter:blur(6px);
  animation:bgFlow 6s linear infinite;
}

.corporate-cta:hover{
  transform:scale(1.08);
}

@keyframes bgFlow{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

.corporate-cta{
  position:relative;
  color:white;
  background:linear-gradient(120deg,#0f8f88,#34d399,#0f8f88);
  background-size:300% 300%;
  animation:bgFlow 6s ease infinite;
  box-shadow:0 0 14px rgba(52,211,153,.45);
  transition:transform .25s ease;
}
.corporate-cta::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:999px;
  background:linear-gradient(120deg,#0f8f88,#6ee7b7,#0f8f88);
  background-size:300% 300%;
  z-index:-1;
  filter:blur(7px);
  animation:bgFlow 6s linear infinite;
}
.corporate-cta:hover{ transform:scale(1.06); }
@keyframes bgFlow{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}
/* itinerary cards */
.it-card{
  border:1px solid #eef2f7;
  border-radius: 2rem;
  padding: 18px 18px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(15,23,42,.06);
}
.it-top{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:10px; }
.it-tag{
  font-size:10px; font-weight:900; letter-spacing:.35em; text-transform:uppercase;
  color:#64748b;
}
.it-stamp{
  font-size:10px; font-weight:900; letter-spacing:.25em; text-transform:uppercase;
  color: rgba(15,143,136,.95);
  border:1px dashed rgba(15,143,136,.55);
  padding:6px 10px; border-radius:999px;
}
.it-title{ font-size:16px; font-weight:900; color:#0f172a; margin-bottom:6px; }
.it-text{ font-size:14px; color:#475569; line-height:1.55; }

/* mini cards */
.mini-card{
  border:1px solid #eef2f7;
  border-radius: 1.75rem;
  padding: 16px;
  background:#fff;
  box-shadow: 0 10px 34px rgba(15,23,42,.05);
}
.mini-ico{ font-size:22px; margin-bottom:8px; }
.mini-title{ font-weight:900; color:#0f172a; }
.mini-text{ font-size:13px; color:#64748b; margin-top:4px; line-height:1.5; }

/* polaroids */
.polaroid{
  position:absolute;
  width: 88%;
  background:#fff;
  border:1px solid #eef2f7;
  border-radius: 2.25rem;
  padding: 14px;
  box-shadow: 0 26px 80px rgba(2,6,23,.18);
}
.p1{ top: 10px; left: 6%; transform: rotate(-3deg); }
.p2{ top: 140px; left: 10%; width: 80%; transform: rotate(4deg); opacity:.98; }

.ticket{
  position:absolute;
  right: -8px;
  bottom: 6px;
  width: 220px;
  border-radius: 1.75rem;
  background: rgba(15,143,136,.10);
  border: 1px solid rgba(15,143,136,.20);
  padding: 14px 14px;
  box-shadow: 0 18px 60px rgba(15,23,42,.12);
}

/* small premium chips */
.chip{
  display:inline-flex;
  align-items:center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  color: #334155;
  box-shadow: 0 6px 20px rgba(15,23,42,.06);
}

/* Right ribbons */
.ribbon{
  position: relative;
  border: 1px solid #eef2f7;
  border-radius: 1.8rem;
  padding: 18px;
  box-shadow: 0 10px 35px rgba(15,23,42,.06);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
  overflow: hidden;
}
.ribbon::after{
  content:"";
  position:absolute;
  right:-28px;
  top:50%;
  width:60px;
  height:60px;
  transform: translateY(-50%) rotate(45deg);
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(229,231,235,.7);
  border-radius: 18px;
}
.ribbon-num{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e5e7eb;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  font-size: 13px;
  color: #0f172a;
  box-shadow: 0 12px 45px rgba(15,143,136,.10);
}
.ribbon-title{
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 4px;
  letter-spacing: .02em;
}
.ribbon-text{
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
}
.e-card{
  border: 1px solid #eef2f7;
  border-radius: 2rem;
  padding: 18px 18px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(15,23,42,.06);
  transition: transform .4s ease, box-shadow .4s ease;
}
.e-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 65px rgba(15,23,42,.10);
}
.e-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 10px;
}
.e-ico{
  width: 52px; height: 52px;
  border-radius: 18px;
  background: rgba(15,143,136,.10);
  display:flex; align-items:center; justify-content:center;
  font-size: 22px;
  color: #0f766e;
}
.e-num{
  width: 46px; height: 46px;
  border-radius: 999px;
  background:#fff;
  border: 1px solid #e5e7eb;
  display:flex; align-items:center; justify-content:center;
  font-weight: 900;
  font-size: 12px;
  color: #0f172a;
}
.e-title{
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 6px;
}
.e-text{
  font-size: 14px;
  color: #475569;
  line-height: 1.55;
}
.e-tags{ margin-top: 12px; display:flex; flex-wrap:wrap; gap:8px; }
.tag{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background:#fff;
  border: 1px solid #e5e7eb;
  font-size: 11px;
  font-weight: 800;
  color: #334155;
}

  .hero-pill{
    display:inline-flex; align-items:center; gap:10px;
    padding:10px 14px; border-radius:999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .02em;
    color: rgba(255,255,255,.85);
  }
  .hero-dot{
    width:8px;height:8px;border-radius:999px;
    background:#7ee6df;
    box-shadow: 0 0 0 4px rgba(126,230,223,.18);
  }

  .route-glow{
    position:absolute; left:-30%; top:6px;
    height:26px; width:40%;
    background: linear-gradient(90deg, transparent, rgba(126,230,223,.35), transparent);
    filter: blur(2px);
    animation: routeGlow 4.6s linear infinite;
    opacity:.75;
  }
  @keyframes routeGlow{
    from{ transform: translateX(0); }
    to{ transform: translateX(220%); }
  }

  /* desktop nav links */
  .navlink{ position:relative; padding:.35rem .15rem; transition:.2s; }
  .navlink:hover{ color:#008080; }

  /* dropdown */
  .dd{
    position:absolute; left:0; top:calc(100% + 10px);
    width:320px;
    padding:10px;
    border-radius:18px;
    background:rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    border:1px solid rgba(0,0,0,.08);
    box-shadow: 0 18px 40px rgba(2, 46, 43, .10);
    opacity:0; visibility:hidden; transform: translateY(6px);
    transition: .22s ease;
    z-index:60;
  }
  .group:hover .dd{ opacity:1; visibility:visible; transform: translateY(0); }

  .dd-item{
    display:flex; gap:12px; align-items:flex-start;
    padding:10px 12px; border-radius:14px;
    transition:.18s ease;
  }
  .dd-item:hover{ background: rgba(0,128,128,.08); }
  .dd-ico{
    width:34px; height:34px; border-radius:12px;
    display:flex; align-items:center; justify-content:center;
    background: rgba(0,128,128,.10);
    border:1px solid rgba(0,0,0,.06);
    flex:0 0 auto;
  }
  .dd-title{ display:block; font-weight:900; font-size:13px; color:#0f172a; }
  .dd-sub{ display:block; font-size:11px; font-weight:800; letter-spacing:.02em; color: rgba(15, 23, 42, .55); }

  .dd-chip{
    display:flex; align-items:center; justify-content:center;
    border-radius:14px;
    padding:10px 12px;
    font-weight:900; font-size:12px;
    background: rgba(255,255,255,.75);
    border:1px solid rgba(0,0,0,.08);
    transition:.18s ease;
  }
  .dd-chip:hover{ background: rgba(0,128,128,.10); border-color: rgba(0,128,128,.25); }
/* CORPORATE CTA – animated border + animated gradient background */

.corporate-btn{
  position:relative;
  padding:10px 24px;
  border-radius:999px;
  font-weight:900;
  color:#ffffff;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.15);
  background: linear-gradient(
    120deg,
    #008080,
    #2bb7b3,
    #7ee6df,
    #008080
  );
  background-size:300% 300%;
  animation: bgMove 6s ease infinite;
  transition:all .3s ease;
}

/* animated glowing ring */
.corporate-btn::before{
  content:"";
  position:absolute;
  inset:-3px;
  border-radius:999px;
  background: conic-gradient(
    transparent,
    rgba(126,230,223,.9),
    rgba(0,128,128,.9),
    rgba(126,230,223,.9),
    transparent
  );
  animation: spin 4s linear infinite;
  filter: blur(6px);
  opacity:.65;
}

/* inner layer (keeps glow outside only) */
.corporate-btn::after{
  content:"";
  position:absolute;
  inset:2px;
  border-radius:999px;
  background: linear-gradient(
    120deg,
    #008080,
    #2bb7b3,
    #7ee6df,
    #008080
  );
  background-size:300% 300%;
  animation: bgMove 6s ease infinite;
  z-index:1;
}

/* text on top */
.corporate-btn span{
  position:relative;
  z-index:2;
}

/* hover lift */
.corporate-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 32px rgba(0,128,128,.35);
}

@keyframes spin{
  to{ transform:rotate(360deg); }
}

@keyframes bgMove{
  0%{ background-position:0% 50%; }
  50%{ background-position:100% 50%; }
  100%{ background-position:0% 50%; }
}

.corporate-btn span{
  position:relative;
  z-index:2;
}
  

  /* mobile menu */
  .m-link{ display:block; padding:12px 10px; border-radius:14px; background: rgba(0,0,0,.03); }
  .m-link:hover{ background: rgba(0,128,128,.10); color:#008080; }
  .m-dd{ padding:12px 10px; border-radius:14px; background: rgba(0,0,0,.03); }
  .m-sum{ cursor:pointer; font-weight:900; list-style:none; }
  .m-sum::-webkit-details-marker{ display:none; }
  .m-sub{ display:block; padding:10px 10px; border-radius:12px; margin-top:8px; background: rgba(255,255,255,.7); border:1px solid rgba(0,0,0,.06); }
  .m-sub:hover{ background: rgba(0,128,128,.10); border-color: rgba(0,128,128,.25); color:#008080; }


   .hero-pill{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 14px; border-radius:999px;
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.18);
      font-weight: 900; font-size: 12px;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    .hero-dot{
      width:8px; height:8px; border-radius:999px;
      background: rgba(126,230,223,.95);
      box-shadow: 0 0 0 6px rgba(126,230,223,.12);
    }

    .route-glow{
      position:absolute; left:-40%; top:0; height:100%; width:45%;
      background: linear-gradient(90deg, transparent, rgba(126,230,223,.25), transparent);
      animation: routeGlow 4.8s linear infinite;
      filter: blur(1px);
      opacity:.9;
    }
    @keyframes routeGlow{
      from{ transform: translateX(0); }
      to{ transform: translateX(240%); }
    }

    /* IMPORTANT: prevent clipping / stacking issues */
.isolate{ isolation:isolate; }

/* Postcards */
.post{
  position:absolute;
  width: 86%;
  border:1px solid #eef2f7;
  border-radius: 2.25rem;
  background:#fff;
  padding:14px 14px 16px;
  box-shadow: 0 26px 80px rgba(2,6,23,.18);
  transition: transform .6s ease, box-shadow .6s ease;
  cursor:pointer;
  overflow: visible;
}

/* base stacking so last one stays above */
.p1{ top: 8px;   left: 4%;  transform: rotate(-4deg); z-index: 10; }
.p2{ top: 118px; left: 10%; transform: rotate(3deg);  z-index: 20; }
.p3{ top: 238px; left: 6%;  transform: rotate(-2deg); z-index: 30; }

/* image wrapper for zoom */
.img-wrap{ position:relative; overflow:hidden; border-radius: 1.5rem; }
.img-wrap img{ transition: transform .8s ease; }
.img-overlay{
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.22), transparent 60%);
  opacity:.9;
  pointer-events:none;
}

/* hover: bring fully above + smooth lift */
.hover-rise:hover{
  transform: translateY(-14px) translateX(6px) scale(1.035) rotate(0deg);
  box-shadow: 0 44px 130px rgba(2,6,23,.28);
  z-index: 999;
}
.hover-rise:hover .img-wrap img{
  transform: scale(1.07);
}

/* text */
.tagline{
  font-size:10px;
  font-weight:900;
  letter-spacing:.35em;
  text-transform:uppercase;
  color:#64748b;
}
.title{
  font-size:15px;
  font-weight:900;
  color:#0f172a;
  margin-top:4px;
  line-height:1.2;
}

/* standards tiles */
.std-tile{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:16px 18px;
  border:1px solid #eef2f7;
  border-radius:1.75rem;
  background:#fff;
  box-shadow:0 12px 40px rgba(15,23,42,.06);
}
.std-tile span{ font-size:20px; line-height:1; margin-top:2px; }
.std-t{ font-weight:900; color:#0f172a; font-size:14px; }
.std-d{ font-size:13px; color:#64748b; margin-top:4px; line-height:1.5; }
 .hero-pill{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 14px; border-radius:999px;
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.18);
      font-weight: 900; font-size: 12px;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      white-space: nowrap;
    }
    .hero-dot{
      width:8px; height:8px; border-radius:999px;
      background: rgba(126,230,223,.95);
      box-shadow: 0 0 0 6px rgba(126,230,223,.12);
    }
    .route-glow{
      position:absolute; left:-40%; top:0; height:100%; width:45%;
      background: linear-gradient(90deg, transparent, rgba(126,230,223,.25), transparent);
      animation: routeGlow 4.8s linear infinite;
      filter: blur(1px);
      opacity:.9;
    }
    @keyframes routeGlow{
      from{ transform: translateX(0); }
      to{ transform: translateX(240%); }
    }
    /* route glow */
    .route-glow{
      position:absolute; left:-35%; top:-1px; height:3px; width:45%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
      animation: routeGlow 4.6s linear infinite;
      filter: blur(1px);
    }
    @keyframes routeGlow{ from{ transform:translateX(0);} to{ transform:translateX(240%);} }

    /* marquee */
    .marquee{ animation: marquee 26s linear infinite; }
    @keyframes marquee{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

    .dpill{
      display:inline-flex; align-items:center; gap:10px;
      padding:9px 14px; border-radius:999px;
      background: rgba(255,255,255,.18);
      border: 1px solid rgba(255,255,255,.22);
      font-weight:900; font-size:13px;
      white-space:nowrap;
      cursor:default;
      transition:.2s ease;
    }
    .dpill:hover{ transform: translateY(-1px); background: rgba(255,255,255,.26); border-color: rgba(255,255,255,.35); }
    .dimg{ width:26px; height:26px; border-radius:999px; object-fit:cover; border:2px solid rgba(255,255,255,.75); }

    .fcard{
      position:relative;
      border-radius: 22px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.20);
      padding: 16px;
      overflow:hidden;
    }
    .ftitle{
      font-size: 10px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .28em;
      color: rgba(255,255,255,.85);
    }
   .stamp {
    position: absolute;
    right: 14px; 
    top: 14px;
    background: rgba(15, 143, 136, .92);
    color: #fff;
    border-radius: 14px;
    padding: 10px 12px;
    font-weight: 900;
    text-align: center;
    height: 42px; font-size:.8rem; line-height: 1;
    /* line-height: 1.05; */
    display: flex;
    flex-flow: column;
    align-items: center;
    transform: rotate(351deg);
    box-shadow: 0 14px 40px rgba(15, 143, 136, .25);
}
 .stamp span {font-size:.8rem; line-height: 1;}

    .clink{ display:block; color: rgba(255,255,255,.85); }
    .clink:hover{ color:#fff; text-decoration: underline; }

    .soc{
      width:40px;height:40px;border-radius:999px;
      display:flex;align-items:center;justify-content:center;
      background: rgba(255,255,255,.16);
      border:1px solid rgba(255,255,255,.22);
      transition:.2s ease;
      font-weight:900; font-size:12px;
    }
    .soc:hover{ transform: translateY(-2px); background: rgba(255,255,255,.26); border-color: rgba(255,255,255,.35); }

    .ql{
      padding:10px 12px;
      border-radius:14px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.18);
      transition:.2s ease;
    }
    .ql:hover{ background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.30); }

/* ---- from index.html ---- */
/* fixed height + premium */
.review-card{
  height: 260px;                /* ✅ same height */
  display:grid;
  grid-template-columns: 220px 1fr;
  border-radius: 2rem;
  overflow:hidden;
  border:1px solid #eef2f7;
  background:#fff;
  box-shadow: 0 16px 60px rgba(15,23,42,.08);
  transition:.35s ease;
}
.review-card:hover{ transform: translateY(-4px); box-shadow: 0 28px 90px rgba(15,23,42,.14); }

@media (max-width:640px){
  .review-card{ grid-template-columns: 1fr; height:auto; }
}

/* image */
.review-img{ position:relative; height:100%; }
.review-img img{
  width:100%;
  height:100%;
  object-fit: cover;            /* ✅ looks natural */
  object-position: center;       /* ✅ no weird face cut */
  transform: scale(1.02);
  transition: transform .8s ease;
}
.review-card:hover .review-img img{ transform: scale(1.08); }

.review-img-overlay{
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.05));
}

/* destination chip */
.dest-chip{
  position:absolute; left:14px; bottom:14px;
  display:flex; align-items:center; gap:8px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border:1px solid rgba(255,255,255,.55);
  padding:8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 11px;
  color:#0f172a;
}
.dest-chip .dot{
  width:8px; height:8px; border-radius:999px;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(15,143,136,.15);
}

/* travel stamp */
/* .stamp{
  position:absolute; right:14px; top:14px;
  background: rgba(15,143,136,.92);
  color:#fff;
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 900;
  text-align:center;
  line-height: 1.05;
  transform: rotate(-6deg);
  box-shadow: 0 14px 40px rgba(15,143,136,.25);
} */
.stamp small{
  display:block;
  font-weight:800;
  font-size:10px;
  opacity:.9;
  margin-top:3px;
}

/* body */
.review-body{ padding:16px 18px; display:flex; flex-direction:column; justify-content:space-between; }
.stars{ display:flex; gap:2px; color:#fbbf24; }

.review-text{
  margin-top:10px;
  color:#334155;
  font-size: 13px;
  line-height: 1.7;

  display:-webkit-box;
  -webkit-line-clamp: 4;        /* ✅ consistent */
  -webkit-box-orient: vertical;
  overflow:hidden;
}
.review-text.open{
  -webkit-line-clamp: 20;       /* expands */
}
.readmore{
  margin-top:8px;
  font-weight: 900;
  font-size: 13px;
  color:#2563eb;
  align-self:flex-start;
}
.readmore:hover{ text-decoration: underline; }

/* footer */
.review-foot{
  margin-top:10px;
  padding-top:10px;
  border-top:1px solid #eef2f7;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.name{ font-weight: 900; color:#0f172a; font-size:14px; }
.route{ position:relative; width:120px; height:10px; }
.route-line{
  position:absolute; left:0; top:50%;
  transform: translateY(-50%);
  width:100%; height:2px;
  background: linear-gradient(90deg, rgba(15,143,136,.2), rgba(15,143,136,.9));
  border-radius:999px;
}
.route-dot{
  position:absolute; right:0; top:50%;
  transform: translateY(-50%);
  width:10px; height:10px;
  border-radius:999px;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(15,143,136,.12);
}

/* ---- from inner.html ---- */
:root { --primary:#008080; --secondary:#004d4d; --beige:#FAF9F6; }
    body{ font-family:'Inter',sans-serif; background:var(--beige); color:#1F2937; }
    .font-outfit{ font-family:'Outfit',sans-serif; }
    .glass{ background:rgba(255,255,255,.72); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); border:1px solid rgba(255,255,255,.35); }
    .glass-dark{ background:rgba(0,128,128,.12); backdrop-filter:blur(8px); border:1px solid rgba(255,255,255,.12); }
    .teal-gradient{ background:linear-gradient(135deg,#008080 0%,#004d4d 100%); }

    ::-webkit-scrollbar{ width:8px; }
    ::-webkit-scrollbar-track{ background:#f1f1f1; }
    ::-webkit-scrollbar-thumb{ background:var(--primary); border-radius:10px; }

    .hide-scrollbar::-webkit-scrollbar{ display:none; }
    .hide-scrollbar{ -ms-overflow-style:none; scrollbar-width:none; }

    @keyframes float { 0%{transform:translateY(0)} 50%{transform:translateY(-10px)} 100%{transform:translateY(0)} }
    .animate-float{ animation: float 4s ease-in-out infinite; }

    /* marquee wrapper */
    .marquee{ overflow:hidden; }
    .marquee-track{
      display:flex;
      align-items:center;
      gap:10px;
      width:max-content;
      animation: marquee 35s linear infinite;
    }
    @keyframes marquee{
      0%{ transform: translateX(0); }
      100%{ transform: translateX(-50%); }
    }

    /* pill style (tiny image + clean) */
    .pill{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 14px;
      border-radius:999px;
      background:#fff;
      border:1px solid #e5e7eb;
      box-shadow: 0 2px 10px rgba(0,0,0,.04);
      font-weight:700;
      font-size:14px;
      color:#111827;
      white-space:nowrap;
    }
    .pill img{
      width:28px;
      height:28px;
      border-radius:999px;
      object-fit:cover;
    }
    .marquee:hover .marquee-track{ animation-play-state: paused; }

    /* right side subtle motion */
    .motion-card{
      animation: floaty 5s ease-in-out infinite !important;
      transform-origin: center;
    }
    .motion-card:nth-child(2){ animation-delay: .6s !important; }
    .motion-card:nth-child(3){ animation-delay: 1.2s !important; }
    .motion-card:nth-child(4){ animation-delay: 1.8s !important; }

    @keyframes floaty{
      0%{ transform: translateY(0px); }
      50%{ transform: translateY(-10px); }
      100%{ transform: translateY(0px); }
    }

    @media (prefers-reduced-motion: reduce){
      .marquee-track, .motion-grid .motion-card{ animation: none !important; }
    }

    /* small premium chips */
    .chip{
      display:inline-flex;
      align-items:center;
      padding: 7px 12px;
      border-radius: 999px;
      border: 1px solid #e5e7eb;
      background: #fff;
      font-size: 12px;
      font-weight: 800;
      color: #334155;
      box-shadow: 0 6px 20px rgba(15,23,42,.06);
    }

    /* hero pills + glow route (footer uses it) */
    .hero-pill{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 14px; border-radius:999px;
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.18);
      backdrop-filter: blur(10px);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .02em;
      color: rgba(255,255,255,.85);
    }
    .hero-dot{
      width:8px;height:8px;border-radius:999px;
      background:#7ee6df;
      box-shadow: 0 0 0 4px rgba(126,230,223,.18);
    }
    .route-glow{
      position:absolute; left:-30%; top:6px;
      height:26px; width:40%;
      background: linear-gradient(90deg, transparent, rgba(126,230,223,.35), transparent);
      filter: blur(2px);
      animation: routeGlow 4.6s linear infinite;
      opacity:.75;
    }
    @keyframes routeGlow{
      from{ transform: translateX(0); }
      to{ transform: translateX(220%); }
    }

    /* desktop nav links */
    .navlink{ position:relative; padding:.35rem .15rem; transition:.2s; }
    .navlink:hover{ color:#008080; }

    /* dropdown */
    .dd{
      position:absolute; left:0; top:calc(100% + 10px);
      width:320px;
      padding:10px;
      border-radius:18px;
      background:rgba(255,255,255,.92);
      backdrop-filter: blur(10px);
      border:1px solid rgba(0,0,0,.08);
      box-shadow: 0 18px 40px rgba(2, 46, 43, .10);
      opacity:0; visibility:hidden; transform: translateY(6px);
      transition: .22s ease;
      z-index:60;
    }
    .group:hover .dd{ opacity:1; visibility:visible; transform: translateY(0); }

    .dd-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:10px 12px; border-radius:14px;
      transition:.18s ease;
    }
    .dd-item:hover{ background: rgba(0,128,128,.08); }
    .dd-ico{
      width:34px; height:34px; border-radius:12px;
      display:flex; align-items:center; justify-content:center;
      background: rgba(0,128,128,.10);
      border:1px solid rgba(0,0,0,.06);
      flex:0 0 auto;
    }
    .dd-title{ display:block; font-weight:900; font-size:13px; color:#0f172a; }
    .dd-sub{ display:block; font-size:11px; font-weight:800; letter-spacing:.02em; color: rgba(15, 23, 42, .55); }
    .dd-chip{
      display:flex; align-items:center; justify-content:center;
      border-radius:14px;
      padding:10px 12px;
      font-weight:900; font-size:12px;
      background: rgba(255,255,255,.75);
      border:1px solid rgba(0,0,0,.08);
      transition:.18s ease;
    }
    .dd-chip:hover{ background: rgba(0,128,128,.10); border-color: rgba(0,128,128,.25); }

    /* CORPORATE CTA – animated border + animated gradient background */
    .corporate-btn{
      position:relative;
      padding:10px 24px;
      border-radius:999px;
      font-weight:900;
      color:#ffffff;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.15);
      background: linear-gradient(120deg,#008080,#2bb7b3,#7ee6df,#008080);
      background-size:300% 300%;
      animation: bgMove 6s ease infinite;
      transition:all .3s ease;
    }
    .corporate-btn::before{
      content:"";
      position:absolute;
      inset:-3px;
      border-radius:999px;
      background: conic-gradient(
        transparent,
        rgba(126,230,223,.9),
        rgba(0,128,128,.9),
        rgba(126,230,223,.9),
        transparent
      );
      animation: spin 4s linear infinite;
      filter: blur(6px);
      opacity:.65;
    }
    .corporate-btn::after{
      content:"";
      position:absolute;
      inset:2px;
      border-radius:999px;
      background: linear-gradient(120deg,#008080,#2bb7b3,#7ee6df,#008080);
      background-size:300% 300%;
      animation: bgMove 6s ease infinite;
      z-index:1;
    }
    .corporate-btn span{ position:relative; z-index:2; }
    .corporate-btn:hover{ transform:translateY(-1px); box-shadow:0 14px 32px rgba(0,128,128,.35); }
    @keyframes spin{ to{ transform:rotate(360deg); } }
    @keyframes bgMove{
      0%{ background-position:0% 50%; }
      50%{ background-position:100% 50%; }
      100%{ background-position:0% 50%; }
    }

    /* mobile menu */
    .m-link{ display:block; padding:12px 10px; border-radius:14px; background: rgba(0,0,0,.03); }
    .m-link:hover{ background: rgba(0,128,128,.10); color:#008080; }
    .m-dd{ padding:12px 10px; border-radius:14px; background: rgba(0,0,0,.03); }
    .m-sum{ cursor:pointer; font-weight:900; list-style:none; }
    .m-sum::-webkit-details-marker{ display:none; }
    .m-sub{ display:block; padding:10px 10px; border-radius:12px; margin-top:8px; background: rgba(255,255,255,.7); border:1px solid rgba(0,0,0,.06); }
    .m-sub:hover{ background: rgba(0,128,128,.10); border-color: rgba(0,128,128,.25); color:#008080; }

    /* footer */
    .dpill{
      display:inline-flex; align-items:center; gap:10px;
      padding:9px 14px; border-radius:999px;
      background: rgba(255,255,255,.18);
      border: 1px solid rgba(255,255,255,.22);
      font-weight:900; font-size:13px;
      white-space:nowrap;
      cursor:default;
      transition:.2s ease;
    }
    .dpill:hover{ transform: translateY(-1px); background: rgba(255,255,255,.26); border-color: rgba(255,255,255,.35); }
    .dimg{ width:26px; height:26px; border-radius:999px; object-fit:cover; border:2px solid rgba(255,255,255,.75); }

    .fcard{
      position:relative;
      border-radius: 22px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.20);
      padding: 16px;
      overflow:hidden;
    }
    .ftitle{
      font-size: 10px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .28em;
      color: rgba(255,255,255,.85);
    }
    .stamp{
      position:absolute;
      right:14px; bottom:14px;
      font-size:10px;
      font-weight:900;
      line-height:1;
      letter-spacing:.18em;
      padding:6px 11px;
      border-radius:999px;
      border:1px dashed rgba(255,255,255,.45);
      color: rgba(255,255,255,.75);
      transform: rotate(-6deg);
      background: rgba(0,0,0,.10);
      display:inline-flex;
      align-items:center;
    }
    .clink{ display:block; color: rgba(255,255,255,.85); }
    .clink:hover{ color:#fff; text-decoration: underline; }

    .soc{
      width:40px;height:40px;border-radius:999px;
      display:flex;align-items:center;justify-content:center;
      background: rgba(255,255,255,.16);
      border:1px solid rgba(255,255,255,.22);
      transition:.2s ease;
      font-weight:900; font-size:12px;
    }
    .soc:hover{ transform: translateY(-2px); background: rgba(255,255,255,.26); border-color: rgba(255,255,255,.35); }

    .ql{
      padding:10px 12px;
      border-radius:14px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.18);
      transition:.2s ease;
    }
    .ql:hover{ background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.30); }
