/*============================================================
  TechnoSky — Airalo theme overlay
  Tokens from airalo.com / matching TechnoSky brochure
  Cream #f4ebe2 · Orange #ff8832 · Teal #85ccdb · Ink #000
  Font: Satoshi
============================================================*/

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/satoshi/Satoshi-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/satoshi/Satoshi-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/satoshi/Satoshi-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/satoshi/Satoshi-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ts-cream: #f4ebe2;
  --ts-cream-light: #faf5f2;
  --ts-orange: #ff8832;
  --ts-orange-soft: #ffb671;
  --ts-teal: #85ccdb;
  --ts-teal-mid: #4caec4;
  --ts-teal-deep: #295161;
  --ts-ink: #000000;
  --ts-muted: #60686c;
  --ts-border: #aeb4b7;
  --ts-panel: #ffffff;
  --ts-radius: 20px;
  --ts-radius-sm: 12px;
  --ts-radius-pill: 999px;
  --ts-shadow: 0 8px 28px rgba(41, 81, 97, 0.08);
  --ts-font: "Satoshi", system-ui, -apple-system, sans-serif;
}

/* ---------- Base ---------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ts-font);
  color: var(--ts-ink);
  background:
    radial-gradient(circle at 92% 8%, rgba(133, 204, 219, 0.28), transparent 28%),
    radial-gradient(circle at 6% 72%, rgba(255, 136, 50, 0.14), transparent 26%),
    var(--ts-cream);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--ts-teal-deep);
  transition: color 0.25s ease;
}
a:hover {
  color: var(--ts-orange);
}

h1, h2, h3, h4, h5, h6,
.navbar a,
.navbar a:focus,
#header .logo,
.section-title h2,
.breadcrumbs h2 {
  font-family: var(--ts-font);
  color: var(--ts-ink);
  letter-spacing: -0.02em;
}

p, li, .about .content p, .brands .content p {
  color: var(--ts-muted);
  line-height: 1.65;
}

/* Soft scrollbar */
::-webkit-scrollbar {
  width: 10px;
  background: var(--ts-cream-light);
}
::-webkit-scrollbar-thumb {
  background: var(--ts-teal-mid);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--ts-orange);
}

/* ---------- Header / Nav ---------- */
#header {
  background: var(--ts-cream-light);
  border-bottom: 1px solid rgba(174, 180, 183, 0.35);
  box-shadow: none;
  padding: 12px 0;
  z-index: 10050;
  overflow: visible;
}

#header .logo img {
  max-height: 65px;
  width: auto;
  height: auto;
  object-fit: contain;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 2px solid var(--ts-ink);
  background: #fff;
  transition: transform 0.35s ease;
}
#header .logo:hover img {
  transform: scale(1.04);
}

.navbar a,
.navbar a:focus {
  color: var(--ts-ink);
  font-weight: 500;
  padding: 10px 0 10px 28px;
  position: relative;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--ts-orange);
}

.navbar a.active::after,
.navbar a:hover::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--ts-orange);
  border-radius: 2px;
  animation: ts-underline 0.35s ease;
}

@keyframes ts-underline {
  from { transform: scaleX(0); transform-origin: left; }
  to { transform: scaleX(1); transform-origin: left; }
}

.get-started-btn {
  background: var(--ts-orange);
  color: var(--ts-ink) !important;
  border-radius: var(--ts-radius-pill);
  padding: 10px 22px;
  font-weight: 700;
  border: 2px solid var(--ts-ink);
  box-shadow: none;
}
.get-started-btn:hover {
  background: var(--ts-ink);
  color: #fff !important;
  border-color: var(--ts-ink);
}

.mobile-nav-toggle {
  color: var(--ts-ink);
  position: relative;
  z-index: 10060;
  flex-shrink: 0;
  margin-left: 4px;
  width: 1.15em;
  text-align: center;
}
.mobile-nav-toggle.bi-x {
  color: var(--ts-ink) !important;
}

