/* ─── Base Styles & Typography ───────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin: 0;
  padding: 0;
  color: #2D3748;
  line-height: 1.6;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

.maintenance-banner {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 1rem auto 0;
  padding: 0.85rem 1rem;
  border: 1px solid #f6c453;
  border-radius: 12px;
  background: #fff8df;
  color: #5f4500;
  box-shadow: 0 6px 18px rgba(120, 85, 0, 0.08);
}

.maintenance-banner[hidden] {
  display: none;
}

.maintenance-banner-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 9px;
  background: #f6c453;
  color: #ffffff;
}

.maintenance-banner-icon i {
  color: inherit !important;
}

.maintenance-banner-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

.maintenance-banner-content strong {
  font-size: 0.86rem;
  line-height: 1.2;
}

.maintenance-banner-content span {
  margin-top: 0.15rem;
  font-size: 0.78rem;
  line-height: 1.4;
}

.maintenance-banner-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #866300;
  cursor: pointer;
}

.maintenance-banner-close:hover {
  background: rgba(134, 99, 0, 0.1);
}

.maintenance-banner-close i {
  color: inherit !important;
}

@media (max-width: 560px) {
  .maintenance-banner {
    align-items: flex-start;
    width: calc(100% - 1.5rem);
    margin-top: 0.75rem;
    padding: 0.75rem;
  }
}

/* Inter for all headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  margin-top: 0;
}

p, ul {
  margin-top: 0;
}

/* ─── Scroll Animations ──────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Header & Navigation ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  background: linear-gradient(135deg, #0077CC 0%, #38B6FF 60%, #00C6FF 100%);
  padding: 0.75rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 16px rgba(0, 119, 204, 0.45);
  z-index: 1001;
  gap: 1rem;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  width: 100%;
  box-sizing: border-box;
  max-width: 100vw;
}

/* ── Brand logo — image centers alongside text even when text wraps ── */
.brand-logo {
  text-decoration: none;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 1;
  min-width: 0;
  font-size: 1.5rem;
}

.brand-logo-img {
  height: 1.8em;
  width: auto;
  display: block;
  flex-shrink: 0;
  border-radius: 8px 0 8px 0;
  background: #ffffff;
  padding: 3px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.brand-logo-text {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.95em;
  letter-spacing: 0.01em;
  line-height: 1.25;
  min-width: 0;
  word-break: break-word;
  text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

/* Short brand name (shown on small screens) */
.brand-logo-text-short {
  display: none;
}

/* ── Desktop nav ── */
.site-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.01em;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.01em;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
  font-weight: 500;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s ease;
}

/* Bottom border slide-in animation */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: width 0.25s ease, left 0.25s ease;
}

.nav-link:hover {
  color: #FFFFFF;
}

.nav-link:hover::after {
  width: 100%;
  left: 0;
}

/* Remove underline animation from Apply Now pill */
.nav-link.nav-apply::after {
  display: none;
}

.nav-link.highlight {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

.nav-link.nav-apply {
  background: #FFFFFF;
  color: #38B6FF;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  white-space: nowrap;     /* "Apply Now" stays on one line always */
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.nav-link.nav-apply:hover {
  background: #e62f2f;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(230, 47, 47, 0.4);
}

/* ── Hamburger button — hidden on desktop ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background 0.2s ease;
  z-index: 1002;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.25);
}

.nav-toggle .bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

/* Suppress all transitions during page load / resize to prevent bar flash */
.no-transitions * {
  transition: none !important;
}

/* Animate bars into an X when open */
.nav-toggle.is-open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open .bar:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-toggle.is-open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile backdrop ── */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-backdrop.is-open {
  opacity: 1;
}

/* ── Responsive breakpoint — collapse to hamburger ── */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-backdrop {
    display: block;
    pointer-events: none;
  }

  .nav-backdrop.is-open {
    pointer-events: auto;
  }

  /* ── Drawer shell ── */
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: 310px;
    max-width: 90vw;
    background: rgba(20, 90, 160, 0.55);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    padding: 0;
    box-shadow: -4px 0 40px rgba(0, 0, 0, 0.4);
    border-left: 1px solid rgba(56, 182, 255, 0.2);
    transform: translateX(110%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1002;
    overflow: hidden;
    box-sizing: border-box;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  /* ── Show drawer-only elements ── */
  .drawer-header,
  .drawer-footer {
    display: flex;
  }

  .drawer-footer {
    flex-direction: column;
  }

  .nav-link-icon {
    display: inline-block;
  }

  /* ── Drawer header: logo + close — pinned top ── */
  .drawer-header {
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(20, 90, 160, 0.75);
    width: 100%;
    box-sizing: border-box;
  }

  .drawer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    flex: 1;
    min-width: 0;
  }

  .drawer-brand-img {
    height: 34px;
    width: auto;
    flex-shrink: 0;
  }

  .drawer-brand-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #FFFFFF;
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .drawer-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    margin-left: 0.75rem;
    flex-shrink: 0;
    transition: background 0.2s ease, border-color 0.2s ease;
  }

  .drawer-close i {
    color: #FFFFFF !important;
  }

  .drawer-close:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.4);
  }

  /* ── Nav list — scrollable middle section ── */
  .nav-list {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    padding: 0.75rem 1rem;
    box-sizing: border-box;
    /* hide scrollbar but keep scroll */
    scrollbar-width: none;
  }

  .nav-list::-webkit-scrollbar {
    display: none;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    border-left: 3px solid transparent;
    width: 100%;
    box-sizing: border-box;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }

  /* suppress desktop underline animation inside drawer */
  .nav-link::after {
    display: none;
  }

  .nav-link:hover {
    color: #FFFFFF;
    background: rgba(56, 182, 255, 0.1);
    border-left-color: rgba(56, 182, 255, 0.5);
  }

  .nav-link--active:not(:hover) {
    color: rgba(255, 255, 255, 0.85) !important;
    background: none !important;
    border-left-color: transparent !important;
    font-weight: 500;
  }

  .nav-link.highlight {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
  }

  .nav-link.highlight:hover {
    color: #FFFFFF;
  }

  .nav-link-icon {
    font-size: 1rem;
    width: 1.2rem;
    text-align: center;
    flex-shrink: 0;
    color: #38B6FF !important;
  }

  /* Apply Now — large tap target, pill, full width */
  .nav-list li:last-child {
    margin-top: 0.75rem;
    padding-bottom: 0.5rem;
  }

  .nav-link.nav-apply {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #38B6FF;
    color: #FFFFFF;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    width: 100%;
    box-sizing: border-box;
    border-left: none;
    box-shadow: 0 4px 14px rgba(56, 182, 255, 0.35);
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  }

  .nav-link.nav-apply::after {
    display: none;
  }

  .nav-link.nav-apply:hover {
    background: #e62f2f;
    box-shadow: 0 6px 18px rgba(230, 47, 47, 0.45);
    transform: translateY(-1px);
    border-left: none;
  }

  /* ── Drawer footer — pinned bottom ── */
  .drawer-footer {
    flex-shrink: 0;
    padding: 1.1rem 1.25rem 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(20, 90, 160, 0.75);
    width: 100%;
    box-sizing: border-box;
    gap: 1rem;
  }

  .drawer-socials {
    display: flex;
    gap: 0.6rem;
  }

  .drawer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s ease, border-color 0.2s ease;
  }

  .drawer-social-link i {
    color: rgba(255, 255, 255, 0.75) !important;
    transition: color 0.2s ease;
  }

  .drawer-social-link:hover {
    background: #38B6FF;
    border-color: #38B6FF;
  }

  .drawer-social-link:hover i {
    color: #FFFFFF !important;
  }

  .drawer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
  }

  .drawer-contact-row {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .drawer-contact-row i {
    color: #38B6FF !important;
    font-size: 0.82rem;
    width: 1rem;
    text-align: center;
  }

  .drawer-contact-row:hover {
    color: #FFFFFF;
  }

  .drawer-utility-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .drawer-darkmode-toggle {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    cursor: pointer;
  }

  .drawer-darkmode-toggle input {
    display: none;
  }

  .drawer-toggle-track {
    width: 44px;
    height: 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    position: relative;
    transition: background 0.3s ease;
    flex-shrink: 0;
  }

  .drawer-toggle-track::after {
    content: '';
    width: 18px;
    height: 18px;
    background: #FFFFFF;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: left 0.3s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
  }

  .drawer-darkmode-toggle input:checked + .drawer-toggle-track {
    background: #38B6FF;
  }

  .drawer-darkmode-toggle input:checked + .drawer-toggle-track::after {
    left: 23px;
  }

  .drawer-toggle-icon {
    display: none;
  }

  .drawer-toggle-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
  }

  .drawer-signin-link {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .drawer-signin-link i {
    color: #38B6FF !important;
    font-size: 0.88rem;
  }

  .drawer-signin-link:hover {
    color: #FFFFFF;
  }

  .drawer-copyright {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.73rem;
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
  }

  .drawer-copyright a {
    color: rgba(255, 255, 255, 0.42);
    text-decoration: none;
  }

  .drawer-copyright a:hover {
    color: rgba(255, 255, 255, 0.7);
  }
}

