:root {
  /* ===== Brand Colors ===== */
  --primary: #194479;
  --primary-soft: rgba(25, 68, 121, 0.12);

  --accent: #e26c0c;
  --accent-2: #ff974a;
  --accent-soft: rgba(226, 108, 12, 0.14);

  /* ===== Backgrounds ===== */
  --bg-dark: #0b1220;
  --bg-darker: #0a0f1a;
  --bg-light: #ffffff;
  --bg-surface: #f8fafc;

  /* ===== Text ===== */
  --text-strong: #0b1220;
  --text-main: #2b3345;
  --text-muted: #6b7280;

  /* ===== Layout ===== */
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;

  /* ===== Motion ===== */
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg-light);
  color: var(--text-main);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

.container.narrow {
  max-width: 860px;
}

.section {
  padding: 50px 0;
  position: relative;
}

.section.alt {
  background: var(--bg-surface);
}

.center {
  text-align: center;
}












/* ================= SALESFORCE HERO ================= */

.hero-salesforce {
  position: relative;
  padding: 50px 0 50px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* ---------- LEFT CONTENT ---------- */

.hero-content h1 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.15;
  color: var(--text-strong);
  margin-bottom: 18px;
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content h2 {
  font-size: 22px;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 22px;
}

.hero-content p {
  font-size: 16.5px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.hero-sub {
  max-width: 520px;
}

/* BADGE */
.hero-badge {
  display: inline-block;
  background: linear-gradient(
    120deg,
    var(--primary-soft),
    var(--accent-soft)
  );
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* CTA */
.hero-cta {
  display: flex;
  gap: 18px;
  margin-top: 30px;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--accent)
  );
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  text-decoration: none;
  transition: transform .4s var(--ease-premium), box-shadow .4s;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(25, 68, 121, 0.35);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 12px 26px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  text-decoration: none;
  transition: all .4s var(--ease-premium);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* ---------- RIGHT VISUAL ---------- */
/* ================= SALESFORCE SYSTEM ================= */

.sf-system {
  position: relative;
  width: 100%;
  height: 520px;
}

/* CENTRAL CRM */
.sf-core {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(
    circle at top,
    var(--accent-2),
    var(--primary)
  );
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 60px 140px rgba(25, 68, 121, 0.45);
  z-index: 3;
  animation: sf-breath 6s ease-in-out infinite;
}

.sf-core span {
  font-size: 18px;
  line-height: 1.3;
}

/* DATA LINES */
.sf-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.sf-lines line {
  stroke: var(--accent);
  stroke-width: 4;
  stroke-dasharray: 6 10;
  animation: data-flow 6s linear infinite;
}

/* MODULE CARDS */
.sf-module {
  position: absolute;
  width: 200px;
  padding: 18px 20px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
  transition: transform .5s var(--ease-premium),
              box-shadow .5s var(--ease-premium);
  z-index: 2;
}

.sf-module h4 {
  margin: 0 0 6px;
  color: var(--primary);
  font-size: 16px;
}

.sf-module p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

/* POSITIONS */
.sf-module.sales { top: 60px; left: 40px; }
.sf-module.service { top: 60px; right: 40px; }
.sf-module.marketing { bottom: 60px; left: 40px; }
.sf-module.analytics { bottom: 60px; right: 40px; }

/* HOVER → DATA FOCUS */
.sf-module:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 50px 120px rgba(25, 68, 121, 0.25);
}

/* ANIMATIONS */
@keyframes data-flow {
  to {
    stroke-dashoffset: -200;
  }
}

@keyframes sf-breath {
  0%,100% {
    transform: scale(1);
    box-shadow: 0 60px 140px rgba(25, 68, 121, 0.45);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 90px 180px rgba(226, 108, 12, 0.45);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .sf-system {
    height: 460px;
  }
  .sf-module {
    width: 280px;
  }
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero-visual {
    height: 360px;
  }
}

/* ================= SALESFORCE SYSTEM – MOBILE FIX ================= */

@media (max-width: 900px) {

  .sf-system {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    padding-top: 20px;
  }

  /* CENTER CORE */
  .sf-core {
    position: relative;
    inset: auto;
    width: 140px;
    height: 140px;
    animation: none; /* stop heavy pulse on mobile */
  }

  .sf-core span {
    font-size: 16px;
  }

  /* REMOVE SVG LINES (CLEAN MOBILE UX) */
  .sf-lines {
    display: none;
  }

  /* MODULE STACK */
  .sf-module {
    position: relative;
    width: 100%;
    max-width: 120px;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none !important;
  }

}

@media (max-width: 600px) {

  .sf-module {
    padding: 16px 18px;
    border-radius: var(--radius-md);
  }

  .sf-module h4 {
    font-size: 15px;
  }

  .sf-module p {
    font-size: 13.5px;
  }

}

@media (max-width: 900px) {

  .sf-module {
    opacity: 0;
    animation: sfFadeUp .6s ease forwards;
  }

  .sf-module:nth-child(1) { animation-delay: .1s; }
  .sf-module:nth-child(2) { animation-delay: .25s; }
  .sf-module:nth-child(3) { animation-delay: .4s; }
  .sf-module:nth-child(4) { animation-delay: .55s; }

  @keyframes sfFadeUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

}






/* ================= SALESFORCE EXPLAIN ================= */

.sf-explain {
  background: var(--bg-light);
}

.sf-explain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT CONTENT */
.sf-explain-content h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  color: var(--text-strong);
  margin-bottom: 18px;
}

.sf-explain-content .lead {
  font-size: 17px;
  color: var(--text-main);
  margin-bottom: 18px;
}

.sf-explain-content p {
  color: var(--text-muted);
  max-width: 520px;
}

/* RIGHT STACK */
.sf-capability-stack {
  position: relative;
  display: grid;
  gap: 18px;
}

/* CARD */
.sf-cap-card {
  position: relative;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  transition: transform .5s var(--ease-premium),
              box-shadow .5s var(--ease-premium),
              background .5s;
  cursor: pointer;
  overflow: hidden;
}

/* ACTIVE CARD */
.sf-cap-card.active {
  background: linear-gradient(
    120deg,
    var(--primary-soft),
    var(--accent-soft)
  );
}

/* ICON */
.sf-icon {
  font-size: 28px;
  display: inline-block;
  margin-bottom: 10px;
}

/* TITLES */
.sf-cap-card h4 {
  margin: 0 0 6px;
  font-size: 18px;
  color: var(--primary);
}

/* TEXT */
.sf-cap-card p {
  margin: 0;
  font-size: 14.5px;
  color: var(--text-muted);
}

/* HOVER EFFECT */
.sf-cap-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 50px 120px rgba(25, 68, 121, 0.22);
  background: linear-gradient(
    120deg,
    var(--primary-soft),
    var(--accent-soft)
  );
}