.navbar-mobile {
  background: rgba(41, 81, 97, 0.28) !important;
  z-index: 10055 !important;
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  overflow: hidden !important;
}

.navbar-mobile ul {
  display: block !important;
  position: absolute !important;
  top: 66px !important;
  right: 16px !important;
  left: auto !important;
  bottom: auto !important;
  width: min(220px, calc(100vw - 32px)) !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  background: var(--ts-cream-light);
  border-radius: 16px;
  border: 2px solid var(--ts-ink);
  box-shadow: var(--ts-shadow);
  padding: 8px 0;
  z-index: 10056;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 600;
}

body.mobile-nav-open #header {
  z-index: 10070;
}

/* ---------- Hero (native Airalo-style, replaces banner GIF) ---------- */
.ts-hero,
#heroBanner.ts-hero {
  margin-top: 76px;
  padding: 28px 0 12px !important;
  background: transparent;
  position: relative;
  overflow: hidden;
}

#heroBanner.ts-hero::before,
#heroBanner.ts-hero::after {
  display: none;
}

.ts-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: center;
  min-height: min(62vh, 560px);
}

.ts-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ts-teal-deep);
  background: rgba(133, 204, 219, 0.28);
  border-radius: var(--ts-radius-pill);
  padding: 6px 14px;
  margin-bottom: 1rem;
}

.ts-hero-title {
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ts-ink);
  margin: 0 0 1rem;
}

.ts-hero-welcome {
  display: block;
  font-size: 0.42em;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ts-muted);
  margin-bottom: 0.2em;
}

.ts-hero-typed-line {
  display: block;
  min-height: 1.15em;
}

.ts-typed {
  color: var(--ts-ink);
}

.ts-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  margin-left: 4px;
  background: var(--ts-orange);
  vertical-align: -0.08em;
  border-radius: 2px;
  animation: ts-blink 0.9s steps(1) infinite;
}

@keyframes ts-blink {
  0%, 45% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.ts-hero-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ts-muted);
  max-width: 34rem;
  margin-bottom: 1.5rem;
}

.ts-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1.35rem;
}

.ts-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--ts-radius-pill);
  padding: 12px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: 0.25s ease;
  text-decoration: none;
  border: 2px solid transparent;
}

.ts-btn-primary {
  background: var(--ts-orange);
  color: var(--ts-ink) !important;
  border-color: var(--ts-ink);
}
.ts-btn-primary:hover {
  background: var(--ts-ink);
  color: #fff !important;
}

.ts-btn-ghost {
  background: #fff;
  color: var(--ts-ink) !important;
  border-color: var(--ts-ink);
}
.ts-btn-ghost:hover {
  background: var(--ts-cream);
  color: var(--ts-orange) !important;
  border-color: var(--ts-orange);
}

.ts-hero-proof {
  margin: 18px 0 0;
  padding: 0;
  max-width: 34rem;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--ts-muted);
  letter-spacing: -0.01em;
}
.ts-hero-proof em {
  font-style: normal;
  font-weight: 700;
  color: var(--ts-ink);
  background-image: linear-gradient(180deg, transparent 62%, rgba(255, 136, 50, 0.45) 62%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: 0 100%;
  padding: 0 0.12em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  animation: ts-proof-ink 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}
.ts-hero-proof em:nth-of-type(2) {
  animation-delay: 0.5s;
  background-image: linear-gradient(180deg, transparent 62%, rgba(133, 204, 219, 0.65) 62%);
}
.ts-hero-proof em:nth-of-type(3) {
  animation-delay: 0.65s;
}

@keyframes ts-proof-ink {
  to { background-size: 100% 100%; }
}

.ts-hero-art {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ts-hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.ts-hero-blob-a {
  width: 70%;
  height: 70%;
  background: rgba(133, 204, 219, 0.35);
  top: 8%;
  right: 4%;
  animation: ts-float 9s ease-in-out infinite;
}
.ts-hero-blob-b {
  width: 42%;
  height: 42%;
  background: rgba(255, 136, 50, 0.2);
  bottom: 6%;
  left: 8%;
  animation: ts-float 11s ease-in-out infinite reverse;
}

@keyframes ts-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(18px); }
}