/* ── Drawer-only elements hidden on desktop ── */
.drawer-header,
.drawer-footer,
.nav-link-icon {
  display: none;
}

/* ── Active nav indicator — desktop only ── */
@media (min-width: 901px) {
  .nav-link--active {
    color: #FFFFFF !important;
    font-weight: 600;
  }
}

/* Mobile optimizations for 360px width screens */
@media (max-width: 500px) {
  .brand-logo-text-full {
    display: none;
  }

  .brand-logo-text-short {
    display: inline;
  }

  .site-header {
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }
  
  .brand-logo {
    font-size: 1.3rem;
  }
}

/* Perfect mobile view for small screens (360px - 400px) */
@media (max-width: 400px) {
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
  }
  
  * {
    box-sizing: border-box;
  }
  
  .site-header {
    padding: 0.65rem 0.85rem;
    gap: 0.5rem;
    width: 100%;
    max-width: 100vw;
  }
  
  .brand-logo {
    font-size: 1.2rem;
    gap: 0.6rem;
  }
  
  .brand-logo-img {
    height: 1.6em;
  }
  
  .nav-toggle {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    margin-left: auto;
  }
  
  .nav-toggle .bar {
    width: 18px;
  }
  
  /* Ensure drawer doesn't cause overflow */
  .site-nav {
    max-width: 85vw;
    width: 280px;
  }
  
  /* Adjust all sections for small mobile screens */
  .section-container {
    padding: 4rem 1.25rem;
  }
  
  .hero-section {
    padding: 2.5rem 1.25rem 4rem !important;
    min-height: auto;
    gap: 2rem !important;
    grid-template-columns: 1fr !important;
  }
  
  .hero-title {
    line-height: 1.3 !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .hero-subtitle {
    line-height: 1.6 !important;
    max-width: 100% !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .hero-ad-inner {
    max-width: 100% !important;
    min-height: 280px !important;
  }
  
.hero-ad-inner.hero-ad-image-wrap {
  aspect-ratio: 16 / 10 !important;
}
  
  .maintenance-banner {
    width: calc(100% - 1.5rem);
    margin: 0.65rem auto 0;
    padding: 0.7rem;
    font-size: 0.88rem;
  }
  
  /* About section */
  .about-section {
    padding: 4rem 1.25rem;
  }
  
  .about-container {
    padding: 0 1.25rem;
  }
  
  .section-title {
    font-size: 2rem !important;
  }
  
  .section-subtitle {
    font-size: 0.95rem !important;
  }
  
  /* Services section - "What Sets Us Apart" */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
    padding: 0 1.25rem;
    margin: 2rem auto 0;
  }
  
  .service-card {
    padding: 1.75rem 1.25rem !important;
    max-width: 100%;
    margin: 0;
  }
  
  .service-card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
  }
  
  .service-card-icon i {
    font-size: 1.5rem;
  }
  
  .service-card-title {
    font-size: 1.05rem !important;
    margin-bottom: 0.75rem;
  }
  
  .service-card-body {
    font-size: 0.9rem !important;
    line-height: 1.7;
  }
  
  .services-cta {
    padding: 0 1.25rem;
    margin-top: 2.5rem;
  }
  
  /* Plans sections */
  .plans-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
    padding: 0 1.25rem;
  }
  
  /* Contact section */
  .contact-container {
    padding: 0 1.25rem;
    width: 100%;
  }
  
  .contact-main-title {
    font-size: 1.5rem !important;
    line-height: 1.3;
  }
  
  .contact-subtitle {
    font-size: 0.88rem !important;
    max-width: 100%;
    margin-bottom: 2rem;
  }
  
  .contact-card {
    padding: 1.5rem 1.25rem !important;
    gap: 1.75rem;
  }
  
  .contact-info-item {
    gap: 0.85rem;
  }
  
  .contact-icon-circle {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }
  
  .contact-details h4 {
    font-size: 0.85rem;
  }
  
  .contact-details p,
  .contact-details a {
    font-size: 0.88rem;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.5;
  }
  
  .map-container {
    min-height: 240px;
  }
  
  /* Footer */
  .footer-inner {
    padding: 0 1.25rem;
  }
  
  /* Floating chat button adjustment */
  .floating-chat {
    right: 0.85rem;
    bottom: 0.85rem;
    width: 52px;
    height: 52px;
  }
  
  .floating-chat-toggle {
    width: 52px;
    height: 52px;
  }
  
  /* Align scroll-to-top button with chat button */
  .scroll-to-top {
    right: 0.85rem;
    bottom: 4.5rem;
    width: 48px;
    height: 48px;
  }
  
  .floating-chat-panel {
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(100vw - 1.5rem);
    max-width: calc(100vw - 1.5rem);
    right: 0.75rem;
  }
  
  /* Buttons */
  .btn-primary,
  .btn-secondary {
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
  }
  
  /* Cards and content boxes */
  .plan-card,
  .about-card {
    padding: 1.25rem !important;
  }
  
  /* Ensure all images are responsive */
  img {
    max-width: 100%;
    height: auto;
  }
}