/* SUBTLE EDGE GLOW */
.sf-cap-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(25, 68, 121, 0.15);
  pointer-events: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .sf-explain-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}








/* ================= SALESFORCE CANDLES ================= */

.sf-candles {
  background: var(--bg-light);
}

/* GRID */
.sf-candles-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
}

/* LEFT VISUAL */
.sf-candle-visual {
  display: flex;
  align-items: flex-end;
  gap: 22px;
  
  height: 420px; /* increased */
  padding-bottom: 70px; /* space for labels */
}


/* CANDLE */
.sf-candle {
  position: relative;
  width: 56px;
  background: linear-gradient(
    to top,
    var(--primary),
    var(--accent)
  );
  border-radius: 999px;
  transform-origin: bottom;
  animation: growCandle 1.2s var(--ease-premium) forwards;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

/* LABEL */
.sf-candle span {
  position: absolute;
  bottom: -58px; /* adjusted */
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  text-align: center;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-muted);
  white-space: normal;
}

/* HEIGHTS */
.c1 { height: 80px; animation-delay: .2s; }
.c2 { height: 130px; animation-delay: .4s; }
.c3 { height: 190px; animation-delay: .6s; }
.c4 { height: 250px; animation-delay: .8s; }
.c5 { height: 310px; animation-delay: 1s; }