.ts-hero-svg {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(41, 81, 97, 0.12));
  animation: ts-hero-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes ts-hero-rise {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 991px) {
  .ts-hero-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    text-align: center;
  }
  .ts-hero-lead {
    margin-left: auto;
    margin-right: auto;
    padding: 0 0.25rem;
    font-size: 0.98rem;
  }
  .ts-hero-actions {
    justify-content: center;
  }
  .ts-hero-proof {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .ts-hero-art {
    order: -1;
    min-height: 200px;
  }
  .ts-hero-svg {
    max-width: min(100%, 340px);
  }

  #header {
    padding: 8px 0;
  }
  #header .container {
    gap: 8px;
  }
  #header .logo img {
    max-height: 48px;
    width: 48px;
    height: 48px;
  }
  .get-started-btn {
    margin-left: auto;
    margin-right: 0;
    padding: 7px 14px;
    font-size: 12px;
  }
  .mobile-nav-toggle {
    font-size: 26px;
    color: var(--ts-ink);
  }
  /* Keep header layout stable — empty nav shell takes no space on mobile */
  #navbar:not(.navbar-mobile),
  #navbar-slot {
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    flex: 0 0 0;
  }

  .ts-hero,
  #heroBanner.ts-hero {
    margin-top: 68px !important;
    padding: 12px 0 8px !important;
  }
  .breadcrumbs {
    margin-top: 68px !important;
    padding: 36px 16px;
  }
  .breadcrumbs h1,
  .breadcrumbs h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .ts-section-head {
    margin-bottom: 1.75rem;
    padding: 0 0.5rem;
  }
  .ts-section-head h2 {
    font-size: clamp(1.6rem, 7vw, 2.1rem);
  }
  .ts-section-head p {
    font-size: 0.98rem;
  }

  #why-us {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .why-us .icon-boxes .icon-box,
  .brands .icon-boxes .icon-box {
    margin-bottom: 1rem;
    padding: 28px 22px !important;
  }

  .client-block {
    overflow: hidden;
  }
  .client-block .owl-carousel {
    overflow: hidden;
  }

  .ts-cta-band {
    padding: 8px 0 48px;
  }
  .ts-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
  }

  #contact .info,
  #contact .php-email-form {
    padding: 20px;
  }

  .navbar-mobile {
    background: rgba(41, 81, 97, 0.28) !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .navbar-mobile ul {
    top: 62px !important;
    right: 12px !important;
    width: min(200px, calc(100vw - 24px)) !important;
  }
  .navbar-mobile a,
  .navbar-mobile a:focus {
    color: var(--ts-ink);
    font-weight: 600;
  }
  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover > a {
    color: var(--ts-orange);
  }
  .navbar-mobile a.active::after,
  .navbar-mobile a:hover::after {
    display: none;
  }

  .about .content,
  .about .content h2 {
    text-align: left;
  }
}

@media (max-width: 576px) {
  .ts-hero,
  #heroBanner.ts-hero {
    padding-top: 8px !important;
  }
  .ts-hero-title {
    font-size: clamp(1.85rem, 9vw, 2.25rem);
  }
  .ts-hero-proof {
    font-size: 0.98rem;
  }
  .ts-btn {
    width: 100%;
    max-width: 280px;
  }
  #header .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .get-started-btn {
    padding: 6px 12px;
    font-size: 11px;
  }
  section {
    padding: 40px 0;
  }
  #footer .footer-top {
    padding: 40px 0 20px;
    text-align: center;
  }
  #footer .footer-top .footer-links ul {
    text-align: center;
  }
  #footer .footer-top .footer-links ul i {
    display: none;
  }
  #footer .social-links {
    margin-top: 12px;
  }
}