/* ─── Layout & Sections ──────────────────────────────────────────────────── */
.section-container {
  min-height: 100vh;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.bg-light {
  background-color: #F0F9FF;
}

.bg-white {
  background-color: #FFFFFF;
}

/* ─── Hero Section — light glassmorphism two-column ─────────────────────── */
.hero-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 4rem;
  padding: 3rem 8rem 6rem;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(56, 182, 255, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(144, 205, 244, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 60% 80%, rgba(56, 182, 255, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, #f0f9ff 0%, #e3f4ff 50%, #ffffff 100%);
}

.hero-section::before,
.hero-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-section::before {
  width: 500px;
  height: 500px;
  background: rgba(56, 182, 255, 0.08);
  top: -150px;
  left: -100px;
  animation: floatOrb 8s ease-in-out infinite alternate;
}

.hero-section::after {
  width: 400px;
  height: 400px;
  background: rgba(144, 205, 244, 0.1);
  bottom: -100px;
  right: -80px;
  animation: floatOrb 10s ease-in-out infinite alternate-reverse;
}

@keyframes floatOrb {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.08); }
}

/* Left column — text sits directly on background */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 6rem 0;
  min-width: 0;
  overflow: hidden;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #38B6FF;
  margin-bottom: 1rem;
  background: rgba(56, 182, 255, 0.1);
  border: 1px solid rgba(56, 182, 255, 0.25);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  display: inline-block;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.4rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #0F172A;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.8rem, 2.5vw, 1.05rem);
  font-weight: 400;
  color: #4A5568;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-content .btn-primary {
  background: #38B6FF;
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(56, 182, 255, 0.35);
}

.hero-content .btn-primary:hover {
  background: #259fe8;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(56, 182, 255, 0.45);
}

/* Right column — compact ad panel */
.hero-ad {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  align-self: center;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.hero-ad-inner {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(56, 182, 255, 0.15);
  border-radius: 22px;
  padding: 2.4rem 2.2rem;
  color: #1A202C;
  width: 100%;
  max-width: min(520px, 100%);
  min-height: 340px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  box-shadow:
    0 20px 56px rgba(56, 182, 255, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.hero-ad-inner.hero-ad-large {
  max-width: min(620px, 100%);
  min-height: 390px;
}

/* Image mode — no padding, fluid responsive sizing */
.hero-ad-inner.hero-ad-image-wrap {
  padding: 0;
  border: none;
  max-width: min(700px, 100%);
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
}

.hero-ad-inner.hero-ad-image-wrap .hero-ad-slideshow {
  min-height: 200px;
}

.hero-ad-inner.hero-ad-image-wrap .hero-ad-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Tablet: single-column grid + taller image ratio */
@media (max-width: 900px) {
  .hero-section {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem 5rem;
    gap: 2rem;
  }

  .hero-content {
    align-items: center;
    text-align: center;
    min-width: 0;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-ad {
    justify-content: center;
  }

  .hero-ad-inner.hero-ad-image-wrap {
    max-width: 100%;
    aspect-ratio: 16 / 10;
  }
}

/* Large phone: same ratio for consistency */
@media (max-width: 640px) {
  .hero-ad-inner.hero-ad-image-wrap {
    aspect-ratio: 16 / 10;
  }
}

.hero-ad-inner::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(56,182,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
  top: -60px;
  right: -40px;
  pointer-events: none;
}

.hero-ad-inner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(56,182,255,0.25), transparent);
}

.hero-ad-logo {
  height: 32px;
  width: auto;
  display: block;
  margin-bottom: 0.9rem;
  position: relative;
  z-index: 1;
}

.hero-ad-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  line-height: 1.15;
  color: #0F172A;
  position: relative;
  z-index: 1;
}

.hero-ad-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: #4A5568;
  margin-bottom: 1.25rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

.hero-ad-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  position: relative;
  z-index: 1;
}