/* GROW ANIMATION */
@keyframes growCandle {
  from {
    transform: scaleY(0);
    box-shadow: 0 0 0 rgba(0,0,0,0);
  }
  to {
    transform: scaleY(1);
    box-shadow: 0 30px 90px rgba(25,68,121,0.35);
  }
}

/* HIGHLIGHT FINAL CANDLE */
.sf-candle.highlight {
  background: linear-gradient(
    to top,
    var(--accent),
    var(--accent-2)
  );
  box-shadow: 0 40px 120px rgba(226,108,12,0.45);
}

/* HOVER = PREMIUM FOCUS */
.sf-candle:hover {
  transform: scaleY(1.05);
}

/* RIGHT CONTENT */
.sf-candles-content .sf-exec-lead {
  font-size: 18px;
  color: var(--text-main);
  margin-bottom: 20px;
}

.sf-candles-content p {
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 16px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .sf-candles-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .sf-candle-visual {
    justify-content: center;
    height: 300px;
  }

  .sf-candle span {
    font-size: 12px;
    width: 100px;
  }
}


@media (max-width: 900px) {
  .sf-candle-visual {
    height: auto;
    padding-bottom: 0;
    align-items: flex-end;
  }

  .sf-candle {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sf-candle span {
    position: static;
    transform: none;
    margin-top: 10px;
    width: 100px;
    font-size: 12px;
  }
}

/* =====================================
   SALESFORCE CANDLES – MOBILE FIX
===================================== */

@media (max-width: 900px) {

  .sf-candles-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* VISUAL WRAPPER */
  .sf-candle-visual {
    justify-content: space-between;
    align-items: flex-end;
    height: auto;
    padding-bottom: 0;
    gap: 14px;
  }

  /* CANDLES SCALE DOWN */
  .sf-candle {
    width: 36px;
    border-radius: 999px;
  }

  /* REDUCE HEIGHTS PROPORTIONALLY */
  .c1 { height: 60px; }
  .c2 { height: 95px; }
  .c3 { height: 135px; }
  .c4 { height: 175px; }
  .c5 { height: 215px; }

  /* LABELS BELOW CANDLES */
  .sf-candle span {
    position: static;
    transform: none;
    margin-top: 10px;
    width: 72px;
    font-size: 11px;
    line-height: 1.3;
    text-align: center;
  }
}

/* EXTRA SMALL PHONES (≤480px) */
@media (max-width: 480px) {

  .sf-candle-visual {
    gap: 10px;
  }

  .sf-candle {
    width: 30px;
  }

  .c1 { height: 48px; }
  .c2 { height: 75px; }
  .c3 { height: 110px; }
  .c4 { height: 145px; }
  .c5 { height: 180px; }

  .sf-candle span {
    width: 64px;
    font-size: 10px;
  }
}





/* ================= SALESFORCE SERVICES – PREMIUM ================= */

.sf-services {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.sf-services-wrap {
  position: relative;
  min-height: 700px;
  margin-top: 90px;
}

/* CENTER CORE */
.sf-services-core {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle at top, var(--accent-2), var(--primary));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 70px 160px rgba(25,68,121,0.45);
  animation: corePulse 6s ease-in-out infinite;
  z-index: 3;
}

/* SERVICE CARD */
.sf-service {
  position: absolute;
  width: 320px;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 28px 30px 30px;
  box-shadow: 0 35px 90px rgba(0,0,0,0.08);
  transition: transform .6s var(--ease-premium),
              box-shadow .6s var(--ease-premium),
              background .6s;
  z-index: 2;
}

/* META (NUMBER + ICON) */
.sf-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.sf-num {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.sf-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 10px 30px rgba(25,68,121,0.35);
}

/* TEXT */
.sf-service h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--primary);
}

.sf-service p {
  margin: 0;
  font-size: 14.5px;
  color: var(--text-muted);
}

/* SAFE POSITIONS (NO OVERLAP) */
.s1 { top: 0; left: 50%; transform: translateX(-50%); }
.s2 { top: 100px; right: 0; }
.s3 { bottom: 150px; right: 0; }
.s4 { bottom: 0; left: 50%; transform: translateX(-50%); }
.s5 { bottom: 100px; left: 0; }
.s6 { top: 150px; left: 0; }

