/**
* ==============================================================================
* Netware Company Limited - Master Stylesheet
* Version: 2.1 (Complete Multi-Page Production Release)
* Author: Netware Company Lmited
* Website: https://netwareonline.com
* ==============================================================================
*/

/*--------------------------------------------------------------
# 1. Variables & Global Design Tokens
--------------------------------------------------------------*/
:root {
  /* Fonts */
  --default-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --heading-font: "Plus Jakarta Sans", sans-serif;
  --nav-font: "Plus Jakarta Sans", sans-serif;

  /* Enterprise Blue Theme Colors */
  --primary-navy: #0f172a;
  --primary-blue: #0284c7;
  --accent-hover: #0369a1;
  --accent-coral: #ea580c;
  --body-text: #475569;
  --heading-text: #0f172a;
  --bg-subtle: #f8fafc;
  --border-soft: #e2e8f0;

  /* Global Aliases */
  --background-color: #ffffff;
  --surface-color: #ffffff;
  --default-color: var(--body-text);
  --heading-color: var(--heading-text);
  --accent-color: var(--primary-blue);
  --contrast-color: #ffffff;

  /* Nav Menu Variables */
  --nav-color: #334155;
  --nav-hover-color: var(--primary-blue);
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #334155;
  --nav-dropdown-hover-color: var(--primary-blue);

  /* Shadows */
  --card-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 10px -6px rgba(15, 23, 42, 0.03);
  --card-hover-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.12);

  scroll-behavior: smooth;
}

.light-background {
  --background-color: #f8fafc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: var(--primary-navy);
  --default-color: #cbd5e1;
  --heading-color: #ffffff;
  --surface-color: #1e293b;
  --contrast-color: #ffffff;
}

/*--------------------------------------------------------------
# 2. General Setup & Shared Typography
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

p {
  line-height: 1.7;
  margin-bottom: 16px;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.25s ease;
}

a:hover {
  color: var(--accent-hover);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

section, .section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 80px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section, .section {
    padding: 60px 0;
    scroll-margin-top: 80px;
  }
}

.section-title {
  text-align: center;
  padding-bottom: 45px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-title p {
  color: var(--body-text);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# 3. Header, Topbar & Navigation
--------------------------------------------------------------*/
/* Standalone Topbar (Handles outside-header placement) */
.topbar {
  background-color: var(--primary-navy) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 42px;
  padding: 8px 0;
  font-size: 13.5px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 998;
}

.topbar a {
  color: #94a3b8 !important;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}

.topbar a:hover {
  color: #ffffff !important;
}

.topbar .contact-info a.fw-bold {
  color: #ffffff !important;
}

/* Header & Logo */
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .branding {
  background-color: var(--background-color);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
  padding: 12px 0;
  min-height: 64px;
}

.header .logo img {
  max-height: 48px;
}

.scrolled .header {
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.06);
}

/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 16px 14px;
    font-size: 14.5px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 6px;
    transition: 0.3s;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color) !important;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 10px;
    z-index: 99;
    box-shadow: var(--card-hover-shadow);
    border: 1px solid var(--border-soft);
  }

  .navmenu .dropdown ul li {
    min-width: 220px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
    background-color: var(--bg-subtle);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--primary-navy);
    font-size: 28px;
    line-height: 0;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 15px 0;
    margin: 0;
    border-radius: 12px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-soft);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 12px 24px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--primary-blue);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 8px 0;
    margin: 6px 20px;
    background-color: var(--bg-subtle);
    border-radius: 8px;
    box-shadow: none;
    border: 1px solid var(--border-soft);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #ffffff;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# 4. Buttons, Badges & Interactive Channels
--------------------------------------------------------------*/
.btn-brand-primary {
  background-color: var(--primary-blue);
  color: #ffffff !important;
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 28px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-brand-primary:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.35);
  transform: translateY(-2px);
}

