/* ============================================================
   VertexPlus GlobalSaaS – Main Stylesheet
   Brand: Navy #1a1a3e | Orange #f5a623 | Purple #6c63ff
   ============================================================ */

:root {
  --navy:       #1a1a3e;
  --navy-dark:  #12123a;
  --navy-mid:   #24245c;
  --orange:     #f5a623;
  --orange-dark:#e8941a;
  --purple:     #6c63ff;
  --purple-dark:#5a52e0;
  --text:       #2d2d4e;
  --text-muted: #6c757d;
  --border:     #e8eaf0;
  --bg-light:   #f5f7ff;
  --white:      #ffffff;
  --green:      #4caf50;
  --fw-600:     600;
  --radius-sm:  8px;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.06);
  --shadow:     0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.12);
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Plus Jakarta Sans', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
.fw-600 { font-weight: 600; }
.text-orange { color: var(--orange); }
.text-purple { color: var(--purple); }
.text-navy   { color: var(--navy); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.site-header .navbar { padding: 12px 0; }
.logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.logo-text strong { color: var(--orange); }
.logo-text sup { font-size: 10px; color: var(--text-muted); }

.navbar-nav .nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text) !important;
  padding: 6px 14px !important;
  border-radius: 6px;
  transition: all .2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--orange) !important;
  background: rgba(245,166,35,.07);
}

.header-phone { cursor: pointer; }
.phone-icon-wrap {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 14px;
}

.btn-primary-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-primary-cta:hover {
  background: var(--purple);
  transform: translateY(-1px);
}

/* ============================================================
   HERO SECTION (Home)
   ============================================================ */