/* PREMIUM HOVER */
.sf-service:hover {
  transform: translateY(-14px) scale(1.06);
  box-shadow: 0 80px 180px rgba(25,68,121,0.28);
  background: linear-gradient(135deg, var(--primary-soft), var(--accent-soft));
}

/* CONNECTOR GLOW */
.sf-service:hover .sf-icon {
  transform: scale(1.15);
  box-shadow: 0 0 40px rgba(226,108,12,0.6);
}

/* CORE PULSE */
@keyframes corePulse {
  0%,100% {
    box-shadow: 0 70px 160px rgba(25,68,121,0.45);
  }
  50% {
    box-shadow: 0 100px 220px rgba(226,108,12,0.45);
  }
}

/* RESPONSIVE (STACKED CLEAN) */
@media (max-width: 1024px) {
  .sf-services-wrap {
    min-height: auto;
    display: grid;
    gap: 28px;
  }

  .sf-services-core {
    position: relative;
    margin: 0 auto 40px;
  }

  .sf-service {
    position: relative;
    width: 100%;
    transform: none !important;
  }
}

/* ================= MOBILE FIX – SALESFORCE SERVICES ================= */

@media (max-width: 1024px) {

  .sf-services-wrap {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 50px;
  }

  /* CENTER CORE */
  .sf-services-core {
    position: relative;
    inset: auto;
    margin: 0 auto 24px;
    width: 150px;
    height: 150px;
    animation: none;
  }

  /* SERVICE CARDS */
  .sf-service {
    position: relative;
    width: 100%;
    max-width: 100%;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none !important;
  }

}



@media (max-width: 600px) {

  .sf-service {
    padding: 22px 20px 24px;
    border-radius: var(--radius-md);
  }

  .sf-num {
    font-size: 32px;
  }

  .sf-service h3 {
    font-size: 16px;
  }

  .sf-service p {
    font-size: 14px;
  }

}