.hero-ad-list li {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1A202C;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.hero-ad-list li i,
.hero-ad-list li svg {
  width: 1rem;
  height: 1rem;
  min-width: 1rem;
  flex-shrink: 0;
  color: #38B6FF;
}

.hero-ad-list li i {
  font-size: 0.9rem;
  text-align: center;
}

.hero-ad-cta {
  display: inline-block;
  background: #38B6FF;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.55rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(56, 182, 255, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  position: relative;
  z-index: 1;
}

.hero-ad-cta:hover {
  background: #259fe8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 182, 255, 0.4);
}

.hero-ad-view-plans {
  display: inline-block;
  background: linear-gradient(135deg, #38B6FF, #1f8ee6);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 1.8rem;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(56, 182, 255, 0.35);
  cursor: pointer;
}

.hero-ad-view-plans:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(56, 182, 255, 0.5);
}

/* Ensure text-mode CTA keeps primary blue when not in image mode */
.hero-ad-inner:not(.hero-ad-image-wrap) .hero-ad-view-plans {
  background: #38B6FF !important;
  color: #FFFFFF !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(56, 182, 255, 0.35);
}
.hero-ad-inner:not(.hero-ad-image-wrap) .hero-ad-view-plans:hover {
  background: #259fe8 !important;
  box-shadow: 0 6px 18px rgba(56, 182, 255, 0.5) !important;
}

/* Adaptive CTA styles for image mode */
.hero-ad-view-plans--dark {
  background: rgba(0,0,0,0.64);
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.12) !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}
.hero-ad-view-plans--dark:hover {
  background: rgba(0,0,0,0.72);
}

.hero-ad-view-plans--light {
  background: rgba(255,255,255,0.92);
  color: #111827 !important;
  border-color: rgba(0,0,0,0.06) !important;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.hero-ad-view-plans--light:hover {
  background: rgba(255,255,255,0.98);
}

/* ── Image-based hero ad ── */
.hero-ad-image-wrap {
  padding: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

/* ── Slideshow container ── */
.hero-ad-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
}

.hero-ad-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
}

.hero-ad-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-ad-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Dot indicators ── */
.hero-ad-dots {
  position: absolute;
  bottom: 3rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  z-index: 3;
}

.hero-ad-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.hero-ad-dot.is-active {
  background: #ffffff;
  transform: scale(1.3);
}

.hero-ad-placeholder {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #94a3b8;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.4);
}

.hero-ad-placeholder i {
  font-size: 2.5rem;
  opacity: 0.4;
}

.hero-ad-btn-wrap {
  display: flex;
  justify-content: flex-start;
  margin-top: auto;
  z-index: 4;
  position: relative;
}

.hero-ad-rich-content {
  position: relative;
  z-index: 1;
  color: #2D3748;
  line-height: 1.5;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero-ad-rich-content p,
.hero-ad-rich-content ul,
.hero-ad-rich-content ol {
  margin: 0 0 0.35rem 0;
}

.hero-ad-rich-content ul,
.hero-ad-rich-content ol {
  padding-left: 1.2rem;
}

.hero-ad-rich-content li {
  margin: 0 0 0.25rem 0;
}

.hero-ad-rich-content strong {
  color: #1A202C;
  font-weight: 700;
}

.hero-ad-rich-content a {
  color: #38B6FF;
  text-decoration: underline;
}

.hero-ad-rich-content i {
  color: #38B6FF;
  margin-right: 0.35rem;
}

@media (max-width: 900px) {
  .hero-section {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem 5rem;
    gap: 2rem;
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-ad {
    justify-content: center;
  }

  .hero-ad-inner {
    max-width: 100%;
    min-height: 320px;
  }

  .hero-ad-inner.hero-ad-image-wrap {
    height: 360px;
  }
}

/* ─── About Section ──────────────────────────────────────────────────────── */
.about-section {
  position: relative;
  padding: 5rem 2rem;
  background: linear-gradient(160deg, #f0f9ff 0%, #ffffff 55%, #f0f9ff 100%);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

/* Background Glowing Orbs */
.about-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.about-bg-orb.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(56, 182, 255, 0.09);
  top: -130px;
  right: -120px;
}

.about-bg-orb.orb-2 {
  width: 380px;
  height: 380px;
  background: rgba(56, 182, 255, 0.06);
  bottom: -100px;
  left: -80px;
}

/* Container Layout */
.about-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 1;
}

/* Section Header */
.about-header {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.about-lead {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #4A5568;
  max-width: 640px;
  line-height: 1.8;
  margin: 0;
}

/* Responsive Grid Layout */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: start;
}

/* Left Column: Story & Stats */
.about-story {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: #4A5568;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.975rem;
  line-height: 1.85;
}

.about-story p {
  margin: 0;
}

/* Stats Strip — full-width centered banner below the grid */
.about-stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
  background: #FFFFFF;
  border: 1px solid rgba(56, 182, 255, 0.15);
  border-radius: 20px;
  padding: 2rem 3rem;
  box-shadow: 0 4px 24px rgba(56, 182, 255, 0.07);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 1.5rem;
}

.stat-divider {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, rgba(56, 182, 255, 0.3), transparent);
  flex-shrink: 0;
}

.stat-icon {
  font-size: 1.5rem;
  color: #e62f2f;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0F172A;
  line-height: 1.2;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

@media (max-width: 900px) {
  .about-stats-strip {
    padding: 1.75rem 1.5rem;
  }

  .stat-item {
    padding: 0 1rem;
  }
}

@media (max-width: 560px) {
  .about-stats-strip {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.75rem;
  }

  .stat-divider {
    width: 40%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(56, 182, 255, 0.3), transparent);
  }
}
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.about-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.4rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(56, 182, 255, 0.14);
  border-color: rgba(56, 182, 255, 0.4);
}

.feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, #EBF8FF 0%, #d6f0ff 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #e62f2f;
  box-shadow: 0 2px 8px rgba(56, 182, 255, 0.15);
}

.feature-info h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0F172A;
  margin: 0 0 0.3rem 0;
}

.feature-info p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.855rem;
  color: #718096;
  margin: 0;
  line-height: 1.65;
}