@media (max-width: 380px) {
  .get-started-btn {
    display: none;
  }
}

/* ---------- Legacy hero banner (GIF) overrides kept for safety ---------- */
#heroBanner:not(.ts-hero) {
  margin-top: 76px;
  padding: 0 !important;
  background: var(--ts-cream);
  position: relative;
  overflow: hidden;
}

/* ---------- Sections ---------- */
section {
  padding: 60px 0;
}

#main {
  overflow: hidden;
}

.about,
#about.about {
  background: transparent;
}

.about .content h3 {
  font-weight: 900;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--ts-ink);
  margin-bottom: 1rem;
}

.about .content h1,
.about .content h2 {
  font-weight: 900;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--ts-ink);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.about .content ul i,
.about .content ul .bi-check-circle {
  color: var(--ts-orange) !important;
}

.about img.img-fluid {
  border-radius: var(--ts-radius);
  box-shadow: var(--ts-shadow);
  border: 1px solid rgba(174, 180, 183, 0.3);
}

/* Why Us / feature cards */
#why-us {
  background: var(--ts-cream-light);
  position: relative;
}

#why-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(133, 204, 219, 0.25), transparent 35%),
    radial-gradient(circle at 10% 80%, rgba(255, 136, 50, 0.12), transparent 30%);
  pointer-events: none;
}

.why-us .icon-boxes .icon-box,
.brands .icon-boxes .icon-box {
  background: var(--ts-panel) !important;
  border: 1px solid rgba(174, 180, 183, 0.35) !important;
  border-radius: var(--ts-radius) !important;
  box-shadow: var(--ts-shadow) !important;
  padding: 36px 28px !important;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  text-align: left !important;
}

.why-us .icon-boxes .icon-box:hover,
.brands .icon-boxes .icon-box:hover {
  transform: translateY(-6px);
  border-color: var(--ts-teal) !important;
  box-shadow: 0 16px 36px rgba(41, 81, 97, 0.12) !important;
}

.why-us .icon-boxes .icon-box i {
  background: rgba(133, 204, 219, 0.25) !important;
  color: var(--ts-teal-deep) !important;
  border-radius: 16px !important;
  margin-bottom: 20px !important;
}

.why-us .icon-boxes .icon-box h4,
.why-us .icon-boxes .icon-box h3,
.brands .icon-boxes .icon-box h4 {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ts-ink);
  margin-bottom: 12px !important;
}

.why-us .icon-boxes .icon-box p,
.brands .icon-boxes .icon-box p {
  color: var(--ts-muted);
  margin-bottom: 0;
}

.brands .icon-box-img {
  margin-bottom: 1rem;
}
.brands .icon-box-img img {
  max-height: 72px;
  width: auto;
  object-fit: contain;
}

/* Brand carousel */
.client-block {
  background: transparent;
}

.client-block .top-titles h3,
.client-block .top-titles h2 {
  font-weight: 900;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  color: var(--ts-ink);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.client-block .brandsImgDiv,
.brandsImgDiv {
  background: var(--ts-panel);
  border-radius: var(--ts-radius-sm);
  border: 1px solid rgba(174, 180, 183, 0.35);
  padding: 18px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 16px rgba(41, 81, 97, 0.05);
}

.client-block .brandsImgDiv:hover,
.brandsImgDiv:hover {
  transform: translateY(-4px);
  border-color: var(--ts-teal);
}

.client-block .item img {
  filter: none;
}

/* Breadcrumbs */
.breadcrumbs {
  margin-top: 76px;
  background:
    linear-gradient(135deg, rgba(133, 204, 219, 0.45), rgba(255, 136, 50, 0.35)),
    var(--ts-teal-deep);
  color: var(--ts-ink);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.breadcrumbs::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  right: -40px;
  top: -60px;
}

.breadcrumbs h2 {
  font-weight: 900;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: var(--ts-ink);
  position: relative;
  z-index: 1;
}

.breadcrumbs h1 {
  font-weight: 900;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: var(--ts-ink);
  position: relative;
  z-index: 1;
  margin: 0;
}

.breadcrumbs p {
  color: var(--ts-teal-deep);
  position: relative;
  z-index: 1;
  font-weight: 500;
}

/* Brands page headings */
#brands h3,
.brands h3 {
  font-weight: 900;
  color: var(--ts-ink);
}

/* Testimonials */
.testimonials {
  background: var(--ts-cream-light);
}

.testimonials .section-title h2 {
  font-weight: 900;
}

.testimonials .testimonial-item {
  background: var(--ts-panel);
  border-radius: var(--ts-radius);
  border: 1px solid rgba(174, 180, 183, 0.35);
  box-shadow: var(--ts-shadow);
}

.testimonials .quote-icon-left,
.testimonials .quote-icon-right {
  color: var(--ts-orange);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--ts-orange);
}

