: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;
}



.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);
}


/* ===============================
   iOS HERO – LEFT APPLE BACKGROUND
================================ */
/* ===============================
   iOS HERO – PRO MAX
================================ */

.ios-hero-pro-max{
  background:#fff;
  padding:50px 0 0px;
  overflow:hidden;
}

.ios-hero-grid{
  max-width:1400px;
  margin:auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:100px;
  align-items:center;
}

/* LEFT CONTENT */
.ios-chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(25,68,121,.08);
  color:#194479;
  font-weight:600;
  margin-bottom:22px;
}

.ios-title{
  font-size:52px;
  line-height:1.12;
  color:var(--text-strong);
  margin-bottom:16px;
}

.ios-title span{
  color:var(--primary);
}

.ios-subtitle{
  font-size:22px;
  color:var(--accent);
  margin-bottom:22px;
}

.ios-desc{
  font-size:17px;
  color:var(--text-main);
  margin-bottom:14px;
}

.ios-muted{
  color:var(--text-muted);
  margin-bottom:34px;
}

/* CTA BUTTONS */
/* CTA GROUP ALIGNMENT */
/* ===============================
   iOS HERO – CTA BLOCK
================================ */

.ios-cta-wrap{
  display:flex;
  flex-direction:column;
  gap:18px;
  max-width:520px;
}

/* MAIN CTA */
.ios-main-cta{
  width:fit-content;
}

/* SECONDARY ROW */
.ios-cta-row{
  display:flex;
  gap:28px;
  align-items:center;
}

/* SECONDARY BUTTON */
.ios-cta-btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:15px;
  font-weight:600;
  color:#000;
  text-decoration:none;
  padding:10px 2px;
}

/* ICON SIZE */
.ios-cta-btn i{
  font-size:17px;
}

/* GRADIENT UNDERLINE */
.ios-cta-btn .hover-line{
  position:absolute;
  left:0;
  bottom:-3px;
  height:2px;
  width:0;
  background:linear-gradient(90deg,#194479,#e26c0c);
  transition:width .45s ease;
}

/* HOVER EFFECT */
.ios-cta-btn:hover .hover-line{
  width:100%;
}

/* ===============================
   RESPONSIVE
================================ */

@media(max-width:768px){
  .ios-cta-wrap{
    align-items:center;
  }

  .ios-cta-row{
    gap:22px;
  }
}


/* RIGHT VISUAL */
.ios-right-visual{
  position:relative;
  height:520px;
}

/* BIG APPLE */
.apple-bg{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
}

.apple-bg i{
  font-size:520px;
  color:#e26c0c;
  animation:appleFloat 18s ease-in-out infinite;
}

/* iOS UI SYSTEM */
.ios-ui-system{
  position:absolute;
  inset:0;
  z-index:2;
}

.ios-ui-card{
  position:absolute;
  padding:16px 18px;
  border-radius:18px;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(14px);
  box-shadow:0 25px 70px rgba(0,0,0,.18);
  animation:uiFloat 6s ease-in-out infinite;
}

.ios-ui-card strong{
  display:block;
  font-size:15px;
}

.ios-ui-card span{
  font-size:13px;
  color:var(--text-muted);
}

/* POSITIONS */
.c1{ top:40px; left:40px; }
.c2{ top:120px; right:20px; animation-delay:1s; }
.c3{ bottom:120px; left:60px; animation-delay:2s; }
.c4{ bottom:40px; right:60px; animation-delay:3s; }

/* ANIMATIONS */
@keyframes appleFloat{
  0%,100%{ transform:translateY(0) scale(1); }
  50%{ transform:translateY(-18px) scale(1.04); }
}

@keyframes uiFloat{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-12px); }
}

/* RESPONSIVE */
@media(max-width:1024px){
  .ios-hero-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .ios-right-visual{
    margin-top:50px;
  }

  .ios-cta-wrap{
    justify-content:center;
  }

  .apple-bg i{
    font-size:360px;
  }
}




/* ===============================
   iOS SERVICES – PREMIUM UPGRADE
================================ */

.ios-services-focus{
  background:#fff;
  padding:50px 0 50px;
}