.btn-brand-outline {
  background: transparent;
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 28px;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-brand-outline:hover {
  background: #ffffff;
  color: var(--primary-navy) !important;
  border-color: #ffffff;
}

.btn-detail-link {
  background-color: var(--primary-blue);
  color: #ffffff !important;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-detail-link:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.3);
}

/* Contact Communication Channel Buttons */
.btn-channel {
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: 0.25s ease;
  width: 100%;
}

.btn-channel.btn-phone { background: var(--primary-blue); color: #ffffff; }
.btn-channel.btn-phone:hover { background: var(--accent-hover); color: #ffffff; transform: translateY(-2px); }

.btn-channel.btn-email { background: var(--primary-blue); color: #ffffff; }
.btn-channel.btn-email:hover { background: var(--accent-hover); color: #ffffff; transform: translateY(-2px); }

.btn-channel.btn-viber { background: #7360f2; color: #ffffff; }
.btn-channel.btn-viber:hover { background: #5e4bc7; color: #ffffff; transform: translateY(-2px); }

.btn-channel.btn-telegram { background: #229ed9; color: #ffffff; }
.btn-channel.btn-telegram:hover { background: #1c88bc; color: #ffffff; transform: translateY(-2px); }

.btn-channel.btn-facebook { background: #1877f2; color: #ffffff; }
.btn-channel.btn-facebook:hover { background: #1464cc; color: #ffffff; transform: translateY(-2px); }

.btn-channel.btn-linkedin { background: #0a66c2; color: #ffffff; }
.btn-channel.btn-linkedin:hover { background: #084e96; color: #ffffff; transform: translateY(-2px); }

/*--------------------------------------------------------------
# 5. Hero & Page Header Banners
--------------------------------------------------------------*/
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.90) 0%, rgba(2, 44, 84, 0.85) 100%), 
              url('../img/hero-bg.png') center/cover no-repeat;
  min-height: 82vh;
  padding: 110px 0 80px;
  display: flex;
  align-items: center;
}

.hero:before {
  display: none;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
}

.hero p {
  color: #cbd5e1;
  font-size: 1.15rem;
  max-width: 680px;
}

.hero .badge-tag {
  background: rgba(2, 132, 199, 0.2);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.35);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 30px;
  padding: 6px 16px;
  display: inline-block;
}

.hero .why-box {
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 16px !important;
  padding: 35px !important;
}

.hero .why-box h3 {
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
}

.hero .why-box p {
  color: #e2e8f0 !important;
  font-size: 0.95rem;
}

/* Sub-page Banner */
.page-banner {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(2, 44, 84, 0.90)), 
              url('../img/hero-bg.png') center/cover no-repeat;
  padding: 80px 0 60px;
  color: #ffffff;
}

.page-banner h1 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.page-banner p {
  color: #cbd5e1;
  font-size: 1.15rem;
  max-width: 650px;
  margin-bottom: 0;
}

.breadcrumbs-wrap {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 12px;
}

.breadcrumbs-wrap a {
  color: #38bdf8;
  text-decoration: none;
}

/* Stats Trust Strip */
.stats-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--border-soft);
  padding: 30px 0;
}

.stats-strip h3 {
  color: var(--primary-blue);
  font-size: 2rem;
  font-weight: 800;
}

/*--------------------------------------------------------------
# 6. About Section
--------------------------------------------------------------*/
.about .about-meta {
  color: var(--primary-blue) !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em;
  font-size: 13px;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.about .about-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 12px 0 18px;
}

.about .feature-list-wrapper {
  margin-bottom: 2rem;
}

.about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 14.5px;
  color: #334155;
  font-weight: 500;
}

.about .feature-list li i {
  color: var(--primary-blue) !important;
  font-size: 1.1rem;
}

.about .image-wrapper {
  position: relative;
}

.about .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--surface-color);
}

.about .experience-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: var(--primary-blue) !important;
  color: #ffffff;
  padding: 1.5rem;
  border-radius: 12px !important;
  text-align: center;
  min-width: 200px;
  box-shadow: 0 15px 30px rgba(2, 132, 199, 0.3);
  animation: experience-float 3s ease-in-out infinite;
}

.about .experience-badge h3 {
  color: #ffffff;
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.8;
}

.about .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.about .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}

@keyframes experience-float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

@media (max-width: 992px) {
  .about .image-wrapper {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    border: 0;
  }
  .about .experience-badge {
    position: static;
    width: fit-content;
    margin: 0 auto;
  }
}

.pillar-card {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 32px 26px;
  box-shadow: var(--card-shadow);
  transition: 0.3s ease;
  height: 100%;
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
  border-color: #cbd5e1;
}

.pillar-card .pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #f0f9ff;
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}