@media (max-width: 1024px) {

  .sf-service {
    animation: mobileFadeUp .6s ease forwards;
  }

  @keyframes mobileFadeUp {
    from {
      opacity: 0;
      transform: translateY(24px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

}





/* ===============================
   iOS CONVERSION SECTION
================================ */

.ios-conversion{
  padding:130px 0;
  background:#fff;
}

.ios-conversion-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:90px;
  align-items:flex-start;
}

/* LEFT VISUAL */
.ios-conversion-visual{
  position:sticky;
  top:120px;
}

.ios-visual-frame{
  width:260px;
  margin:auto;
}

.ios-visual-frame img{
  width:100%;
  border-radius:28px;
  box-shadow:0 30px 80px rgba(0,0,0,.18);
}

/* RIGHT CONTENT */
.ios-conversion-content{
  display:flex;
  flex-direction:column;
  gap:70px;
}

.ios-block h2,
.ios-final-cta h2{
  font-size:32px;
  margin-bottom:14px;
  color:var(--text-strong);
}

.ios-block p,
.ios-final-cta p{
  color:var(--text-main);
  margin-bottom:22px;
  font-size:16px;
}

/* LIST */
.ios-points{
  list-style:none;
  padding:0;
  margin:0 0 26px;
}

.ios-points li{
  position:relative;
  padding-left:26px;
  margin-bottom:12px;
  font-size:15px;
  color:var(--text-main);
}

.ios-points li::before{
  content:'';
  position:absolute;
  left:0;
  top:8px;
  width:12px;
  height:12px;
  border-radius:50%;
  background:linear-gradient(135deg,#194479,#e26c0c);
}

/* SUB CTA BUTTONS */
.ios-sub-cta-row{
  display:flex;
  gap:26px;
  flex-wrap:wrap;
}

.ios-sub-cta{
  margin-top:8px;
}

.ios-link-btn{
  position:relative;
  font-weight:600;
  color:#000;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:transform .3s ease;
}

.ios-link-btn span{
  position:absolute;
  left:0;
  bottom:-4px;
  height:2px;
  width:0;
  background:linear-gradient(90deg,#194479,#e26c0c);
  transition:width .4s ease;
}

.ios-link-btn:hover{
  transform:scale(1.04);
}

.ios-link-btn:hover span{
  width:100%;
}

/* MAIN CTA */
.ios-main-cta{
  margin:26px 0 20px;
  display:inline-flex;
}

/* RESPONSIVE */
@media(max-width:992px){
  .ios-conversion-grid{
    grid-template-columns:1fr;
  }

  .ios-conversion-visual{
    position:relative;
    top:0;
    margin-bottom:40px;
  }

  .ios-visual-frame{
    width:220px;
  }
}






.uiux-faq{
  padding:50px 0;
  background:var(--bg-dark);
  
}

.uiux-faq-header{
  max-width:760px;
  margin-bottom:80px;
}

.uiux-faq-header h2{
  font-size:2.5rem;
  color:var(--text-strong);
  margin-bottom:12px;
}

.uiux-faq-header p{
  color:var(--text-muted);
  line-height:1.7;
}

/* FAQ LIST */
.uiux-faq-list{
  max-width:900px;
}

/* ITEM */
.faq-item{
  border-radius:var(--radius-xl);
  background:var(--bg-light);
  box-shadow:var(--shadow-soft);
  margin-bottom:18px;
  overflow:hidden;
}

/* QUESTION */
.faq-question{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:26px 30px;
  background:none;
  border:none;
  cursor:pointer;
  font-size:1.05rem;
  font-weight:500;
  color:var(--text-strong);
  text-align:left;
  transition:var(--transition-med);
}

/* ICON */
.faq-icon{
  width:22px;
  height:22px;
  position:relative;
}
.faq-icon::before,
.faq-icon::after{
  content:"";
  position:absolute;
  background:var(--accent);
  transition:var(--transition-med);
}
.faq-icon::before{
  width:2px;
  height:100%;
  left:50%;
  top:0;
  transform:translateX(-50%);
}
.faq-icon::after{
  width:100%;
  height:2px;
  top:50%;
  left:0;
  transform:translateY(-50%);
}

/* ANSWER */
.faq-answer{
  max-height:0;
  overflow:hidden;
  padding:0 30px;
  color:var(--text-muted);
  line-height:1.7;
  transition:max-height .5s ease, padding .4s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer{
  max-height:260px;
  padding:0 30px 24px;
}

.faq-item.active .faq-icon::before{
  transform:translateX(-50%) rotate(90deg);
  opacity:0;
}

.faq-item.active .faq-question{
  color:var(--primary);
}


.cta-ecom-travel{
  margin-top:40px;
  display:inline-flex;
  align-items:center;
  gap:18px;
  padding:18px 46px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--primary),var(--accent));
  color:#fff;
  font-weight:600;
  text-decoration:none;
  position:relative;
  overflow:hidden;
  box-shadow:0 25px 70px rgba(25,68,121,.35);
  transition:
    transform .6s var(--ease-premium),
    box-shadow .6s var(--ease-premium),
    background .6s var(--ease-premium);
}

/* TEXT */
.cta-text{
  position:relative;
  z-index:2;
  transition:transform .6s var(--ease-premium);
  white-space:nowrap;
}

/* ICON BASE */
.cta-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:26px;
  height:26px;
  font-size:18px;
  position:relative;
  z-index:2;
  transition:all .6s var(--ease-premium);
}

/* LEFT ICON (TRAVELER) */
.cta-icon.travel{
  position:absolute;
  left:18px;
}

/* RIGHT ICON (TARGET) */
.cta-icon.target{
  position:absolute;
  right:18px;
}

/* HOVER EFFECT */
.cta-ecom-travel:hover{
  transform:scale(1.08);
  background:linear-gradient(135deg,var(--accent),var(--primary));
  box-shadow:0 35px 95px rgba(226,108,12,.45);
}

/* ICON TRAVELS ACROSS TEXT */
.cta-ecom-travel:hover .cta-icon.travel{
  transform:translateX(calc(100% + 250px));
}

/* RIGHT ICON MOVES OUT */
.cta-ecom-travel:hover .cta-icon.target{
  transform:translateX(40px);
  opacity:0;
}

/* TEXT SLIDES LEFT SLIGHTLY */
.cta-ecom-travel:hover .cta-text{
  transform:translateX(-20px);
}