/* Mobile Responsiveness for About Grid */
@media (max-width: 900px) {
  .about-section {
    padding: 4rem 1.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-stats-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .about-container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 560px) {
  .about-section {
    padding: 4rem 1.25rem;
  }
  
  .about-container {
    padding: 0 1.25rem;
  }
}

@media (max-width: 500px) {
  .about-stats-strip {
    grid-template-columns: 1fr;
  }
}

/* ─── Section Titles ─────────────────────────────────────────────────────── */
.section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 2.1rem;
  letter-spacing: -0.03em;
  color: #0F172A;
  border-bottom: 4px solid #38B6FF;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

.section-intro {
  max-width: 850px;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #4A5568;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.subtitle-accent {
  font-family: 'Inter', sans-serif;
  color: #38B6FF;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn-primary {
  font-family: 'Inter', sans-serif;
  padding: 0.85rem 2rem;
  background: #38B6FF;
  color: #FFFFFF;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 14px rgba(56, 182, 255, 0.4);
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(56, 182, 255, 0.5);
}

.btn-secondary {
  font-family: 'Inter', sans-serif;
  padding: 0.65rem 1.5rem;
  background: #38B6FF;
  color: #FFFFFF;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: inline-block;
  font-size: 0.875rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-secondary:hover {
  background: #e62f2f;
  transform: translateY(-2px);
}

/* Tracking / status page (compact) */
.tracking-hero {
  padding: 5rem 2rem 3.5rem;
  background: linear-gradient(135deg, #F5FBFF 0%, #EFF7FF 45%, #FFFFFF 100%);
  position: relative;
}

.tracking-page {
  min-height: calc(100vh - 90px);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 4rem;
  padding: 2.5rem 1rem 3rem;
  box-sizing: border-box;
}

.tracking-card {
  width: 100%;
  max-width: 760px;
  background: linear-gradient(135deg, #f8fbff 0%, #f4f8ff 100%);
  border-radius: 24px;
  overflow: visible;
  border: 1px solid rgba(56, 182, 255, 0.16);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  margin: 0 auto;
  padding: 1.25rem;
  position: relative;
}

.tracking-card-inner {
  display: block;
  padding: 0;
  box-sizing: border-box;
}

.tracking-form {
  display: grid;
  gap: 0.75rem;
  width: 100%;
}

.tracking-form-card {
  width: 100%;
  min-width: 0;
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #E8EDF7;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  padding: 1.5rem;
  margin: 0;
  box-sizing: border-box;
}

.tracking-hero-panel {
  padding: 1.1rem 1.2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
  border: 1px solid #e2ecff;
  margin-bottom: 1rem;
}

.tracking-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #ffffff;
  color: #1d4ed8;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(29, 78, 216, 0.08);
}

.tracking-result-section {
  padding: 1.25rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-radius: 16px;
  border: 1px solid #E8EDF7;
  margin-top: 1rem;
}

.tracking-card-header {
  margin-bottom: 1rem;
}

.tracking-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111827;
  margin: 0.75rem 0 0.35rem;
}

.tracking-card-copy {
  margin: 0;
  color: #6B7280;
  line-height: 1.7;
}

.tracking-form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #1A202C;
  font-size: 0.92rem;
}

.tracking-form-control {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #CBD5E0;
  border-radius: 12px;
  background: #FFFFFF;
  color: #1A202C;
  font-size: 1rem;
  box-sizing: border-box;
}

.tracking-action {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.tracking-action .btn-primary {
  padding: 0.6rem 1.25rem;
  font-size: 0.96rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Status variants */
.status-pill--approved,
.status-pill--installed {
  color: #065f46 !important;
  background: linear-gradient(135deg, #ecfdf3 0%, #d1fae5 100%);
  border: 1px solid #a7f3d0;
  box-shadow: 0 8px 20px rgba(6, 95, 70, 0.12);
}
.status-pill--pending {
  color: #92400e !important;
}
.status-pill--under_review,
.status-pill--credit_check {
  color: #1D4ED8 !important;
}
.status-pill--cancelled,
.status-pill--rejected {
  color: #ef4444 !important;
}

.status-pill {
  min-width: 140px;
  justify-content: center;
}

.tracking-result-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0.15rem 0 0;
  color: #0f172a;
}

.tracking-result-label {
  font-size: 0.82rem;
  color: #6B7280;
  margin: 0 0 0.25rem;
}

.tracking-status-banner {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid #dbeafe;
  background: #f8fbff;
  text-align: right;
}

.tracking-status-banner--approved,
.tracking-status-banner--installed {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.tracking-status-banner--pending {
  background: #fffbeb;
  border-color: #fde68a;
}

.tracking-status-banner--under-review,
.tracking-status-banner--under_review {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.tracking-status-banner--cancelled,
.tracking-status-banner--rejected {
  background: #fef2f2;
  border-color: #fecaca;
}

.tracking-status-banner-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(56, 182, 255, 0.12);
  color: #1d4ed8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  order: 2;
}

.tracking-status-banner h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: #0f172a;
}

.tracking-status-banner p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

.tracking-timeline {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.tracking-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 0.4rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #64748b;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
}

.tracking-step.is-complete {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #166534;
}

.tracking-step.is-active {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

.tracking-step-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
}

.tracking-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.tracking-info-card {
  background: #F8FBFF;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  padding: 1rem;
}

.tracking-info-card p {
  margin: 0 0 0.35rem;
  color: #6B7280;
  font-size: 0.84rem;
}

.tracking-info-card strong {
  color: #0f172a;
  font-size: 0.96rem;
}

.tracking-detail-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.tracking-detail-grid > .tracking-detail-card:first-child {
  grid-column: 1 / -1;
}

.tracking-detail-card {
  padding: 1rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
}

.tracking-detail-card h4 {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
  color: #0f172a;
}

.tracking-detail-card p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

.tracking-alert {
  margin-top: 0.9rem;
  padding: 0.75rem 0.95rem;
  border-radius: 12px;
  background: #fef2f2;
  color: #b91c1c;
  font-weight: 700;
  border: 1px solid #fecaca;
}

@media (max-width: 680px) {
  .tracking-hero {
    padding: 3rem 1.5rem 2.5rem;
  }

  .tracking-page {
    margin-top: 1rem;
    padding: 0 1.25rem;
  }

  .tracking-card {
    max-width: 100%;
    padding: 1rem;
  }

  .tracking-form-card {
    padding: 1rem;
  }

  .tracking-grid,
  .tracking-detail-grid,
  .tracking-timeline {
    grid-template-columns: 1fr;
  }

  .tracking-result-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .status-pill {
    margin-left: 0;
  }
}

/* helper pieces inside the tracking card */
.tracking-help {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.tracking-help-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #DBEAFE;
  color: #1D4ED8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.tracking-help-copy {
  margin: 0;
  color: #6B7280;
  font-size: 0.95rem;
  line-height: 1.5;
}

.tracking-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: 16px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
}

.tracking-empty-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #DBEAFE;
  color: #1D4ED8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.tracking-empty-icon i,
.tracking-help-icon i,
.status-pill i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.status-pill i {
  font-size: 0.95rem;
}

.tracking-result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: nowrap;
}

/* Ensure the left column (label + title) can shrink and the title truncates instead of wrapping */
.tracking-result-header > div {
  flex: 1 1 auto;
  min-width: 0;
}

.tracking-result-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  margin: 0;
}