/*--------------------------------------------------------------
# 7. Services Modules & Deep-Dive Components
--------------------------------------------------------------*/
.services.section {
  background-color: var(--bg-subtle);
  padding: 90px 0;
}

.services .service-card-clean {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 36px 30px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--card-shadow);
  position: relative;
  text-align: left !important;
  margin-top: 0 !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services .service-card-clean:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-hover-shadow);
  border-color: #cbd5e1;
}

.services .service-card-clean .card-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: #f0f9ff;
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
  border: 1px solid #e0f2fe;
  position: static !important;
  transition: 0.3s ease;
}

.services .service-card-clean:hover .card-icon-box {
  background: var(--primary-blue);
  color: #ffffff;
  transform: scale(1.05);
}

.services .service-card-clean h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.35;
}

.services .service-card-clean p {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.6;
  margin-bottom: 18px;
}

.services .service-card-clean .read-more {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.services .service-card-clean .read-more i {
  transition: transform 0.2s ease;
}

.services .service-card-clean:hover .read-more i {
  transform: translateX(4px);
}

.service-row-block {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  margin-bottom: 40px;
}

.service-row-block:hover {
  box-shadow: var(--card-hover-shadow);
  border-color: #cbd5e1;
}

.service-badge {
  display: inline-block;
  background: #f0f9ff;
  color: var(--primary-blue);
  border: 1px solid #e0f2fe;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.service-feature-bullets {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px 0;
}

.service-feature-bullets li {
  font-size: 14px;
  color: var(--body-text);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.service-feature-bullets li i {
  color: var(--primary-blue);
  font-size: 1.1rem;
  margin-right: 10px;
  flex-shrink: 0;
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 32px 26px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
  border-color: #cbd5e1;
}

.feature-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #f0f9ff;
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  border: 1px solid #e0f2fe;
}

.compare-box {
  border-radius: 16px;
  padding: 30px;
  height: 100%;
}

.compare-box.bad {
  background: #fff5f5;
  border: 1px solid #fed7d7;
}

.compare-box.good {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.scope-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.scope-list li {
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--body-text);
}

.scope-list li:last-child {
  border-bottom: none;
}

.scope-list li i {
  color: var(--primary-blue);
  font-size: 1.15rem;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.step-box {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  box-shadow: var(--card-shadow);
}

.step-number {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-blue);
  background: #f0f9ff;
  border: 1px solid #e0f2fe;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.vendor-card,
.platform-card,
.pillar-detail-card {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 32px 26px;
  box-shadow: var(--card-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vendor-card .vendor-tag,
.platform-card .platform-badge,
.pillar-detail-card .pillar-badge {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary-blue);
  background: #f0f9ff;
  border: 1px solid #e0f2fe;
  padding: 4px 14px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 12px;
  width: fit-content;
}

.checklist-items {
  list-style: none;
  padding: 0;
  margin: 18px 0 0 0;
}

.checklist-items li {
  font-size: 14px;
  color: var(--body-text);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.checklist-items li i {
  color: var(--primary-blue);
  font-size: 1.15rem;
  margin-right: 10px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Image Placeholders */
.service-img-box,
.service-img-wrap,
.about-visual-box {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--card-shadow);
  background: #f8fafc;
  min-height: 320px;
  height: 100%;
}

.service-img-box img,
.service-img-wrap img,
.about-visual-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-placeholder,
.service-placeholder-box,
.image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%);
  border: 2px dashed #cbd5e1;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
}

.service-placeholder i,
.service-placeholder-box i,
.image-placeholder i {
  font-size: 42px;
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.service-placeholder .title-text,
.service-placeholder-box .title-text,
.image-placeholder span {
  font-weight: 700;
  color: var(--heading-text);
  font-size: 14.5px;
  margin-bottom: 4px;
}

.service-placeholder .desc-text,
.service-placeholder-box .desc-text,
.image-placeholder small {
  font-size: 12px;
  color: #64748b;
  max-width: 320px;
  line-height: 1.5;
}

/*--------------------------------------------------------------
# 8. Maintenance Plans & Pricing
--------------------------------------------------------------*/
.pricing-card-clean {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: var(--card-shadow);
  transition: 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card-clean:hover {
  box-shadow: var(--card-hover-shadow);
}

.pricing-card-clean.featured {
  border: 2px solid var(--primary-blue);
  position: relative;
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-blue);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 16px;
  border-radius: 30px;
}

.pricing-card-wrap {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 36px 26px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.pricing-card-wrap:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-hover-shadow);
  border-color: #cbd5e1;
}

.pricing-card-wrap.featured {
  border: 2px solid var(--primary-blue);
  box-shadow: 0 12px 30px -5px rgba(2, 132, 199, 0.15);
}

.featured-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-blue);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 18px;
  border-radius: 30px;
}