.hero-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #2d2566 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content:'';
  position:absolute; inset:0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-trusted {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 30px;
  padding: 5px 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-trusted i { color: var(--orange); }
.hero-section h1 {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-desc {
  color: rgba(255,255,255,.75);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto 24px;
}
.hero-brands {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px 16px;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 13px;
  margin-bottom: 36px;
}
.hero-brands span { color: rgba(255,255,255,.3); }

/* Search Box */
.hero-search-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.hero-search-card h3 {
  font-size: 20px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.search-input-group {
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .2s;
}
.search-input-group:focus-within { border-color: var(--purple); }
.search-input-group input {
  flex: 1;
  border: none;
  padding: 12px 16px;
  font-size: 14px;
  outline: none;
  color: var(--text);
}
.search-input-group i {
  padding: 0 14px;
  display: flex; align-items: center;
  color: var(--text-muted);
  font-size: 15px;
}
.search-input-group button {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 0 24px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s;
}
.search-input-group button:hover { background: var(--purple); }

.search-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 14px;
}
.search-tag {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--text);
  cursor: pointer;
  transition: all .2s;
}
.search-tag:hover { background: var(--purple); color: #fff; border-color: var(--purple); }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
}
.section-title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.section-title span { color: var(--orange); }
.section-sub {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 580px;
  margin: 0 auto;
}

/* ============================================================
   EXPLORE SOLUTIONS (Home)
   ============================================================ */
.solutions-explore { padding: 70px 0; background: #fff; }
.category-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  cursor: pointer;
  transition: all .25s;
  height: 100%;
}
.category-card:hover {
  border-color: var(--purple);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.cat-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
}
.category-card h6 {
  font-size: 14px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.category-card p {
  font-size: 12px; color: var(--text-muted);
  margin-bottom: 10px; line-height: 1.5;
}
.explore-link {
  font-size: 12px; font-weight: 700;
  color: var(--orange);
  display: inline-flex; align-items: center; gap: 4px;
}
.explore-link:hover { color: var(--purple); }

.btn-view-all {
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  padding: 12px 32px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s;
}
.btn-view-all:hover { background: var(--purple); color: #fff; transform: translateY(-2px); }

/* ============================================================
   LIFECYCLE / SERVICES SECTION
   ============================================================ */
.lifecycle-section {
  padding: 70px 0;
  background: var(--bg-light);
}
.lifecycle-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.lifecycle-col {
  border-radius: var(--radius);
  padding: 28px;
}
.lifecycle-col.strategic  { background: var(--orange); }
.lifecycle-col.technical  { background: var(--navy); }
.lifecycle-col-title {
  font-size: 16px; font-weight: 800;
  color: #fff; margin-bottom: 20px;
}
.lifecycle-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 18px;
}
.lifecycle-item:last-child { margin-bottom: 0; }
.lc-icon {
  width: 36px; height: 36px; min-width: 36px;
  background: rgba(255,255,255,.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 15px;
}
.lc-text h6 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.lc-text p  { font-size: 12px; color: rgba(255,255,255,.75); margin: 0; }

.why-it-matters {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 28px;
}
.why-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--purple);
  color: #fff; border-radius: 20px;
  padding: 4px 12px; font-size: 11px; font-weight: 700;
  margin-bottom: 8px;
}

/* ============================================================
   RESELLER SECTION (Why Buy Through a Certified Reseller)
   ============================================================ */
.reseller-section { padding: 70px 0; background: #fff; }
.reseller-section h2 span { color: var(--orange); }
.reseller-badge {
  display: inline-flex; align-items: center; gap: 6px;
  border-radius: 20px; padding: 4px 12px;
  font-size: 11px; font-weight: 700; margin-bottom: 12px;
}
.badge-save    { background: #e8f5e9; color: var(--green); }
.badge-experts { background: #fff3e0; color: var(--orange); }
.badge-get     { background: #f3e5f5; color: #7b1fa2; }
.badge-24h     { background: #e8eaf6; color: var(--purple); }

.feature-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  height: 100%;
  transition: all .25s;
}
.feature-card:hover { border-color: var(--purple); box-shadow: var(--shadow); }
.feature-icon {
  width: 44px; height: 44px;
  background: var(--bg-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--purple);
  margin-bottom: 12px;
}
.feature-card h6 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.feature-card p  { font-size: 12px; color: var(--text-muted); margin: 0; }

/* ============================================================
   PRICING FORM (Home + Contact)
   ============================================================ */
.pricing-section { padding: 70px 0; background: var(--bg-light); }
.pricing-left h2 { font-size: 30px; font-weight: 800; color: var(--navy); }
.pricing-left h2 span { color: var(--orange); }

.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-card .form-label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-card .form-control,
.form-card .form-select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  padding: 10px 14px;
  transition: border-color .2s;
}
.form-card .form-control:focus,
.form-card .form-select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(108,99,255,.08);
}
.form-privacy {
  font-size: 11px; color: var(--text-muted);
}
.form-privacy a { color: var(--purple); }

.btn-submit {
  background: linear-gradient(135deg, var(--purple) 0%, var(--navy) 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-weight: 700; font-size: 14px;
  width: 100%;
  transition: opacity .2s, transform .15s;
}
.btn-submit:hover { opacity: .9; transform: translateY(-2px); color: #fff; }

.pricing-features li {
  font-size: 13px; color: var(--text);
  display: flex; align-items: flex-start; gap: 8px;
  margin-bottom: 10px;
}
.pricing-features li i { color: var(--green); margin-top: 2px; }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 50px 0;
}
.stat-item { text-align: center; }
.stat-value {
  font-size: 38px; font-weight: 800;
  color: #fff; line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,.65); }

/* Trust Badges */
.trust-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px; padding: 6px 14px;
  color: #fff; font-size: 11px; font-weight: 700;
}
.trust-badge i { color: var(--green); }

/* ============================================================
   BOTTOM CTA
   ============================================================ */
.bottom-cta-section {
  padding: 60px 0;
  background: var(--bg-light);
  text-align: center;
}
.bottom-cta-section h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.bottom-cta-section h2 span { color: var(--orange); }
.bottom-cta-section p { color: var(--text-muted); font-size: 15px; margin-bottom: 28px; }

.btn-cta-outline {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
  border-radius: 8px; padding: 11px 24px;
  font-weight: 700; font-size: 14px;
  transition: all .2s;
}
.btn-cta-outline:hover { background: var(--navy); color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); }

.footer-cta-bar {
  background: var(--navy-mid);
  padding: 40px 0;
  text-align: center;
}
.footer-cta-text {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}
.footer-contact-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 12px 20px;
  color: #fff;
  transition: all .2s;
}
.footer-contact-btn:hover { background: rgba(255,255,255,.15); color: #fff; }
.footer-contact-btn .fc-icon {
  width: 38px; height: 38px;
  background: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}
.footer-contact-btn small { display: block; font-size: 10px; color: rgba(255,255,255,.6); }
.footer-contact-btn strong { font-size: 14px; font-weight: 700; }

.footer-links-section { padding: 50px 0; }
.footer-heading {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 8px; }
.footer-list a { color: rgba(255,255,255,.6); font-size: 13px; transition: color .2s; }
.footer-list a:hover { color: var(--orange); }
.footer-view-all { color: var(--orange) !important; font-weight: 600; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.5); }

.social-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8);
  font-size: 14px;
  transition: all .2s;
}
.social-icon:hover { background: var(--orange); color: #fff; }
.social-icon.si-x { background: rgba(255,255,255,.1); }

/* ============================================================
   SOLUTIONS LISTING PAGE
   ============================================================ */
.solutions-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 60px 0;
  text-align: center;
}
.solutions-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800; color: #fff;
  margin-bottom: 12px;
}
.solutions-hero p { color: rgba(255,255,255,.75); font-size: 15px; max-width: 640px; margin: 0 auto 30px; }

