/* ============================================================
   JAYCO Tech — B2B Enterprise IT Hardware
   Brand-matched stylesheet (mirrors shop.jaycotech.pk)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- Brand Variables ---------- */
:root {
  --blue:    #2C90CD;
  --blue-dk: #2580b8;
  --dark:    #262C31;
  --dark2:   #1a2025;
  --mid:     #64748b;
  --light:   #f7f9fc;
  --white:   #ffffff;
  --border:  #e2e8f0;
  --r:       10px;
  --r-sm:    6px;
  --r-lg:    14px;
  --shadow:        0 1px 4px rgba(38,44,49,0.06), 0 4px 16px rgba(38,44,49,0.08);
  --shadow-md:     0 4px 24px rgba(38,44,49,0.12);
  --shadow-hover:  0 12px 40px rgba(44,144,205,0.14);
  --transition:    all 0.2s ease;
  --nav-h:   80px;
  /* aliases so existing HTML vars still resolve */
  --primary:        var(--dark);
  --primary-light:  #374151;
  --accent:         var(--blue);
  --accent-light:   var(--blue-dk);
  --accent-pale:    rgba(44,144,205,0.08);
  --text:           var(--dark);
  --muted:          var(--mid);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; font-size: 15px; color: var(--dark); line-height: 1.65; background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: var(--blue); transition: var(--transition); }
ul { list-style: none; }
button { font-family: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-weight: 800; line-height: 1.15; color: var(--dark); letter-spacing: -0.02em; }
h1 { font-size: clamp(28px, 5vw, 48px); }
h2 { font-size: clamp(22px, 3.5vw, 36px); }
h3 { font-size: clamp(17px, 2vw, 20px); font-weight: 700; }
h4 { font-size: 16px; font-weight: 700; }
p  { color: var(--mid); line-height: 1.7; }

/* ---------- Layout ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-xs { padding: 28px 0; }

/* ---------- Grid ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.25rem; }
@media (max-width: 1024px) { .grid-6 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px)  { .grid-3 { grid-template-columns: repeat(2, 1fr); } .grid-6 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .grid-2, .grid-3, .grid-4, .grid-6 { grid-template-columns: 1fr; } }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.text-blue   { color: var(--blue); }
.text-white  { color: var(--white); }
.text-mid    { color: var(--mid); }
.mt-2 { margin-top: 1.25rem; }
.mt-3 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
/* Legacy aliases */
.text-accent { color: var(--blue); }
.text-muted  { color: var(--mid); }
.fw-800 { font-weight: 800; }