/* Contact */
#contact .info {
  background: var(--ts-panel);
  border-radius: var(--ts-radius);
  border: 1px solid rgba(174, 180, 183, 0.35);
  padding: 28px;
  box-shadow: var(--ts-shadow);
}

#contact .info i {
  background: rgba(133, 204, 219, 0.3);
  color: var(--ts-teal-deep);
  border-radius: 14px;
}

#contact .php-email-form {
  background: var(--ts-panel);
  border-radius: var(--ts-radius);
  border: 1px solid rgba(174, 180, 183, 0.35);
  padding: 28px;
  box-shadow: var(--ts-shadow);
}

#contact .form-control {
  border-radius: 12px;
  border: 1px solid var(--ts-border);
  background: var(--ts-cream-light);
  padding: 12px 14px;
  color: var(--ts-ink);
}
#contact .form-control:focus {
  border-color: var(--ts-teal-mid);
  box-shadow: 0 0 0 3px rgba(133, 204, 219, 0.35);
}

.btn-website,
.sendMessageButton,
#contact .btn-website {
  background: var(--ts-orange) !important;
  color: var(--ts-ink) !important;
  border: 2px solid var(--ts-ink) !important;
  border-radius: var(--ts-radius-pill) !important;
  font-weight: 700 !important;
  padding: 10px 28px !important;
  transition: 0.25s ease !important;
}
.btn-website:hover,
.sendMessageButton:hover {
  background: var(--ts-ink) !important;
  color: #fff !important;
}

/* Promo cards (About / Brands) */
.card {
  border: none;
  border-radius: var(--ts-radius);
  overflow: hidden;
  box-shadow: var(--ts-shadow);
}

.card-body.bg-primary {
  background: linear-gradient(120deg, var(--ts-teal-deep), var(--ts-teal-mid)) !important;
  padding: 28px !important;
}

.btn-warning,
.card .btn-warning {
  background: var(--ts-orange) !important;
  border: 2px solid var(--ts-ink) !important;
  color: var(--ts-ink) !important;
  border-radius: var(--ts-radius-pill) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
}
.btn-warning:hover {
  background: var(--ts-ink) !important;
  color: #fff !important;
}

/* Footer */
#footer {
  background: var(--ts-teal-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

#footer .footer-top {
  background: var(--ts-teal-deep);
  border-top: 4px solid var(--ts-orange);
  padding: 56px 0 28px;
}

#footer .footer-top .footer-contact h3,
#footer .footer-top h4 {
  color: #fff;
  font-weight: 800;
}

#footer .footer-top .footer-contact p,
#footer .footer-top .footer-links ul a,
#footer .copyright,
#footer a {
  color: rgba(255, 255, 255, 0.78);
}

#footer .footer-top .footer-links ul a:hover,
#footer a:hover {
  color: var(--ts-orange);
}

#footer .footer-top .footer-links ul i {
  color: var(--ts-teal);
}

#footer .social-links a {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 12px;
  transition: 0.25s ease;
}
#footer .social-links a:hover {
  background: var(--ts-orange);
  color: var(--ts-ink);
}