.solutions-search-bar {
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 20px;
  max-width: 640px;
  margin: 0 auto 20px;
}
.trust-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-top: 16px;
}
.trust-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12);
  border-radius: 20px; padding: 5px 14px;
  color: #fff; font-size: 12px; font-weight: 600;
}
.trust-pill i { color: var(--orange); }

/* Filters */
.filters-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky; top: 65px; z-index: 100;
}
.filter-btn {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--border);
  border-radius: 8px; padding: 7px 14px;
  font-size: 13px; font-weight: 600; color: var(--text);
  background: #fff; cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover, .filter-btn.active { border-color: var(--purple); color: var(--purple); }
.filter-btn i { font-size: 11px; }

.active-filters { display: flex; flex-wrap: wrap; gap: 8px; padding: 10px 0; }
.active-filter-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 4px 12px;
  font-size: 12px; color: var(--text);
}
.active-filter-tag button {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); padding: 0; line-height: 1;
}

/* Solution Cards */
.solution-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  height: 100%;
  display: flex; flex-direction: column;
  transition: all .25s;
}
.solution-card:hover { border-color: var(--purple); box-shadow: var(--shadow); transform: translateY(-2px); }

.solution-card-logo {
  height: 52px; display: flex; align-items: center;
  margin-bottom: 14px;
}
.solution-card-logo img { max-height: 44px; max-width: 120px; object-fit: contain; }
.solution-logo-placeholder {
  width: 44px; height: 44px;
  background: var(--bg-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--purple);
  font-weight: 800;
}
.card-name { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.card-stars { display: flex; gap: 2px; margin-bottom: 10px; }
.card-stars i { color: var(--orange); font-size: 12px; }
.card-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.5; flex: 1; }
.card-features { list-style: none; padding: 0; margin: 0 0 16px; }
.card-features li {
  font-size: 12px; color: var(--text);
  display: flex; align-items: flex-start; gap: 6px;
  margin-bottom: 5px;
}
.card-features li i { color: var(--orange); margin-top: 2px; font-size: 10px; }