.enterprise-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #cbd5e1;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.plan-tag {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-blue);
  margin-bottom: 6px;
  display: block;
}

.plan-price {
  font-size: 2.85rem;
  font-weight: 800;
  color: var(--heading-text);
  line-height: 1;
  margin: 16px 0 20px;
  font-family: var(--heading-font);
}

.plan-price sup {
  font-size: 1.4rem;
  font-weight: 700;
  top: -0.6em;
  margin-right: 2px;
}

.plan-price span {
  font-size: 14.5px;
  font-weight: 500;
  color: #94a3b8;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}

.plan-features li {
  font-size: 14px;
  padding: 9px 0;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  color: #334155;
}

.plan-features li i.check-icon {
  color: var(--primary-blue);
  font-size: 1.15rem;
  margin-right: 10px;
  flex-shrink: 0;
}

.plan-features li.disabled {
  color: #94a3b8;
  text-decoration: line-through;
}

.plan-features li.disabled i {
  color: #cbd5e1;
  font-size: 1.15rem;
  margin-right: 10px;
  flex-shrink: 0;
}

.plan-divider {
  margin: 12px 0;
  border: 0;
  border-top: 1px dashed #e2e8f0;
}

.btn-plan {
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  display: block;
  width: 100%;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-plan-primary {
  background-color: var(--primary-blue);
  color: #ffffff !important;
}

.btn-plan-primary:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 8px 18px rgba(2, 132, 199, 0.3);
  transform: translateY(-2px);
}

.btn-plan-outline {
  background: transparent;
  color: var(--heading-text) !important;
  border: 1.5px solid var(--border-soft);
}

.btn-plan-outline:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue) !important;
  background: #f8fafc;
  transform: translateY(-2px);
}