/* Back to top + preloader */
.back-to-top {
  background: var(--ts-orange);
  border: 2px solid var(--ts-ink);
}
.back-to-top:hover {
  background: var(--ts-ink);
}
.back-to-top i {
  color: var(--ts-ink);
}
.back-to-top:hover i {
  color: #fff;
}

#preloader {
  background: var(--ts-cream);
}
#preloader:before {
  border-color: var(--ts-orange);
  border-top-color: transparent;
  border-bottom-color: transparent;
}

/* Counts (if shown) */
.counts .counters span {
  color: var(--ts-orange);
}

/* Map frame */
iframe {
  display: block;
  filter: saturate(0.92);
}

/* Motion: fade-up polish when AOS present */
[data-aos] {
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Mobile tweaks */
@media (max-width: 768px) {
  #heroBanner .banner-area-new {
    padding: 10px 10px 4px;
  }
  #heroBanner .carousel-item img {
    border-radius: 14px;
  }
  .why-us .icon-boxes .icon-box,
  .brands .icon-boxes .icon-box {
    text-align: center !important;
  }
  .get-started-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  .ts-cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ts-orange);
  color: var(--ts-ink);
  padding: 10px 16px;
  z-index: 10000;
  border-radius: 0 0 8px 0;
  font-weight: 700;
}
.skip-link:focus {
  left: 0;
}

/* Section titles */
.section-title h2 {
  font-weight: 900;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  margin-bottom: 0.35rem;
}
.section-title p {
  color: var(--ts-muted);
  margin-bottom: 0;
}

/* Why-us section head */
.ts-section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.75rem;
  position: relative;
  padding: 0.5rem 1rem 0;
}

.ts-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ts-teal-deep);
  background: rgba(133, 204, 219, 0.28);
  border-radius: var(--ts-radius-pill);
  padding: 0.4rem 0.95rem;
  margin-bottom: 1rem;
}

.ts-section-head h2 {
  font-weight: 900;
  font-size: clamp(1.85rem, 3.4vw, 2.65rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--ts-ink);
  margin: 0 0 0.75rem;
}

.ts-section-head p {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ts-muted);
  margin: 0 auto;
  max-width: 28rem;
}

.ts-section-rule {
  display: block;
  width: 48px;
  height: 4px;
  margin: 1.25rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ts-orange), var(--ts-teal));
}

#why-us {
  padding-top: 72px;
  padding-bottom: 72px;
}

#why-us .icon-box {
  position: relative;
}

#why-us .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, var(--ts-teal), var(--ts-orange));
  opacity: 0;
  transition: opacity 0.3s ease;
}

#why-us .icon-box:hover::before {
  opacity: 1;
}

/* Home CTA band */
.ts-cta-band {
  padding: 24px 0 72px;
  background: transparent;
}
.ts-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(120deg, var(--ts-teal-deep), var(--ts-teal-mid));
  border-radius: var(--ts-radius);
  padding: 28px 32px;
  box-shadow: var(--ts-shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.ts-cta-inner h2 {
  color: #fff;
  font-weight: 900;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin: 0 0 6px;
}
.ts-cta-inner p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Final mobile overrides (must stay last) */
@media (max-width: 991px) {
  #why-us {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .ts-cta-band {
    padding: 8px 0 48px !important;
  }
  .ts-cta-inner {
    flex-direction: column !important;
    text-align: center;
    padding: 24px 20px;
  }
  .ts-section-head h2 {
    font-size: clamp(1.6rem, 7vw, 2.1rem);
  }
  .breadcrumbs {
    margin-top: 68px !important;
  }
  .ts-hero,
  #heroBanner.ts-hero {
    margin-top: 68px !important;
  }
}

@media (max-width: 576px) {
  section {
    padding: 40px 0;
  }
  .ts-btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 380px) {
  .get-started-btn {
    display: none;
  }
}