.btn-enquiry {
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-size: 13px; font-weight: 700;
  width: 100%; text-align: center;
  transition: all .2s;
}
.btn-enquiry:hover { background: var(--purple); color: #fff; }

/* Pagination */
.pagination .page-link {
  border: 1.5px solid var(--border);
  color: var(--text);
  border-radius: 8px !important;
  margin: 0 3px;
  font-size: 13px; font-weight: 600;
  padding: 7px 14px;
}
.pagination .page-item.active .page-link { background: var(--navy); border-color: var(--navy); color: #fff; }
.pagination .page-link:hover { background: var(--bg-light); border-color: var(--purple); color: var(--purple); }

/* ============================================================
   SOLUTION DETAIL PAGE
   ============================================================ */
.solution-detail-hero {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}
.breadcrumb-item a { color: var(--orange); }
.solution-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 6px; padding: 4px 10px;
  font-size: 11px; font-weight: 700; color: var(--text);
  margin-bottom: 10px;
}

.solution-main-content { padding: 40px 0; }

.detail-section-title {
  font-size: 18px; font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}
.detail-section-title span { color: var(--orange); }

/* Highlights Grid */
.highlights-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.highlight-item {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}
.highlight-item i { font-size: 24px; color: var(--purple); margin-bottom: 8px; display: block; }
.highlight-item h6 { font-size: 12px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.highlight-item p  { font-size: 11px; color: var(--text-muted); margin: 0; }

/* Features List */
.core-feature-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px;
}
.cf-icon {
  width: 32px; height: 32px; min-width: 32px;
  background: var(--bg-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 14px;
}
.cf-text h6 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.cf-text p  { font-size: 12px; color: var(--text-muted); margin: 0; }

/* Trustpilot / Enquiry sidebar */
.sidebar-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}
.trustpilot-stars i { color: var(--green); font-size: 22px; }
.trustpilot-label { font-weight: 700; color: var(--navy); }

.sidebar-advice {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  color: #fff;
}
.sidebar-advice h6 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.sidebar-advice p  { font-size: 12px; color: rgba(255,255,255,.7); margin-bottom: 12px; }
.sidebar-advice a  { color: var(--orange); font-weight: 700; font-size: 16px; }

/* FAQ Accordion */
.faq-accordion .accordion-button {
  font-size: 14px; font-weight: 600; color: var(--navy);
  background: #fff;
}
.faq-accordion .accordion-button:not(.collapsed) { color: var(--purple); background: var(--bg-light); }
.faq-accordion .accordion-body { font-size: 13px; color: var(--text-muted); }

/* Integrations */
.integration-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; padding: 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 11px; font-weight: 600; color: var(--text);
  text-align: center;
  transition: border-color .2s;
}
.integration-item:hover { border-color: var(--purple); }
.integration-item img { height: 28px; object-fit: contain; }

/* Industry Pills */
.industry-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; padding: 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 12px; font-weight: 600; color: var(--text);
  text-align: center;
}
.industry-item i { font-size: 24px; color: var(--purple); }

/* Use Cases */
.use-case-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 12px;
}
.use-case-card i { font-size: 24px; color: var(--orange); margin-bottom: 8px; display: block; }
.use-case-card h6 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }

/* ============================================================
   CONTACT / ENQUIRY PAGE
   ============================================================ */
.contact-hero {
  background: var(--bg-light);
  padding: 60px 0;
}
.contact-hero h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--navy); }
.contact-hero h1 span { color: var(--orange); }
.contact-bullet {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px;
}
.contact-bullet i { color: var(--orange); font-size: 18px; margin-top: 2px; }
.contact-bullet h6 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.contact-bullet p  { font-size: 13px; color: var(--text-muted); margin: 0; }

/* Thank You */
.thankyou-section {
  padding: 80px 0; background: var(--bg-light); min-height: 60vh;
  display: flex; align-items: center;
}
.thankyou-icon {
  width: 80px; height: 80px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; color: #fff;
  margin: 0 auto 24px;
}

/* ============================================================
   AUTOCOMPLETE DROPDOWN
   ============================================================ */
.search-autocomplete {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  max-height: 280px;
  overflow-y: auto;
}
.autocomplete-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 13px;
  transition: background .15s;
}
.autocomplete-item:hover { background: var(--bg-light); }
.ac-brand { font-size: 11px; color: var(--text-muted); }

/* ============================================================
   UTILITIES & RESPONSIVE
   ============================================================ */
.text-gradient {
  background: linear-gradient(135deg, var(--orange), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

@media (max-width: 991px) {
  .lifecycle-cols { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .navbar-nav { padding: 16px 0; }
  .navbar-nav .nav-link { border-bottom: 1px solid var(--border); border-radius: 0; }
}

@media (max-width: 767px) {
  .hero-section { padding: 50px 0 40px; }
  .hero-search-card { padding: 20px 16px; }
  .highlights-grid { grid-template-columns: 1fr; }
  .footer-contact-btns { flex-direction: column; align-items: center; }
  .solutions-hero { padding: 40px 0; }
}

/* Smooth page transitions */
main { animation: fadeInUp .35s ease-out both; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Loading spinner */
.spinner-overlay {
  display:none; position:fixed; inset:0;
  background:rgba(255,255,255,.7); z-index:9999;
  align-items:center; justify-content:center;
}
.spinner-overlay.active { display:flex; }