/* ---------- Animations ---------- */
.anim       { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.anim-left  { opacity: 0; transform: translateX(-20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.anim-right { opacity: 0; transform: translateX(20px);  transition: opacity 0.55s ease, transform 0.55s ease; }
.anim-in    { opacity: 1 !important; transform: translate(0) !important; }

/* ============================================================
   NAVBAR — matches shop.jaycotech.pk exactly
   ============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 var(--border);
  height: var(--nav-h);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); gap: 20px;
}
.navbar-logo { font-size: 1.4rem; font-weight: 900; color: var(--dark); letter-spacing: -0.02em; }
.navbar-logo span { color: var(--blue); }
.navbar-logo-img { display: flex; align-items: center; }
.navbar-logo-img img { height: 70px; width: auto; display: block; }

.navbar-menu { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.navbar-menu a {
  padding: 8px 13px; color: var(--mid);
  font-size: 13.5px; font-weight: 500;
  border-radius: var(--r-sm); white-space: nowrap;
  position: relative;
}
.navbar-menu a:hover { color: var(--dark); background: var(--light); }
.navbar-menu a.active { color: var(--dark); background: var(--light); }
.navbar-menu a.active::after {
  content: ''; position: absolute; bottom: 4px; left: 50%;
  transform: translateX(-50%); width: 4px; height: 4px;
  background: var(--blue); border-radius: 50%;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--blue) !important; color: var(--white) !important;
  padding: 9px 18px !important; border-radius: 7px !important;
  font-size: 13px !important; font-weight: 700 !important;
  margin-left: 8px; transition: var(--transition);
}
.nav-cta:hover {
  background: var(--blue-dk) !important; color: var(--white) !important;
  transform: translateY(-1px); box-shadow: 0 6px 20px rgba(44,144,205,0.3);
}

.navbar-toggle {
  display: none; flex-direction: column; justify-content: center;
  background: none; border: none; cursor: pointer;
  padding: 8px; border-radius: var(--r-sm); gap: 5px;
}
.navbar-toggle:hover { background: var(--light); }
.navbar-toggle span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
.navbar-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggle.open span:nth-child(2) { opacity: 0; }
.navbar-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 900px) {
  .navbar-toggle { display: flex; }
  /* backdrop-filter makes .navbar a containing block for position:fixed children,
     which collapses the fullscreen mobile menu — disable it on mobile */
  .navbar { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .navbar-menu {
    display: none; position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    flex-direction: column; align-items: flex-start;
    background: var(--white); padding: 1rem 1.5rem 2rem;
    box-shadow: 0 12px 32px rgba(38,44,49,0.15);
    gap: 2px; border-top: 1px solid var(--border);
    overflow-y: auto;
  }
  .navbar-menu.open { display: flex; }
  .navbar-menu a { display: block; width: 100%; padding: 14px 16px; font-size: 15px; font-weight: 500; color: var(--dark); border-bottom: 1px solid var(--border); border-radius: 0; }
  .navbar-menu a:last-child { border-bottom: none; }
  .navbar-menu a.active::after { display: none; }
  .nav-cta { margin: 12px 0 0; border-radius: 8px !important; width: 100%; justify-content: center; }
}

/* ============================================================
   BUTTONS — rounded rectangles, not pills
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 8px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  border: none; transition: var(--transition); line-height: 1;
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dk); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(44,144,205,0.3); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.45); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); color: var(--white); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark2); transform: translateY(-1px); color: var(--white); }
.btn-light { background: var(--white); color: var(--dark); }
.btn-light:hover { background: var(--light); transform: translateY(-1px); color: var(--dark); }
.btn-lg { padding: 15px 32px; font-size: 15px; border-radius: 10px; }
.btn-sm { padding: 8px 16px; font-size: 13px; border-radius: 7px; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   SECTION HEADINGS — plain label, not pill badge
   ============================================================ */
.section-heading { text-align: center; margin-bottom: 52px; }
.section-heading .badge {
  display: block;
  font-size: 12px; font-weight: 700; color: var(--blue);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 12px;
  background: none; padding: 0; border-radius: 0;
}
.section-heading h2 { margin-bottom: 14px; }
.section-heading p { max-width: 560px; margin: 0 auto; font-size: 16px; color: var(--mid); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: calc(100vh - var(--nav-h));
  background: var(--dark);
  display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 72px 0;
}
.hero::before {
  content: ''; position: absolute; top: -30%; left: -10%;
  width: 70%; height: 200%;
  background: radial-gradient(ellipse, rgba(44,144,205,0.10) 0%, transparent 70%);
  animation: pulse-bg 5s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; top: -30%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(44,144,205,0.06) 0%, transparent 70%);
  animation: pulse-bg 5s ease-in-out infinite alternate-reverse;
  pointer-events: none;
}
@keyframes pulse-bg { 0% { opacity:.5; transform:scale(1); } 100% { opacity:1; transform:scale(1.1); } }
.hero-inner { position: relative; z-index: 1; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(44,144,205,0.15); color: #7dc4ee;
  border: 1px solid rgba(44,144,205,0.3);
  padding: 6px 16px; border-radius: 6px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero h1 em { color: var(--blue); font-style: normal; }
.hero .lead { color: #94a3b8; font-size: 17px; max-width: 620px; margin: 0 auto 36px; font-weight: 400; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--dark); padding: 32px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.stats-inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 1.5rem; }
.stat-item { text-align: center; }
.stat-number { font-size: 2rem; font-weight: 900; color: var(--blue); display: block; line-height: 1; }
.stat-label  { color: #94a3b8; font-size: 13px; margin-top: 4px; }

/* ============================================================
   CARDS
   ============================================================ */
.cat-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1.5px solid var(--border);
  overflow: hidden; transition: var(--transition);
  display: flex; flex-direction: column;
}
.cat-card:hover { border-color: var(--blue); box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.cat-card-top { background: var(--dark); padding: 2rem; text-align: center; }
.cat-card-top .cat-icon { font-size: 2.5rem; color: var(--blue); margin-bottom: 12px; }
.cat-card-top h3 { color: var(--white); font-size: 17px; margin-bottom: 0; }
.cat-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.cat-card-body p { font-size: 14px; margin-bottom: 1rem; flex: 1; }
.cat-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.cat-tag { background: var(--light); color: var(--mid); padding: 4px 10px; border-radius: 5px; font-size: 12px; font-weight: 600; }

.svc-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 28px; border: 1.5px solid var(--border);
  transition: var(--transition); position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover { border-color: var(--blue); box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.svc-icon {
  width: 52px; height: 52px; border-radius: var(--r-sm);
  background: rgba(44,144,205,0.08); display: flex; align-items: center;
  justify-content: center; margin-bottom: 18px;
  font-size: 1.4rem; color: var(--blue);
}
.svc-card h3 { margin-bottom: 8px; font-size: 17px; }
.svc-card p  { font-size: 14px; color: var(--mid); line-height: 1.65; }

/* ============================================================
   WARRANTY BANNER
   ============================================================ */
.warranty-banner { background: var(--blue); padding: 56px 0; text-align: center; }
.warranty-banner h2 { color: var(--white); font-size: clamp(24px,4vw,42px); margin-bottom: 14px; }
.warranty-banner p  { color: rgba(255,255,255,0.88); font-size: 17px; max-width: 560px; margin: 0 auto 28px; }

/* ============================================================
   WHY US
   ============================================================ */
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-icon {
  width: 52px; height: 52px; min-width: 52px; border-radius: var(--r-sm);
  background: rgba(44,144,205,0.08); display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; color: var(--blue);
}
.why-item h3 { margin-bottom: 6px; font-size: 16px; }
.why-item p  { font-size: 14px; }

/* ============================================================
   TRUST STRIP — blue background matching original
   ============================================================ */
.trust-strip { background: var(--blue); padding: 20px 0; }
.trust-items { display: flex; justify-content: center; align-items: center; gap: 36px; flex-wrap: wrap; }
.trust-item  { display: flex; align-items: center; gap: 8px; }
.trust-item i { color: var(--white); opacity: 0.8; font-size: 1.1rem; }
.trust-item span { color: var(--white); font-weight: 600; font-size: 14px; white-space: nowrap; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.ind-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 24px 20px; text-align: center;
  border: 1.5px solid var(--border); transition: var(--transition);
}
.ind-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.ind-card .ind-icon { font-size: 1.75rem; margin-bottom: 12px; color: var(--blue); }
.ind-card .ind-icon i { color: var(--blue); }
.ind-hero-card-top .icon { font-size: 2.25rem; color: var(--blue); margin-bottom: 12px; }
.ind-hero-card-top .icon i { color: var(--blue); }
.ind-card h4 { font-size: 14px; color: var(--dark); margin-bottom: 6px; }
.ind-card p  { font-size: 13px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--dark); padding: 72px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start; }
.contact-info h2 { color: var(--white); margin-bottom: 14px; }
.contact-info > p { color: #94a3b8; margin-bottom: 32px; font-size: 16px; }
.contact-item { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.contact-item-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: var(--r-sm);
  background: rgba(44,144,205,0.15); display: flex; align-items: center;
  justify-content: center; color: var(--blue); font-size: 1rem;
}
.contact-item p { color: rgba(255,255,255,0.78); margin: 0; font-size: 14px; }
.contact-form { background: var(--white); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-md); }
.contact-form h3 { color: var(--dark); margin-bottom: 24px; font-size: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--mid); text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: 8px; font-size: 14px; font-family: inherit;
  background: var(--white); color: var(--dark); transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(44,144,205,0.1);
}
.form-group textarea { resize: vertical; min-height: 96px; }

/* Multi-select checkboxes — compact tag style */
.check-options {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px;
}
.check-option {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px; border: 1.5px solid var(--border);
  border-radius: 6px; cursor: pointer; font-size: 13px;
  color: var(--mid); background: var(--light); transition: var(--transition);
  user-select: none; white-space: nowrap;
}
.check-option:hover { border-color: var(--blue); color: var(--dark); background: var(--white); }
.check-option input[type="checkbox"] { display: none; }
.check-option span { display: flex; align-items: center; gap: 5px; }
.check-option span::before {
  content: ''; display: inline-block; width: 14px; height: 14px;
  border: 1.5px solid var(--border); border-radius: 3px;
  background: var(--white); transition: var(--transition); flex-shrink: 0;
}
.check-option input[type="checkbox"]:checked + span::before {
  background: var(--blue); border-color: var(--blue);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l3 3 5-6' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 9px;
}
.check-option:has(input:checked) { border-color: var(--blue); background: rgba(44,144,205,0.06); color: var(--dark); }

@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { background: var(--dark); padding: 72px 0 56px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -50%; left: -20%; width: 60%; height: 200%; background: radial-gradient(ellipse, rgba(44,144,205,0.10) 0%, transparent 70%); animation: pulse-bg 4s ease-in-out infinite alternate; }
.page-hero::after  { content: ''; position: absolute; top: -50%; right: -20%; width: 60%; height: 200%; background: radial-gradient(ellipse, rgba(44,144,205,0.06) 0%, transparent 70%); animation: pulse-bg 4s ease-in-out infinite alternate-reverse; }
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb { display: flex; justify-content: center; gap: 6px; margin-bottom: 16px; font-size: 13px; position: relative; z-index: 1; }
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: var(--blue); }
.page-hero h1 { color: var(--white); margin-bottom: 14px; position: relative; z-index: 1; }
.page-hero p { color: #94a3b8; max-width: 600px; margin: 0 auto; font-size: 16px; position: relative; z-index: 1; }

/* ============================================================
   SLA TIERS
   ============================================================ */
.tier-card { border-radius: var(--r-lg); overflow: hidden; border: 1.5px solid var(--border); transition: var(--transition); }
.tier-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--blue); }
.tier-card.featured { box-shadow: var(--shadow-hover); border-color: var(--blue); }
.tier-header { padding: 28px 24px; text-align: center; }
.tier-card.basic    .tier-header { background: var(--dark); }
.tier-card.business .tier-header { background: var(--blue); }
.tier-card.enterprise .tier-header { background: var(--dark2); }
.tier-header h3 { color: var(--white); font-size: 20px; margin-bottom: 6px; }
.tier-resp { color: rgba(255,255,255,0.78); font-size: 13px; }
.tier-resp strong { color: var(--white); font-size: 16px; display: block; margin-top: 4px; }
.tier-badge { display: inline-block; background: rgba(255,255,255,0.15); color: var(--white); padding: 3px 10px; border-radius: 5px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.tier-body { background: var(--white); padding: 24px; }
.tier-feature { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; font-size: 14px; color: var(--dark); }
.tier-feature i.check { color: #22c55e; flex-shrink: 0; margin-top: 2px; }
.tier-feature i.cross { color: #ef4444; flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   TABLES
   ============================================================ */
.table-wrap { overflow-x: auto; border-radius: var(--r-lg); border: 1.5px solid var(--border); }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
thead th { background: var(--dark); color: var(--white); padding: 14px 16px; text-align: left; font-weight: 600; white-space: nowrap; }
tbody td { padding: 12px 16px; border-bottom: 1px solid var(--border); background: var(--white); }
tbody tr:hover td { background: var(--light); }
tbody tr:last-child td { border-bottom: none; }
.check-yes  { color: #22c55e; font-weight: 700; }
.check-no   { color: #ef4444; font-weight: 700; }
.check-part { color: var(--blue); font-weight: 700; }

/* ============================================================
   ACCORDION
   ============================================================ */
.accordion { border: 1.5px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.acc-item { border-bottom: 1px solid var(--border); }
.acc-item:last-child { border-bottom: none; }
.acc-header { padding: 18px 22px; background: var(--white); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: var(--dark); font-size: 15px; user-select: none; transition: var(--transition); }
.acc-header:hover { background: var(--light); }
.acc-arrow { transition: transform 0.3s ease; flex-shrink: 0; color: var(--blue); }
.acc-item.open .acc-arrow { transform: rotate(180deg); }
.acc-body { display: none; padding: 18px 22px; background: var(--light); font-size: 14px; color: var(--mid); }
.acc-body.open { display: block; }
.acc-body ul { padding-left: 18px; list-style: disc; }
.acc-body ul li { margin-bottom: 5px; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps-list { display: flex; flex-direction: column; gap: 28px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num { width: 44px; height: 44px; min-width: 44px; background: var(--blue); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; }
.step-content h3 { margin-bottom: 5px; font-size: 16px; }
.step-content p  { font-size: 14px; }

/* ============================================================
   CHECK LIST
   ============================================================ */
.check-list ul { display: flex; flex-direction: column; gap: 8px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--dark); }
.check-list li i { color: var(--blue); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline { position: relative; padding-left: 36px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.tl-item { position: relative; margin-bottom: 32px; }
.tl-dot { position: absolute; left: -36px; top: 4px; width: 16px; height: 16px; background: var(--blue); border-radius: 50%; border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--blue); margin-left: 1px; }
.tl-year { color: var(--blue); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.tl-item h4 { color: var(--dark); margin-bottom: 4px; }
.tl-item p  { font-size: 14px; }

/* ============================================================
   INFO BOX
   ============================================================ */
.info-box { background: var(--light); border: 1.5px solid var(--border); border-left: 4px solid var(--blue); border-radius: 0 var(--r) var(--r) 0; padding: 18px 20px; margin: 20px 0; }
.info-box.danger  { background: rgba(239,68,68,0.06);  border-color: var(--border); border-left-color: #ef4444; }
.info-box.success { background: rgba(34,197,94,0.06);  border-color: var(--border); border-left-color: #22c55e; }
.info-box h4 { margin-bottom: 5px; color: var(--dark); font-size: 15px; }
.info-box p  { font-size: 14px; margin: 0; }

/* ============================================================
   VALUE / WHY CARDS
   ============================================================ */
.value-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 28px; text-align: center;
  border: 1.5px solid var(--border); transition: var(--transition);
}
.value-card:hover { border-color: var(--blue); box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.value-card .val-icon { font-size: 2rem; color: var(--blue); margin-bottom: 14px; }
.value-card h3 { margin-bottom: 8px; font-size: 17px; }
.value-card p  { font-size: 14px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { background: var(--dark); padding: 72px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(44,144,205,0.1) 0%, transparent 60%); pointer-events: none; }
.cta-section h2 { color: var(--white); margin-bottom: 14px; position: relative; }
.cta-section p  { color: #94a3b8; max-width: 560px; margin: 0 auto 28px; font-size: 16px; position: relative; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============================================================
   COVERAGE CARDS
   ============================================================ */
.cov-card { background: var(--white); border-radius: var(--r-lg); padding: 24px; border: 1.5px solid var(--border); transition: var(--transition); }
.cov-card:hover { box-shadow: var(--shadow-hover); border-color: var(--blue); }
.cov-card h4 { color: var(--dark); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; font-size: 15px; }
.cov-card h4 i { color: var(--blue); }
.cov-card ul li { font-size: 13px; color: var(--dark); padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 6px; }
.cov-card ul li:last-child { border-bottom: none; }
.cov-card ul li i { color: #22c55e; font-size: 11px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-size: 1.4rem; font-weight: 900; color: var(--white); letter-spacing: -0.02em; display: inline-block; margin-bottom: 14px; }
.footer-logo span { color: var(--blue); }
.footer-logo-img { display: inline-block; margin-bottom: 14px; }
.footer-logo-img img { height: 22px; width: auto; }
.footer-about p { color: #94a3b8; font-size: 14px; line-height: 1.7; }
.footer-socials { display: flex; gap: 8px; margin-top: 18px; }
.footer-socials a { width: 34px; height: 34px; background: rgba(255,255,255,0.06); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: #94a3b8; font-size: 14px; transition: var(--transition); }
.footer-socials a:hover { background: var(--blue); color: var(--white); }
.footer-col h5 { color: var(--white); font-size: 12px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #94a3b8; font-size: 14px; }
.footer-col ul li a:hover { color: var(--blue); }
.footer-contact-item { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.footer-contact-item i { color: var(--blue); font-size: 13px; flex-shrink: 0; }
.footer-contact-item a { color: #94a3b8; font-size: 14px; }
.footer-contact-item a:hover { color: var(--blue); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 13px; }
.footer-cert { display: flex; gap: 8px; }
.cert-badge { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 5px; padding: 4px 10px; font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 600; }

@media (max-width: 992px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ============================================================
   INDUSTRIES PAGE CARD
   ============================================================ */
.ind-hero-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: 1.5px solid var(--border); transition: var(--transition); }
.ind-hero-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--blue); }
.ind-hero-card-top { background: var(--dark); padding: 32px 24px; text-align: center; }
.ind-hero-card-top h3 { color: var(--white); font-size: 18px; margin-bottom: 0; }
.ind-hero-card-body { padding: 20px; }
.ind-hero-card-body p { font-size: 14px; margin-bottom: 14px; }
.ind-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ind-tag { background: var(--light); color: var(--mid); padding: 4px 10px; border-radius: 5px; font-size: 12px; font-weight: 600; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .section-sm { padding: 32px 0; }
  .tier-card.featured { transform: none; }
  .hero { padding: 48px 0; }
}
@media (max-width: 480px) {
  .btn { padding: 11px 20px; font-size: 14px; }
  .btn-lg { padding: 13px 24px; font-size: 15px; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  h1 { font-size: 26px; }
}

/* ============================================================
   NAV DROPDOWN — Services menu
   ============================================================ */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 5px; cursor: pointer; }
.dd-caret { font-size: 10px; transition: transform 0.2s; }
.nav-dropdown:hover .dd-caret,
.nav-dropdown.open .dd-caret { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r); box-shadow: 0 12px 32px rgba(38,44,49,0.14);
  min-width: 230px; z-index: 200; padding: 8px; list-style: none;
}
/* bridge the gap so hover doesn't drop while moving to the menu */
.nav-dropdown-menu::before {
  content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 8px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a {
  display: flex; align-items: center; gap: 10px; padding: 9px 12px;
  font-size: 13.5px; font-weight: 500; color: var(--mid);
  border-radius: var(--r-sm); background: none !important;
  transition: var(--transition); white-space: nowrap;
}
.nav-dropdown-menu li a i { width: 16px; text-align: center; color: var(--blue); font-size: 13px; }
.nav-dropdown-menu li a:hover { color: var(--dark); background: var(--light) !important; }
.nav-dropdown-menu li a.active::after { display: none; }
.nav-dd-divider { height: 1px; background: var(--border); margin: 6px 4px; }
.nav-dd-group {
  padding: 8px 12px 4px; font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--mid);
}
.nav-dd-highlight a { font-weight: 700 !important; color: var(--blue) !important; }
.nav-dd-highlight a i { color: var(--blue); }

/* Mobile dropdown — accordion inside the slide-out menu */
@media (max-width: 900px) {
  .nav-dropdown-menu {
    display: none; position: static; border: none; box-shadow: none;
    border-radius: 0; min-width: 100%; padding: 0; background: var(--light);
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown:hover .nav-dropdown-menu { display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu li a { padding: 12px 24px; font-size: 14px; border-bottom: 1px solid var(--border); }
  .nav-dropdown-toggle { border-bottom: 1px solid var(--border); }
  .nav-dd-divider { display: none; }
  .nav-dd-group { padding: 12px 24px 4px; }
}

/* Client Portal nav button */
.nav-portal {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 7px;
  font-size: 13px; font-weight: 600;
  color: var(--blue) !important; background: rgba(44,144,205,0.08);
  border: 1.5px solid rgba(44,144,205,0.25);
  margin-left: 6px; transition: var(--transition);
  white-space: nowrap;
}
.nav-portal:hover { background: rgba(44,144,205,0.15); border-color: var(--blue); }
@media (max-width: 900px) {
  .nav-portal { margin: 8px 0 0; width: 100%; justify-content: center; border-radius: 8px; }
}