.status-pill {
  flex: 0 0 auto;
  margin-left: 1rem;
}


/* ─── Feature Box ────────────────────────────────────────────────────────── */
.feature-box {
  background: #F0F9FF;
  border-left: 4px solid #38B6FF;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  display: inline-block;
  text-align: left;
  margin-top: 1rem;
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;
}

/* ─── Cards Grid ─────────────────────────────────────────────────────────── */
.cards-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1100px;
  width: 100%;
}

.service-card {
  background: #FFFFFF;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #38B6FF;
}

/* ─── Pricing Plan Cards ─────────────────────────────────────────────────── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  width: 100%;
  margin-top: 2rem;
}

.plan-card {
  background: #FFFFFF;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #E2E8F0;
  border-top: 4px solid #38B6FF;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(56, 182, 255, 0.2);
}

.plan-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0F172A;
  margin-bottom: 0.5rem;
}

.plan-speed {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #e62f2f;
  margin-bottom: 1.5rem;
}

.plan-type {
  font-size: 0.95rem;
  font-weight: 700;
  color: #64748b;
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

sup {
  font-size: 1rem;
  vertical-align: super;
  color: #e62f2f;
}

/* ─── Job Cards ──────────────────────────────────────────────────────────── */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  max-width: 1000px;
  width: 100%;
}

.job-card {
  background: #FFFFFF;
  padding: 0;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #E2E8F0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
}

/* Card image banner */
.job-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}

.job-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Split image layout for cards that need two photos */
.job-card-img--split {
  display: flex;
  gap: 2px;
}

.job-card-img--split img {
  width: 50%;
  flex-shrink: 0;
}

.job-card:hover .job-card-img img {
  transform: scale(1.05);
}

/* Card header: icon badge + role info */
.job-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem 0;
}