.trust-strip-box {
  background: #f8fafc;
  border: 1px solid var(--border-soft);
  border-radius: 50px;
  padding: 14px 28px;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

.trust-strip-box span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-strip-box i {
  color: #10b981;
  font-size: 1.1rem;
}

.table-container {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.table-clean {
  margin-bottom: 0;
  font-size: 14px;
}

.table-clean th {
  background: #f8fafc;
  color: var(--heading-text);
  font-weight: 700;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-soft);
}

.table-clean td {
  padding: 16px 20px;
  vertical-align: middle;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
}

.table-clean tr:last-child td {
  border-bottom: none;
}

.plans-showcase-box {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: var(--card-shadow);
}

.plan-mini-card {
  background: #f8fafc;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan-mini-card:hover {
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.plan-mini-card.featured {
  background: #f0f9ff;
  border: 2px solid var(--primary-blue);
}

.plan-mini-card .price-tag {
  font-size: 2rem;
  font-weight: 800;
  color: var(--heading-text);
  font-family: var(--heading-font);
  margin: 8px 0;
}

.plan-mini-card .price-tag span {
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
}

/*--------------------------------------------------------------
# 9. Portfolio Grid & Isotope
--------------------------------------------------------------*/
.portfolio-filters-wrap {
  background: #f1f5f9;
  padding: 6px;
  border-radius: 50px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  border: 1px solid var(--border-soft);
  list-style: none;
  margin: 0 auto 40px auto;
}

.portfolio-filters-wrap li {
  cursor: pointer;
  color: #475569;
  font-weight: 600;
  font-size: 14px;
  padding: 9px 22px;
  border-radius: 50px;
  transition: all 0.25s ease;
}

.portfolio-filters-wrap li:hover {
  color: var(--primary-blue);
}

.portfolio-filters-wrap li.filter-active {
  background-color: var(--primary-blue);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.portfolio-card {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  position: relative;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-hover-shadow);
  border-color: #cbd5e1;
}

.portfolio-img-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.portfolio-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-img-box img {
  transform: scale(1.06);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-zoom-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.portfolio-zoom-btn:hover {
  background: var(--primary-blue);
  color: #ffffff;
  transform: scale(1.1);
}

.portfolio-meta {
  padding: 20px;
  background: #ffffff;
}

.portfolio-category {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  display: block;
}

.portfolio-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--heading-text);
}

.portfolio-desc {
  font-size: 13.5px;
  color: var(--body-text);
  line-height: 1.5;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# 10. FAQ Accordions
--------------------------------------------------------------*/
.faq-tabs .nav-pills {
  background: #f1f5f9;
  padding: 6px;
  border-radius: 50px;
  display: inline-flex;
  gap: 6px;
  border: 1px solid var(--border-soft);
}

.faq-tabs .nav-link {
  color: #475569;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 50px;
  transition: all 0.25s ease;
  border: none;
}

.faq-tabs .nav-link.active {
  background-color: var(--primary-blue);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.accordion-clean .accordion-item {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 14px !important;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.25s ease;
}

.accordion-clean .accordion-item:hover {
  border-color: #cbd5e1;
}

.accordion-clean .accordion-button {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--heading-text);
  background-color: #ffffff;
  padding: 22px 24px;
  box-shadow: none;
  border: none;
}

.accordion-clean .accordion-button:not(.collapsed) {
  color: var(--primary-blue);
  background-color: #f8fafc;
  border-bottom: 1px solid var(--border-soft);
}

.accordion-clean .accordion-button::after {
  background-size: 1.1rem;
  transition: all 0.25s ease;
}

.accordion-clean .accordion-body {
  padding: 24px;
  color: var(--body-text);
  font-size: 15px;
  line-height: 1.7;
  background: #ffffff;
}

.accordion-clean .accordion-body p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# 11. Contact Layout & Maps
--------------------------------------------------------------*/
.contact-card {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
  border-color: #cbd5e1;
}

.contact-card .card-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #f0f9ff;
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  border: 1px solid #e0f2fe;
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.6;
  margin-bottom: 16px;
}

.map-container {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  padding: 12px;
}

.map-container iframe {
  width: 100%;
  height: 480px;
  border-radius: 12px;
  display: block;
}

/*--------------------------------------------------------------
# 12. Hardware Partners Carousel
--------------------------------------------------------------*/
.partners .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100%);
  max-height: 60px;
  object-fit: contain;
}

.partners .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.partners .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.partners .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 0.4;
  background-color: var(--primary-navy);
}

.partners .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--primary-blue);
}

/*--------------------------------------------------------------
# 13. Global Footer
--------------------------------------------------------------*/
.footer {
  background-color: var(--primary-navy) !important;
  color: #94a3b8;
  font-size: 14px;
  padding: 70px 0 35px 0;
  position: relative;
}

.footer h5 {
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.footer a {
  color: #94a3b8;
}

.footer a:hover {
  color: #ffffff;
}

.footer .border-top {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 16px;
  color: #cbd5e1;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #ffffff;
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}

/*--------------------------------------------------------------
# 14. Preloader & Scroll-to-Top
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  border: 4px solid var(--border-soft);
  border-top-color: var(--primary-blue);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  background-color: var(--primary-blue);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.35);
}

.scroll-top i {
  font-size: 22px;
  color: #ffffff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: var(--accent-hover);
  transform: translateY(-3px);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}