.ios-services-focus-inner{
  max-width:1300px;
  margin:auto;
  padding:0 24px;
}

/* HEADER */
.ios-services-focus-header{
  max-width:760px;
  margin-bottom:70px;
}

.ios-services-focus-header h2{
  font-size:42px;
  color:var(--text-strong);
  margin-bottom:14px;
}

.ios-services-focus-header p{
  font-size:17px;
  color:var(--text-muted);
}

/* LAYOUT */
.ios-services-stack{
  display:grid;
  grid-template-columns:380px 1fr;
  gap:90px;
}

/* LEFT MENU */
.ios-services-menu{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.service-tab{
  position:relative;
  background:none;
  border:none;
  padding:14px 0;
  font-size:17px;
  font-weight:500;
  color:var(--text-muted);
  display:flex;
  align-items:center;
  gap:12px;
  cursor:pointer;
  transition:.35s ease;
}

.service-tab i{
  font-size:16px;
  color:rgba(25,68,121,.6);
}

/* GRADIENT UNDERLINE */
.service-tab .hover-line{
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:2px;
  background:linear-gradient(
    90deg,
    #194479,
    #e26c0c
  );
  transition:width .45s ease;
}

.service-tab:hover .hover-line,
.service-tab.active .hover-line{
  width:100%;
}

/* ACTIVE STATE */
.service-tab:hover,
.service-tab.active{
  color:var(--text-strong);
}

.service-tab.active i{
  color:#194479;
}

/* RIGHT PANEL */
.ios-service-feature{
  position:relative;
}

.feature-panel{
  display:none;
  animation:fadeUp .45s ease forwards;
}

.feature-panel.active{
  display:block;
}

.feature-panel h3{
  font-size:30px;
  margin-bottom:14px;
  color:var(--text-strong);
}

.feature-panel p{
  font-size:16px;
  color:var(--text-main);
  max-width:520px;
}

/* ANIMATION */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(8px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* RESPONSIVE */
@media(max-width:992px){
  .ios-services-stack{
    grid-template-columns:1fr;
  }

  .ios-services-menu{
    flex-direction:row;
    overflow-x:auto;
    gap:24px;
  }

  .service-tab{
    white-space:nowrap;
  }
}








/* ===============================
   WHY iOS – CANVAS STYLE
================================ */

.ios-why-canvas{
  position:relative;
  padding:140px 0 120px;

  overflow:hidden;
}

.ios-why-canvas::after{
  content:'';
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(84, 4, 4, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size:44px 44px;
  opacity:.35;
  pointer-events:none;
}

.ios-why-inner{
  position:relative;
  z-index:2;
  max-width:900px;
}

.ios-why-intro{
  color:rgba(255,255,255,.85);
  font-size:17px;
  margin-bottom:40px;
}

/* BENEFIT FLOW */
.ios-why-flow{
  display:flex;
  flex-direction:column;
  gap:26px;
}

.why-line{
  position:relative;
  padding-left:34px;
  font-size:18px;
  color:#fff;
  font-weight:500;
}

.why-line span{
  position:absolute;
  left:0;
  top:8px;
  width:14px;
  height:14px;
  border-radius:50%;
  background:linear-gradient(135deg,#09424d,#e26c0c);
  animation:pulseDot 3s ease-in-out infinite;
}

@keyframes pulseDot{
  0%,100%{ transform:scale(1); opacity:1; }
  50%{ transform:scale(1.3); opacity:.75; }
}

/* RESPONSIVE */
@media(max-width:768px){
  .why-line{ font-size:16px; }
}










/* ===============================
   WHY iOS – WHITE GRADIENT GRID
================================ */

.ios-why-white{
  position:relative;
  padding:50px 0 50px;
  background:#fff;
  overflow:hidden;
}

/* GRADIENT GRID LINES */
.ios-why-white::before{
  content:'';
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      rgba(25,68,121,.12) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(226,108,12,.12) 1px,
      transparent 1px
    );
  background-size:56px 56px;
  pointer-events:none;
}

/* CONTENT */
.ios-why-inner{
  position:relative;
  max-width:900px;
}

.ios-why-intro{
  font-size:17px;
  color:var(--text-main);
  margin-bottom:40px;
}

/* LIST */
.ios-why-list{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.why-item{
  position:relative;
  padding-left:34px;
  font-size:17px;
  font-weight:500;
  color:var(--text-strong);
}

/* GRADIENT BULLET */
.why-item::before{
  content:'';
  position:absolute;
  left:0;
  top:10px;
  width:14px;
  height:14px;
  border-radius:50%;
  background:linear-gradient(
    135deg,
    #194479,
    #e26c0c
  );
}

/* RESPONSIVE */
@media(max-width:768px){
  .why-item{ font-size:16px; }
}




/* ===============================
   iOS PROCESS – WHITE FLOW
================================ */

.ios-process-white{
  position:relative;
  padding:50px 0 50px;
  background:#fff;
}

/* FLOW LINE */
.process-flow{
  position:relative;
  max-width:900px;
  padding-left:48px;
}

.process-flow::before{
  content:'';
  position:absolute;
  left:16px;
  top:0;
  bottom:0;
  width:3px;
  background:linear-gradient(
    180deg,
    #194479,
    #e26c0c
  );
  border-radius:3px;
}

/* STEP */
.process-step{
  display:flex;
  gap:26px;
  margin-bottom:42px;
}

.process-step span{
  width:36px;
  height:36px;
  border-radius:50%;
  background:#fff;
  border:2px solid #194479;
  color:#194479;
  font-weight:600;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* TEXT */
.process-step h3{
  font-size:20px;
  margin-bottom:6px;
  color:var(--text-strong);
}

.process-step p{
  font-size:15px;
  color:var(--text-muted);
}

/* RESPONSIVE */
@media(max-width:768px){
  .process-flow{ padding-left:30px; }
}

/* ===============================
   PROCESS – TWO COLUMN LAYOUT
================================ */

.ios-process-layout{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:80px;
  align-items:center;
}

/* RIGHT VISUAL */
.ios-process-visual{
  position:relative;
  min-height:420px;
}

/* RINGS */
.visual-ring{
  position:absolute;
  border-radius:50%;
  border:2px dashed transparent;
  animation:spin 28s linear infinite;
}

.ring-1{
  width:360px;
  height:360px;
  border-image:linear-gradient(45deg,#194479,#e26c0c) 1;
  top:20px;
  left:40px;
}

.ring-2{
  width:280px;
  height:280px;
  border-image:linear-gradient(135deg,#e26c0c,#194479) 1;
  top:60px;
  left:80px;
  animation-duration:22s;
}

/* DEVICE MOCK */
.visual-device{
  position:relative;
  z-index:2;
  width:220px;
  margin:90px auto 0;
}

.visual-device img{
  width:100%;
  display:block;
  border-radius:28px;
  box-shadow:0 30px 80px rgba(0,0,0,.18);
}

/* ROTATION */
@keyframes spin{
  from{ transform:rotate(0deg); }
  to{ transform:rotate(360deg); }
}

/* ===============================
   RESPONSIVE
================================ */

@media(max-width:992px){
  .ios-process-layout{
    grid-template-columns:1fr;
  }

  .ios-process-visual{
    order:-1;
    min-height:360px;
  }
}


/* =========================
   iOS PROCESS – MOBILE FIX
========================= */

@media(max-width:600px){

  .ios-process-white{
    padding:35px 0;
  }

  .process-flow{
    padding-left:22px;
  }

  .process-step{
    gap:16px;
    margin-bottom:28px;
  }

  .process-step span{
    width:28px;
    height:28px;
    font-size:13px;
  }

  .process-step h3{
    font-size:17px;
  }

  .process-step p{
    font-size:14px;
    line-height:1.6;
  }

  .ios-process-visual{
    min-height:280px;
  }

  .ring-1{
    width:240px;
    height:240px;
    top:20px;
    left:20px;
  }

  .ring-2{
    width:180px;
    height:180px;
    top:50px;
    left:50px;
  }

  .visual-device{
    width:160px;
    margin-top:60px;
  }
}





/* ===============================
   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);
}