.job-icon-badge {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

/* Per-role badge colours */
.job-icon--finance  { background: #FEF3C7; }
.job-icon--finance i  { color: #D97706 !important; }

.job-icon--tech     { background: #DCFCE7; }
.job-icon--tech i     { color: #16A34A !important; }

.job-icon--supply   { background: #EDE9FE; }
.job-icon--supply i   { color: #7C3AED !important; }

.job-icon--it       { background: #DBEAFE; }
.job-icon--it i       { color: #2563EB !important; }

.job-department {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94A3B8;
  display: block;
  margin-bottom: 0.2rem;
}

.card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: #0F172A;
  margin: 0;
}

/* Requirements list */
.job-requirements {
  list-style: none;
  padding: 1rem 2rem 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.job-requirements li {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  color: #4A5568;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.job-requirements li i {
  color: #38B6FF !important;
  font-size: 0.8rem;
  margin-top: 0.28rem;
  flex-shrink: 0;
}

/* Footer: email CTA */
.job-footer {
  margin-top: auto;
  padding: 1.1rem 2rem 1.5rem;
  border-top: 1px solid #F1F5F9;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.job-footer-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.job-email {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #0F172A;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.job-email i {
  color: #38B6FF !important;
  font-size: 0.85rem;
}

.job-email:hover {
  color: #38B6FF;
}

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

/* ─── Contact Section ────────────────────────────────────────────────────── */
.contact-container {
  width: 100%;
  max-width: 1000px;
  text-align: center;
}

.contact-main-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0F172A;
  margin-bottom: 0.75rem;
}

.contact-divider {
  width: 60px;
  height: 4px;
  background: #38B6FF;
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

.contact-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #718096;
  font-size: 0.975rem;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.contact-card {
  display: flex;
  gap: 2.5rem;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  padding: 2.5rem;
  text-align: left;
  box-sizing: border-box;
  width: 100%;
  align-items: stretch;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  flex: 1 1 300px;
  min-width: 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
}

.contact-icon-circle {
  width: 44px;
  height: 44px;
  min-width: 44px;
  flex-shrink: 0;
  background: #EBF8FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon-circle i {
  font-size: 1.05rem;
  color: #e62f2f;
}

.contact-details {
  flex: 1;
  min-width: 0;
  word-wrap: break-word;
}

.contact-details h4 {
  font-weight: 600;
  font-size: 0.9rem;
  color: #38B6FF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.contact-details p {
  color: #4A5568;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.contact-details a {
  color: #38B6FF;
  text-decoration: none;
  font-weight: 500;
  word-break: break-all;
  overflow-wrap: break-word;
}

.contact-details a:hover {
  text-decoration: underline;
}

.map-container {
  flex: 1 1 350px;
  min-width: 0;
  min-height: 300px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
  display: block;
}

@media (max-width: 768px) {
  .contact-card {
    flex-direction: column;
    padding: 1.75rem;
  }

  .map-container {
    min-height: 250px;
  }
  
  .contact-main-title {
    font-size: 1.8rem;
  }
  
  .contact-subtitle {
    font-size: 0.9rem;
  }
}

@media (max-width: 560px) {
  .contact-container {
    padding: 0 1.25rem;
  }
  
  .contact-card {
    padding: 1.5rem 1.25rem;
  }
  
  .contact-main-title {
    font-size: 1.6rem;
  }
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: rgba(20, 90, 160, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #ffffff;
  font-size: 0.9rem;
  border-top: 1px solid rgba(56, 182, 255, 0.25);
}

/* ── Main content area ── */
.footer-main {
  padding: 4rem 2rem 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 0.8fr;
  gap: 3rem;
}

/* ── Brand column ── */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: #FFFFFF;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.footer-logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #FFFFFF;
}

.footer-tagline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.855rem;
  color: #ffffff;
  line-height: 1.75;
  max-width: 320px;
  margin: 0;
}

/* ── Generic column ── */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fcfdfd;
  margin: 0;
}

/* ── Quick links ── */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #fcfdfd;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.footer-links a::before {
  content: '›';
  color: #fcfdfd;
  font-size: 1rem;
  line-height: 1;
}

.footer-links a:hover {
  color: #FFFFFF;
}

/* ── Contact list ── */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-contact-list li {
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #fcfdfd;
  line-height: 1.65;
  font-size: 0.875rem;
}

.footer-contact-icon {
  font-size: 0.95rem;
  color: #e62f2f;
  flex-shrink: 0;
  margin-top: 0.2rem;
  width: 1rem;
  text-align: center;
}

.footer-contact-list a {
  color: #fcfdfd;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-list a:hover {
  color: #38B6FF;
}

/* ── Bottom copyright bar ── */
.footer-bottom {
  padding: 1.25rem 2rem;
  text-align: center;
}

.footer-bottom p {
  max-width: 1140px;
  margin: 0 auto;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #ffffff;
  font-size: 0.8rem;
}

.footer-bottom strong {
  color: #ffffff;
  font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1; /* full width on tablet */
  }
}

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

  .footer-brand {
    grid-column: auto;
  }
}

/* ─── Floating Chat Box ──────────────────────────────────────────────────── */
.floating-chat {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

/* Hide chat button when panel is open (all screen sizes) */
.floating-chat:has(.floating-chat-panel:not([hidden])) .floating-chat-toggle {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}

.floating-chat-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #38B6FF;
  color: #ffffff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(56, 182, 255, 0.4);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.floating-chat-toggle:hover,
.floating-chat-toggle.is-open {
  background: #259FE8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 182, 255, 0.55);
}

.floating-chat-toggle span {
  display: none;
}

.floating-chat-greeting {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.7rem);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: max-content;
  max-width: min(260px, calc(100vw - 2rem));
  padding: 0.7rem 0.75rem 0.7rem 0.9rem;
  border: 1px solid #dbe8fb;
  border-radius: 14px;
  background: #ffffff;
  color: #1f2937;
  font-size: 0.76rem;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.14);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.floating-chat-greeting[hidden] {
  display: none !important;
}

.floating-chat-greeting.is-dismissing {
  opacity: 0;
  transform: translateY(5px);
}

.floating-chat-greeting .is-typing::after {
  content: '|';
  display: inline-block;
  margin-left: 2px;
  color: #38B6FF;
  animation: floating-chat-cursor 0.8s step-end infinite;
}

@keyframes floating-chat-cursor {
  50% { opacity: 0; }
}

.floating-chat-greeting::after {
  content: '';
  position: absolute;
  right: 1.1rem;
  bottom: -7px;
  width: 13px;
  height: 13px;
  border-right: 1px solid #dbe8fb;
  border-bottom: 1px solid #dbe8fb;
  background: #ffffff;
  transform: rotate(45deg);
}

.floating-chat-greeting button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #eef4ff;
  color: #64748b;
  cursor: pointer;
}

.floating-chat-greeting button i {
  color: inherit !important;
  font-size: 0.65rem;
}

.floating-chat-toggle i,
.floating-chat-close i,
.floating-chat-action i,
.floating-chat-phone i {
  color: inherit !important;
}

.floating-chat-panel {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 360px;
  max-width: calc(100vw - 2rem);
  height: auto;
  min-height: 240px;
  max-height: min(560px, calc(100dvh - 2rem));
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0.9rem 0.65rem;
  border: 1px solid #dbe5f0;
  border-radius: 20px;
  background: linear-gradient(180deg, #f9fbff 0%, #f3f7ff 100%);
  color: #1f2937;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.16);
  overflow: hidden;
}

.floating-chat-panel[hidden] {
  display: none !important;
}

.floating-chat-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.floating-chat-agent {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.8rem 0.45rem 0.45rem;
  border: 1px solid #e7ebf2;
  border-radius: 999px;
  background: #ffffff;
  color: #182033;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.1);
}

.floating-chat-agent-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  color: #ffffff;
  overflow: hidden;
  flex-shrink: 0;
  padding: 2px;
  box-sizing: border-box;
}

.floating-chat-agent-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floating-chat-agent-icon i {
  display: block;
  width: auto;
  height: auto;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #ffffff !important;
  font-size: 0.95rem;
}

.floating-chat-panel-tools {
  display: flex;
  gap: 0.45rem;
}

.floating-chat-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #111827;
  cursor: pointer;
}

.floating-chat-panel-header strong,
.floating-chat-panel-header span {
  display: block;
}

.floating-chat-panel-header strong {
  font-size: 0.95rem;
}

.floating-chat-panel-header span {
  margin-top: 0.15rem;
  color: #64748b;
  font-size: 0.72rem;
}

.floating-chat-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: #f1f5f9;
  color: #475569;
  cursor: pointer;
}

.floating-chat-message {
  margin: 0.65rem 0;
  color: #475569;
  font-size: 0.78rem;
  line-height: 1.45;
}

.floating-chat-messages {
  display: flex;
  flex: 1 1 0%;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.25rem;
  min-height: 0;
  height: auto;
  max-height: min(320px, calc(100dvh - 280px));
  margin: 0.45rem 0 0.2rem;
  padding: 0.15rem 0.15rem 0.15rem 0;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  padding-right: 8px;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(15, 23, 42, 0.25) transparent;
}

.floating-chat-messages::-webkit-scrollbar {
  width: 6px;
}

.floating-chat-messages::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.22);
  border-radius: 999px;
}

.floating-chat-bubble {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 88%;
  width: fit-content;
  padding: 0.55rem 0.8rem;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.35;
  border: 1px solid rgba(15, 23, 42, 0.06);
  margin: 0;
  vertical-align: top;
}

.floating-chat-bubble > * {
  margin: 0;
  padding: 0;
}

.floating-chat-bubble p {
  margin: 0;
}

.floating-chat-bubble p + p {
  margin-top: 0.15rem;
}

.floating-chat-bubble p:last-child {
  margin-bottom: 0;
}

.floating-chat-bubble a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 700;
}

.floating-chat-bubble a:hover {
  color: #cffafe;
}

.floating-chat-bubble--bot {
  align-self: flex-start;
  background: #38B6FF;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(56, 182, 255, 0.3);
}

.floating-chat-bubble--user {
  align-self: flex-end;
  background: #ffffff;
  color: #202938;
  box-shadow: 0 5px 16px rgba(15, 23, 42, 0.08);
}

.floating-chat-form {
  display: flex;
  gap: 0.35rem;
  margin: 0;
  padding: 0.28rem;
  border: 1px solid #dbe2ee;
  border-radius: 999px;
  background: #ffffff;
  align-items: center;
}

.floating-chat-form input {
  min-width: 0;
  flex: 1;
  padding: 0.5rem 0.65rem;
  border: none;
  border-radius: 999px;
  color: #1f2937;
  font: inherit;
  font-size: 0.8rem;
  outline: none;
}

.floating-chat-form button {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #38B6FF, #1f8ee6);
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(56, 182, 255, 0.28);
}

.floating-chat-form button i {
  color: #ffffff !important;
}

.floating-chat-action,
.floating-chat-phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.75rem;
  border-radius: 9px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
}

.floating-chat-action {
  background: #1877f2;
  color: #ffffff;
}

.floating-chat-action i:last-child {
  margin-left: auto;
  font-size: 0.7rem;
}

.floating-chat-phone {
  margin-top: 0.45rem;
  background: #f8fafc;
  color: #334155;
}

.floating-chat-phone i {
  color: #e62f2f !important;
}

/* Messenger-style conversation treatment */
.floating-chat-panel {
  padding: 0 1.25rem 1.25rem;
  overflow: hidden;
}

.floating-chat-panel-header {
  margin: 0 -1.25rem;
  padding: 0.7rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px 20px 0 0;
  background: linear-gradient(135deg, #1877f2, #145be8);
}

.floating-chat-agent {
  padding: 0;
  border: none;
  background: transparent;
  color: #ffffff;
  box-shadow: none;
}

.floating-chat-panel-header .floating-chat-close {
  position: relative;
  z-index: 10;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  pointer-events: auto;
}

.floating-chat-panel-header span {
  color: rgba(255, 255, 255, 0.78);
}

.floating-chat-message {
  margin: 1rem 0 0.7rem;
}

.floating-chat-messages {
  display: flex;
  flex-direction: column;
  flex: 1 1 0%;
  min-height: 0;
  height: auto;
  max-height: 100%;
  justify-content: flex-start;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  pointer-events: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(15, 23, 42, 0.25) transparent;
}

.floating-chat-messages::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.25);
  border-radius: 999px;
}

.floating-chat-form {
  flex: 0 0 auto;
  order: 4;
  margin-top: 0.55rem;
  margin-bottom: 0.15rem;
  padding: 0.3rem;
  border: 1px solid #dbe2ee;
  border-radius: 999px;
  background: #ffffff;
}

/* Expanded state when user clicks expand */
.floating-chat-panel.is-expanded {
  height: min(80vh, 560px);
}

.floating-chat-expand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.floating-chat-expand i {
  color: #ffffff !important;
}

.floating-chat-form input {
  border: none;
  outline: none;
}

/* ─── Scroll To Top Button ───────────────────────────────────────────────── */
.scroll-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: #38B6FF;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(56, 182, 255, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease, box-shadow 0.2s ease;
  z-index: 999;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: #259fe8;
  box-shadow: 0 6px 20px rgba(56, 182, 255, 0.55);
  transform: translateY(-3px);
}

.scroll-to-top i {
  font-size: 1rem;
  color: #FFFFFF !important;
}

/* Mobile alignment for scroll-to-top and chat buttons */
@media (max-width: 560px) {
  .scroll-to-top {
    right: 1rem;
    bottom: 6rem;
    width: 48px;
    height: 48px;
  }
}

/* ─── Global Icon Color Override ────────────────────────────────────────── */
i.fa-solid,
i.fa-regular,
i.fa-brands {
  color: #e62f2f;
}

/* ─── Careers Section Visibility ────────────────────────────────────────── */
.careers-hidden {
  display: none !important;
}

/* ── Plans grid responsive ── */
@media (max-width: 900px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .floating-chat {
    right: 1rem;
    bottom: 2rem;
  }

  .floating-chat-toggle span {
    display: none;
  }

  .floating-chat-toggle {
    width: 48px;
    height: 48px;
    padding: 0;
    justify-content: center;
  }

  /* Hide chat button when panel is open on mobile */
  .floating-chat:has(.floating-chat-panel:not([hidden])) .floating-chat-toggle {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
  }

  .plans-grid { grid-template-columns: 1fr; }
}

/* ─── Services Section ───────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  width: 100%;
  margin: 2.5rem auto 0;
  padding: 0 1rem;
  box-sizing: border-box;
}

.service-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #E2E8F0;
  border-top: 4px solid #38B6FF;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(56, 182, 255, 0.2);
}

.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #38B6FF 0%, #1a8fd1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  flex-shrink: 0;
}

.service-card-icon i {
  font-size: 1.35rem;
  color: #ffffff;
}

.service-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.service-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
  line-height: 1.35;
}

.service-card-body {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

.services-cta {
  max-width: 680px;
  margin: 3rem auto 0;
  text-align: center;
  padding: 0 1rem;
}

.services-cta p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* Services Grid Responsive */
/* Desktop: 1x4 horizontal layout for wide screens only */
@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
  }
}

/* Tablet and smaller desktop: 2x2 grid layout */
@media (max-width: 1199px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    gap: 1.5rem;
  }
}

/* Small tablet: 2x2 with reduced gap */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  
  .service-card {
    padding: 1.5rem 1.25rem;
  }
}

/* Mobile: single column */
@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
    padding: 0 1.25rem;
  }
  
  .service-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ─── Footer Social Link ─────────────────────────────────────────────────── */
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-social-link:hover {
  color: #1877F2;
}

.footer-social-link .fa-facebook {
  font-size: 1.4rem;
  color: #1877F2;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 50%;
  padding: 1px;
}

.fb-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #ffffff;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}

.fb-icon-wrap .fa-facebook {
  font-size: 1.5rem;
  color: #1877F2;
  line-height: 1;
  background: none;
  padding: 0;
}

.footer-social-link::before {
  display: none !important;
}
